/*** note:
this file is imported in base.css,
which is linked to all pages
**********************************/

/*
Reset elements
*/
:root {
    /* colors */
    --theme-color: #49b8e1;
    --theme-color-hover: #217a9a;
    --theme-color-alternative: #00a8be;
    --secondary-color: #e65a3e;
    --secondary-color-hover: #b9482b;
    --text-color: #49525f;
    --text-color-darker: #000;
    --text-color-light: #fff;
    --gray: #888;
    --gray-light: rgba(73, 82, 95, 0.5);
    --color-danger: #e11a40;
    --color-success: #29b751;
    --color-dark: #2e3539;

    --border-color: #e5e5e5;

    --best-offer-color: #ff5722;

    --btn-main-color: #f48419;

    --bg-body: #f3f3f3;
    --bg-light: #fff;
    --bg-success: #5eb57d;
    --side-menu-bg: #364150;
    --side-menu-bg-dark: #2b3440;
    --bg-accent: #f5f5f5;

    /* spaces */
    --cmn-gutter: 2rem;
    --gutter: 2rem;

    /* screen sizes */
    --screen-xs: 576px;
    --screen-xs-min: 575px;
    --screen-sm: 768px;
    --screen-sm-min: 767px;
    --screen-md: 992px;
    --screen-md-min: 991px;
    --screen-lg: 1200px;
    --screen-lg-min: 1199px;
    --screen-xl: 1480px;
    --screen-xl-min: 1479px;
    --screen-xxl: 1600px;
    --screen-xxl-min: 1599px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 14px !important;
    overflow-x: hidden;
}

@media(min-width: 769px) {
    html {
        font-size: 16px !important;
    }
}

body {
    font-family: 'Museo Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-color: #fff;
    color: var(--text-color);
}


*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:hover,
*:focus,
*:active {
    outline: 0;
}

* {
    -webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

table,
th,
td {
    border: 1px solid #e5e5e5;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 25px 0;
    table-layout: fixed;
    width: 100%;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

th {
    border-width: 0 1px 1px 0;
    font-weight: 700;
}

td {
    border-width: 0 1px 1px 0;
}

th,
td {
    padding: 5px 10px;
    vertical-align: top;
}

a,
blockquote cite,
blockquote small {
    color: var(--text-color);
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
}

blockquote,
q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}

b,
strong {
    font-weight: 700;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    font-size: 14px;
    position: relative;
    padding-left: 50px;
    max-width: 80%;
    margin: 45px auto 30px;
}

blockquote:before {
    content: '';
    background: url('../blockquot.html') center no-repeat;
    position: static;
    display: inline-block;
    float: left;
    font-size: 20px;
    line-height: 1;
    width: 40px;
    height: 30px;
    margin-left: -50px;
    margin-top: -15px;
}

blockquote p {
    margin-bottom: 10px;
}

blockquote>p:last-child {
    margin-bottom: 0;
}

blockquote cite {
    padding-top: 0;
    margin-top: 10px;
    position: relative;
    display: block;
}

blockquote cite,
blockquote small {
    font-size: 14px;
    font-weight: 600;
}

blockquote em,
blockquote i,
blockquote cite {
    font-style: normal;
}

address {
    font-style: italic;
    margin: 0 0 1.6em;
}

code,
kbd,
tt,
var,
samp,
pre {
    font-family: Inconsolata, monospace;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

pre {
    background-color: rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(51, 51, 51, 0.1);
    line-height: 1.2;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 0.8em;
    white-space: pre-wrap;
    word-wrap: break-word;
}

abbr[title] {
    border-bottom: 1px dotted #eaeaea;
    border-bottom: 1px dotted rgba(51, 51, 51, 0.1);
    cursor: help;
}

mark,
ins {
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

dl {
    margin-bottom: 25px;
}

dt {
    font-weight: bold;
}

dd {
    margin-bottom: 10px;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

ul:not(.list-reset),
ol:not(.list-reset) {
    margin: 0 0 25px 20px;
}

li>ul,
li>ol {
    margin-bottom: 0;
}

svg {
    vertical-align: top;
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

figure {
    margin: 0;
}


a {
    cursor: pointer;
    text-decoration: none;
    -ms-word-break: normal;
    word-break: normal;
    word-wrap: break-word;
}

a:hover {
    text-decoration: underline;
}

hr {
    background-color: #bfbfbf;
    border: 0;
    height: 1px;
    margin-top: 0;
    margin-bottom: 25px;
}

/* moz select fix */
select:-moz-focusring,
.checkout-wrap select.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--text-color);
}

.pointer {
    cursor: pointer;
}

.main-transition {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/* grid table*/
@media screen and (min-width: 576px) {
    .cmn-table-row {
        display: table;
        width: 100%;
    }

    .cmn-table-cell {
        position: relative;
        display: table-cell;
        padding-right: var(--cmn-gutter);
        padding-left: var(--cmn-gutter);
    }

    .cmn-table-row.no-gutter .cmn-table-cell:first-child {
        padding-left: 0;
    }

    .cmn-table-row.no-gutter .cmn-table-cell:last-child {
        padding-right: 0;
    }

    .cmn-table-cell-6 {
        width: 50%;
    }

    .cmn-text-right {
        text-align: right;
    }
}

@media screen and (max-width: 575px) {

    .cmn-table-row:not(.no-gutter):not(.single-comment-header),
    .comments-nav .comment-sort-list {
        padding-left: var(--cmn-gutter);
        padding-right: var(--cmn-gutter);
    }
}

/* Grid */
/* Grid Flex */
.mmg-container {
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.mmg-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mmg-row:not(.mmg-row--no-gutters) {
    margin-right: -15px;
    margin-left: -15px;
}

.mmg-col-1,
.mmg-col-2,
.mmg-col-3,
.mmg-col-4,
.mmg-col-5,
.mmg-col-6,
.mmg-col-7,
.mmg-col-8,
.mmg-col-9,
.mmg-col-10,
.mmg-col-11,
.mmg-col-12,
.mmg-col,
.mmg-col-auto,
.mmg-col-sm-1,
.mmg-col-sm-2,
.mmg-col-sm-3,
.mmg-col-sm-4,
.mmg-col-sm-5,
.mmg-col-sm-6,
.mmg-col-sm-7,
.mmg-col-sm-8,
.mmg-col-sm-9,
.mmg-col-sm-10,
.mmg-col-sm-11,
.mmg-col-sm-12,
.mmg-col-sm,
.mmg-col-sm-auto,
.mmg-col-md-1,
.mmg-col-md-2,
.mmg-col-md-3,
.mmg-col-md-4,
.mmg-col-md-5,
.mmg-col-md-6,
.mmg-col-md-7,
.mmg-col-md-8,
.mmg-col-md-9,
.mmg-col-md-10,
.mmg-col-md-11,
.mmg-col-md-12,
.mmg-col-md,
.mmg-col-md-auto,
.mmg-col-lg-1,
.mmg-col-lg-2,
.mmg-col-lg-3,
.mmg-col-lg-4,
.mmg-col-lg-5,
.mmg-col-lg-6,
.mmg-col-lg-7,
.mmg-col-lg-8,
.mmg-col-lg-9,
.mmg-col-lg-10,
.mmg-col-lg-11,
.mmg-col-lg-12,
.mmg-col-lg,
.mmg-col-lg-auto,
.mmg-col-xl-1,
.mmg-col-xl-2,
.mmg-col-xl-3,
.mmg-col-xl-4,
.mmg-col-xl-5,
.mmg-col-xl-6,
.mmg-col-xl-7,
.mmg-col-xl-8,
.mmg-col-xl-9,
.mmg-col-xl-10,
.mmg-col-xl-11,
.mmg-col-xl-12,
.mmg-col-xl,
.mmg-col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.mmg-col {
    max-width: 100%;
    flex: 0 0 100%;
}

.mmg-col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.mmg-col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.mmg-col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.mmg-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.mmg-col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.mmg-col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.mmg-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.mmg-col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.mmg-col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.mmg-col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.mmg-col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.mmg-col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.mmg-col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .mmg-col-sm {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .mmg-col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .mmg-col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .mmg-col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .mmg-col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .mmg-col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .mmg-col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .mmg-col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .mmg-col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .mmg-col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .mmg-col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .mmg-col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .mmg-col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .mmg-col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .mmg-col-md {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .mmg-col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .mmg-col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .mmg-col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .mmg-col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .mmg-col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .mmg-col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .mmg-col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .mmg-col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .mmg-col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .mmg-col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .mmg-col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .mmg-col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .mmg-col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .mmg-col-lg {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .mmg-col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .mmg-col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .mmg-col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .mmg-col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .mmg-col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .mmg-col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .mmg-col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .mmg-col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .mmg-col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .mmg-col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .mmg-col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .mmg-col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .mmg-col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .mmg-col-xl {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .mmg-col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .mmg-col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .mmg-col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .mmg-col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .mmg-col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .mmg-col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .mmg-col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .mmg-col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .mmg-col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .mmg-col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .mmg-col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .mmg-col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .mmg-col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.mmg-col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

/* 4.0 - Grid from dashboard.css
*/
.row:before,
.row:after {
    content: ' ';
    display: table;
}

.row:after {
    clear: both;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    position: relative;
    min-height: 1px;
    float: left;
    padding-left: 22px;
    padding-right: 22px;
}

.col-1 {
    width: 8.333333%;
}

.col-2 {
    width: 16.666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.333333%;
}

.col-5 {
    width: 41.666667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.333333%;
}

.col-8 {
    width: 66.666667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.333333%;
}

.col-11 {
    width: 91.666667%;
}

.col-12 {
    width: 100%;
}

.col-offset-0 {
    margin-left: 0;
}

.col-offset-1 {
    margin-left: 8.33333%;
}

.col-offset-2 {
    margin-left: 16.66667%;
}

.col-offset-3 {
    margin-left: 25%;
}

.col-offset-4 {
    margin-left: 33.33333%;
}

.col-offset-5 {
    margin-left: 41.66667%;
}

.col-offset-6 {
    margin-left: 50%;
}

.col-offset-7 {
    margin-left: 58.33333%;
}

.col-offset-8 {
    margin-left: 66.66667%;
}

.col-offset-9 {
    margin-left: 75%;
}

.col-offset-10 {
    margin-left: 83.33333%;
}

.col-offset-11 {
    margin-left: 91.66667%;
}

.col-offset-12 {
    margin-left: 100%;
}

.container-full,
.container {
    padding-left: 22px;
    padding-right: 22px;
}

.row {
    margin-left: -22px;
    margin-right: -22px;
}

/* Containers */
.container-fluid {
    padding-left: 75px;
    padding-right: 75px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container--1040 {
    max-width: 1040px;
}

.container--full {
    overflow: hidden;
}

/*
Typography
 */

/* Fonts */
.fnz-8 {
    font-size: 0.5rem;
}

.fnz-9 {
    font-size: 0.5625rem;
}

.fnz-10 {
    font-size: 0.625rem;
}

.fnz-11 {
    font-size: 0.6875rem;
}

.fnz-12 {
    font-size: 0.75rem;
}

.fnz-13 {
    font-size: 0.8125rem;
}

.fnz-14 {
    font-size: 0.875rem;
}

.fnz-15 {
    font-size: 0.9375rem;
}

.fnz-16 {
    font-size: 1rem;
}

.fnz-17 {
    font-size: 1.0625rem;
}

.fnz-18 {
    font-size: 1.125rem;
}

.fnz-19 {
    font-size: 1.1875rem;
}

.fnz-20 {
    font-size: 1.25rem;
}

.fnz-21 {
    font-size: 1.3125rem;
}

.fnz-22 {
    font-size: 1.375rem;
}

.fnz-24 {
    font-size: 1.5rem;
}

.fnz-25 {
    font-size: 1.563rem;
}

.fnz-26 {
    font-size: 1.625rem;
}

.fnz-28 {
    font-size: 1.75rem;
}

.fnz-30 {
    font-size: 1.875rem;
}

.fnz-40 {
    font-size: 2.5rem;
}

.fnz-50 {
    font-size: 3.125rem;
}

.font-bold {
    font-weight: 700;
}

.font-main-light {
    font-weight: 200;
}

.font-main-reg {
    font-weight: 300;
}

.font-main-med {
    font-weight: 500;
}

strong,
.font-main-bold {
    font-weight: 700;
}

.font-main-extra-bold {
    font-family: 'Museo Sans', sans-serif;
    font-weight: 900;
}

.font-sec-light {
    font-weight: 200;
}

.font-sec-med {
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin: 0 0 25px 0;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

h2.light {
    font-weight: 200;
}

h6 {
    font-weight: 500;
}

h1 {
    font-size: 46px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-weight: 500;
    font-size: 20px;
}

h6 {
    font-size: 14px;
}

p {
    margin: 0 0 20px 0;
}

/* Colors */
.text-primary {
    color: var(--theme-color);
}

.text-primary-alt {
    color: var(--theme-color-alternative);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-success {
    color: var(--color-success) !important;
}

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

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

.text-offer {
    color: var(--best-offer-color);
}

.text-light {
    color: var(--text-color-light);
}

.text-blue-light {
    color: #85d2d9 !important;
}

/*Background colors*/
.bg-primary,
.bg-blue {
    background: var(--theme-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--color-dark);
}

.btn-color {
    color: var(--btn-main-color);
}

/*
Helpers
*/
.float-none {
    float: initial !important;
}

.link-reset-underline,
.link-reset-underline:hover {
    text-decoration: none;
}

.link-underline {
    text-decoration: underline;
}

.valign-outer {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: table;
    position: static;
}

.valign-middle {
    top: 50%;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    position: static;
}

.valign-bottom {
    top: 50%;
    display: table-cell;
    vertical-align: bottom;
    width: 100%;
    position: static;
}

.valign-inner {
    position: relative;
    top: -50%;
}

.curve-bg-overlay {
    position: absolute;
    right: 0;
    left: 0;
    top: -65px;
    background-color: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: skew(0deg, -3.23deg);
    -moz-transform: skew(0deg, -3.23deg);
    -o-transform: skew(0deg, -3.23deg);
    -ms-transform: skew(0deg, -3.23deg);
    transform: skew(0deg, -3.23deg);
    height: 130px;
}

.curve-bg-overlay.change-align {
    -webkit-transform: skew(0deg, 3.23deg);
    -moz-transform: skew(0deg, 3.23deg);
    -o-transform: skew(0deg, 3.23deg);
    -ms-transform: skew(0deg, 3.23deg);
    transform: skew(0deg, 3.23deg);
}

.curve-bg-inner {
    position: relative;
    z-index: 4;
}

.disable-click {
    pointer-events: none;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* Positions */
.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.abs-ctr {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pos-abs--full {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pos-abs--ctr {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Alignment */
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

.text-justify {
    text-align: justify;
}

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

.text-capital {
    text-transform: capitalize;
}

.text-lowercase {
    text-transform: lowercase;
}

@media (min-width: 768px) {
    .text-left-pc {
        text-align: left;
    }

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

/* Floats */
.pull-left,
.alignleft {
    float: left;
}

.pull-right,
.alignright {
    float: right;
}

.clearfix:before,
.clearfix:after {
    content: ' ';
    display: table;
}

.clearfix:after {
    clear: both;
}

/* Space */
.mb-xs {
    margin-bottom: 1rem;
}

.mb-sm {
    margin-bottom: 1.5rem;
}

.mb-md {
    margin-bottom: 2rem;
}

.mb-lg {
    margin-bottom: 3rem;
}

.mb-xl {
    margin-bottom: 4rem;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

/* Visibility */
.hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .hidden-mb {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-pc {
        display: none !important;
    }
}

/*Display*/
.d-block {
    display: block;
}

.d-i-block {
    display: inline-block;
}

/* Flexbox */
.d-flex {
    display: flex;
}

.d-i-flex {
    display: inline-flex;
}

.fl-row-revers {
    flex-direction: row-reverse;
}

.fl-d-column {
    flex-direction: column;
}

.fl-wrap {
    flex-wrap: wrap;
}

.fl-x-ctr {
    justify-content: center;
}

.fl-y-ctr {
    align-items: center;
}

.fl-x-space-btw {
    justify-content: space-between;
}

.fl-x-end {
    justify-content: flex-end;
}

.fl-y-end {
    align-items: flex-end;
}

.fl-x-start {
    justify-content: flex-start;
}

.fl-y-start {
    align-items: flex-start;
}

.fl-order-1 {
    order: 1;
}

.fl-order-2 {
    order: 2;
}

.fl-y-self-start {
    align-self: flex-start;
}

@media (min-width: 768px) {
    .d-flex-pc {
        display: flex;
    }
}

@media (max-width: 767px) {
    .fl-d-column-mb {
        flex-direction: column;
    }
}

.divider {
    border-top: 1px solid #e0e1e6;
    margin-top: 30px;
}

.cover-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
}

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

.rounded {
    border-radius: 50%;
}

.hint-msg {
    color: #212830;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 300;
}

/* Custom scroll (css only) */
.custom-scroll {
    overflow: auto;
    padding-right: 5px;
}

/* width */
.custom-scroll::-webkit-scrollbar {
    width: 16px;
}

/* Track */
.custom-scroll::-webkit-scrollbar-track {
    background: var(--bg-accent);
    border: solid 2px var(--border-color);
    border-radius: 2px;
}

/* Handle */
.custom-scroll::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

/* Handle on hover */
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--border-color);
}

/* Pulse */
.pulse {
    display: inline-block;
    position: relative;
    border-radius: 50px;
    line-height: 50px;
    text-align: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse:before {
    transform: scale(1);
    animation: pulse 3s infinite linear;
}

.pulse:after {
    animation: pulse 3s 2s infinite linear;
}

.pulse:before,
.pulse:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #48b9e2;
    border-radius: 50px;
    opacity: 0;
}

.pulse.pulse-sm {
    width: 1.3rem;
    height: 1.3rem;
}

.pulse.pulse-danger:before,
.pulse.pulse-danger:after {
    background: #ff0000;
}

.highlight-box {
    -webkit-box-shadow: 4px 4px 7px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 4px 4px 7px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 4px 4px 7px 0 rgba(0, 0, 0, 0.05);
}

/*Responsive*/
@media only screen and (max-width: 1200px) {
    .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 480px) {
    .container-fluid {
        padding-left: 22px;
        padding-right: 22px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }
}

/* Animation */
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.6);
        opacity: 0;
    }

    33% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    33% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: scale(0.8);
    }

    33% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
    }
}

@keyframes bounce {
    0% {
        transform: scale(0.8);
    }

    33% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

/* Animations from dashboard.css */
@keyframes arrow-move {
    0% {
        left: 25%;
    }

    100% {
        left: 75%;
    }
}

@keyframes arrow-move-xlg {
    0% {
        left: 20%;
    }

    100% {
        left: 80%;
    }
}

@keyframes slideDown {
    0% {
        max-height: 0;
    }

    100% {
        max-height: 2000px;
    }
}

@keyframes slideUp {
    0% {
        max-height: 2000px;
    }

    100% {
        max-height: 0;
    }
}