@charset "UTF-8";

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    display: none;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

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

    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/*============================================================================
#Variable
==============================================================================*/
/*============================================================================
#Function
==============================================================================*/
/*============================================================================
#Reset
==============================================================================*/
/*================ Gerenal ================*/
*,
input,
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

html,
body {
    padding: 0;
    margin: 0;
}

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

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    border: 1px solid #e9e9e9;
    color: #1c1c1c;
    margin: 0 0 19px;
    min-height: 40px;
    padding: 0 20px;
}

a {
    color: #575454;
}

a:hover {
    color: #ff5722;
}

.remove {
    color: #999;
    font-size: 1em;
}

.remove:hover {
    color: #ff5722;
}

.dropdown-menu {
    box-shadow: none;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    background: none;
}

/*================ Partials | Typography styles ================*/
body,
input,
textarea,
button,
select {
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #333;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.25px;
}

body {
    font-size: 14px;
    color: #333;
}

header nav {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.4;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
    text-decoration: none;
    font-weight: inherit;
}

a {
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

a:focus {
    outline: none;
}

/*================ Use em() Sass function to declare font-size ================*/
h1,
.h1 {
    font-size: 2.57143em;
}

h2,
.h2 {
    font-size: 2em;
}

h3,
.h3 {
    font-size: 1.71429em;
}

h4,
.h4 {
    font-size: 1.28571em;
}

h5,
.h5 {
    font-size: 1.14286em;
}

h6,
.h6 {
    font-size: 1.14286em;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #323c3f;
    letter-spacing: .01em;
}

p {
    margin: 0 0 15px 0;
}

p img {
    margin: 0;
}

em {
    font-style: italic;
}

b,
strong {
    font-weight: bold;
}

small {
    font-size: 0.9em;
}

sup,
sub {
    position: relative;
    font-size: 60%;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.5em;
}

blockquote {
    font-size: 1.125em;
    line-height: 1.45;
    font-style: italic;
    margin: 0 0 30px;
    padding: 15px 30px;
    border-left: 1px solid #e1e1e1;
}

blockquote p {
    margin-bottom: 0;
}

blockquote p+cite {
    margin-top: 15px;
}

blockquote cite {
    display: block;
    font-size: 0.75em;
}

blockquote cite:before {
    content: "\2014 \0020";
}

code,
pre {
    background-color: #faf7f5;
    font-family: Consolas, monospace;
    font-size: 1em;
    border: 0 none;
    padding: 0 2px;
    color: #51ab62;
}

pre {
    overflow: auto;
    padding: 15px;
    margin: 0 0 30px;
}

/*================ Partials | Lists ================*/
ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none inside;
}

ol {
    list-style: decimal inside;
}

ul.square,
.rte ul ul ul {
    list-style: square inside;
}

ul.disc,
.rte ul {
    list-style: disc inside;
}

ol.alpha {
    list-style: lower-alpha inside;
}

.inline-list li {
    display: inline-block;
    margin-bottom: 0;
}

/*================ Partials | Tables ================*/
table {
    width: 100%;
    margin-bottom: 1em;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-wrap {
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

th {
    font-weight: bold;
}

th,
td {
    text-align: left;
    padding: 15px;
    border: 1px solid #e1e1e1;
    color: #1c1c1c;
}

/*================ Partials | Links and Buttons ================*/
a,
.text-link {
    color: #575454;
    text-decoration: none;
    background: transparent;
}

button {
    overflow: visible;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

/*================ Partials | Images, SVG, and iframes ================*/
img {
    border: 0 none;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    height: auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.table-wrapper {
    max-width: 100%;
    overflow: auto;
}

/*================ Partials | Forms ================*/
form {
    margin-bottom: 30px;
}

form a {
    color: #575454;
}

input,
textarea,
button,
select {
    font-size: 1em;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
    outline: none;
}

button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
}

input,
textarea,
select,
fieldset {
    border-radius: 0;
    max-width: 100%;
}

input.input-full,
textarea.input-full,
select.input-full,
fieldset.input-full {
    width: 100%;
}

fieldset {
    border: 0px solid #e1e1e1;
    padding: 15px;
}

legend {
    border: 0;
    padding: 0;
}

optgroup {
    font-weight: bold;
}

input {
    display: inline-block;
    width: auto;
}

button,
input[type="submit"] {
    cursor: pointer;
}

/*================ Input width and border ================*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
    border: 1px solid #e1e1e1;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    display: block;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #c8c8c8;
}

input[type="text"][disabled],
input[type="text"].disabled,
input[type="search"][disabled],
input[type="search"].disabled,
input[type="password"][disabled],
input[type="password"].disabled,
input[type="email"][disabled],
input[type="email"].disabled,
input[type="file"][disabled],
input[type="file"].disabled,
input[type="number"][disabled],
input[type="number"].disabled,
input[type="tel"][disabled],
input[type="tel"].disabled,
textarea[disabled],
textarea.disabled,
select[disabled],
select.disabled {
    cursor: default;
    background-color: #ddd;
    border-color: #ddd;
}

textarea {
    min-height: 100px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin: 0;
    padding: 0;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: right center;
    background-image: url("//theme.hstatic.net/1000362795/1000658450/14/ico-selects.png?v=497");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-color: #fff !important;
    padding-right: 28px;
    text-indent: 0.01px;
    text-overflow: '';
    cursor: pointer;
    /*================ Hide the svg arrow in IE9 and below ================*/
}

.ie9 select,
.lt-ie9 select {
    padding-right: 10px;
    background-image: none;
}

option {
    color: #000;
    background-color: #fff;
}

select::-ms-expand {
    display: none;
}

/*================ Form labels ================*/
label,
legend {
    display: block;
    margin-bottom: 2px;
}

label.inline,
legend.inline {
    display: inline;
}

/*================ We don't want the same label treatment for checkboxes/radios ================*/
input[type="checkbox"]+label,
input[type="radio"]+label {
    font-weight: normal;
}

label[for] {
    cursor: pointer;
}

.label-hint {
    color: #999;
}

/*================ Horizontal Form ================*/
form.form-horizontal,
.form-horizontal {
    margin-bottom: 0;
}

form.form-horizontal input[type="text"],
form.form-horizontal input[type="search"],
form.form-horizontal input[type="password"],
form.form-horizontal input[type="email"],
form.form-horizontal input[type="file"],
form.form-horizontal input[type="number"],
form.form-horizontal input[type="tel"],
form.form-horizontal textarea,
form.form-horizontal select,
form.form-horizontal label,
.form-horizontal input[type="text"],
.form-horizontal input[type="search"],
.form-horizontal input[type="password"],
.form-horizontal input[type="email"],
.form-horizontal input[type="file"],
.form-horizontal input[type="number"],
.form-horizontal input[type="tel"],
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal label {
    display: inline-block;
    margin-bottom: 0;
    width: auto;
}

/*================ Error styles ================*/
input[type="text"].error,
input[type="search"].error,
input[type="password"].error,
input[type="email"].error,
input[type="file"].error,
input[type="number"].error,
input[type="tel"].error,
textarea.error {
    border-color: red;
    color: red;
}

label.error {
    color: red;
}

/*================ Input Group ================*/
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group .input-group-field:first-child,
.input-group .input-group-btn:first-child,
.input-group .input-group-btn:first-child>.btn,
.input-group .input-group-btn:first-child>input[type="submit"],
.input-group input[type="hidden"]:first-child+.input-group-field,
.input-group input[type="hidden"]:first-child+.input-group-btn>.btn,
.input-group input[type="hidden"]:first-child+.input-group-btn>input[type="submit"] {
    border-radius: 0;
}

.input-group .input-group-field:last-child,
.input-group .input-group-btn:last-child>.btn,
.input-group .input-group-btn:last-child>input[type="submit"] {
    border-radius: 0;
}

.input-group input::-moz-focus-inner {
    border: 0;
    padding: 0;
    margin-top: -1px;
    margin-bottom: -1px;
}

.input-group-field,
.input-group-btn {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
}

.input-group .btn,
.input-group input[type="submit"],
.input-group .input-group-field {
    height: 40px;
}

.input-group .input-group-field {
    width: 100%;
    margin-bottom: 0;
}

.input-group-btn {
    position: relative;
    white-space: nowrap;
    width: 1%;
    padding: 0;
}

.form-group {
    margin: 0;
    padding: 0 0 8px;
    border: 0;
}

.form-group .form-control {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: .375rem .75rem;
    font-size: 1em;
    line-height: 1.5;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    margin: 0;
}

.form-group input,
.form-group select {
    height: 40px;
}

/*================ Module | Rich Text Editor ================*/
.rte h1,
.rte .h1,
.rte h2,
.rte .h2,
.rte h3,
.rte .h3,
.rte h4,
.rte .h4,
.rte h5,
.rte .h5,
.rte h6,
.rte .h6 {
    margin-top: 2em;
}

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

.rte h5,
.rte .h5,
.rte .h5 {
    text-transform: uppercase;
}

.rte>div {
    margin-bottom: 15px;
}

.rte ul ul {
    list-style: circle outside;
}

.rte li {
    margin-bottom: 0.4em;
}

.rte img {
    max-width: 100%;
    height: auto;
}

.rte table {
    table-layout: fixed;
}

/*============================================================================
5. HELP
==============================================================================*/
.clearfix {
    *zoom: 1;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.clearboth {
    clear: both;
}

.no-background {
    background: none !important;
}

.flexbox,
.awe-popup {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.list-inline {
    *zoom: 1;
}

.list-inline:after {
    content: "";
    display: table;
    clear: both;
}

.list-inline li {
    float: left;
    margin: 0;
}

.d-list>div {
    position: relative;
    margin-right: 15px;
}

.d-list>div:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 13px;
    margin: auto;
    z-index: 9;
    background: #e1e1e1;
}

.d-list>div:first-child {
    margin: 0;
}

.d-list>div:first-child:before {
    display: none;
}

.a-center {
    text-align: center !important;
}

.a-left {
    text-align: left !important;
}

.a-right {
    text-align: right !important;
}

.f-left {
    float: left !important;
}

.f-right {
    float: right !important;
}

.f-none {
    float: none !important;
}

.inline {
    display: inline !important;
}

.block {
    display: block !important;
}

.inline-block {
    display: inline-block !important;
}

.flexbox {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.flexbox>div {
    flex: 1;
}

.background-none {
    background: none !important;
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-border {
    border: none !important;
}

.ov-h {
    overflow: hidden !important;
}

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

/* Margin and padding helpers */
/* Margin */
.margin-0 {
    margin: 0px !important;
}

.margin-vertical-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.margin-horizontal-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.margin-top-0 {
    margin-top: 0px !important;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-left-0 {
    margin-left: 0px !important;
}

.margin-right-0 {
    margin-right: 0px !important;
}

/* Padding */
.padding-0 {
    padding: 0px !important;
}

.padding-vertical-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.padding-horizontal-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.padding-top-0 {
    padding-top: 0px !important;
}

.padding-bottom-0 {
    padding-bottom: 0px !important;
}

.padding-left-0 {
    padding-left: 0px !important;
}

.padding-right-0 {
    padding-right: 0px !important;
}

/* Margin */
.margin-5 {
    margin: 5px !important;
}

.margin-vertical-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.margin-horizontal-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-left-5 {
    margin-left: 5px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
}

/* Padding */
.padding-5 {
    padding: 5px !important;
}

.padding-vertical-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.padding-horizontal-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.padding-top-5 {
    padding-top: 5px !important;
}

.padding-bottom-5 {
    padding-bottom: 5px !important;
}

.padding-left-5 {
    padding-left: 5px !important;
}

.padding-right-5 {
    padding-right: 5px !important;
}

/* Margin */
.margin-10 {
    margin: 10px !important;
}

.margin-vertical-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.margin-horizontal-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

/* Padding */
.padding-10 {
    padding: 10px !important;
}

.padding-vertical-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.padding-horizontal-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}

.padding-right-10 {
    padding-right: 10px !important;
}

/* Margin */
.margin-15 {
    margin: 15px !important;
}

.margin-vertical-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.margin-horizontal-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}

.margin-right-15 {
    margin-right: 15px !important;
}

/* Padding */
.padding-15 {
    padding: 15px !important;
}

.padding-vertical-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.padding-horizontal-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.padding-top-15 {
    padding-top: 15px !important;
}

.padding-bottom-15 {
    padding-bottom: 15px !important;
}

.padding-left-15 {
    padding-left: 15px !important;
}

.padding-right-15 {
    padding-right: 15px !important;
}

/* Margin */
.margin-20 {
    margin: 20px !important;
}

.margin-vertical-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.margin-horizontal-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}

.margin-right-20 {
    margin-right: 20px !important;
}

/* Padding */
.padding-20 {
    padding: 20px !important;
}

.padding-vertical-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.padding-horizontal-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-bottom-20 {
    padding-bottom: 20px !important;
}

.padding-left-20 {
    padding-left: 20px !important;
}

.padding-right-20 {
    padding-right: 20px !important;
}

/* Margin */
.margin-25 {
    margin: 25px !important;
}

.margin-vertical-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.margin-horizontal-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.margin-top-25 {
    margin-top: 25px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-left-25 {
    margin-left: 25px !important;
}

.margin-right-25 {
    margin-right: 25px !important;
}

/* Padding */
.padding-25 {
    padding: 25px !important;
}

.padding-vertical-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.padding-horizontal-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.padding-top-25 {
    padding-top: 25px !important;
}

.padding-bottom-25 {
    padding-bottom: 25px !important;
}

.padding-left-25 {
    padding-left: 25px !important;
}

.padding-right-25 {
    padding-right: 25px !important;
}

/* Margin */
.margin-30 {
    margin: 30px !important;
}

.margin-vertical-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.margin-horizontal-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-left-30 {
    margin-left: 30px !important;
}

.margin-right-30 {
    margin-right: 30px !important;
}

/* Padding */
.padding-30 {
    padding: 30px !important;
}

.padding-vertical-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.padding-horizontal-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-bottom-30 {
    padding-bottom: 30px !important;
}

.padding-left-30 {
    padding-left: 30px !important;
}

.padding-right-30 {
    padding-right: 30px !important;
}

/* Margin */
.margin-35 {
    margin: 35px !important;
}

.margin-vertical-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.margin-horizontal-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
}

.margin-top-35 {
    margin-top: 35px !important;
}

.margin-bottom-35 {
    margin-bottom: 35px !important;
}

.margin-left-35 {
    margin-left: 35px !important;
}

.margin-right-35 {
    margin-right: 35px !important;
}

/* Padding */
.padding-35 {
    padding: 35px !important;
}

.padding-vertical-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.padding-horizontal-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

.padding-top-35 {
    padding-top: 35px !important;
}

.padding-bottom-35 {
    padding-bottom: 35px !important;
}

.padding-left-35 {
    padding-left: 35px !important;
}

.padding-right-35 {
    padding-right: 35px !important;
}

/* Margin */
.margin-40 {
    margin: 40px !important;
}

.margin-vertical-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.margin-horizontal-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.margin-top-40 {
    margin-top: 40px !important;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

.margin-left-40 {
    margin-left: 40px !important;
}

.margin-right-40 {
    margin-right: 40px !important;
}

/* Padding */
.padding-40 {
    padding: 40px !important;
}

.padding-vertical-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.padding-horizontal-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.padding-top-40 {
    padding-top: 40px !important;
}

.padding-bottom-40 {
    padding-bottom: 40px !important;
}

.padding-left-40 {
    padding-left: 40px !important;
}

.padding-right-40 {
    padding-right: 40px !important;
}

/* Margin */
.margin-45 {
    margin: 45px !important;
}

.margin-vertical-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
}

.margin-horizontal-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
}

.margin-top-45 {
    margin-top: 45px !important;
}

.margin-bottom-45 {
    margin-bottom: 45px !important;
}

.margin-left-45 {
    margin-left: 45px !important;
}

.margin-right-45 {
    margin-right: 45px !important;
}

/* Padding */
.padding-45 {
    padding: 45px !important;
}

.padding-vertical-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.padding-horizontal-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
}

.padding-top-45 {
    padding-top: 45px !important;
}

.padding-bottom-45 {
    padding-bottom: 45px !important;
}

.padding-left-45 {
    padding-left: 45px !important;
}

.padding-right-45 {
    padding-right: 45px !important;
}

/* Margin */
.margin-50 {
    margin: 50px !important;
}

.margin-vertical-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.margin-horizontal-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.margin-top-50 {
    margin-top: 50px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

.margin-left-50 {
    margin-left: 50px !important;
}

.margin-right-50 {
    margin-right: 50px !important;
}

/* Padding */
.padding-50 {
    padding: 50px !important;
}

.padding-vertical-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.padding-horizontal-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.padding-top-50 {
    padding-top: 50px !important;
}

.padding-bottom-50 {
    padding-bottom: 50px !important;
}

.padding-left-50 {
    padding-left: 50px !important;
}

.padding-right-50 {
    padding-right: 50px !important;
}

/* Margin */
.margin-55 {
    margin: 55px !important;
}

.margin-vertical-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}

.margin-horizontal-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
}

.margin-top-55 {
    margin-top: 55px !important;
}

.margin-bottom-55 {
    margin-bottom: 55px !important;
}

.margin-left-55 {
    margin-left: 55px !important;
}

.margin-right-55 {
    margin-right: 55px !important;
}

/* Padding */
.padding-55 {
    padding: 55px !important;
}

.padding-vertical-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.padding-horizontal-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
}

.padding-top-55 {
    padding-top: 55px !important;
}

.padding-bottom-55 {
    padding-bottom: 55px !important;
}

.padding-left-55 {
    padding-left: 55px !important;
}

.padding-right-55 {
    padding-right: 55px !important;
}

/* Margin */
.margin-60 {
    margin: 60px !important;
}

.margin-vertical-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.margin-horizontal-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
}

.margin-top-60 {
    margin-top: 60px !important;
}

.margin-bottom-60 {
    margin-bottom: 60px !important;
}

.margin-left-60 {
    margin-left: 60px !important;
}

.margin-right-60 {
    margin-right: 60px !important;
}

/* Padding */
.padding-60 {
    padding: 60px !important;
}

.padding-vertical-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.padding-horizontal-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.padding-top-60 {
    padding-top: 60px !important;
}

.padding-bottom-60 {
    padding-bottom: 60px !important;
}

.padding-left-60 {
    padding-left: 60px !important;
}

.padding-right-60 {
    padding-right: 60px !important;
}

/* Margin */
.margin-65 {
    margin: 65px !important;
}

.margin-vertical-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
}

.margin-horizontal-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
}

.margin-top-65 {
    margin-top: 65px !important;
}

.margin-bottom-65 {
    margin-bottom: 65px !important;
}

.margin-left-65 {
    margin-left: 65px !important;
}

.margin-right-65 {
    margin-right: 65px !important;
}

/* Padding */
.padding-65 {
    padding: 65px !important;
}

.padding-vertical-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}

.padding-horizontal-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
}

.padding-top-65 {
    padding-top: 65px !important;
}

.padding-bottom-65 {
    padding-bottom: 65px !important;
}

.padding-left-65 {
    padding-left: 65px !important;
}

.padding-right-65 {
    padding-right: 65px !important;
}

/* Margin */
.margin-70 {
    margin: 70px !important;
}

.margin-vertical-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}

.margin-horizontal-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
}

.margin-top-70 {
    margin-top: 70px !important;
}

.margin-bottom-70 {
    margin-bottom: 70px !important;
}

.margin-left-70 {
    margin-left: 70px !important;
}

.margin-right-70 {
    margin-right: 70px !important;
}

/* Padding */
.padding-70 {
    padding: 70px !important;
}

.padding-vertical-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.padding-horizontal-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
}

.padding-top-70 {
    padding-top: 70px !important;
}

.padding-bottom-70 {
    padding-bottom: 70px !important;
}

.padding-left-70 {
    padding-left: 70px !important;
}

.padding-right-70 {
    padding-right: 70px !important;
}

/* Margin */
.margin-75 {
    margin: 75px !important;
}

.margin-vertical-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
}

.margin-horizontal-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
}

.margin-top-75 {
    margin-top: 75px !important;
}

.margin-bottom-75 {
    margin-bottom: 75px !important;
}

.margin-left-75 {
    margin-left: 75px !important;
}

.margin-right-75 {
    margin-right: 75px !important;
}

/* Padding */
.padding-75 {
    padding: 75px !important;
}

.padding-vertical-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}

.padding-horizontal-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
}

.padding-top-75 {
    padding-top: 75px !important;
}

.padding-bottom-75 {
    padding-bottom: 75px !important;
}

.padding-left-75 {
    padding-left: 75px !important;
}

.padding-right-75 {
    padding-right: 75px !important;
}

/* Margin */
.margin-80 {
    margin: 80px !important;
}

.margin-vertical-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}

.margin-horizontal-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
}

.margin-top-80 {
    margin-top: 80px !important;
}

.margin-bottom-80 {
    margin-bottom: 80px !important;
}

.margin-left-80 {
    margin-left: 80px !important;
}

.margin-right-80 {
    margin-right: 80px !important;
}

/* Padding */
.padding-80 {
    padding: 80px !important;
}

.padding-vertical-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.padding-horizontal-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

.padding-top-80 {
    padding-top: 80px !important;
}

.padding-bottom-80 {
    padding-bottom: 80px !important;
}

.padding-left-80 {
    padding-left: 80px !important;
}

.padding-right-80 {
    padding-right: 80px !important;
}

/* Margin */
.margin-85 {
    margin: 85px !important;
}

.margin-vertical-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
}

.margin-horizontal-85 {
    margin-left: 85px !important;
    margin-right: 85px !important;
}

.margin-top-85 {
    margin-top: 85px !important;
}

.margin-bottom-85 {
    margin-bottom: 85px !important;
}

.margin-left-85 {
    margin-left: 85px !important;
}

.margin-right-85 {
    margin-right: 85px !important;
}

/* Padding */
.padding-85 {
    padding: 85px !important;
}

.padding-vertical-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
}

.padding-horizontal-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
}

.padding-top-85 {
    padding-top: 85px !important;
}

.padding-bottom-85 {
    padding-bottom: 85px !important;
}

.padding-left-85 {
    padding-left: 85px !important;
}

.padding-right-85 {
    padding-right: 85px !important;
}

/* Margin */
.margin-90 {
    margin: 90px !important;
}

.margin-vertical-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
}

.margin-horizontal-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
}

.margin-top-90 {
    margin-top: 90px !important;
}

.margin-bottom-90 {
    margin-bottom: 90px !important;
}

.margin-left-90 {
    margin-left: 90px !important;
}

.margin-right-90 {
    margin-right: 90px !important;
}

/* Padding */
.padding-90 {
    padding: 90px !important;
}

.padding-vertical-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.padding-horizontal-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
}

.padding-top-90 {
    padding-top: 90px !important;
}

.padding-bottom-90 {
    padding-bottom: 90px !important;
}

.padding-left-90 {
    padding-left: 90px !important;
}

.padding-right-90 {
    padding-right: 90px !important;
}

/* Margin */
.margin-95 {
    margin: 95px !important;
}

.margin-vertical-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
}

.margin-horizontal-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
}

.margin-top-95 {
    margin-top: 95px !important;
}

.margin-bottom-95 {
    margin-bottom: 95px !important;
}

.margin-left-95 {
    margin-left: 95px !important;
}

.margin-right-95 {
    margin-right: 95px !important;
}

/* Padding */
.padding-95 {
    padding: 95px !important;
}

.padding-vertical-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
}

.padding-horizontal-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
}

.padding-top-95 {
    padding-top: 95px !important;
}

.padding-bottom-95 {
    padding-bottom: 95px !important;
}

.padding-left-95 {
    padding-left: 95px !important;
}

.padding-right-95 {
    padding-right: 95px !important;
}

/* Margin */
.margin-100 {
    margin: 100px !important;
}

.margin-vertical-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.margin-horizontal-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
}

.margin-top-100 {
    margin-top: 100px !important;
}

.margin-bottom-100 {
    margin-bottom: 100px !important;
}

.margin-left-100 {
    margin-left: 100px !important;
}

.margin-right-100 {
    margin-right: 100px !important;
}

/* Padding */
.padding-100 {
    padding: 100px !important;
}

.padding-vertical-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.padding-horizontal-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.padding-top-100 {
    padding-top: 100px !important;
}

.padding-bottom-100 {
    padding-bottom: 100px !important;
}

.padding-left-100 {
    padding-left: 100px !important;
}

.padding-right-100 {
    padding-right: 100px !important;
}

/*============================================================================
6. BUTTON
==============================================================================*/
.btn,
input[type="submit"] {
    display: inline-block;
    height: 40px;
    line-height: 39px;
    padding: 0 20px;
    text-align: center;
    white-space: nowrap;
    outline: none !important;
    cursor: pointer;
    border: none;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 0;
    -webkit-transition: background-color 0.1s ease-in;
    -moz-transition: background-color 0.1s ease-in;
    -ms-transition: background-color 0.1s ease-in;
    -o-transition: background-color 0.1s ease-in;
    transition: background-color 0.1s ease-in;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.btn[disabled],
input[disabled][type="submit"],
.btn.disabled,
input.disabled[type="submit"] {
    cursor: default;
    background-color: #e1e1e1;
}

.btn.btn-primary,
input.btn-primary[type="submit"] {
    background: #f02b2b;
    color: #fff;
}

.btn.btn-primary:hover,
input.btn-primary[type="submit"]:hover {
    background: #f24343;
}

.btn.btn-circle,
input.btn-circle[type="submit"] {
    border-radius: 50%;
    padding: 0;
}

.btn.btn-large,
input.btn-large[type="submit"] {
    height: 50px;
    line-height: 50px;
    padding: 0 74px;
}

.btn.btn-small,
input.btn-small[type="submit"] {
    height: 34px;
    line-height: 34px;
    padding: 0 32px;
    font-size: 0.85714em;
}

.btn.btn-dark,
input.btn-dark[type="submit"] {
    background: #2a2a2a;
    color: #fff;
}

.btn.btn-white,
input.btn-white[type="submit"] {
    background: #fff;
    color: #333;
    border: 1px solid #e1e1e1;
    font-weight: 400;
}

.btn.btn-white:hover,
input.btn-white[type="submit"]:hover {
    background: #ff6a3c;
    color: #fff;
}

.btn.btn-gray,
input.btn-gray[type="submit"] {
    background: #9e9e9e;
    color: #fff;
}

.btn.btn-gray:hover,
input.btn-gray[type="submit"]:hover {
    background: #ff5722;
}

.btn.btn-gray a,
input.btn-gray[type="submit"] a {
    color: #fff;
}

.btn.btn-full,
input.btn-full[type="submit"] {
    display: block;
    width: 100%;
}

.btn-link {
    line-height: 40px;
    color: #ff5722;
}

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

/*============================================================================
7. POPUP
==============================================================================*/
.ajax-load {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    opacity: 0;
    visibility: hidden;
}

.ajax-load.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}

.awe-popup {
    position: fixed;
    z-index: 9999;
    top: 0;
    height: 0;
    width: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.awe-popup .overlay {
    background-color: rgba(33, 33, 33, 0.8);
    color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
}

.awe-popup .content {
    position: relative;
    max-width: 1140px;
    min-width: 1140px;
    padding: 25px 28px;
    max-height: 0;
    text-align: left;
    opacity: 0;
    margin: 0 auto;
    background: transparent;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    position: relative;
    padding: 25px 28px;
    max-height: 0;
    text-align: left;
    opacity: 0;
    margin: 0 auto;
    background: #fff;
}

.awe-popup.active {
    visibility: visible;
    opacity: 1;
    top: 0 !important;
    height: auto;
    width: auto;
}

.awe-popup.active .content {
    max-height: calc(100% - 60px);
    opacity: 1;
    background: transparent;
    padding: 0;
}

.awe-popup.active .content .info {
    background: #fff;
    min-width: 500px;
}

.awe-popup.active .overlay {
    width: 100%;
    height: 100%;
}

.close-window {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 8040;
    color: #fff;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
}

.close-window .fa {
    display: block;
    font-size: 1.42857em;
    line-height: 25px;
    color: #ff5722;
}

.awe-popup.loading {
    z-index: 9998;
}

.awe-popup.loading .loader {
    left: 50%;
    position: fixed;
    top: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.awe-popup.loaded-content .loader {
    display: none;
}

.awe-popup.addcart-popup .content {
    min-width: auto;
}

.product-popup .product-image {
    float: left;
    margin: 0 20px 0 0;
}

.product-popup .product-info {
    overflow: hidden;
    position: relative;
}

.product-popup .product-info p {
    margin-bottom: 0px;
    line-height: 24px;
}

.product-popup .popup-title {
    padding-left: 15px;
    border-radius: 0;
}

.product-popup .popup-title i {
    margin-right: 5px;
}

.product-popup .product-name {
    color: #ff5722;
}

.product-popup .product-info p.total-money {
    margin-bottom: 15px;
}

.product-popup h3,
.product-popup .h3 {
    color: #52b249;
    margin-bottom: 25px;
}

.product-popup h3 .fa,
.product-popup .h3 .fa {
    margin-right: 4px;
}

.product-popup .pop-right h3,
.product-popup .pop-right .h3 {
    color: #333;
}

.pop-right {
    background: #f9f9f9;
}

.awe-popup.product-popup.active .content {
    max-height: calc(100% - 60px);
    opacity: 1;
    padding: 0;
}

@media (max-width: 1199px) {
    .awe-popup .content {
        max-width: 700px;
        min-width: auto;
    }
}

@media (max-width: 543px) {
    .product-popup .product-image {
        width: 120px;
        height: 120px;
    }

    .product-popup .product-image img {
        max-width: 120px !important;
    }

    .awe-popup.product-popup.active .content {
        max-height: calc(100% - 60px);
        opacity: 1;
        margin: 0 20px;
    }

    .addcart-popup .col-xl-6 {
        padding: 0 !important;
    }

    .product-popup h3,
    .product-popup .h3 {
        font-size: 1.28571em;
        margin-bottom: 0;
    }
}

/*============================================================================
8. SWATCH VARIANT
==============================================================================*/
/* 
Swatches Styles
*/
.swatch {
    margin: 1em 0;
}

.swatch .header {
    margin: 0.1em 0;
    text-align: left;
    float: left;
    min-width: 100px;
    font-weight: 700;
}

.swatch input {
    display: none;
}

/* Label */
/* Hide radio buttons.*/
.swatch label {
    /* Rounded corners */
    /* To give width and height */
    float: left;
    /* Color swatches contain no text so they need to have a width. */
    min-width: 35px !important;
    height: 35px !important;
    /* No extra spacing between them */
    margin: 0;
    /* The border when the button is not selected */
    border: #ccc 1px solid;
    /* Background color */
    background-color: #fff;
    /* Styling text */
    font-size: 0.92857em;
    text-align: center;
    line-height: 35px;
    white-space: nowrap;
    text-transform: uppercase;
    padding: 0;
}

.swatch-element label {
    padding: 0 5px;
}

.swatch-element label .img-check {
    display: none;
}

.color.swatch-element label {
    padding: 0 5px;
}

/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked+label {
    background: transparent;
    color: #333;
    border: 1px solid #e6484a;
}

.swatch input:checked+label .img-check {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.swatch .color input:checked+label {
    position: relative;
    border: 1px solid #ff5722;
}

.swatch .color input:checked+label:after {
    content: "\f00c";
    font-family: FontAwesome;
    display: none;
}

.swatch .swatch-element {
    float: left;
    -webkit-transform: translateZ(0);
    /* webkit flicker fix */
    -webkit-font-smoothing: antialiased;
    /* webkit text rendering fix */
    /* Spacing between buttons */
    margin: 0px 5px 5px 0;
    /* To position the sold out graphic and tooltip */
    position: relative;
}

.swatch .swatch-element.color .tim {
    /*background-color:#db23b6;*/
}

.swatch .swatch-element.color .xanh {
    /*background-color:#0554ff;*/
}

.swatch .swatch-element.color .vang {
    /*background-color:#e6fa0a;*/
}

.swatch .swatch-element.color .nau {
    /*background-color:#594f4f;*/
}

.swatch .swatch-element.color .do {
    /*background-color:#f20808;*/
}

.swatch .swatch-element.color .cam {
    /*background-color:#fc9905;*/
}

.swatch .swatch-element.color .xam {
    /*background-color:#615a5a;*/
}

.swatch .swatch-element.color .xanh-nuoc-bien {
    /*background-color:#3a40fa;*/
}

.swatch .swatch-element.color .xanh-la-cay {
    /*background-color:#00ff15;*/
}

.swatch .swatch-element.color .hong {
    /*background-color:#ff00d5;*/
}

/* Image with the cross in it */
.crossed-out {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#quick-view-product .selector-wrapper {
    display: none !important;
}

.swatch .swatch-element .crossed-out {
    display: none;
}

.swatch .swatch-element.soldout .crossed-out {
    display: block;
}

.swatch .swatch-element.soldout label {
    filter: alpha(opacity=60);
    /* internet explorer */
    -khtml-opacity: 0.6;
    /* khtml, old safari */
    -moz-opacity: 0.6;
    /* mozilla, netscape */
    opacity: 0.6;
    /* fx, safari, opera */
}

.swatch .tooltip {
    text-align: center;
    background: #ff5722;
    color: #fff;
    bottom: 100%;
    padding: 10px;
    display: block;
    position: absolute;
    width: 100px;
    left: -35px;
    margin-bottom: 15px;
    /* Make it invisible by default */
    filter: alpha(opacity=0);
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    visibility: hidden;
    /* Animations */
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    z-index: 10000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
}

.swatch .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}

.swatch .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid #ff5722 10px;
    bottom: -10px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    width: 0;
}

.swatch .swatch-element:hover .tooltip {
    filter: alpha(opacity=100);
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.swatch.error {
    background-color: #E8D2D2 !important;
    color: #333 !important;
    padding: 1em;
    border-radius: 5px;
}

.swatch.error p {
    margin: 0.7em 0;
}

.swatch.error p:first-child {
    margin-top: 0;
}

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

.swatch.error code {
    font-family: monospace;
}

/*============================================================================
9. CUSTOM OWL CAROUSEL
==============================================================================*/
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    top: 50%;
    position: absolute;
    text-decoration: none;
    width: 30px;
    padding: 0;
    background: transparent;
    outline: none;
    border-radius: 0;
    white-space: nowrap;
    margin-right: 0;
    margin-left: 0;
}

.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:before {
    font-family: "FontAwesome";
    text-indent: 0;
    position: absolute;
    left: 0;
    width: 29px;
    text-align: center;
    line-height: 29px;
    font-size: 20px;
    background: #f5f5f5;
    color: #dadbdb;
    display: none;
}

.owl-carousel .owl-nav .owl-prev {
    left: 0;
}

.owl-carousel .owl-nav .owl-prev:before {
    content: "\f104";
}

.owl-carousel .owl-nav .owl-next {
    right: 0;
}

.owl-carousel .owl-nav .owl-next:before {
    content: "\f105";
}

.owl-carousel .owl-nav .disabled {
    opacity: .5;
    cursor: default;
}

@media (max-width: 768px) {

    .owl-carousel .owl-nav .owl-prev:before,
    .owl-carousel .owl-nav .owl-next:before {
        font-size: 14px;
    }

    .owl-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .owl-carousel .owl-nav .owl-next {
        right: 0;
    }
}

.owl-carousel .owl-dots {
    display: block;
    margin-top: 10px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    margin: 0 3px;
}

.owl-carousel .owl-dots .owl-dot.active {
    background: #ff5722;
}

.owl-carousel-inset .owl-nav .owl-prev {
    left: 0;
}

.owl-carousel-inset .owl-nav .owl-next {
    right: 0;
}

.owl-carousel-inset .owl-dots {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 25px;
}

.owl-carousel-inset .owl-prev,
.owl-carousel-inset .owl-next {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.owl-carousel-inset:hover .owl-prev,
.owl-carousel-inset:hover .owl-next {
    opacity: 1;
    visibility: visible;
}

.owl-carousel-inset:hover .owl-prev.disabled,
.owl-carousel-inset:hover .owl-next.disabled {
    opacity: .5;
}

.owl-carousel-inset:hover .owl-nav .owl-prev {
    left: 25px;
}

.owl-carousel-inset:hover .owl-nav .owl-next {
    right: 25px;
}

.owl-carousel .owl-item img {
    width: auto;
}

.owl-carousel .owl-item.focus {
    border: 2px solid #333;
}

/********************************************************
10. TABS
********************************************************/
.tab-wrap .tabs-title {
    *zoom: 1;
    display: inline-block;
    position: relative;
    z-index: 9;
    margin: 0 0 26px;
}

.tab-wrap .tabs-title:after {
    content: "";
    display: table;
    clear: both;
}

.tab-wrap .tabs-title li {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    line-height: 40px;
    float: left;
}

.tab-wrap .tabs-title li:before {
    content: "|";
    color: #c9c9c9;
    padding: 0 16px;
    color: #1c1c1c;
}

.tab-wrap .tabs-title li:first-child:before {
    display: none;
}

.tab-wrap .tabs-title li.current {
    color: #212121;
}

.tab-wrap .tab-content {
    position: relative;
}

ul.tabs li {
    background: none;
    display: inline-block;
    cursor: pointer;
}

ul.tabs li.current {
    color: #000;
}

.tab-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.tab-content.current {
    opacity: 1;
    visibility: visible;
    height: auto;
}

/********************************************************
11. ACCORDION
********************************************************/
.accordion .nav-item .tab-pane {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.accordion .nav-item.active .tab-pane {
    opacity: 1;
    visibility: visible;
    height: auto;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

/*============================================================================
12. QUICKVIEW
==============================================================================*/
#quickview .product-name {
    margin-top: 0;
    font-size: 18px;
}

#quickview .product-name a {
    color: #000;
    font-size: 18px;
}

#quickview .product-name a:hover,
#quickview .product-name a:focus {
    color: #ff5722;
    text-decoration: none;
}

#quickview button.btn.btn-close.btn-default {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 30px;
    font-size: 14px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    padding: 0;
}

#quickview .modal-content {
    border-radius: 7px;
}

#quickview .modal-body {
    position: relative;
    padding: 20px;
    border: 2px solid #ff5722;
    border-radius: 7px;
}

#quickview .modal-dialog {
    width: 910px;
    border-radius: 0;
}

#quickview .status {
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 400;
}

#quickview .inventory {
    display: inline-block;
    padding: 0 5px;
    color: #ff5722;
}

#quickview .selector-wrapper select {
    height: 40px;
}

#quickview .info-other {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
}

#quickview .info-other p {
    margin-bottom: 0;
    font-weight: 600;
}

#quickview .info-other p label {
    font-weight: normal;
}

#quickview span.discount {
    color: #ff5722;
}

#quickview .product-price {
    font-size: 1.42857em;
    display: inline-block;
}

#quickview .price-box {
    margin: 0px 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
}

#quickview .price-box .special-price span {
    color: #ff5722;
}

#quickview .price-box .old-price {
    display: block;
    color: #bbb;
    font-size: 1em;
    margin-top: 7px;
    margin-top: 7px;
    clear: left;
}

#quickview .product-description.rte {
    padding-bottom: 15px;
}

#quickview #thumbnail_quickview {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

#quickview #thumbnail_quickview.op1 {
    opacity: 1;
    visibility: visible;
    height: auto;
}

#quickview #thumbnail_quickview .item {
    border: 1px solid #ebebeb;
    padding: 3px;
    height: 95px;
    position: relative;
}

#quickview #thumbnail_quickview .item img {
    width: auto;
    max-height: 87px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#quickview #thumbnail_quickview .thumblist_carousel.owl-carousel .owl-nav .owl-prev,
#quickview #thumbnail_quickview .thumblist_carousel.owl-carousel .owl-nav .owl-next {
    -moz-transition: all 0.45s ease;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    -ms-transition: all 0.45s ease;
    transition: all 0.45s ease;
    opacity: 0;
    visibility: hidden;
}

#quickview #thumbnail_quickview .thumblist_carousel.owl-carousel .owl-nav .owl-next {
    height: 51px;
    width: 32px;
    border: 1px solid #f1f5f6;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
    position: absolute;
    right: 0;
    text-align: center;
    line-height: 51px;
    top: 50%;
    transform: translate(0, -50%);
    color: #878fa0;
    font-size: 20px;
    margin: 0;
    right: -50px;
}

#quickview #thumbnail_quickview .thumblist_carousel.owl-carousel .owl-nav .owl-next.disabled {
    opacity: 0.2 !important;
}

#quickview #thumbnail_quickview .thumblist_carousel.owl-carousel .owl-nav .owl-prev {
    height: 51px;
    width: 32px;
    border: 1px solid #f1f5f6;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 7px 10px 0 rgba(72, 139, 216, 0.2);
    position: absolute;
    left: 0;
    text-align: center;
    line-height: 51px;
    top: 50%;
    transform: translate(0, -50%);
    color: #878fa0;
    font-size: 20px;
    margin: 0;
    left: -50px;
}

#quickview #thumbnail_quickview .thumblist_carousel.owl-carousel .owl-nav .owl-prev.disabled {
    opacity: 0.2 !important;
}

#quickview #thumbnail_quickview .thumblist_carousel.owl-carousel:hover .owl-nav .owl-prev {
    left: 0;
    opacity: 1;
    visibility: inherit;
}

#quickview #thumbnail_quickview .thumblist_carousel.owl-carousel:hover .owl-nav .owl-next {
    right: 0;
    opacity: 1;
    visibility: inherit;
}

#quickview .image {
    border: 1px solid #ebebeb;
    padding: 5px;
}

#quickview .image.margin-bottom-15 {
    position: relative;
    height: 400px;
}

#quickview .image.margin-bottom-15 img {
    width: auto;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#quickview .rte img,
#quickview .rte iframe {
    display: none !important;
}

#quickview .quantity_wanted_p {
    margin-top: 15px;
}

#quickview .quantity_wanted_p label {
    display: inline-block;
    line-height: 45px;
    float: left;
}

#quickview .quantity_wanted_p input {
    margin: 0 10px;
    height: 40px;
    padding: 0;
    width: 60px;
    display: inline-block;
    border-radius: 3px;
    outline: none;
    box-shadow: none;
    text-align: center;
    float: left;
}

#quickview .quantity_wanted_p .btn,
#quickview .quantity_wanted_p input[type="submit"] {
    font-size: 14px;
    padding: 0 45px;
    border-radius: 3px;
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    border: 1px solid #ff5722;
    text-transform: uppercase;
    float: left;
}

#quickview .quantity_wanted_p .btn:hover,
#quickview .quantity_wanted_p input[type="submit"]:hover,
#quickview .quantity_wanted_p .btn:focus,
#quickview .quantity_wanted_p input[type="submit"]:focus {
    background-color: #fff;
    color: #ff5722;
}

#quickview .swatch {
    display: none;
    clear: both;
}

#quickview .swatch .header {
    float: none;
    display: block;
    width: 100%;
}

#quickview .swatch .swatch-element {
    float: none;
    display: inline-block;
}

#quickview .hasswatch .swatch {
    display: block;
    margin-bottom: 7px;
    margin-top: 0;
}

#quickview .hasswatch .swatch .header {
    float: none;
}

#quickview .hasswatch .selector-wrapper {
    display: none;
}

/*============================================================================
13. FILTER
==============================================================================*/
.filter-container {
    margin-bottom: 30px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group ul {
    max-height: 140px;
    overflow-y: auto;
}

.filter-group ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background-color: #F5F5F5;
}

.filter-group ul::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.filter-group ul::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    background-color: #e5e5e5;
}

#start {
    width: 100px;
    float: left;
}

@media (max-width: 1024px) {
    #start {
        width: 80px;
    }
}

#start input {
    text-align: center;
    border-radius: 0px;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#stop {
    width: 100px;
    float: left;
    margin-left: 30px;
    text-align: center;
    position: relative;
}

@media (max-width: 1024px) {
    #stop {
        width: 80px;
    }
}

#stop input {
    text-align: center;
    border-radius: 0px;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#stop:before {
    content: "-";
    position: absolute;
    left: -17px;
    font-size: 17px;
}

.filter-group-title {
    display: block;
    font-size: 1.28571em;
    margin-bottom: 10px;
}

.filter-item {
    margin: 0;
    cursor: pointer;
    line-height: 2.5em;
}

.filter-item * {
    color: #6f6f6f;
    cursor: pointer;
    font-size: 1em;
    font-weight: normal;
}

.filter-item.color {
    min-width: 20px;
}

.filter-item.color a,
.filter-item.color label {
    width: 100%;
    height: 100%;
    display: inline-block;
    font-size: 0;
}

.filter-item.color .fa {
    width: 20px;
    height: 20px;
    background: red;
    border-radius: 50%;
    position: relative;
}

.filter-item.color .fa:before {
    display: none;
}

.filter-item.color .fa.trang:hover:before {
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    position: absolute;
    left: -4px;
    top: -4px;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
}

.filter-item.color .fa:hover:before {
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    position: absolute;
    left: -3px;
    top: -3px;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
}

.filter-item.color input:checked+.fa:before {
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    position: absolute;
    left: -3px;
    top: -3px;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
}

.filter-item.color input:checked+.fa.trang:before {
    display: block;
    content: "";
    width: 26px;
    height: 26px;
    position: absolute;
    left: -4px;
    top: -4px;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
}

.filter-item--green *:hover {
    color: #ff5722;
}

.filter-item--half {
    display: inline-block;
    width: 48%;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 3px;
}

.filter-item--check-box input {
    display: none;
}

.filter-item--check-box .fa {
    margin-right: 5px;
    width: 14px;
    position: relative;
}

.filter-item--check-box input+.fa:before {
    content: "";
    margin-right: 5px;
    border-radius: 2px;
    font-size: 18px;
    border: solid 1px #ebebeb;
    line-height: 40px;
    position: absolute;
    top: -13px;
    height: 15px !important;
    width: 15px;
}

.filter-item--check-box input:checked+.fa:after {
    font-family: 'FontAwesome';
    content: "\f00c";
    color: #fff;
    position: absolute;
    width: 15px;
    height: 15px;
    line-height: 15px;
    top: -13px;
    font-size: 12px;
    left: 2px;
}

.filter-item--check-box input:checked+.fa:before {
    border-color: #ff5722;
    background: #ff5722;
}

#sort-by {
    float: right;
    font-size: 12px;
    text-align: left;
}

#sort-by .button-asc,
#sort-by .button-desc {
    background-color: #f8f8f8;
    box-shadow: none;
    float: right;
    height: 30px;
    line-height: 28px;
    margin-left: 5px;
    text-align: center;
    width: 30px;
}

#sort-by label {
    float: left;
    line-height: 38px;
    font-size: 14px;
    margin-right: 6px;
    margin-bottom: 0;
    font-weight: 500;
}

#sort-by ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
    float: right;
}

#sort-by a:link,
#sort-by a:visited {
    color: #333;
    text-decoration: none;
}

#sort-by>ul>li {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: right center;
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
    text-indent: .01px;
    cursor: pointer;
    line-height: 36px;
    background-image: url(ico-selects.png) !important;
}

#sort-by li {
    background: none repeat scroll 0 0 #fff;
    cursor: pointer;
    margin: 0 auto;
    outline: medium none;
    padding: 0 20px;
    position: relative;
    width: 150px;
    float: left;
    color: #333;
    border: 1px solid #e1e1e1;
    font-size: 14px;
}

#sort-by li>a {
    display: inline-block;
    width: 100%;
    line-height: 36px;
}

#sort-by li li {
    width: 100%;
    margin-top: 0px;
    border-top: none;
    border-right: none;
    border-left: none;
}

#sort-by li li a:hover {
    color: #fff;
}

#sort-by li:hover {
    background-color: #fff;
}

#sort-by li li:hover {
    background-color: #ff5722;
    color: #fff;
}

#sort-by li li:hover a {
    color: #fff;
}

#sort-by ul ul {
    position: absolute;
    display: none;
    left: -1px;
    top: 35px;
    background: none repeat scroll 0 0 #F8F8F8;
    z-index: 10000;
    border-top: none;
    border: 1px #e1e1e1 solid;
    width: 150px;
}

#sort-by ul ul li:last-child {
    border-bottom: none;
}

#sort-by ul ul li a:hover,
#sort-by ul ul li a:focus {
    color: #fff;
}

#sort-by ul ul ul {
    position: absolute;
    left: 100%;
    top: -2px;
    border: solid 1px transparent;
}

#sort-by li:hover>ul {
    display: block;
}

.filter-container__selected-filter {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.filter-container__selected-filter-header {
    margin-bottom: 5px;
}

.filter-container__selected-filter-header-title {
    font-size: 18px;
    font-weight: bold;
    color: #0038AE;
}

.filter-container__clear-all {
    float: right;
    color: #333;
    margin-top: 3px;
}

.filter-container__selected-filter-item {
    padding: 3px 0;
}

.filter-container__selected-filter-item>a {
    color: #333;
    font-size: 0.92857em;
}

.filter-container__selected-filter-item .fa {
    margin-right: 10px;
    color: #F44336;
}

/*============================================================================
14. POPUP CART NEW
==============================================================================*/
#popup-cart-desktop {
    width: 800px;
    background: #fff;
    float: none;
    margin: 0 auto;
    padding: 0;
    position: relative;
    margin-top: 50px;
    max-width: calc(100% - 20px);
}

#popup-cart-desktop .title-popup-cart {
    font-size: 14px;
    padding-right: 15px;
    font-weight: 500;
    padding: 10px;
    background: #ff5722;
    color: #fff;
}

#popup-cart-desktop .title-popup-cart i {
    color: #fff;
}

#popup-cart-desktop .title-popup-cart .cart-popup-name a {
    color: #fff000 !important;
    font-weight: 500;
}

#popup-cart-desktop .title-quantity-popup {
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    padding: 10px;
}

#popup-cart-desktop .title-quantity-popup .fa-shopping-cart {
    color: #ff5722;
    font-size: 25px;
}

#popup-cart-desktop .title-quantity-popup .fa-caret-right {
    font-size: 14px;
}

#popup-cart-desktop .content-popup-cart .thead-popup {
    background: #f7f7f7;
    float: left;
    width: 100%;
    clear: both;
    padding: 0 10px;
}

#popup-cart-desktop .content-popup-cart .thead-popup>div {
    float: left;
    padding: 6px 5px;
    font-size: 13px;
    border-left: 1px solid #fff;
    font-weight: 500;
}

#popup-cart-desktop .content-popup-cart .thead-popup>div:first-child {
    border-left: none;
}

#popup-cart-desktop .content-popup-cart .tbody-popup {
    width: 100%;
    float: left;
    clear: both;
    max-height: 280px;
    overflow-x: auto;
    border: 1px solid #f7f7f7;
    border-top: none;
}

#popup-cart-desktop .content-popup-cart .tbody-popup::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background-color: #F5F5F5;
}

#popup-cart-desktop .content-popup-cart .tbody-popup::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

#popup-cart-desktop .content-popup-cart .tbody-popup::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    background-color: #e5e5e5;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup {
    width: 100%;
    float: left;
    clear: both;
    border-bottom: 1px dotted #ddd;
    padding: 0 10px;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup:last-child {
    border-bottom: none;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup p {
    margin-bottom: 0;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup>div {
    float: left;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-image {
    padding: 10px;
    float: left;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-image img {
    border: 1px solid #d2d2d2;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info {
    padding: 10px 0;
    padding-left: 100px;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info .item-name a {
    display: block;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info .item-name a:hover {
    color: #ff5722;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info .variant-title-popup {
    font-size: 13px;
    margin-bottom: 5px;
    color: #333333;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-info .item-remove a {
    font-size: 13px;
    color: #888;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price {
    padding: 10px;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price span {
    display: block;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price .price {
    color: #333;
    font-size: 12px;
    font-weight: 500;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price .compare-price {
    color: #333;
    font-size: 12px;
    text-decoration: line-through;
    font-weight: 500;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .item-price .compare-divide {
    font-size: 12px;
    color: #d71515;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .items-count {
    border: 1px solid #ddd;
    outline: none;
    background: #fff;
    height: 24px;
    margin-top: 10px;
    width: 23px;
    text-align: center;
    vertical-align: top;
    padding: 0;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .items-count.btn-minus {
    border-radius: 3px 0 0 3px;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .items-count.btn-plus {
    border-radius: 0 3px 3px 0;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .number-sidebar {
    border: 1px solid #ddd;
    height: 24px;
    margin-left: -1px;
    text-align: center;
    width: 24px;
    vertical-align: top;
    margin-right: -1px;
    margin-top: 10px;
    display: inline-block;
    min-height: 24px;
    padding: 0;
    border-radius: 0;
}

#popup-cart-desktop .content-popup-cart .tbody-popup .item-popup .cart-price {
    display: block;
    font-weight: 500;
    padding: 10px;
    font-size: 12px;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup {
    width: 100%;
    float: left;
    clear: both;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 {
    padding: 10px;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-ship {
    font-size: 13px;
    width: 320px;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-ship img {
    float: left;
    margin-right: 10px;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-ship p {
    line-height: 20px;
    margin-bottom: 0;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-total p {
    font-size: 14px;
    font-weight: 500;
    padding: 0px 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-total p .total-price {
    color: #ff5722;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popupcon a:hover,
#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-1 .popupcon a:focus {
    cursor: pointer;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 {
    padding: 10px;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 a {
    cursor: pointer;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 .button.btn-continue {
    background: #f6f7f9;
    font-size: 14px;
    float: left;
    border: 1px solid #ff5722;
    outline: none;
    color: #ff5722;
    padding: 10px;
    width: 160px;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 .button.btn-proceed-checkout {
    background: #ff5722;
    font-size: 14px;
    display: block;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    color: #fff;
    width: 100%;
    font-weight: 500;
}

#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 .button.btn-proceed-checkout:hover,
#popup-cart-desktop .content-popup-cart .tfoot-popup .tfoot-popup-2 .button.btn-proceed-checkout:focus {
    background: #ee3900;
}

#popup-cart-desktop .close-window {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: #000;
    border-radius: 50%;
    z-index: 8040;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 25px;
}

.fancybox-skin {
    background: #fff !important;
}

.modal-content {
    border: none;
    box-shadow: none;
    border-radius: 0.5rem;
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
}

.modal-header {
    background-color: #ff5722;
    color: #fff;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

@media (max-width: 480px) {
    .modal-header {
        padding: 10px;
    }
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-header .close {
    margin-top: -2px;
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.modal-header .modal-title {
    padding-left: 6rem;
    position: relative;
    min-height: 44px;
    font-weight: normal;
    font-size: 18px;
    line-height: normal;
    margin: 0;
    color: #fff;
}

@media (max-width: 480px) {
    .modal-header .modal-title {
        font-size: 16px;
        min-height: 34px;
        padding-left: 40px;
        line-height: 34px;
    }
}

.modal-header .modal-title span {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    font-size: 23px;
    text-align: center;
    line-height: 44px;
    color: #ff5722;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background-color: #fff;
}

@media (max-width: 480px) {
    .modal-header .modal-title span {
        height: 34px;
        width: 34px;
        line-height: 34px;
    }
}

.media:first-child {
    margin-top: 0;
}

.btn-outline-red {
    background: #fff;
    color: #ff5722 !important;
    font-size: 17px;
    line-height: normal;
    padding: 0px 15px;
    border-radius: 3px;
    border: 1px solid #ff5722;
    text-align: center;
    margin-top: 1.5rem;
}

.btn-red {
    background: #ff5722;
    border: 1px solid #ff5722;
    color: #fff !important;
    font-size: 17px;
    line-height: 40px;
    height: 40px;
    padding: 0px 15px;
    border-radius: 3px;
    border: none;
    text-align: center;
    margin-top: 1.5rem;
}

.media .media-left {
    padding-right: 1em;
}

.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top;
}

.media .thumb-1x1 {
    width: 7.7rem;
}

/*============================================================================
15. CSS FOR CONFIG
==============================================================================*/
body {
    background: #fff;
}

/*Home page*/
.awe-section-1 {
    margin-bottom: 0;
}

.awe-section-2 {
    margin-bottom: 0;
}

.awe-section-3 {
    margin-bottom: 0;
}

.awe-section-4 {
    margin-bottom: 0;
}

.awe-section-5 {
    margin-bottom: 0;
}

.awe-section-6 {
    margin-bottom: 0;
}

.awe-section-7 {
    margin-bottom: 0;
}

.awe-section-8 {
    margin-bottom: 0;
}

.awe-section-9 {
    margin-bottom: 0;
}

/*  ################################################################
NOTE:

Trong base viết sẵn một số css chung cho theme + css cho một số chức năng trong theme.
Hiện tại thì hầu hết những chức năng này sẽ luôn có trong theme(một số chức năng thì có bật tắt).
Mọi người lúc triển khai nếu khách không dùng một số chức năng nào thì có thể vào xóa css cho nhẹ.
Có vấn đề gì thắc mắc hoặc có điều gì chưa hợp lý, mọi người có thể hỏi hoặc góp ý cho mình.

################################################################# */
/*!
*  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
*  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
@font-face {
    font-family: 'FontAwesome';
    src: url(fonts/fontawesome-webfont.woff?v=497);
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.85714286em;
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-glass:before {
    content: "\f000";
}

.fa-music:before {
    content: "\f001";
}

.fa-search:before {
    content: "\f002";
}

.fa-envelope-o:before {
    content: "\f003";
}

.fa-heart:before {
    content: "\f004";
}

.fa-star:before {
    content: "\f005";
}

.fa-star-o:before {
    content: "\f006";
}

.fa-user:before {
    content: "\f007";
}

.fa-film:before {
    content: "\f008";
}

.fa-th-large:before {
    content: "\f009";
}

.fa-th:before {
    content: "\f00a";
}

.fa-th-list:before {
    content: "\f00b";
}

.fa-check:before {
    content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d";
}

.fa-search-plus:before {
    content: "\f00e";
}

.fa-search-minus:before {
    content: "\f010";
}

.fa-power-off:before {
    content: "\f011";
}

.fa-signal:before {
    content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013";
}

.fa-trash-o:before {
    content: "\f014";
}

.fa-home:before {
    content: "\f015";
}

.fa-file-o:before {
    content: "\f016";
}

.fa-clock-o:before {
    content: "\f017";
}

.fa-road:before {
    content: "\f018";
}

.fa-download:before {
    content: "\f019";
}

.fa-arrow-circle-o-down:before {
    content: "\f01a";
}

.fa-arrow-circle-o-up:before {
    content: "\f01b";
}

.fa-inbox:before {
    content: "\f01c";
}

.fa-play-circle-o:before {
    content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e";
}

.fa-refresh:before {
    content: "\f021";
}

.fa-list-alt:before {
    content: "\f022";
}

.fa-lock:before {
    content: "\f023";
}

.fa-flag:before {
    content: "\f024";
}

.fa-headphones:before {
    content: "\f025";
}

.fa-volume-off:before {
    content: "\f026";
}

.fa-volume-down:before {
    content: "\f027";
}

.fa-volume-up:before {
    content: "\f028";
}

.fa-qrcode:before {
    content: "\f029";
}

.fa-barcode:before {
    content: "\f02a";
}

.fa-tag:before {
    content: "\f02b";
}

.fa-tags:before {
    content: "\f02c";
}

.fa-book:before {
    content: "\f02d";
}

.fa-bookmark:before {
    content: "\f02e";
}

.fa-print:before {
    content: "\f02f";
}

.fa-camera:before {
    content: "\f030";
}

.fa-font:before {
    content: "\f031";
}

.fa-bold:before {
    content: "\f032";
}

.fa-italic:before {
    content: "\f033";
}

.fa-text-height:before {
    content: "\f034";
}

.fa-text-width:before {
    content: "\f035";
}

.fa-align-left:before {
    content: "\f036";
}

.fa-align-center:before {
    content: "\f037";
}

.fa-align-right:before {
    content: "\f038";
}

.fa-align-justify:before {
    content: "\f039";
}

.fa-list:before {
    content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b";
}

.fa-indent:before {
    content: "\f03c";
}

.fa-video-camera:before {
    content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e";
}

.fa-pencil:before {
    content: "\f040";
}

.fa-map-marker:before {
    content: "\f041";
}

.fa-adjust:before {
    content: "\f042";
}

.fa-tint:before {
    content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
}

.fa-share-square-o:before {
    content: "\f045";
}

.fa-check-square-o:before {
    content: "\f046";
}

.fa-arrows:before {
    content: "\f047";
}

.fa-step-backward:before {
    content: "\f048";
}

.fa-fast-backward:before {
    content: "\f049";
}

.fa-backward:before {
    content: "\f04a";
}

.fa-play:before {
    content: "\f04b";
}

.fa-pause:before {
    content: "\f04c";
}

.fa-stop:before {
    content: "\f04d";
}

.fa-forward:before {
    content: "\f04e";
}

.fa-fast-forward:before {
    content: "\f050";
}

.fa-step-forward:before {
    content: "\f051";
}

.fa-eject:before {
    content: "\f052";
}

.fa-chevron-left:before {
    content: "\f053";
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-plus-circle:before {
    content: "\f055";
}

.fa-minus-circle:before {
    content: "\f056";
}

.fa-times-circle:before {
    content: "\f057";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-question-circle:before {
    content: "\f059";
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-crosshairs:before {
    content: "\f05b";
}

.fa-times-circle-o:before {
    content: "\f05c";
}

.fa-check-circle-o:before {
    content: "\f05d";
}

.fa-ban:before {
    content: "\f05e";
}

.fa-arrow-left:before {
    content: "\f060";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-arrow-up:before {
    content: "\f062";
}

.fa-arrow-down:before {
    content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064";
}

.fa-expand:before {
    content: "\f065";
}

.fa-compress:before {
    content: "\f066";
}

.fa-plus:before {
    content: "\f067";
}

.fa-minus:before {
    content: "\f068";
}

.fa-asterisk:before {
    content: "\f069";
}

.fa-exclamation-circle:before {
    content: "\f06a";
}

.fa-gift:before {
    content: "\f06b";
}

.fa-leaf:before {
    content: "\f06c";
}

.fa-fire:before {
    content: "\f06d";
}

.fa-eye:before {
    content: "\f06e";
}

.fa-eye-slash:before {
    content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071";
}

.fa-plane:before {
    content: "\f072";
}

.fa-calendar:before {
    content: "\f073";
}

.fa-random:before {
    content: "\f074";
}

.fa-comment:before {
    content: "\f075";
}

.fa-magnet:before {
    content: "\f076";
}

.fa-chevron-up:before {
    content: "\f077";
}

.fa-chevron-down:before {
    content: "\f078";
}

.fa-retweet:before {
    content: "\f079";
}

.fa-shopping-cart:before {
    content: "\f07a";
}

.fa-folder:before {
    content: "\f07b";
}

.fa-folder-open:before {
    content: "\f07c";
}

.fa-arrows-v:before {
    content: "\f07d";
}

.fa-arrows-h:before {
    content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080";
}

.fa-twitter-square:before {
    content: "\f081";
}

.fa-facebook-square:before {
    content: "\f082";
}

.fa-camera-retro:before {
    content: "\f083";
}

.fa-key:before {
    content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085";
}

.fa-comments:before {
    content: "\f086";
}

.fa-thumbs-o-up:before {
    content: "\f087";
}

.fa-thumbs-o-down:before {
    content: "\f088";
}

.fa-star-half:before {
    content: "\f089";
}

.fa-heart-o:before {
    content: "\f08a";
}

.fa-sign-out:before {
    content: "\f08b";
}

.fa-linkedin-square:before {
    content: "\f08c";
}

.fa-thumb-tack:before {
    content: "\f08d";
}

.fa-external-link:before {
    content: "\f08e";
}

.fa-sign-in:before {
    content: "\f090";
}

.fa-trophy:before {
    content: "\f091";
}

.fa-github-square:before {
    content: "\f092";
}

.fa-upload:before {
    content: "\f093";
}

.fa-lemon-o:before {
    content: "\f094";
}

.fa-phone:before {
    content: "\f095";
}

.fa-square-o:before {
    content: "\f096";
}

.fa-bookmark-o:before {
    content: "\f097";
}

.fa-phone-square:before {
    content: "\f098";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a";
}

.fa-github:before {
    content: "\f09b";
}

.fa-unlock:before {
    content: "\f09c";
}

.fa-credit-card:before {
    content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e";
}

.fa-hdd-o:before {
    content: "\f0a0";
}

.fa-bullhorn:before {
    content: "\f0a1";
}

.fa-bell:before {
    content: "\f0f3";
}

.fa-certificate:before {
    content: "\f0a3";
}

.fa-hand-o-right:before {
    content: "\f0a4";
}

.fa-hand-o-left:before {
    content: "\f0a5";
}

.fa-hand-o-up:before {
    content: "\f0a6";
}

.fa-hand-o-down:before {
    content: "\f0a7";
}

.fa-arrow-circle-left:before {
    content: "\f0a8";
}

.fa-arrow-circle-right:before {
    content: "\f0a9";
}

.fa-arrow-circle-up:before {
    content: "\f0aa";
}

.fa-arrow-circle-down:before {
    content: "\f0ab";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-wrench:before {
    content: "\f0ad";
}

.fa-tasks:before {
    content: "\f0ae";
}

.fa-filter:before {
    content: "\f0b0";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-arrows-alt:before {
    content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1";
}

.fa-cloud:before {
    content: "\f0c2";
}

.fa-flask:before {
    content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5";
}

.fa-paperclip:before {
    content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7";
}

.fa-square:before {
    content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9";
}

.fa-list-ul:before {
    content: "\f0ca";
}

.fa-list-ol:before {
    content: "\f0cb";
}

.fa-strikethrough:before {
    content: "\f0cc";
}

.fa-underline:before {
    content: "\f0cd";
}

.fa-table:before {
    content: "\f0ce";
}

.fa-magic:before {
    content: "\f0d0";
}

.fa-truck:before {
    content: "\f0d1";
}

.fa-pinterest:before {
    content: "\f0d2";
}

.fa-pinterest-square:before {
    content: "\f0d3";
}

.fa-google-plus-square:before {
    content: "\f0d4";
}

.fa-google-plus:before {
    content: "\f0d5";
}

.fa-money:before {
    content: "\f0d6";
}

.fa-caret-down:before {
    content: "\f0d7";
}

.fa-caret-up:before {
    content: "\f0d8";
}

.fa-caret-left:before {
    content: "\f0d9";
}

.fa-caret-right:before {
    content: "\f0da";
}

.fa-columns:before {
    content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-linkedin:before {
    content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4";
}

.fa-comment-o:before {
    content: "\f0e5";
}

.fa-comments-o:before {
    content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7";
}

.fa-sitemap:before {
    content: "\f0e8";
}

.fa-umbrella:before {
    content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea";
}

.fa-lightbulb-o:before {
    content: "\f0eb";
}

.fa-exchange:before {
    content: "\f0ec";
}

.fa-cloud-download:before {
    content: "\f0ed";
}

.fa-cloud-upload:before {
    content: "\f0ee";
}

.fa-user-md:before {
    content: "\f0f0";
}

.fa-stethoscope:before {
    content: "\f0f1";
}

.fa-suitcase:before {
    content: "\f0f2";
}

.fa-bell-o:before {
    content: "\f0a2";
}

.fa-coffee:before {
    content: "\f0f4";
}

.fa-cutlery:before {
    content: "\f0f5";
}

.fa-file-text-o:before {
    content: "\f0f6";
}

.fa-building-o:before {
    content: "\f0f7";
}

.fa-hospital-o:before {
    content: "\f0f8";
}

.fa-ambulance:before {
    content: "\f0f9";
}

.fa-medkit:before {
    content: "\f0fa";
}

.fa-fighter-jet:before {
    content: "\f0fb";
}

.fa-beer:before {
    content: "\f0fc";
}

.fa-h-square:before {
    content: "\f0fd";
}

.fa-plus-square:before {
    content: "\f0fe";
}

.fa-angle-double-left:before {
    content: "\f100";
}

.fa-angle-double-right:before {
    content: "\f101";
}

.fa-angle-double-up:before {
    content: "\f102";
}

.fa-angle-double-down:before {
    content: "\f103";
}

.fa-angle-left:before {
    content: "\f104";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-angle-up:before {
    content: "\f106";
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-desktop:before {
    content: "\f108";
}

.fa-laptop:before {
    content: "\f109";
}

.fa-tablet:before {
    content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b";
}

.fa-circle-o:before {
    content: "\f10c";
}

.fa-quote-left:before {
    content: "\f10d";
}

.fa-quote-right:before {
    content: "\f10e";
}

.fa-spinner:before {
    content: "\f110";
}

.fa-circle:before {
    content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112";
}

.fa-github-alt:before {
    content: "\f113";
}

.fa-folder-o:before {
    content: "\f114";
}

.fa-folder-open-o:before {
    content: "\f115";
}

.fa-smile-o:before {
    content: "\f118";
}

.fa-frown-o:before {
    content: "\f119";
}

.fa-meh-o:before {
    content: "\f11a";
}

.fa-gamepad:before {
    content: "\f11b";
}

.fa-keyboard-o:before {
    content: "\f11c";
}

.fa-flag-o:before {
    content: "\f11d";
}

.fa-flag-checkered:before {
    content: "\f11e";
}

.fa-terminal:before {
    content: "\f120";
}

.fa-code:before {
    content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123";
}

.fa-location-arrow:before {
    content: "\f124";
}

.fa-crop:before {
    content: "\f125";
}

.fa-code-fork:before {
    content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127";
}

.fa-question:before {
    content: "\f128";
}

.fa-info:before {
    content: "\f129";
}

.fa-exclamation:before {
    content: "\f12a";
}

.fa-superscript:before {
    content: "\f12b";
}

.fa-subscript:before {
    content: "\f12c";
}

.fa-eraser:before {
    content: "\f12d";
}

.fa-puzzle-piece:before {
    content: "\f12e";
}

.fa-microphone:before {
    content: "\f130";
}

.fa-microphone-slash:before {
    content: "\f131";
}

.fa-shield:before {
    content: "\f132";
}

.fa-calendar-o:before {
    content: "\f133";
}

.fa-fire-extinguisher:before {
    content: "\f134";
}

.fa-rocket:before {
    content: "\f135";
}

.fa-maxcdn:before {
    content: "\f136";
}

.fa-chevron-circle-left:before {
    content: "\f137";
}

.fa-chevron-circle-right:before {
    content: "\f138";
}

.fa-chevron-circle-up:before {
    content: "\f139";
}

.fa-chevron-circle-down:before {
    content: "\f13a";
}

.fa-html5:before {
    content: "\f13b";
}

.fa-css3:before {
    content: "\f13c";
}

.fa-anchor:before {
    content: "\f13d";
}

.fa-unlock-alt:before {
    content: "\f13e";
}

.fa-bullseye:before {
    content: "\f140";
}

.fa-ellipsis-h:before {
    content: "\f141";
}

.fa-ellipsis-v:before {
    content: "\f142";
}

.fa-rss-square:before {
    content: "\f143";
}

.fa-play-circle:before {
    content: "\f144";
}

.fa-ticket:before {
    content: "\f145";
}

.fa-minus-square:before {
    content: "\f146";
}

.fa-minus-square-o:before {
    content: "\f147";
}

.fa-level-up:before {
    content: "\f148";
}

.fa-level-down:before {
    content: "\f149";
}

.fa-check-square:before {
    content: "\f14a";
}

.fa-pencil-square:before {
    content: "\f14b";
}

.fa-external-link-square:before {
    content: "\f14c";
}

.fa-share-square:before {
    content: "\f14d";
}

.fa-compass:before {
    content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153";
}

.fa-gbp:before {
    content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158";
}

.fa-won:before,
.fa-krw:before {
    content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a";
}

.fa-file:before {
    content: "\f15b";
}

.fa-file-text:before {
    content: "\f15c";
}

.fa-sort-alpha-asc:before {
    content: "\f15d";
}

.fa-sort-alpha-desc:before {
    content: "\f15e";
}

.fa-sort-amount-asc:before {
    content: "\f160";
}

.fa-sort-amount-desc:before {
    content: "\f161";
}

.fa-sort-numeric-asc:before {
    content: "\f162";
}

.fa-sort-numeric-desc:before {
    content: "\f163";
}

.fa-thumbs-up:before {
    content: "\f164";
}

.fa-thumbs-down:before {
    content: "\f165";
}

.fa-youtube-square:before {
    content: "\f166";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-xing:before {
    content: "\f168";
}

.fa-xing-square:before {
    content: "\f169";
}

.fa-youtube-play:before {
    content: "\f16a";
}

.fa-dropbox:before {
    content: "\f16b";
}

.fa-stack-overflow:before {
    content: "\f16c";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-flickr:before {
    content: "\f16e";
}

.fa-adn:before {
    content: "\f170";
}

.fa-bitbucket:before {
    content: "\f171";
}

.fa-bitbucket-square:before {
    content: "\f172";
}

.fa-tumblr:before {
    content: "\f173";
}

.fa-tumblr-square:before {
    content: "\f174";
}

.fa-long-arrow-down:before {
    content: "\f175";
}

.fa-long-arrow-up:before {
    content: "\f176";
}

.fa-long-arrow-left:before {
    content: "\f177";
}

.fa-long-arrow-right:before {
    content: "\f178";
}

.fa-apple:before {
    content: "\f179";
}

.fa-windows:before {
    content: "\f17a";
}

.fa-android:before {
    content: "\f17b";
}

.fa-linux:before {
    content: "\f17c";
}

.fa-dribbble:before {
    content: "\f17d";
}

.fa-skype:before {
    content: "\f17e";
}

.fa-foursquare:before {
    content: "\f180";
}

.fa-trello:before {
    content: "\f181";
}

.fa-female:before {
    content: "\f182";
}

.fa-male:before {
    content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184";
}

.fa-sun-o:before {
    content: "\f185";
}

.fa-moon-o:before {
    content: "\f186";
}

.fa-archive:before {
    content: "\f187";
}

.fa-bug:before {
    content: "\f188";
}

.fa-vk:before {
    content: "\f189";
}

.fa-weibo:before {
    content: "\f18a";
}

.fa-renren:before {
    content: "\f18b";
}

.fa-pagelines:before {
    content: "\f18c";
}

.fa-stack-exchange:before {
    content: "\f18d";
}

.fa-arrow-circle-o-right:before {
    content: "\f18e";
}

.fa-arrow-circle-o-left:before {
    content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191";
}

.fa-dot-circle-o:before {
    content: "\f192";
}

.fa-wheelchair:before {
    content: "\f193";
}

.fa-vimeo-square:before {
    content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195";
}

.fa-plus-square-o:before {
    content: "\f196";
}

.fa-space-shuttle:before {
    content: "\f197";
}

.fa-slack:before {
    content: "\f198";
}

.fa-envelope-square:before {
    content: "\f199";
}

.fa-wordpress:before {
    content: "\f19a";
}

.fa-openid:before {
    content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d";
}

.fa-yahoo:before {
    content: "\f19e";
}

.fa-google:before {
    content: "\f1a0";
}

.fa-reddit:before {
    content: "\f1a1";
}

.fa-reddit-square:before {
    content: "\f1a2";
}

.fa-stumbleupon-circle:before {
    content: "\f1a3";
}

.fa-stumbleupon:before {
    content: "\f1a4";
}

.fa-delicious:before {
    content: "\f1a5";
}

.fa-digg:before {
    content: "\f1a6";
}

.fa-pied-piper-pp:before {
    content: "\f1a7";
}

.fa-pied-piper-alt:before {
    content: "\f1a8";
}

.fa-drupal:before {
    content: "\f1a9";
}

.fa-joomla:before {
    content: "\f1aa";
}

.fa-language:before {
    content: "\f1ab";
}

.fa-fax:before {
    content: "\f1ac";
}

.fa-building:before {
    content: "\f1ad";
}

.fa-child:before {
    content: "\f1ae";
}

.fa-paw:before {
    content: "\f1b0";
}

.fa-spoon:before {
    content: "\f1b1";
}

.fa-cube:before {
    content: "\f1b2";
}

.fa-cubes:before {
    content: "\f1b3";
}

.fa-behance:before {
    content: "\f1b4";
}

.fa-behance-square:before {
    content: "\f1b5";
}

.fa-steam:before {
    content: "\f1b6";
}

.fa-steam-square:before {
    content: "\f1b7";
}

.fa-recycle:before {
    content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba";
}

.fa-tree:before {
    content: "\f1bb";
}

.fa-spotify:before {
    content: "\f1bc";
}

.fa-deviantart:before {
    content: "\f1bd";
}

.fa-soundcloud:before {
    content: "\f1be";
}

.fa-database:before {
    content: "\f1c0";
}

.fa-file-pdf-o:before {
    content: "\f1c1";
}

.fa-file-word-o:before {
    content: "\f1c2";
}

.fa-file-excel-o:before {
    content: "\f1c3";
}

.fa-file-powerpoint-o:before {
    content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8";
}

.fa-file-code-o:before {
    content: "\f1c9";
}

.fa-vine:before {
    content: "\f1ca";
}

.fa-codepen:before {
    content: "\f1cb";
}

.fa-jsfiddle:before {
    content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd";
}

.fa-circle-o-notch:before {
    content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1";
}

.fa-git-square:before {
    content: "\f1d2";
}

.fa-git:before {
    content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4";
}

.fa-tencent-weibo:before {
    content: "\f1d5";
}

.fa-qq:before {
    content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
}

.fa-history:before {
    content: "\f1da";
}

.fa-circle-thin:before {
    content: "\f1db";
}

.fa-header:before {
    content: "\f1dc";
}

.fa-paragraph:before {
    content: "\f1dd";
}

.fa-sliders:before {
    content: "\f1de";
}

.fa-share-alt:before {
    content: "\f1e0";
}

.fa-share-alt-square:before {
    content: "\f1e1";
}

.fa-bomb:before {
    content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3";
}

.fa-tty:before {
    content: "\f1e4";
}

.fa-binoculars:before {
    content: "\f1e5";
}

.fa-plug:before {
    content: "\f1e6";
}

.fa-slideshare:before {
    content: "\f1e7";
}

.fa-twitch:before {
    content: "\f1e8";
}

.fa-yelp:before {
    content: "\f1e9";
}

.fa-newspaper-o:before {
    content: "\f1ea";
}

.fa-wifi:before {
    content: "\f1eb";
}

.fa-calculator:before {
    content: "\f1ec";
}

.fa-paypal:before {
    content: "\f1ed";
}

.fa-google-wallet:before {
    content: "\f1ee";
}

.fa-cc-visa:before {
    content: "\f1f0";
}

.fa-cc-mastercard:before {
    content: "\f1f1";
}

.fa-cc-discover:before {
    content: "\f1f2";
}

.fa-cc-amex:before {
    content: "\f1f3";
}

.fa-cc-paypal:before {
    content: "\f1f4";
}

.fa-cc-stripe:before {
    content: "\f1f5";
}

.fa-bell-slash:before {
    content: "\f1f6";
}

.fa-bell-slash-o:before {
    content: "\f1f7";
}

.fa-trash:before {
    content: "\f1f8";
}

.fa-copyright:before {
    content: "\f1f9";
}

.fa-at:before {
    content: "\f1fa";
}

.fa-eyedropper:before {
    content: "\f1fb";
}

.fa-paint-brush:before {
    content: "\f1fc";
}

.fa-birthday-cake:before {
    content: "\f1fd";
}

.fa-area-chart:before {
    content: "\f1fe";
}

.fa-pie-chart:before {
    content: "\f200";
}

.fa-line-chart:before {
    content: "\f201";
}

.fa-lastfm:before {
    content: "\f202";
}

.fa-lastfm-square:before {
    content: "\f203";
}

.fa-toggle-off:before {
    content: "\f204";
}

.fa-toggle-on:before {
    content: "\f205";
}

.fa-bicycle:before {
    content: "\f206";
}

.fa-bus:before {
    content: "\f207";
}

.fa-ioxhost:before {
    content: "\f208";
}

.fa-angellist:before {
    content: "\f209";
}

.fa-cc:before {
    content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b";
}

.fa-meanpath:before {
    content: "\f20c";
}

.fa-buysellads:before {
    content: "\f20d";
}

.fa-connectdevelop:before {
    content: "\f20e";
}

.fa-dashcube:before {
    content: "\f210";
}

.fa-forumbee:before {
    content: "\f211";
}

.fa-leanpub:before {
    content: "\f212";
}

.fa-sellsy:before {
    content: "\f213";
}

.fa-shirtsinbulk:before {
    content: "\f214";
}

.fa-simplybuilt:before {
    content: "\f215";
}

.fa-skyatlas:before {
    content: "\f216";
}

.fa-cart-plus:before {
    content: "\f217";
}

.fa-cart-arrow-down:before {
    content: "\f218";
}

.fa-diamond:before {
    content: "\f219";
}

.fa-ship:before {
    content: "\f21a";
}

.fa-user-secret:before {
    content: "\f21b";
}

.fa-motorcycle:before {
    content: "\f21c";
}

.fa-street-view:before {
    content: "\f21d";
}

.fa-heartbeat:before {
    content: "\f21e";
}

.fa-venus:before {
    content: "\f221";
}

.fa-mars:before {
    content: "\f222";
}

.fa-mercury:before {
    content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224";
}

.fa-transgender-alt:before {
    content: "\f225";
}

.fa-venus-double:before {
    content: "\f226";
}

.fa-mars-double:before {
    content: "\f227";
}

.fa-venus-mars:before {
    content: "\f228";
}

.fa-mars-stroke:before {
    content: "\f229";
}

.fa-mars-stroke-v:before {
    content: "\f22a";
}

.fa-mars-stroke-h:before {
    content: "\f22b";
}

.fa-neuter:before {
    content: "\f22c";
}

.fa-genderless:before {
    content: "\f22d";
}

.fa-facebook-official:before {
    content: "\f230";
}

.fa-pinterest-p:before {
    content: "\f231";
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-server:before {
    content: "\f233";
}

.fa-user-plus:before {
    content: "\f234";
}

.fa-user-times:before {
    content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236";
}

.fa-viacoin:before {
    content: "\f237";
}

.fa-train:before {
    content: "\f238";
}

.fa-subway:before {
    content: "\f239";
}

.fa-medium:before {
    content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b";
}

.fa-optin-monster:before {
    content: "\f23c";
}

.fa-opencart:before {
    content: "\f23d";
}

.fa-expeditedssl:before {
    content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244";
}

.fa-mouse-pointer:before {
    content: "\f245";
}

.fa-i-cursor:before {
    content: "\f246";
}

.fa-object-group:before {
    content: "\f247";
}

.fa-object-ungroup:before {
    content: "\f248";
}

.fa-sticky-note:before {
    content: "\f249";
}

.fa-sticky-note-o:before {
    content: "\f24a";
}

.fa-cc-jcb:before {
    content: "\f24b";
}

.fa-cc-diners-club:before {
    content: "\f24c";
}

.fa-clone:before {
    content: "\f24d";
}

.fa-balance-scale:before {
    content: "\f24e";
}

.fa-hourglass-o:before {
    content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253";
}

.fa-hourglass:before {
    content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256";
}

.fa-hand-scissors-o:before {
    content: "\f257";
}

.fa-hand-lizard-o:before {
    content: "\f258";
}

.fa-hand-spock-o:before {
    content: "\f259";
}

.fa-hand-pointer-o:before {
    content: "\f25a";
}

.fa-hand-peace-o:before {
    content: "\f25b";
}

.fa-trademark:before {
    content: "\f25c";
}

.fa-registered:before {
    content: "\f25d";
}

.fa-creative-commons:before {
    content: "\f25e";
}

.fa-gg:before {
    content: "\f260";
}

.fa-gg-circle:before {
    content: "\f261";
}

.fa-tripadvisor:before {
    content: "\f262";
}

.fa-odnoklassniki:before {
    content: "\f263";
}

.fa-odnoklassniki-square:before {
    content: "\f264";
}

.fa-get-pocket:before {
    content: "\f265";
}

.fa-wikipedia-w:before {
    content: "\f266";
}

.fa-safari:before {
    content: "\f267";
}

.fa-chrome:before {
    content: "\f268";
}

.fa-firefox:before {
    content: "\f269";
}

.fa-opera:before {
    content: "\f26a";
}

.fa-internet-explorer:before {
    content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c";
}

.fa-contao:before {
    content: "\f26d";
}

.fa-500px:before {
    content: "\f26e";
}

.fa-amazon:before {
    content: "\f270";
}

.fa-calendar-plus-o:before {
    content: "\f271";
}

.fa-calendar-minus-o:before {
    content: "\f272";
}

.fa-calendar-times-o:before {
    content: "\f273";
}

.fa-calendar-check-o:before {
    content: "\f274";
}

.fa-industry:before {
    content: "\f275";
}

.fa-map-pin:before {
    content: "\f276";
}

.fa-map-signs:before {
    content: "\f277";
}

.fa-map-o:before {
    content: "\f278";
}

.fa-map:before {
    content: "\f279";
}

.fa-commenting:before {
    content: "\f27a";
}

.fa-commenting-o:before {
    content: "\f27b";
}

.fa-houzz:before {
    content: "\f27c";
}

.fa-vimeo:before {
    content: "\f27d";
}

.fa-black-tie:before {
    content: "\f27e";
}

.fa-fonticons:before {
    content: "\f280";
}

.fa-reddit-alien:before {
    content: "\f281";
}

.fa-edge:before {
    content: "\f282";
}

.fa-credit-card-alt:before {
    content: "\f283";
}

.fa-codiepie:before {
    content: "\f284";
}

.fa-modx:before {
    content: "\f285";
}

.fa-fort-awesome:before {
    content: "\f286";
}

.fa-usb:before {
    content: "\f287";
}

.fa-product-hunt:before {
    content: "\f288";
}

.fa-mixcloud:before {
    content: "\f289";
}

.fa-scribd:before {
    content: "\f28a";
}

.fa-pause-circle:before {
    content: "\f28b";
}

.fa-pause-circle-o:before {
    content: "\f28c";
}

.fa-stop-circle:before {
    content: "\f28d";
}

.fa-stop-circle-o:before {
    content: "\f28e";
}

.fa-shopping-bag:before {
    content: "\f290";
}

.fa-shopping-basket:before {
    content: "\f291";
}

.fa-hashtag:before {
    content: "\f292";
}

.fa-bluetooth:before {
    content: "\f293";
}

.fa-bluetooth-b:before {
    content: "\f294";
}

.fa-percent:before {
    content: "\f295";
}

.fa-gitlab:before {
    content: "\f296";
}

.fa-wpbeginner:before {
    content: "\f297";
}

.fa-wpforms:before {
    content: "\f298";
}

.fa-envira:before {
    content: "\f299";
}

.fa-universal-access:before {
    content: "\f29a";
}

.fa-wheelchair-alt:before {
    content: "\f29b";
}

.fa-question-circle-o:before {
    content: "\f29c";
}

.fa-blind:before {
    content: "\f29d";
}

.fa-audio-description:before {
    content: "\f29e";
}

.fa-volume-control-phone:before {
    content: "\f2a0";
}

.fa-braille:before {
    content: "\f2a1";
}

.fa-assistive-listening-systems:before {
    content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4";
}

.fa-glide:before {
    content: "\f2a5";
}

.fa-glide-g:before {
    content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7";
}

.fa-low-vision:before {
    content: "\f2a8";
}

.fa-viadeo:before {
    content: "\f2a9";
}

.fa-viadeo-square:before {
    content: "\f2aa";
}

.fa-snapchat:before {
    content: "\f2ab";
}

.fa-snapchat-ghost:before {
    content: "\f2ac";
}

.fa-snapchat-square:before {
    content: "\f2ad";
}

.fa-pied-piper:before {
    content: "\f2ae";
}

.fa-first-order:before {
    content: "\f2b0";
}

.fa-yoast:before {
    content: "\f2b1";
}

.fa-themeisle:before {
    content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4";
}

.fa-handshake-o:before {
    content: "\f2b5";
}

.fa-envelope-open:before {
    content: "\f2b6";
}

.fa-envelope-open-o:before {
    content: "\f2b7";
}

.fa-linode:before {
    content: "\f2b8";
}

.fa-address-book:before {
    content: "\f2b9";
}

.fa-address-book-o:before {
    content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "\f2bc";
}

.fa-user-circle:before {
    content: "\f2bd";
}

.fa-user-circle-o:before {
    content: "\f2be";
}

.fa-user-o:before {
    content: "\f2c0";
}

.fa-id-badge:before {
    content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3";
}

.fa-quora:before {
    content: "\f2c4";
}

.fa-free-code-camp:before {
    content: "\f2c5";
}

.fa-telegram:before {
    content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb";
}

.fa-shower:before {
    content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "\f2cd";
}

.fa-podcast:before {
    content: "\f2ce";
}

.fa-window-maximize:before {
    content: "\f2d0";
}

.fa-window-minimize:before {
    content: "\f2d1";
}

.fa-window-restore:before {
    content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4";
}

.fa-bandcamp:before {
    content: "\f2d5";
}

.fa-grav:before {
    content: "\f2d6";
}

.fa-etsy:before {
    content: "\f2d7";
}

.fa-imdb:before {
    content: "\f2d8";
}

.fa-ravelry:before {
    content: "\f2d9";
}

.fa-eercast:before {
    content: "\f2da";
}

.fa-microchip:before {
    content: "\f2db";
}

.fa-snowflake-o:before {
    content: "\f2dc";
}

.fa-superpowers:before {
    content: "\f2dd";
}

.fa-wpexplorer:before {
    content: "\f2de";
}

.fa-meetup:before {
    content: "\f2e0";
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/*!
Ionicons, v4.1.0
Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
https://twitter.com/benjsperry  https://twitter.com/ionicframework
MIT License: https://github.com/driftyco/ionicons

Android-style icons originally built by Google’s
Material Design Icons: https://github.com/google/material-design-icons
used under CC BY http://creativecommons.org/licenses/by/4.0/
Modified icons to fit ionicon’s grid from original.
*/
@font-face {
    font-family: "Ionicons";
    src: url(fonts/ionicons.woff?v=497);
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

.ion,
.ionicons,
.ion-ios-add:before,
.ion-ios-add-circle:before,
.ion-ios-add-circle-outline:before,
.ion-ios-airplane:before,
.ion-ios-alarm:before,
.ion-ios-albums:before,
.ion-ios-alert:before,
.ion-ios-american-football:before,
.ion-ios-analytics:before,
.ion-ios-aperture:before,
.ion-ios-apps:before,
.ion-ios-appstore:before,
.ion-ios-archive:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-dropdown:before,
.ion-ios-arrow-dropdown-circle:before,
.ion-ios-arrow-dropleft:before,
.ion-ios-arrow-dropleft-circle:before,
.ion-ios-arrow-dropright:before,
.ion-ios-arrow-dropright-circle:before,
.ion-ios-arrow-dropup:before,
.ion-ios-arrow-dropup-circle:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-round-back:before,
.ion-ios-arrow-round-down:before,
.ion-ios-arrow-round-forward:before,
.ion-ios-arrow-round-up:before,
.ion-ios-arrow-up:before,
.ion-ios-at:before,
.ion-ios-attach:before,
.ion-ios-backspace:before,
.ion-ios-barcode:before,
.ion-ios-baseball:before,
.ion-ios-basket:before,
.ion-ios-basketball:before,
.ion-ios-battery-charging:before,
.ion-ios-battery-dead:before,
.ion-ios-battery-full:before,
.ion-ios-beaker:before,
.ion-ios-bed:before,
.ion-ios-beer:before,
.ion-ios-bicycle:before,
.ion-ios-bluetooth:before,
.ion-ios-boat:before,
.ion-ios-body:before,
.ion-ios-bonfire:before,
.ion-ios-book:before,
.ion-ios-bookmark:before,
.ion-ios-bookmarks:before,
.ion-ios-bowtie:before,
.ion-ios-briefcase:before,
.ion-ios-browsers:before,
.ion-ios-brush:before,
.ion-ios-bug:before,
.ion-ios-build:before,
.ion-ios-bulb:before,
.ion-ios-bus:before,
.ion-ios-business:before,
.ion-ios-cafe:before,
.ion-ios-calculator:before,
.ion-ios-calendar:before,
.ion-ios-call:before,
.ion-ios-camera:before,
.ion-ios-car:before,
.ion-ios-card:before,
.ion-ios-cart:before,
.ion-ios-cash:before,
.ion-ios-cellular:before,
.ion-ios-chatboxes:before,
.ion-ios-chatbubbles:before,
.ion-ios-checkbox:before,
.ion-ios-checkbox-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-circle:before,
.ion-ios-checkmark-circle-outline:before,
.ion-ios-clipboard:before,
.ion-ios-clock:before,
.ion-ios-close:before,
.ion-ios-close-circle:before,
.ion-ios-close-circle-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-circle:before,
.ion-ios-cloud-done:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-code:before,
.ion-ios-code-download:before,
.ion-ios-code-working:before,
.ion-ios-cog:before,
.ion-ios-color-fill:before,
.ion-ios-color-filter:before,
.ion-ios-color-palette:before,
.ion-ios-color-wand:before,
.ion-ios-compass:before,
.ion-ios-construct:before,
.ion-ios-contact:before,
.ion-ios-contacts:before,
.ion-ios-contract:before,
.ion-ios-contrast:before,
.ion-ios-copy:before,
.ion-ios-create:before,
.ion-ios-crop:before,
.ion-ios-cube:before,
.ion-ios-cut:before,
.ion-ios-desktop:before,
.ion-ios-disc:before,
.ion-ios-document:before,
.ion-ios-done-all:before,
.ion-ios-download:before,
.ion-ios-easel:before,
.ion-ios-egg:before,
.ion-ios-exit:before,
.ion-ios-expand:before,
.ion-ios-eye:before,
.ion-ios-eye-off:before,
.ion-ios-fastforward:before,
.ion-ios-female:before,
.ion-ios-filing:before,
.ion-ios-film:before,
.ion-ios-finger-print:before,
.ion-ios-fitness:before,
.ion-ios-flag:before,
.ion-ios-flame:before,
.ion-ios-flash:before,
.ion-ios-flash-off:before,
.ion-ios-flashlight:before,
.ion-ios-flask:before,
.ion-ios-flower:before,
.ion-ios-folder:before,
.ion-ios-folder-open:before,
.ion-ios-football:before,
.ion-ios-funnel:before,
.ion-ios-gift:before,
.ion-ios-git-branch:before,
.ion-ios-git-commit:before,
.ion-ios-git-compare:before,
.ion-ios-git-merge:before,
.ion-ios-git-network:before,
.ion-ios-git-pull-request:before,
.ion-ios-glasses:before,
.ion-ios-globe:before,
.ion-ios-grid:before,
.ion-ios-hammer:before,
.ion-ios-hand:before,
.ion-ios-happy:before,
.ion-ios-headset:before,
.ion-ios-heart:before,
.ion-ios-heart-dislike:before,
.ion-ios-heart-empty:before,
.ion-ios-heart-half:before,
.ion-ios-help:before,
.ion-ios-help-buoy:before,
.ion-ios-help-circle:before,
.ion-ios-help-circle-outline:before,
.ion-ios-home:before,
.ion-ios-hourglass:before,
.ion-ios-ice-cream:before,
.ion-ios-image:before,
.ion-ios-images:before,
.ion-ios-infinite:before,
.ion-ios-information:before,
.ion-ios-information-circle:before,
.ion-ios-information-circle-outline:before,
.ion-ios-jet:before,
.ion-ios-journal:before,
.ion-ios-key:before,
.ion-ios-keypad:before,
.ion-ios-laptop:before,
.ion-ios-leaf:before,
.ion-ios-link:before,
.ion-ios-list:before,
.ion-ios-list-box:before,
.ion-ios-locate:before,
.ion-ios-lock:before,
.ion-ios-log-in:before,
.ion-ios-log-out:before,
.ion-ios-magnet:before,
.ion-ios-mail:before,
.ion-ios-mail-open:before,
.ion-ios-mail-unread:before,
.ion-ios-male:before,
.ion-ios-man:before,
.ion-ios-map:before,
.ion-ios-medal:before,
.ion-ios-medical:before,
.ion-ios-medkit:before,
.ion-ios-megaphone:before,
.ion-ios-menu:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-microphone:before,
.ion-ios-moon:before,
.ion-ios-more:before,
.ion-ios-move:before,
.ion-ios-musical-note:before,
.ion-ios-musical-notes:before,
.ion-ios-navigate:before,
.ion-ios-notifications:before,
.ion-ios-notifications-off:before,
.ion-ios-notifications-outline:before,
.ion-ios-nuclear:before,
.ion-ios-nutrition:before,
.ion-ios-open:before,
.ion-ios-options:before,
.ion-ios-outlet:before,
.ion-ios-paper:before,
.ion-ios-paper-plane:before,
.ion-ios-partly-sunny:before,
.ion-ios-pause:before,
.ion-ios-paw:before,
.ion-ios-people:before,
.ion-ios-person:before,
.ion-ios-person-add:before,
.ion-ios-phone-landscape:before,
.ion-ios-phone-portrait:before,
.ion-ios-photos:before,
.ion-ios-pie:before,
.ion-ios-pin:before,
.ion-ios-pint:before,
.ion-ios-pizza:before,
.ion-ios-planet:before,
.ion-ios-play:before,
.ion-ios-play-circle:before,
.ion-ios-podium:before,
.ion-ios-power:before,
.ion-ios-pricetag:before,
.ion-ios-pricetags:before,
.ion-ios-print:before,
.ion-ios-pulse:before,
.ion-ios-qr-scanner:before,
.ion-ios-quote:before,
.ion-ios-radio:before,
.ion-ios-radio-button-off:before,
.ion-ios-radio-button-on:before,
.ion-ios-rainy:before,
.ion-ios-recording:before,
.ion-ios-redo:before,
.ion-ios-refresh:before,
.ion-ios-refresh-circle:before,
.ion-ios-remove:before,
.ion-ios-remove-circle:before,
.ion-ios-remove-circle-outline:before,
.ion-ios-reorder:before,
.ion-ios-repeat:before,
.ion-ios-resize:before,
.ion-ios-restaurant:before,
.ion-ios-return-left:before,
.ion-ios-return-right:before,
.ion-ios-reverse-camera:before,
.ion-ios-rewind:before,
.ion-ios-ribbon:before,
.ion-ios-rocket:before,
.ion-ios-rose:before,
.ion-ios-sad:before,
.ion-ios-save:before,
.ion-ios-school:before,
.ion-ios-search:before,
.ion-ios-send:before,
.ion-ios-settings:before,
.ion-ios-share:before,
.ion-ios-share-alt:before,
.ion-ios-shirt:before,
.ion-ios-shuffle:before,
.ion-ios-skip-backward:before,
.ion-ios-skip-forward:before,
.ion-ios-snow:before,
.ion-ios-speedometer:before,
.ion-ios-square:before,
.ion-ios-square-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-outline:before,
.ion-ios-stats:before,
.ion-ios-stopwatch:before,
.ion-ios-subway:before,
.ion-ios-sunny:before,
.ion-ios-swap:before,
.ion-ios-switch:before,
.ion-ios-sync:before,
.ion-ios-tablet-landscape:before,
.ion-ios-tablet-portrait:before,
.ion-ios-tennisball:before,
.ion-ios-text:before,
.ion-ios-thermometer:before,
.ion-ios-thumbs-down:before,
.ion-ios-thumbs-up:before,
.ion-ios-thunderstorm:before,
.ion-ios-time:before,
.ion-ios-timer:before,
.ion-ios-today:before,
.ion-ios-train:before,
.ion-ios-transgender:before,
.ion-ios-trash:before,
.ion-ios-trending-down:before,
.ion-ios-trending-up:before,
.ion-ios-trophy:before,
.ion-ios-tv:before,
.ion-ios-umbrella:before,
.ion-ios-undo:before,
.ion-ios-unlock:before,
.ion-ios-videocam:before,
.ion-ios-volume-high:before,
.ion-ios-volume-low:before,
.ion-ios-volume-mute:before,
.ion-ios-volume-off:before,
.ion-ios-walk:before,
.ion-ios-wallet:before,
.ion-ios-warning:before,
.ion-ios-watch:before,
.ion-ios-water:before,
.ion-ios-wifi:before,
.ion-ios-wine:before,
.ion-ios-woman:before,
.ion-logo-android:before,
.ion-logo-angular:before,
.ion-logo-apple:before,
.ion-logo-bitbucket:before,
.ion-logo-bitcoin:before,
.ion-logo-buffer:before,
.ion-logo-chrome:before,
.ion-logo-closed-captioning:before,
.ion-logo-codepen:before,
.ion-logo-css3:before,
.ion-logo-designernews:before,
.ion-logo-dribbble:before,
.ion-logo-dropbox:before,
.ion-logo-euro:before,
.ion-logo-facebook:before,
.ion-logo-flickr:before,
.ion-logo-foursquare:before,
.ion-logo-freebsd-devil:before,
.ion-logo-game-controller-a:before,
.ion-logo-game-controller-b:before,
.ion-logo-github:before,
.ion-logo-google:before,
.ion-logo-googleplus:before,
.ion-logo-hackernews:before,
.ion-logo-html5:before,
.ion-logo-instagram:before,
.ion-logo-ionic:before,
.ion-logo-ionitron:before,
.ion-logo-javascript:before,
.ion-logo-linkedin:before,
.ion-logo-markdown:before,
.ion-logo-model-s:before,
.ion-logo-no-smoking:before,
.ion-logo-nodejs:before,
.ion-logo-npm:before,
.ion-logo-octocat:before,
.ion-logo-pinterest:before,
.ion-logo-playstation:before,
.ion-logo-polymer:before,
.ion-logo-python:before,
.ion-logo-reddit:before,
.ion-logo-rss:before,
.ion-logo-sass:before,
.ion-logo-skype:before,
.ion-logo-slack:before,
.ion-logo-snapchat:before,
.ion-logo-steam:before,
.ion-logo-tumblr:before,
.ion-logo-tux:before,
.ion-logo-twitch:before,
.ion-logo-twitter:before,
.ion-logo-usd:before,
.ion-logo-vimeo:before,
.ion-logo-vk:before,
.ion-logo-whatsapp:before,
.ion-logo-windows:before,
.ion-logo-wordpress:before,
.ion-logo-xbox:before,
.ion-logo-xing:before,
.ion-logo-yahoo:before,
.ion-logo-yen:before,
.ion-logo-youtube:before,
.ion-md-add:before,
.ion-md-add-circle:before,
.ion-md-add-circle-outline:before,
.ion-md-airplane:before,
.ion-md-alarm:before,
.ion-md-albums:before,
.ion-md-alert:before,
.ion-md-american-football:before,
.ion-md-analytics:before,
.ion-md-aperture:before,
.ion-md-apps:before,
.ion-md-appstore:before,
.ion-md-archive:before,
.ion-md-arrow-back:before,
.ion-md-arrow-down:before,
.ion-md-arrow-dropdown:before,
.ion-md-arrow-dropdown-circle:before,
.ion-md-arrow-dropleft:before,
.ion-md-arrow-dropleft-circle:before,
.ion-md-arrow-dropright:before,
.ion-md-arrow-dropright-circle:before,
.ion-md-arrow-dropup:before,
.ion-md-arrow-dropup-circle:before,
.ion-md-arrow-forward:before,
.ion-md-arrow-round-back:before,
.ion-md-arrow-round-down:before,
.ion-md-arrow-round-forward:before,
.ion-md-arrow-round-up:before,
.ion-md-arrow-up:before,
.ion-md-at:before,
.ion-md-attach:before,
.ion-md-backspace:before,
.ion-md-barcode:before,
.ion-md-baseball:before,
.ion-md-basket:before,
.ion-md-basketball:before,
.ion-md-battery-charging:before,
.ion-md-battery-dead:before,
.ion-md-battery-full:before,
.ion-md-beaker:before,
.ion-md-bed:before,
.ion-md-beer:before,
.ion-md-bicycle:before,
.ion-md-bluetooth:before,
.ion-md-boat:before,
.ion-md-body:before,
.ion-md-bonfire:before,
.ion-md-book:before,
.ion-md-bookmark:before,
.ion-md-bookmarks:before,
.ion-md-bowtie:before,
.ion-md-briefcase:before,
.ion-md-browsers:before,
.ion-md-brush:before,
.ion-md-bug:before,
.ion-md-build:before,
.ion-md-bulb:before,
.ion-md-bus:before,
.ion-md-business:before,
.ion-md-cafe:before,
.ion-md-calculator:before,
.ion-md-calendar:before,
.ion-md-call:before,
.ion-md-camera:before,
.ion-md-car:before,
.ion-md-card:before,
.ion-md-cart:before,
.ion-md-cash:before,
.ion-md-cellular:before,
.ion-md-chatboxes:before,
.ion-md-chatbubbles:before,
.ion-md-checkbox:before,
.ion-md-checkbox-outline:before,
.ion-md-checkmark:before,
.ion-md-checkmark-circle:before,
.ion-md-checkmark-circle-outline:before,
.ion-md-clipboard:before,
.ion-md-clock:before,
.ion-md-close:before,
.ion-md-close-circle:before,
.ion-md-close-circle-outline:before,
.ion-md-cloud:before,
.ion-md-cloud-circle:before,
.ion-md-cloud-done:before,
.ion-md-cloud-download:before,
.ion-md-cloud-outline:before,
.ion-md-cloud-upload:before,
.ion-md-cloudy:before,
.ion-md-cloudy-night:before,
.ion-md-code:before,
.ion-md-code-download:before,
.ion-md-code-working:before,
.ion-md-cog:before,
.ion-md-color-fill:before,
.ion-md-color-filter:before,
.ion-md-color-palette:before,
.ion-md-color-wand:before,
.ion-md-compass:before,
.ion-md-construct:before,
.ion-md-contact:before,
.ion-md-contacts:before,
.ion-md-contract:before,
.ion-md-contrast:before,
.ion-md-copy:before,
.ion-md-create:before,
.ion-md-crop:before,
.ion-md-cube:before,
.ion-md-cut:before,
.ion-md-desktop:before,
.ion-md-disc:before,
.ion-md-document:before,
.ion-md-done-all:before,
.ion-md-download:before,
.ion-md-easel:before,
.ion-md-egg:before,
.ion-md-exit:before,
.ion-md-expand:before,
.ion-md-eye:before,
.ion-md-eye-off:before,
.ion-md-fastforward:before,
.ion-md-female:before,
.ion-md-filing:before,
.ion-md-film:before,
.ion-md-finger-print:before,
.ion-md-fitness:before,
.ion-md-flag:before,
.ion-md-flame:before,
.ion-md-flash:before,
.ion-md-flash-off:before,
.ion-md-flashlight:before,
.ion-md-flask:before,
.ion-md-flower:before,
.ion-md-folder:before,
.ion-md-folder-open:before,
.ion-md-football:before,
.ion-md-funnel:before,
.ion-md-gift:before,
.ion-md-git-branch:before,
.ion-md-git-commit:before,
.ion-md-git-compare:before,
.ion-md-git-merge:before,
.ion-md-git-network:before,
.ion-md-git-pull-request:before,
.ion-md-glasses:before,
.ion-md-globe:before,
.ion-md-grid:before,
.ion-md-hammer:before,
.ion-md-hand:before,
.ion-md-happy:before,
.ion-md-headset:before,
.ion-md-heart:before,
.ion-md-heart-dislike:before,
.ion-md-heart-empty:before,
.ion-md-heart-half:before,
.ion-md-help:before,
.ion-md-help-buoy:before,
.ion-md-help-circle:before,
.ion-md-help-circle-outline:before,
.ion-md-home:before,
.ion-md-hourglass:before,
.ion-md-ice-cream:before,
.ion-md-image:before,
.ion-md-images:before,
.ion-md-infinite:before,
.ion-md-information:before,
.ion-md-information-circle:before,
.ion-md-information-circle-outline:before,
.ion-md-jet:before,
.ion-md-journal:before,
.ion-md-key:before,
.ion-md-keypad:before,
.ion-md-laptop:before,
.ion-md-leaf:before,
.ion-md-link:before,
.ion-md-list:before,
.ion-md-list-box:before,
.ion-md-locate:before,
.ion-md-lock:before,
.ion-md-log-in:before,
.ion-md-log-out:before,
.ion-md-magnet:before,
.ion-md-mail:before,
.ion-md-mail-open:before,
.ion-md-mail-unread:before,
.ion-md-male:before,
.ion-md-man:before,
.ion-md-map:before,
.ion-md-medal:before,
.ion-md-medical:before,
.ion-md-medkit:before,
.ion-md-megaphone:before,
.ion-md-menu:before,
.ion-md-mic:before,
.ion-md-mic-off:before,
.ion-md-microphone:before,
.ion-md-moon:before,
.ion-md-more:before,
.ion-md-move:before,
.ion-md-musical-note:before,
.ion-md-musical-notes:before,
.ion-md-navigate:before,
.ion-md-notifications:before,
.ion-md-notifications-off:before,
.ion-md-notifications-outline:before,
.ion-md-nuclear:before,
.ion-md-nutrition:before,
.ion-md-open:before,
.ion-md-options:before,
.ion-md-outlet:before,
.ion-md-paper:before,
.ion-md-paper-plane:before,
.ion-md-partly-sunny:before,
.ion-md-pause:before,
.ion-md-paw:before,
.ion-md-people:before,
.ion-md-person:before,
.ion-md-person-add:before,
.ion-md-phone-landscape:before,
.ion-md-phone-portrait:before,
.ion-md-photos:before,
.ion-md-pie:before,
.ion-md-pin:before,
.ion-md-pint:before,
.ion-md-pizza:before,
.ion-md-planet:before,
.ion-md-play:before,
.ion-md-play-circle:before,
.ion-md-podium:before,
.ion-md-power:before,
.ion-md-pricetag:before,
.ion-md-pricetags:before,
.ion-md-print:before,
.ion-md-pulse:before,
.ion-md-qr-scanner:before,
.ion-md-quote:before,
.ion-md-radio:before,
.ion-md-radio-button-off:before,
.ion-md-radio-button-on:before,
.ion-md-rainy:before,
.ion-md-recording:before,
.ion-md-redo:before,
.ion-md-refresh:before,
.ion-md-refresh-circle:before,
.ion-md-remove:before,
.ion-md-remove-circle:before,
.ion-md-remove-circle-outline:before,
.ion-md-reorder:before,
.ion-md-repeat:before,
.ion-md-resize:before,
.ion-md-restaurant:before,
.ion-md-return-left:before,
.ion-md-return-right:before,
.ion-md-reverse-camera:before,
.ion-md-rewind:before,
.ion-md-ribbon:before,
.ion-md-rocket:before,
.ion-md-rose:before,
.ion-md-sad:before,
.ion-md-save:before,
.ion-md-school:before,
.ion-md-search:before,
.ion-md-send:before,
.ion-md-settings:before,
.ion-md-share:before,
.ion-md-share-alt:before,
.ion-md-shirt:before,
.ion-md-shuffle:before,
.ion-md-skip-backward:before,
.ion-md-skip-forward:before,
.ion-md-snow:before,
.ion-md-speedometer:before,
.ion-md-square:before,
.ion-md-square-outline:before,
.ion-md-star:before,
.ion-md-star-half:before,
.ion-md-star-outline:before,
.ion-md-stats:before,
.ion-md-stopwatch:before,
.ion-md-subway:before,
.ion-md-sunny:before,
.ion-md-swap:before,
.ion-md-switch:before,
.ion-md-sync:before,
.ion-md-tablet-landscape:before,
.ion-md-tablet-portrait:before,
.ion-md-tennisball:before,
.ion-md-text:before,
.ion-md-thermometer:before,
.ion-md-thumbs-down:before,
.ion-md-thumbs-up:before,
.ion-md-thunderstorm:before,
.ion-md-time:before,
.ion-md-timer:before,
.ion-md-today:before,
.ion-md-train:before,
.ion-md-transgender:before,
.ion-md-trash:before,
.ion-md-trending-down:before,
.ion-md-trending-up:before,
.ion-md-trophy:before,
.ion-md-tv:before,
.ion-md-umbrella:before,
.ion-md-undo:before,
.ion-md-unlock:before,
.ion-md-videocam:before,
.ion-md-volume-high:before,
.ion-md-volume-low:before,
.ion-md-volume-mute:before,
.ion-md-volume-off:before,
.ion-md-walk:before,
.ion-md-wallet:before,
.ion-md-warning:before,
.ion-md-watch:before,
.ion-md-water:before,
.ion-md-wifi:before,
.ion-md-wine:before,
.ion-md-woman:before {
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ion-ios-add:before {
    content: "\f102";
}

.ion-ios-add-circle:before {
    content: "\f101";
}

.ion-ios-add-circle-outline:before {
    content: "\f100";
}

.ion-ios-airplane:before {
    content: "\f137";
}

.ion-ios-alarm:before {
    content: "\f3c8";
}

.ion-ios-albums:before {
    content: "\f3ca";
}

.ion-ios-alert:before {
    content: "\f104";
}

.ion-ios-american-football:before {
    content: "\f106";
}

.ion-ios-analytics:before {
    content: "\f3ce";
}

.ion-ios-aperture:before {
    content: "\f108";
}

.ion-ios-apps:before {
    content: "\f10a";
}

.ion-ios-appstore:before {
    content: "\f10c";
}

.ion-ios-archive:before {
    content: "\f10e";
}

.ion-ios-arrow-back:before {
    content: "\f3cf";
}

.ion-ios-arrow-down:before {
    content: "\f3d0";
}

.ion-ios-arrow-dropdown:before {
    content: "\f110";
}

.ion-ios-arrow-dropdown-circle:before {
    content: "\f125";
}

.ion-ios-arrow-dropleft:before {
    content: "\f112";
}

.ion-ios-arrow-dropleft-circle:before {
    content: "\f129";
}

.ion-ios-arrow-dropright:before {
    content: "\f114";
}

.ion-ios-arrow-dropright-circle:before {
    content: "\f12b";
}

.ion-ios-arrow-dropup:before {
    content: "\f116";
}

.ion-ios-arrow-dropup-circle:before {
    content: "\f12d";
}

.ion-ios-arrow-forward:before {
    content: "\f3d1";
}

.ion-ios-arrow-round-back:before {
    content: "\f117";
}

.ion-ios-arrow-round-down:before {
    content: "\f118";
}

.ion-ios-arrow-round-forward:before {
    content: "\f119";
}

.ion-ios-arrow-round-up:before {
    content: "\f11a";
}

.ion-ios-arrow-up:before {
    content: "\f3d8";
}

.ion-ios-at:before {
    content: "\f3da";
}

.ion-ios-attach:before {
    content: "\f11b";
}

.ion-ios-backspace:before {
    content: "\f11d";
}

.ion-ios-barcode:before {
    content: "\f3dc";
}

.ion-ios-baseball:before {
    content: "\f3de";
}

.ion-ios-basket:before {
    content: "\f11f";
}

.ion-ios-basketball:before {
    content: "\f3e0";
}

.ion-ios-battery-charging:before {
    content: "\f120";
}

.ion-ios-battery-dead:before {
    content: "\f121";
}

.ion-ios-battery-full:before {
    content: "\f122";
}

.ion-ios-beaker:before {
    content: "\f124";
}

.ion-ios-bed:before {
    content: "\f139";
}

.ion-ios-beer:before {
    content: "\f126";
}

.ion-ios-bicycle:before {
    content: "\f127";
}

.ion-ios-bluetooth:before {
    content: "\f128";
}

.ion-ios-boat:before {
    content: "\f12a";
}

.ion-ios-body:before {
    content: "\f3e4";
}

.ion-ios-bonfire:before {
    content: "\f12c";
}

.ion-ios-book:before {
    content: "\f3e8";
}

.ion-ios-bookmark:before {
    content: "\f12e";
}

.ion-ios-bookmarks:before {
    content: "\f3ea";
}

.ion-ios-bowtie:before {
    content: "\f130";
}

.ion-ios-briefcase:before {
    content: "\f3ee";
}

.ion-ios-browsers:before {
    content: "\f3f0";
}

.ion-ios-brush:before {
    content: "\f132";
}

.ion-ios-bug:before {
    content: "\f134";
}

.ion-ios-build:before {
    content: "\f136";
}

.ion-ios-bulb:before {
    content: "\f138";
}

.ion-ios-bus:before {
    content: "\f13a";
}

.ion-ios-business:before {
    content: "\f1a3";
}

.ion-ios-cafe:before {
    content: "\f13c";
}

.ion-ios-calculator:before {
    content: "\f3f2";
}

.ion-ios-calendar:before {
    content: "\f3f4";
}

.ion-ios-call:before {
    content: "\f13e";
}

.ion-ios-camera:before {
    content: "\f3f6";
}

.ion-ios-car:before {
    content: "\f140";
}

.ion-ios-card:before {
    content: "\f142";
}

.ion-ios-cart:before {
    content: "\f3f8";
}

.ion-ios-cash:before {
    content: "\f144";
}

.ion-ios-cellular:before {
    content: "\f13d";
}

.ion-ios-chatboxes:before {
    content: "\f3fa";
}

.ion-ios-chatbubbles:before {
    content: "\f146";
}

.ion-ios-checkbox:before {
    content: "\f148";
}

.ion-ios-checkbox-outline:before {
    content: "\f147";
}

.ion-ios-checkmark:before {
    content: "\f3ff";
}

.ion-ios-checkmark-circle:before {
    content: "\f14a";
}

.ion-ios-checkmark-circle-outline:before {
    content: "\f149";
}

.ion-ios-clipboard:before {
    content: "\f14c";
}

.ion-ios-clock:before {
    content: "\f403";
}

.ion-ios-close:before {
    content: "\f406";
}

.ion-ios-close-circle:before {
    content: "\f14e";
}

.ion-ios-close-circle-outline:before {
    content: "\f14d";
}

.ion-ios-cloud:before {
    content: "\f40c";
}

.ion-ios-cloud-circle:before {
    content: "\f152";
}

.ion-ios-cloud-done:before {
    content: "\f154";
}

.ion-ios-cloud-download:before {
    content: "\f408";
}

.ion-ios-cloud-outline:before {
    content: "\f409";
}

.ion-ios-cloud-upload:before {
    content: "\f40b";
}

.ion-ios-cloudy:before {
    content: "\f410";
}

.ion-ios-cloudy-night:before {
    content: "\f40e";
}

.ion-ios-code:before {
    content: "\f157";
}

.ion-ios-code-download:before {
    content: "\f155";
}

.ion-ios-code-working:before {
    content: "\f156";
}

.ion-ios-cog:before {
    content: "\f412";
}

.ion-ios-color-fill:before {
    content: "\f159";
}

.ion-ios-color-filter:before {
    content: "\f414";
}

.ion-ios-color-palette:before {
    content: "\f15b";
}

.ion-ios-color-wand:before {
    content: "\f416";
}

.ion-ios-compass:before {
    content: "\f15d";
}

.ion-ios-construct:before {
    content: "\f15f";
}

.ion-ios-contact:before {
    content: "\f41a";
}

.ion-ios-contacts:before {
    content: "\f161";
}

.ion-ios-contract:before {
    content: "\f162";
}

.ion-ios-contrast:before {
    content: "\f163";
}

.ion-ios-copy:before {
    content: "\f41c";
}

.ion-ios-create:before {
    content: "\f165";
}

.ion-ios-crop:before {
    content: "\f41e";
}

.ion-ios-cube:before {
    content: "\f168";
}

.ion-ios-cut:before {
    content: "\f16a";
}

.ion-ios-desktop:before {
    content: "\f16c";
}

.ion-ios-disc:before {
    content: "\f16e";
}

.ion-ios-document:before {
    content: "\f170";
}

.ion-ios-done-all:before {
    content: "\f171";
}

.ion-ios-download:before {
    content: "\f420";
}

.ion-ios-easel:before {
    content: "\f173";
}

.ion-ios-egg:before {
    content: "\f175";
}

.ion-ios-exit:before {
    content: "\f177";
}

.ion-ios-expand:before {
    content: "\f178";
}

.ion-ios-eye:before {
    content: "\f425";
}

.ion-ios-eye-off:before {
    content: "\f17a";
}

.ion-ios-fastforward:before {
    content: "\f427";
}

.ion-ios-female:before {
    content: "\f17b";
}

.ion-ios-filing:before {
    content: "\f429";
}

.ion-ios-film:before {
    content: "\f42b";
}

.ion-ios-finger-print:before {
    content: "\f17c";
}

.ion-ios-fitness:before {
    content: "\f1ab";
}

.ion-ios-flag:before {
    content: "\f42d";
}

.ion-ios-flame:before {
    content: "\f42f";
}

.ion-ios-flash:before {
    content: "\f17e";
}

.ion-ios-flash-off:before {
    content: "\f12f";
}

.ion-ios-flashlight:before {
    content: "\f141";
}

.ion-ios-flask:before {
    content: "\f431";
}

.ion-ios-flower:before {
    content: "\f433";
}

.ion-ios-folder:before {
    content: "\f435";
}

.ion-ios-folder-open:before {
    content: "\f180";
}

.ion-ios-football:before {
    content: "\f437";
}

.ion-ios-funnel:before {
    content: "\f182";
}

.ion-ios-gift:before {
    content: "\f191";
}

.ion-ios-git-branch:before {
    content: "\f183";
}

.ion-ios-git-commit:before {
    content: "\f184";
}

.ion-ios-git-compare:before {
    content: "\f185";
}

.ion-ios-git-merge:before {
    content: "\f186";
}

.ion-ios-git-network:before {
    content: "\f187";
}

.ion-ios-git-pull-request:before {
    content: "\f188";
}

.ion-ios-glasses:before {
    content: "\f43f";
}

.ion-ios-globe:before {
    content: "\f18a";
}

.ion-ios-grid:before {
    content: "\f18c";
}

.ion-ios-hammer:before {
    content: "\f18e";
}

.ion-ios-hand:before {
    content: "\f190";
}

.ion-ios-happy:before {
    content: "\f192";
}

.ion-ios-headset:before {
    content: "\f194";
}

.ion-ios-heart:before {
    content: "\f443";
}

.ion-ios-heart-dislike:before {
    content: "\f13f";
}

.ion-ios-heart-empty:before {
    content: "\f19b";
}

.ion-ios-heart-half:before {
    content: "\f19d";
}

.ion-ios-help:before {
    content: "\f446";
}

.ion-ios-help-buoy:before {
    content: "\f196";
}

.ion-ios-help-circle:before {
    content: "\f198";
}

.ion-ios-help-circle-outline:before {
    content: "\f197";
}

.ion-ios-home:before {
    content: "\f448";
}

.ion-ios-hourglass:before {
    content: "\f103";
}

.ion-ios-ice-cream:before {
    content: "\f19a";
}

.ion-ios-image:before {
    content: "\f19c";
}

.ion-ios-images:before {
    content: "\f19e";
}

.ion-ios-infinite:before {
    content: "\f44a";
}

.ion-ios-information:before {
    content: "\f44d";
}

.ion-ios-information-circle:before {
    content: "\f1a0";
}

.ion-ios-information-circle-outline:before {
    content: "\f19f";
}

.ion-ios-jet:before {
    content: "\f1a5";
}

.ion-ios-journal:before {
    content: "\f189";
}

.ion-ios-key:before {
    content: "\f1a7";
}

.ion-ios-keypad:before {
    content: "\f450";
}

.ion-ios-laptop:before {
    content: "\f1a8";
}

.ion-ios-leaf:before {
    content: "\f1aa";
}

.ion-ios-link:before {
    content: "\f22a";
}

.ion-ios-list:before {
    content: "\f454";
}

.ion-ios-list-box:before {
    content: "\f143";
}

.ion-ios-locate:before {
    content: "\f1ae";
}

.ion-ios-lock:before {
    content: "\f1b0";
}

.ion-ios-log-in:before {
    content: "\f1b1";
}

.ion-ios-log-out:before {
    content: "\f1b2";
}

.ion-ios-magnet:before {
    content: "\f1b4";
}

.ion-ios-mail:before {
    content: "\f1b8";
}

.ion-ios-mail-open:before {
    content: "\f1b6";
}

.ion-ios-mail-unread:before {
    content: "\f145";
}

.ion-ios-male:before {
    content: "\f1b9";
}

.ion-ios-man:before {
    content: "\f1bb";
}

.ion-ios-map:before {
    content: "\f1bd";
}

.ion-ios-medal:before {
    content: "\f1bf";
}

.ion-ios-medical:before {
    content: "\f45c";
}

.ion-ios-medkit:before {
    content: "\f45e";
}

.ion-ios-megaphone:before {
    content: "\f1c1";
}

.ion-ios-menu:before {
    content: "\f1c3";
}

.ion-ios-mic:before {
    content: "\f461";
}

.ion-ios-mic-off:before {
    content: "\f45f";
}

.ion-ios-microphone:before {
    content: "\f1c6";
}

.ion-ios-moon:before {
    content: "\f468";
}

.ion-ios-more:before {
    content: "\f1c8";
}

.ion-ios-move:before {
    content: "\f1cb";
}

.ion-ios-musical-note:before {
    content: "\f46b";
}

.ion-ios-musical-notes:before {
    content: "\f46c";
}

.ion-ios-navigate:before {
    content: "\f46e";
}

.ion-ios-notifications:before {
    content: "\f1d3";
}

.ion-ios-notifications-off:before {
    content: "\f1d1";
}

.ion-ios-notifications-outline:before {
    content: "\f133";
}

.ion-ios-nuclear:before {
    content: "\f1d5";
}

.ion-ios-nutrition:before {
    content: "\f470";
}

.ion-ios-open:before {
    content: "\f1d7";
}

.ion-ios-options:before {
    content: "\f1d9";
}

.ion-ios-outlet:before {
    content: "\f1db";
}

.ion-ios-paper:before {
    content: "\f472";
}

.ion-ios-paper-plane:before {
    content: "\f1dd";
}

.ion-ios-partly-sunny:before {
    content: "\f1df";
}

.ion-ios-pause:before {
    content: "\f478";
}

.ion-ios-paw:before {
    content: "\f47a";
}

.ion-ios-people:before {
    content: "\f47c";
}

.ion-ios-person:before {
    content: "\f47e";
}

.ion-ios-person-add:before {
    content: "\f1e1";
}

.ion-ios-phone-landscape:before {
    content: "\f1e2";
}

.ion-ios-phone-portrait:before {
    content: "\f1e3";
}

.ion-ios-photos:before {
    content: "\f482";
}

.ion-ios-pie:before {
    content: "\f484";
}

.ion-ios-pin:before {
    content: "\f1e5";
}

.ion-ios-pint:before {
    content: "\f486";
}

.ion-ios-pizza:before {
    content: "\f1e7";
}

.ion-ios-planet:before {
    content: "\f1eb";
}

.ion-ios-play:before {
    content: "\f488";
}

.ion-ios-play-circle:before {
    content: "\f113";
}

.ion-ios-podium:before {
    content: "\f1ed";
}

.ion-ios-power:before {
    content: "\f1ef";
}

.ion-ios-pricetag:before {
    content: "\f48d";
}

.ion-ios-pricetags:before {
    content: "\f48f";
}

.ion-ios-print:before {
    content: "\f1f1";
}

.ion-ios-pulse:before {
    content: "\f493";
}

.ion-ios-qr-scanner:before {
    content: "\f1f3";
}

.ion-ios-quote:before {
    content: "\f1f5";
}

.ion-ios-radio:before {
    content: "\f1f9";
}

.ion-ios-radio-button-off:before {
    content: "\f1f6";
}

.ion-ios-radio-button-on:before {
    content: "\f1f7";
}

.ion-ios-rainy:before {
    content: "\f495";
}

.ion-ios-recording:before {
    content: "\f497";
}

.ion-ios-redo:before {
    content: "\f499";
}

.ion-ios-refresh:before {
    content: "\f49c";
}

.ion-ios-refresh-circle:before {
    content: "\f135";
}

.ion-ios-remove:before {
    content: "\f1fc";
}

.ion-ios-remove-circle:before {
    content: "\f1fb";
}

.ion-ios-remove-circle-outline:before {
    content: "\f1fa";
}

.ion-ios-reorder:before {
    content: "\f1fd";
}

.ion-ios-repeat:before {
    content: "\f1fe";
}

.ion-ios-resize:before {
    content: "\f1ff";
}

.ion-ios-restaurant:before {
    content: "\f201";
}

.ion-ios-return-left:before {
    content: "\f202";
}

.ion-ios-return-right:before {
    content: "\f203";
}

.ion-ios-reverse-camera:before {
    content: "\f49f";
}

.ion-ios-rewind:before {
    content: "\f4a1";
}

.ion-ios-ribbon:before {
    content: "\f205";
}

.ion-ios-rocket:before {
    content: "\f14b";
}

.ion-ios-rose:before {
    content: "\f4a3";
}

.ion-ios-sad:before {
    content: "\f207";
}

.ion-ios-save:before {
    content: "\f1a6";
}

.ion-ios-school:before {
    content: "\f209";
}

.ion-ios-search:before {
    content: "\f4a5";
}

.ion-ios-send:before {
    content: "\f20c";
}

.ion-ios-settings:before {
    content: "\f4a7";
}

.ion-ios-share:before {
    content: "\f211";
}

.ion-ios-share-alt:before {
    content: "\f20f";
}

.ion-ios-shirt:before {
    content: "\f213";
}

.ion-ios-shuffle:before {
    content: "\f4a9";
}

.ion-ios-skip-backward:before {
    content: "\f215";
}

.ion-ios-skip-forward:before {
    content: "\f217";
}

.ion-ios-snow:before {
    content: "\f218";
}

.ion-ios-speedometer:before {
    content: "\f4b0";
}

.ion-ios-square:before {
    content: "\f21a";
}

.ion-ios-square-outline:before {
    content: "\f15c";
}

.ion-ios-star:before {
    content: "\f4b3";
}

.ion-ios-star-half:before {
    content: "\f4b1";
}

.ion-ios-star-outline:before {
    content: "\f4b2";
}

.ion-ios-stats:before {
    content: "\f21c";
}

.ion-ios-stopwatch:before {
    content: "\f4b5";
}

.ion-ios-subway:before {
    content: "\f21e";
}

.ion-ios-sunny:before {
    content: "\f4b7";
}

.ion-ios-swap:before {
    content: "\f21f";
}

.ion-ios-switch:before {
    content: "\f221";
}

.ion-ios-sync:before {
    content: "\f222";
}

.ion-ios-tablet-landscape:before {
    content: "\f223";
}

.ion-ios-tablet-portrait:before {
    content: "\f24e";
}

.ion-ios-tennisball:before {
    content: "\f4bb";
}

.ion-ios-text:before {
    content: "\f250";
}

.ion-ios-thermometer:before {
    content: "\f252";
}

.ion-ios-thumbs-down:before {
    content: "\f254";
}

.ion-ios-thumbs-up:before {
    content: "\f256";
}

.ion-ios-thunderstorm:before {
    content: "\f4bd";
}

.ion-ios-time:before {
    content: "\f4bf";
}

.ion-ios-timer:before {
    content: "\f4c1";
}

.ion-ios-today:before {
    content: "\f14f";
}

.ion-ios-train:before {
    content: "\f258";
}

.ion-ios-transgender:before {
    content: "\f259";
}

.ion-ios-trash:before {
    content: "\f4c5";
}

.ion-ios-trending-down:before {
    content: "\f25a";
}

.ion-ios-trending-up:before {
    content: "\f25b";
}

.ion-ios-trophy:before {
    content: "\f25d";
}

.ion-ios-tv:before {
    content: "\f115";
}

.ion-ios-umbrella:before {
    content: "\f25f";
}

.ion-ios-undo:before {
    content: "\f4c7";
}

.ion-ios-unlock:before {
    content: "\f261";
}

.ion-ios-videocam:before {
    content: "\f4cd";
}

.ion-ios-volume-high:before {
    content: "\f11c";
}

.ion-ios-volume-low:before {
    content: "\f11e";
}

.ion-ios-volume-mute:before {
    content: "\f263";
}

.ion-ios-volume-off:before {
    content: "\f264";
}

.ion-ios-walk:before {
    content: "\f266";
}

.ion-ios-wallet:before {
    content: "\f18b";
}

.ion-ios-warning:before {
    content: "\f268";
}

.ion-ios-watch:before {
    content: "\f269";
}

.ion-ios-water:before {
    content: "\f26b";
}

.ion-ios-wifi:before {
    content: "\f26d";
}

.ion-ios-wine:before {
    content: "\f26f";
}

.ion-ios-woman:before {
    content: "\f271";
}

.ion-logo-android:before {
    content: "\f225";
}

.ion-logo-angular:before {
    content: "\f227";
}

.ion-logo-apple:before {
    content: "\f229";
}

.ion-logo-bitbucket:before {
    content: "\f193";
}

.ion-logo-bitcoin:before {
    content: "\f22b";
}

.ion-logo-buffer:before {
    content: "\f22d";
}

.ion-logo-chrome:before {
    content: "\f22f";
}

.ion-logo-closed-captioning:before {
    content: "\f105";
}

.ion-logo-codepen:before {
    content: "\f230";
}

.ion-logo-css3:before {
    content: "\f231";
}

.ion-logo-designernews:before {
    content: "\f232";
}

.ion-logo-dribbble:before {
    content: "\f233";
}

.ion-logo-dropbox:before {
    content: "\f234";
}

.ion-logo-euro:before {
    content: "\f235";
}

.ion-logo-facebook:before {
    content: "\f236";
}

.ion-logo-flickr:before {
    content: "\f107";
}

.ion-logo-foursquare:before {
    content: "\f237";
}

.ion-logo-freebsd-devil:before {
    content: "\f238";
}

.ion-logo-game-controller-a:before {
    content: "\f13b";
}

.ion-logo-game-controller-b:before {
    content: "\f181";
}

.ion-logo-github:before {
    content: "\f239";
}

.ion-logo-google:before {
    content: "\f23a";
}

.ion-logo-googleplus:before {
    content: "\f23b";
}

.ion-logo-hackernews:before {
    content: "\f23c";
}

.ion-logo-html5:before {
    content: "\f23d";
}

.ion-logo-instagram:before {
    content: "\f23e";
}

.ion-logo-ionic:before {
    content: "\f150";
}

.ion-logo-ionitron:before {
    content: "\f151";
}

.ion-logo-javascript:before {
    content: "\f23f";
}

.ion-logo-linkedin:before {
    content: "\f240";
}

.ion-logo-markdown:before {
    content: "\f241";
}

.ion-logo-model-s:before {
    content: "\f153";
}

.ion-logo-no-smoking:before {
    content: "\f109";
}

.ion-logo-nodejs:before {
    content: "\f242";
}

.ion-logo-npm:before {
    content: "\f195";
}

.ion-logo-octocat:before {
    content: "\f243";
}

.ion-logo-pinterest:before {
    content: "\f244";
}

.ion-logo-playstation:before {
    content: "\f245";
}

.ion-logo-polymer:before {
    content: "\f15e";
}

.ion-logo-python:before {
    content: "\f246";
}

.ion-logo-reddit:before {
    content: "\f247";
}

.ion-logo-rss:before {
    content: "\f248";
}

.ion-logo-sass:before {
    content: "\f249";
}

.ion-logo-skype:before {
    content: "\f24a";
}

.ion-logo-slack:before {
    content: "\f10b";
}

.ion-logo-snapchat:before {
    content: "\f24b";
}

.ion-logo-steam:before {
    content: "\f24c";
}

.ion-logo-tumblr:before {
    content: "\f24d";
}

.ion-logo-tux:before {
    content: "\f2ae";
}

.ion-logo-twitch:before {
    content: "\f2af";
}

.ion-logo-twitter:before {
    content: "\f2b0";
}

.ion-logo-usd:before {
    content: "\f2b1";
}

.ion-logo-vimeo:before {
    content: "\f2c4";
}

.ion-logo-vk:before {
    content: "\f10d";
}

.ion-logo-whatsapp:before {
    content: "\f2c5";
}

.ion-logo-windows:before {
    content: "\f32f";
}

.ion-logo-wordpress:before {
    content: "\f330";
}

.ion-logo-xbox:before {
    content: "\f34c";
}

.ion-logo-xing:before {
    content: "\f10f";
}

.ion-logo-yahoo:before {
    content: "\f34d";
}

.ion-logo-yen:before {
    content: "\f34e";
}

.ion-logo-youtube:before {
    content: "\f34f";
}

.ion-md-add:before {
    content: "\f273";
}

.ion-md-add-circle:before {
    content: "\f272";
}

.ion-md-add-circle-outline:before {
    content: "\f158";
}

.ion-md-airplane:before {
    content: "\f15a";
}

.ion-md-alarm:before {
    content: "\f274";
}

.ion-md-albums:before {
    content: "\f275";
}

.ion-md-alert:before {
    content: "\f276";
}

.ion-md-american-football:before {
    content: "\f277";
}

.ion-md-analytics:before {
    content: "\f278";
}

.ion-md-aperture:before {
    content: "\f279";
}

.ion-md-apps:before {
    content: "\f27a";
}

.ion-md-appstore:before {
    content: "\f27b";
}

.ion-md-archive:before {
    content: "\f27c";
}

.ion-md-arrow-back:before {
    content: "\f27d";
}

.ion-md-arrow-down:before {
    content: "\f27e";
}

.ion-md-arrow-dropdown:before {
    content: "\f280";
}

.ion-md-arrow-dropdown-circle:before {
    content: "\f27f";
}

.ion-md-arrow-dropleft:before {
    content: "\f282";
}

.ion-md-arrow-dropleft-circle:before {
    content: "\f281";
}

.ion-md-arrow-dropright:before {
    content: "\f284";
}

.ion-md-arrow-dropright-circle:before {
    content: "\f283";
}

.ion-md-arrow-dropup:before {
    content: "\f286";
}

.ion-md-arrow-dropup-circle:before {
    content: "\f285";
}

.ion-md-arrow-forward:before {
    content: "\f287";
}

.ion-md-arrow-round-back:before {
    content: "\f288";
}

.ion-md-arrow-round-down:before {
    content: "\f289";
}

.ion-md-arrow-round-forward:before {
    content: "\f28a";
}

.ion-md-arrow-round-up:before {
    content: "\f28b";
}

.ion-md-arrow-up:before {
    content: "\f28c";
}

.ion-md-at:before {
    content: "\f28d";
}

.ion-md-attach:before {
    content: "\f28e";
}

.ion-md-backspace:before {
    content: "\f28f";
}

.ion-md-barcode:before {
    content: "\f290";
}

.ion-md-baseball:before {
    content: "\f291";
}

.ion-md-basket:before {
    content: "\f292";
}

.ion-md-basketball:before {
    content: "\f293";
}

.ion-md-battery-charging:before {
    content: "\f294";
}

.ion-md-battery-dead:before {
    content: "\f295";
}

.ion-md-battery-full:before {
    content: "\f296";
}

.ion-md-beaker:before {
    content: "\f297";
}

.ion-md-bed:before {
    content: "\f160";
}

.ion-md-beer:before {
    content: "\f298";
}

.ion-md-bicycle:before {
    content: "\f299";
}

.ion-md-bluetooth:before {
    content: "\f29a";
}

.ion-md-boat:before {
    content: "\f29b";
}

.ion-md-body:before {
    content: "\f29c";
}

.ion-md-bonfire:before {
    content: "\f29d";
}

.ion-md-book:before {
    content: "\f29e";
}

.ion-md-bookmark:before {
    content: "\f29f";
}

.ion-md-bookmarks:before {
    content: "\f2a0";
}

.ion-md-bowtie:before {
    content: "\f2a1";
}

.ion-md-briefcase:before {
    content: "\f2a2";
}

.ion-md-browsers:before {
    content: "\f2a3";
}

.ion-md-brush:before {
    content: "\f2a4";
}

.ion-md-bug:before {
    content: "\f2a5";
}

.ion-md-build:before {
    content: "\f2a6";
}

.ion-md-bulb:before {
    content: "\f2a7";
}

.ion-md-bus:before {
    content: "\f2a8";
}

.ion-md-business:before {
    content: "\f1a4";
}

.ion-md-cafe:before {
    content: "\f2a9";
}

.ion-md-calculator:before {
    content: "\f2aa";
}

.ion-md-calendar:before {
    content: "\f2ab";
}

.ion-md-call:before {
    content: "\f2ac";
}

.ion-md-camera:before {
    content: "\f2ad";
}

.ion-md-car:before {
    content: "\f2b2";
}

.ion-md-card:before {
    content: "\f2b3";
}

.ion-md-cart:before {
    content: "\f2b4";
}

.ion-md-cash:before {
    content: "\f2b5";
}

.ion-md-cellular:before {
    content: "\f164";
}

.ion-md-chatboxes:before {
    content: "\f2b6";
}

.ion-md-chatbubbles:before {
    content: "\f2b7";
}

.ion-md-checkbox:before {
    content: "\f2b9";
}

.ion-md-checkbox-outline:before {
    content: "\f2b8";
}

.ion-md-checkmark:before {
    content: "\f2bc";
}

.ion-md-checkmark-circle:before {
    content: "\f2bb";
}

.ion-md-checkmark-circle-outline:before {
    content: "\f2ba";
}

.ion-md-clipboard:before {
    content: "\f2bd";
}

.ion-md-clock:before {
    content: "\f2be";
}

.ion-md-close:before {
    content: "\f2c0";
}

.ion-md-close-circle:before {
    content: "\f2bf";
}

.ion-md-close-circle-outline:before {
    content: "\f166";
}

.ion-md-cloud:before {
    content: "\f2c9";
}

.ion-md-cloud-circle:before {
    content: "\f2c2";
}

.ion-md-cloud-done:before {
    content: "\f2c3";
}

.ion-md-cloud-download:before {
    content: "\f2c6";
}

.ion-md-cloud-outline:before {
    content: "\f2c7";
}

.ion-md-cloud-upload:before {
    content: "\f2c8";
}

.ion-md-cloudy:before {
    content: "\f2cb";
}

.ion-md-cloudy-night:before {
    content: "\f2ca";
}

.ion-md-code:before {
    content: "\f2ce";
}

.ion-md-code-download:before {
    content: "\f2cc";
}

.ion-md-code-working:before {
    content: "\f2cd";
}

.ion-md-cog:before {
    content: "\f2cf";
}

.ion-md-color-fill:before {
    content: "\f2d0";
}

.ion-md-color-filter:before {
    content: "\f2d1";
}

.ion-md-color-palette:before {
    content: "\f2d2";
}

.ion-md-color-wand:before {
    content: "\f2d3";
}

.ion-md-compass:before {
    content: "\f2d4";
}

.ion-md-construct:before {
    content: "\f2d5";
}

.ion-md-contact:before {
    content: "\f2d6";
}

.ion-md-contacts:before {
    content: "\f2d7";
}

.ion-md-contract:before {
    content: "\f2d8";
}

.ion-md-contrast:before {
    content: "\f2d9";
}

.ion-md-copy:before {
    content: "\f2da";
}

.ion-md-create:before {
    content: "\f2db";
}

.ion-md-crop:before {
    content: "\f2dc";
}

.ion-md-cube:before {
    content: "\f2dd";
}

.ion-md-cut:before {
    content: "\f2de";
}

.ion-md-desktop:before {
    content: "\f2df";
}

.ion-md-disc:before {
    content: "\f2e0";
}

.ion-md-document:before {
    content: "\f2e1";
}

.ion-md-done-all:before {
    content: "\f2e2";
}

.ion-md-download:before {
    content: "\f2e3";
}

.ion-md-easel:before {
    content: "\f2e4";
}

.ion-md-egg:before {
    content: "\f2e5";
}

.ion-md-exit:before {
    content: "\f2e6";
}

.ion-md-expand:before {
    content: "\f2e7";
}

.ion-md-eye:before {
    content: "\f2e9";
}

.ion-md-eye-off:before {
    content: "\f2e8";
}

.ion-md-fastforward:before {
    content: "\f2ea";
}

.ion-md-female:before {
    content: "\f2eb";
}

.ion-md-filing:before {
    content: "\f2ec";
}

.ion-md-film:before {
    content: "\f2ed";
}

.ion-md-finger-print:before {
    content: "\f2ee";
}

.ion-md-fitness:before {
    content: "\f1ac";
}

.ion-md-flag:before {
    content: "\f2ef";
}

.ion-md-flame:before {
    content: "\f2f0";
}

.ion-md-flash:before {
    content: "\f2f1";
}

.ion-md-flash-off:before {
    content: "\f169";
}

.ion-md-flashlight:before {
    content: "\f16b";
}

.ion-md-flask:before {
    content: "\f2f2";
}

.ion-md-flower:before {
    content: "\f2f3";
}

.ion-md-folder:before {
    content: "\f2f5";
}

.ion-md-folder-open:before {
    content: "\f2f4";
}

.ion-md-football:before {
    content: "\f2f6";
}

.ion-md-funnel:before {
    content: "\f2f7";
}

.ion-md-gift:before {
    content: "\f199";
}

.ion-md-git-branch:before {
    content: "\f2fa";
}

.ion-md-git-commit:before {
    content: "\f2fb";
}

.ion-md-git-compare:before {
    content: "\f2fc";
}

.ion-md-git-merge:before {
    content: "\f2fd";
}

.ion-md-git-network:before {
    content: "\f2fe";
}

.ion-md-git-pull-request:before {
    content: "\f2ff";
}

.ion-md-glasses:before {
    content: "\f300";
}

.ion-md-globe:before {
    content: "\f301";
}

.ion-md-grid:before {
    content: "\f302";
}

.ion-md-hammer:before {
    content: "\f303";
}

.ion-md-hand:before {
    content: "\f304";
}

.ion-md-happy:before {
    content: "\f305";
}

.ion-md-headset:before {
    content: "\f306";
}

.ion-md-heart:before {
    content: "\f308";
}

.ion-md-heart-dislike:before {
    content: "\f167";
}

.ion-md-heart-empty:before {
    content: "\f1a1";
}

.ion-md-heart-half:before {
    content: "\f1a2";
}

.ion-md-help:before {
    content: "\f30b";
}

.ion-md-help-buoy:before {
    content: "\f309";
}

.ion-md-help-circle:before {
    content: "\f30a";
}

.ion-md-help-circle-outline:before {
    content: "\f16d";
}

.ion-md-home:before {
    content: "\f30c";
}

.ion-md-hourglass:before {
    content: "\f111";
}

.ion-md-ice-cream:before {
    content: "\f30d";
}

.ion-md-image:before {
    content: "\f30e";
}

.ion-md-images:before {
    content: "\f30f";
}

.ion-md-infinite:before {
    content: "\f310";
}

.ion-md-information:before {
    content: "\f312";
}

.ion-md-information-circle:before {
    content: "\f311";
}

.ion-md-information-circle-outline:before {
    content: "\f16f";
}

.ion-md-jet:before {
    content: "\f315";
}

.ion-md-journal:before {
    content: "\f18d";
}

.ion-md-key:before {
    content: "\f316";
}

.ion-md-keypad:before {
    content: "\f317";
}

.ion-md-laptop:before {
    content: "\f318";
}

.ion-md-leaf:before {
    content: "\f319";
}

.ion-md-link:before {
    content: "\f22e";
}

.ion-md-list:before {
    content: "\f31b";
}

.ion-md-list-box:before {
    content: "\f31a";
}

.ion-md-locate:before {
    content: "\f31c";
}

.ion-md-lock:before {
    content: "\f31d";
}

.ion-md-log-in:before {
    content: "\f31e";
}

.ion-md-log-out:before {
    content: "\f31f";
}

.ion-md-magnet:before {
    content: "\f320";
}

.ion-md-mail:before {
    content: "\f322";
}

.ion-md-mail-open:before {
    content: "\f321";
}

.ion-md-mail-unread:before {
    content: "\f172";
}

.ion-md-male:before {
    content: "\f323";
}

.ion-md-man:before {
    content: "\f324";
}

.ion-md-map:before {
    content: "\f325";
}

.ion-md-medal:before {
    content: "\f326";
}

.ion-md-medical:before {
    content: "\f327";
}

.ion-md-medkit:before {
    content: "\f328";
}

.ion-md-megaphone:before {
    content: "\f329";
}

.ion-md-menu:before {
    content: "\f32a";
}

.ion-md-mic:before {
    content: "\f32c";
}

.ion-md-mic-off:before {
    content: "\f32b";
}

.ion-md-microphone:before {
    content: "\f32d";
}

.ion-md-moon:before {
    content: "\f32e";
}

.ion-md-more:before {
    content: "\f1c9";
}

.ion-md-move:before {
    content: "\f331";
}

.ion-md-musical-note:before {
    content: "\f332";
}

.ion-md-musical-notes:before {
    content: "\f333";
}

.ion-md-navigate:before {
    content: "\f334";
}

.ion-md-notifications:before {
    content: "\f338";
}

.ion-md-notifications-off:before {
    content: "\f336";
}

.ion-md-notifications-outline:before {
    content: "\f337";
}

.ion-md-nuclear:before {
    content: "\f339";
}

.ion-md-nutrition:before {
    content: "\f33a";
}

.ion-md-open:before {
    content: "\f33b";
}

.ion-md-options:before {
    content: "\f33c";
}

.ion-md-outlet:before {
    content: "\f33d";
}

.ion-md-paper:before {
    content: "\f33f";
}

.ion-md-paper-plane:before {
    content: "\f33e";
}

.ion-md-partly-sunny:before {
    content: "\f340";
}

.ion-md-pause:before {
    content: "\f341";
}

.ion-md-paw:before {
    content: "\f342";
}

.ion-md-people:before {
    content: "\f343";
}

.ion-md-person:before {
    content: "\f345";
}

.ion-md-person-add:before {
    content: "\f344";
}

.ion-md-phone-landscape:before {
    content: "\f346";
}

.ion-md-phone-portrait:before {
    content: "\f347";
}

.ion-md-photos:before {
    content: "\f348";
}

.ion-md-pie:before {
    content: "\f349";
}

.ion-md-pin:before {
    content: "\f34a";
}

.ion-md-pint:before {
    content: "\f34b";
}

.ion-md-pizza:before {
    content: "\f354";
}

.ion-md-planet:before {
    content: "\f356";
}

.ion-md-play:before {
    content: "\f357";
}

.ion-md-play-circle:before {
    content: "\f174";
}

.ion-md-podium:before {
    content: "\f358";
}

.ion-md-power:before {
    content: "\f359";
}

.ion-md-pricetag:before {
    content: "\f35a";
}

.ion-md-pricetags:before {
    content: "\f35b";
}

.ion-md-print:before {
    content: "\f35c";
}

.ion-md-pulse:before {
    content: "\f35d";
}

.ion-md-qr-scanner:before {
    content: "\f35e";
}

.ion-md-quote:before {
    content: "\f35f";
}

.ion-md-radio:before {
    content: "\f362";
}

.ion-md-radio-button-off:before {
    content: "\f360";
}

.ion-md-radio-button-on:before {
    content: "\f361";
}

.ion-md-rainy:before {
    content: "\f363";
}

.ion-md-recording:before {
    content: "\f364";
}

.ion-md-redo:before {
    content: "\f365";
}

.ion-md-refresh:before {
    content: "\f366";
}

.ion-md-refresh-circle:before {
    content: "\f228";
}

.ion-md-remove:before {
    content: "\f368";
}

.ion-md-remove-circle:before {
    content: "\f367";
}

.ion-md-remove-circle-outline:before {
    content: "\f176";
}

.ion-md-reorder:before {
    content: "\f369";
}

.ion-md-repeat:before {
    content: "\f36a";
}

.ion-md-resize:before {
    content: "\f36b";
}

.ion-md-restaurant:before {
    content: "\f36c";
}

.ion-md-return-left:before {
    content: "\f36d";
}

.ion-md-return-right:before {
    content: "\f36e";
}

.ion-md-reverse-camera:before {
    content: "\f36f";
}

.ion-md-rewind:before {
    content: "\f370";
}

.ion-md-ribbon:before {
    content: "\f371";
}

.ion-md-rocket:before {
    content: "\f179";
}

.ion-md-rose:before {
    content: "\f372";
}

.ion-md-sad:before {
    content: "\f373";
}

.ion-md-save:before {
    content: "\f1a9";
}

.ion-md-school:before {
    content: "\f374";
}

.ion-md-search:before {
    content: "\f375";
}

.ion-md-send:before {
    content: "\f376";
}

.ion-md-settings:before {
    content: "\f377";
}

.ion-md-share:before {
    content: "\f379";
}

.ion-md-share-alt:before {
    content: "\f378";
}

.ion-md-shirt:before {
    content: "\f37a";
}

.ion-md-shuffle:before {
    content: "\f37b";
}

.ion-md-skip-backward:before {
    content: "\f37c";
}

.ion-md-skip-forward:before {
    content: "\f37d";
}

.ion-md-snow:before {
    content: "\f37e";
}

.ion-md-speedometer:before {
    content: "\f37f";
}

.ion-md-square:before {
    content: "\f381";
}

.ion-md-square-outline:before {
    content: "\f380";
}

.ion-md-star:before {
    content: "\f384";
}

.ion-md-star-half:before {
    content: "\f382";
}

.ion-md-star-outline:before {
    content: "\f383";
}

.ion-md-stats:before {
    content: "\f385";
}

.ion-md-stopwatch:before {
    content: "\f386";
}

.ion-md-subway:before {
    content: "\f387";
}

.ion-md-sunny:before {
    content: "\f388";
}

.ion-md-swap:before {
    content: "\f389";
}

.ion-md-switch:before {
    content: "\f38a";
}

.ion-md-sync:before {
    content: "\f38b";
}

.ion-md-tablet-landscape:before {
    content: "\f38c";
}

.ion-md-tablet-portrait:before {
    content: "\f38d";
}

.ion-md-tennisball:before {
    content: "\f38e";
}

.ion-md-text:before {
    content: "\f38f";
}

.ion-md-thermometer:before {
    content: "\f390";
}

.ion-md-thumbs-down:before {
    content: "\f391";
}

.ion-md-thumbs-up:before {
    content: "\f392";
}

.ion-md-thunderstorm:before {
    content: "\f393";
}

.ion-md-time:before {
    content: "\f394";
}

.ion-md-timer:before {
    content: "\f395";
}

.ion-md-today:before {
    content: "\f17d";
}

.ion-md-train:before {
    content: "\f396";
}

.ion-md-transgender:before {
    content: "\f397";
}

.ion-md-trash:before {
    content: "\f398";
}

.ion-md-trending-down:before {
    content: "\f399";
}

.ion-md-trending-up:before {
    content: "\f39a";
}

.ion-md-trophy:before {
    content: "\f39b";
}

.ion-md-tv:before {
    content: "\f17f";
}

.ion-md-umbrella:before {
    content: "\f39c";
}

.ion-md-undo:before {
    content: "\f39d";
}

.ion-md-unlock:before {
    content: "\f39e";
}

.ion-md-videocam:before {
    content: "\f39f";
}

.ion-md-volume-high:before {
    content: "\f123";
}

.ion-md-volume-low:before {
    content: "\f131";
}

.ion-md-volume-mute:before {
    content: "\f3a1";
}

.ion-md-volume-off:before {
    content: "\f3a2";
}

.ion-md-walk:before {
    content: "\f3a4";
}

.ion-md-wallet:before {
    content: "\f18f";
}

.ion-md-warning:before {
    content: "\f3a5";
}

.ion-md-watch:before {
    content: "\f3a6";
}

.ion-md-water:before {
    content: "\f3a7";
}

.ion-md-wifi:before {
    content: "\f3a8";
}

.ion-md-wine:before {
    content: "\f3a9";
}

.ion-md-woman:before {
    content: "\f3aa";
}

/*============================================================================
2. Variable
==============================================================================*/
/*============================================================================
#Function
==============================================================================*/
/*============================================================================
3. Element
==============================================================================*/
/*3.1 Title*/
.title-head {
    font-size: 1.42857em;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.title-head a {
    color: #333;
}

.title-head a:hover {
    color: #ff5722;
}

.subtitle-head {
    font-size: 1.28571em;
    color: #333;
    margin: 20px 0;
}

/*3.2 Product item*/
.product-box {
    text-align: left;
    margin-bottom: 30px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.product-box .product-thumbnail {
    position: relative;
    overflow: hidden;
}

.product-box .product-info {
    z-index: 10;
    position: relative;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.product-box .product-name {
    font-size: 1em;
    line-height: 1.15;
    color: #333;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 2px;
}

.product-box .product-name a {
    color: #222;
    text-decoration: none;
}

.product-box .product-name a:hover {
    color: #ff5722;
}

.product-box .product-name:hover,
.product-box .product-name:focus {
    color: #ff5722;
}

.product-box .price-box {
    min-height: 49px;
}

.product-box .price-box .special-price {
    display: block;
    width: 100%;
}

.product-box .price-box .special-price .product-price {
    color: #ff5722;
    font-size: 1.07143em;
    line-height: 1.71429em;
    display: inline-block;
    font-weight: 500;
}

.product-box .price-box .old-price {
    display: inline-block;
}

.product-box .price-box .old-price .product-price-old {
    text-decoration: line-through;
    font-size: 0.92857em;
    margin: 0 0 0 0px;
    display: inline-block;
    color: #878787;
}

.product-box .price-box .sale-flash {
    position: absolute;
    font-size: 0.92857em;
    top: 10px;
    left: 10px;
    text-align: center;
    z-index: 9;
    text-transform: uppercase;
    font-weight: 500;
}

.product-box .product-summary {
    font-size: 1em;
    color: #acacac;
    line-height: 20px;
}

.product-box form {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.product-price {
    color: #323c3f;
    font-size: 1.42857em;
    line-height: 24px;
    display: block;
    font-weight: 700;
}

.products-view-list .product-box .product-thumbnail {
    text-align: center;
    margin-bottom: 0;
    width: calc(100% / 3);
    float: left;
}

@media (max-width: 480px) {
    .products-view-list .product-box .product-thumbnail {
        width: 100%;
        float: none;
        margin-bottom: 15px;
    }
}

.products-view-list .product-box .product-info {
    text-align: left;
    margin-left: 30px;
    float: left;
    width: calc(100% / 3 * 2 - 30px);
    background: transparent;
    border-top: none;
}

@media (max-width: 480px) {
    .products-view-list .product-box .product-info {
        float: none;
        margin-left: 0;
        width: 100%;
    }
}

/*3.3 Breadcrumb*/
.breadcrumb {
    margin: 0;
    font-size: 1em;
    padding: 10px 0;
    background-color: #fff;
    border-radius: 0;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li>a {
    color: #777;
}

.breadcrumb li>a>span {
    color: #777;
}

.breadcrumb li>a>span:hover,
.breadcrumb li>a>span:focus {
    color: #ff5722;
    text-decoration: none;
}

.breadcrumb li>a:hover,
.breadcrumb li>a:focus {
    color: #ff5722;
    text-decoration: none;
}

.breadcrumb li span {
    display: inline;
    color: #ff5722;
}

.breadcrumb li span .fa {
    color: #777;
}

.breadcrumb li a:hover,
.breadcrumb li.active,
.breadcrumb li strong {
    color: #ff5722;
    font-weight: 400;
}

.breadcrumb>li+li:before {
    display: none;
}

/*3.4 Pagination*/
.pagination {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.pagination .page-link {
    float: none;
    margin: 0;
    width: 28px;
    background: #ff5722;
    text-align: center;
    height: 28px;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    border-radius: 0;
    border: 1px solid #ff5722 !important;
    text-decoration: none;
    border-radius: 3px !important;
    padding: 0;
    display: inline-block;
}

.pagination .page-link:hover {
    background-color: #fff;
    border-color: #ff5722;
    color: #ff5722;
}

.pagination .page-link.current {
    background-color: #fff;
    border-color: #ff5722;
    color: #ff5722;
}

.pagination .page-item.disabled .page-link {
    border: 0;
    background: transparent;
    color: #555555;
}

.pagination .page-item.active .page-link {
    background-color: #fff;
    border-color: #ff5722;
    color: #ff5722;
}

/*============================================================================
4. Header
==============================================================================*/
/*4.1  Header Gerenal*/
header {
    background: #ffffff;
}

.logo {
    padding: 5px 0;
}

.header_search {
    padding: 10px 0 15px;
}

.header_search input {
    float: right;
}

.header_search .input-group-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
}

.header_search .input-group {
    width: 100%;
    margin-bottom: 0;
}

.header_search button {
    padding: 0;
    width: 45px;
    background: transparent;
}

.header_search button img {
    margin-top: 6px;
}

/*4.2  Minicart*/
.mini-cart {
    z-index: 10;
    text-align: center;
}

.mini-cart:hover .top-cart-content {
    display: block;
}

.mini-cart .dropdown-toggle {
    font-size: 12px;
    padding: 0;
    text-transform: none;
}

.top-cart-contain {
    color: #333;
    padding: 0;
    right: 0;
}

.top-cart-contain .price {
    color: #ff5722;
    text-transform: uppercase;
}

.top-cart-contain .mini-cart .price {
    margin-right: 5px;
    font-size: 16px;
    font-weight: 700;
}

.top-cart-contain .product-details .price {
    color: #ff5722;
    width: auto;
    float: none;
    font-weight: 400;
    padding-left: 0;
    font-size: 12px;
}

.top-cart-content {
    display: none;
    position: absolute;
    top: 51px;
    right: 0;
    background: #fff;
    padding: 0;
    text-align: left;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.4);
    z-index: 10000;
}

.top-cart-content .empty {
    text-align: left;
    color: #333;
}

.top-cart-content .product-name {
    margin: 0;
    width: 150px;
    line-height: 1;
    padding-right: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.top-cart-content .product-name a {
    font-size: 1em;
    line-height: normal;
    line-height: 20px !important;
    font-weight: 400;
    color: #333;
}

.top-cart-content .list-item-cart {
    max-height: 250px;
    overflow-y: scroll;
}

.top-cart-content .list-item-cart::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background-color: #F5F5F5;
}

.top-cart-content .list-item-cart::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.top-cart-content .list-item-cart::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
    background-color: #e5e5e5;
}

.top-cart-content li {
    list-style: none;
}

.top-cart-content li.item {
    border-top: 1px solid #eee;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.top-cart-content li.item:first-child {
    border-top: none;
    padding-top: 10px;
}

.top-cart-content li.item:last-child {
    margin: 0;
    border-bottom: none;
}

.top-cart-content li.item .product-image {
    float: left;
    display: block;
    width: 80px;
    margin-right: 10px;
}

.top-cart-content li.item .detail-item {
    padding-left: 90px;
}

.top-cart-content li.item .detail-item .fa {
    position: absolute;
    right: 10px;
}

.top-cart-content li.item .detail-item input {
    display: inline-block;
    width: 45px;
    padding: 0;
    text-align: center;
    min-height: 30px;
    height: 30px;
    margin-bottom: 0;
    float: left;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.top-cart-content li.item .detail-item button.items-count {
    display: inline-block;
    box-shadow: none;
    outline: none;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    height: 30px;
    float: left;
}

.top-cart-content .block-subtitle {
    color: #333;
    overflow: hidden;
    padding: 15px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92857em;
    background: #f5f5f5;
    text-transform: none;
    font-weight: 400;
    border-bottom: 1px #ddd solid;
}

.top-cart-content .actions .btn,
.top-cart-content .actions input[type="submit"] {
    border-radius: 3px;
    border: 1px solid #ff5722;
    color: #ff5722;
    background-color: #fff;
    min-width: 145px;
    text-transform: uppercase;
}

.top-cart-content .actions .btn+.btn,
.top-cart-content .actions input[type="submit"]+.btn,
.top-cart-content .actions .btn+input[type="submit"],
.top-cart-content .actions input[type="submit"]+input[type="submit"] {
    float: right;
}

.top-cart-content .actions .btn:hover,
.top-cart-content .actions input[type="submit"]:hover,
.top-cart-content .actions .btn:Focus,
.top-cart-content .actions input[type="submit"]:Focus {
    color: #fff;
    background-color: #ff5722;
}

.top-subtotal {
    color: #333;
    font-size: 1.14286em;
    font-weight: 400;
    padding: 12px 0;
    border-top: 1px dashed #e5e5e5;
    text-align: left;
    text-transform: none;
}

.top-subtotal .price {
    font-weight: 500;
    color: #ff5722;
    float: right;
}

ul#cart-sidebar {
    padding: 10px;
    margin: 0;
    max-height: 582px;
    min-width: 320px;
}

ul#cart-sidebar li.list-item {
    max-height: 400px;
    overflow-y: auto;
}

ul#cart-sidebar li.action {
    display: none;
}

ul#cart-sidebar .no-item p {
    margin-bottom: 0;
}

ul#cart-sidebar.hasclass li.action {
    display: block;
}

ul#cart-sidebar li.list-item .price2 {
    font-weight: 700;
    color: #f94e3f;
    font-size: 14px;
    display: list-item;
    margin-bottom: 5px;
}

ul#cart-sidebar li.list-item::-webkit-scrollbar {
    width: 5px;
}

ul#cart-sidebar li.list-item::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.9);
}

ul#cart-sidebar li.list-item::-webkit-scrollbar-thumb {
    background: #ff5722;
    border-radius: 15px;
}

ul#cart-sidebar li.list-item::-webkit-scrollbar-thumb:hover,
ul#cart-sidebar li.list-item::-webkit-scrollbar-thumb:active {
    background: #ff5722;
    border-radius: 15px;
}

.li-fix-1 {
    background: #FFF;
    border-top: 1px solid #ebebeb;
    display: block;
}

.li-fix-2 {
    display: block;
    width: 295px;
}

/*4.3 Menu*/
header nav {
    background: #191919;
}

header nav .nav {
    position: relative;
}

header nav .nav-item {
    float: left;
    position: relative;
}

header nav .nav-item.has-mega {
    position: static;
}

header nav .nav-item:hover,
header nav .nav-item:focus {
    background-color: #000;
}

header nav .nav-item>a {
    color: #fff;
    text-transform: uppercase;
    padding: 10px 15px;
    letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
    header nav .nav-item>a {
        padding: 10px;
        letter-spacing: 0.01em;
    }
}

header nav .nav-item>a img {
    max-width: 20px;
    float: left;
    margin-right: 3px;
    position: relative;
    top: 2px;
}

header nav .nav-item>a:hover {
    color: #fff;
    background-color: #3e3e3e;
}

header nav .nav-item>.fa {
    color: #fff;
    position: absolute;
    right: 0;
    top: 33px;
}

header nav .nav-item .nav-item-lv2 {
    padding: 0 10px;
}

header nav .nav-item .nav-item-lv3 {
    padding: 0 10px;
}

header nav .nav-item:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

@media (min-width: 1025px) {
    header nav .nav-item:hover>.dropdown-menu {
        opacity: 1;
        filter: alpha(opacity=100);
        visibility: visible;
        -moz-transition: .3s ease-in;
        -o-transition: .3s ease-in;
        -webkit-transition: .3s ease-in;
        -ms-transition: .3s ease-in;
        transition: .3s ease-in;
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

header nav .nav-item:hover>.mega-content {
    display: block;
}

@media (min-width: 1025px) {
    header nav .nav-item:hover>.mega-content {
        opacity: 1;
        filter: alpha(opacity=100);
        visibility: visible;
        -moz-transition: .3s ease-in;
        -o-transition: .3s ease-in;
        -webkit-transition: .3s ease-in;
        -ms-transition: .3s ease-in;
        transition: .3s ease-in;
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

header nav .nav-item li.dropdown-submenu {
    position: relative;
}

header nav .nav-item li.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
}

header nav .nav-item li.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

header nav .nav-item.active {
    background-color: #000;
}

header nav .nav-item.active>a {
    color: #fff;
}

header nav .mega-content {
    background: #fff none repeat scroll 0 0;
    border-radius: 0;
    display: none;
    margin: 0;
    padding: 0px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    width: 100%;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.15);
}

header nav .mega-content .level1.parent h2,
header nav .mega-content .level1.parent .h2 {
    font-size: 14px;
    margin-top: 0;
    font-weight: 600;
}

header nav .mega-content .level1.parent h2 a,
header nav .mega-content .level1.parent .h2 a {
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
}

header nav .mega-content .level1.parent h2 a:hover,
header nav .mega-content .level1.parent .h2 a:hover,
header nav .mega-content .level1.parent h2 a:focus,
header nav .mega-content .level1.parent .h2 a:focus {
    color: #ff5722;
}

header nav .mega-content .level1.parent ul.level1 li {
    line-height: 1.3;
}

header nav .mega-content .level1.parent ul.level1 li a {
    text-transform: none !important;
    font-weight: 500;
}

header nav .mega-content .level1.parent ul.level1 li+li {
    padding-top: 5px;
}

header nav .mega-content .level1 h2,
header nav .mega-content .level1 .h2 {
    font-size: 14px;
    margin-top: 0;
    font-weight: 600;
}

header nav .mega-content .level1 h2 a,
header nav .mega-content .level1 .h2 a {
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
}

header nav .mega-content .level1 h2 a:hover,
header nav .mega-content .level1 .h2 a:hover,
header nav .mega-content .level1 h2 a:focus,
header nav .mega-content .level1 .h2 a:focus {
    color: #ff5722;
}

header nav .mega-content .level1.item {
    float: left;
    width: 25%;
    padding: 10px;
}

header nav .mega-content .level1.item>a {
    color: #ff5722;
}

header nav .mega-content .level1.item>a:hover,
header nav .mega-content .level1.item>a:focus {
    color: #ee3900;
    text-decoration: none;
}

header nav .mega-content .level1.item h2,
header nav .mega-content .level1.item .h2 {
    font-size: 14px;
    margin-top: 0;
}

header nav .mega-content .level1.item ul.level1 {
    margin-bottom: 15px;
}

header nav .mega-content .level1.item ul.level1 li a {
    font-weight: normal !important;
    text-transform: none !important;
    color: #333;
}

header nav .mega-content .level1.item ul.level1 li a:hover,
header nav .mega-content .level1.item ul.level1 li a:focus {
    text-decoration: none;
    color: #ff5722;
}

header nav .mega-content .level0-wrapper2 .nav-block .level0 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (min-width: 1025px) {
    header nav .mega-content {
        display: block;
        opacity: 0;
        filter: alpha(opacity=0);
        visibility: hidden;
        -moz-transition: .2s ease-out;
        -o-transition: .2s ease-out;
        -webkit-transition: .2s ease-out;
        -ms-transition: .2s ease-out;
        transition: .2s ease-out;
        -moz-transform: translateY(20px);
        -o-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

/*============================================================================
5. FOOTER
==============================================================================*/
footer {
    position: relative;
    overflow: hidden;
}

footer .footer-info-widget h3,
footer .footer-info-widget .h3 {
    font-size: 1.28571em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer .footer-info-widget p {
    color: #cfd2d3;
    font-size: 1.14286em;
}

footer .footer-info-widget p.hotline {
    font-size: 2em;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: -8px;
}

footer .footer-info-widget p.hotline a {
    color: #fff;
}

footer .footer-info-widget p.hotline a:hover {
    color: #ff5722;
}

footer .footer-info-widget form {
    position: relative;
}

footer .footer-info-widget form input {
    height: 50px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 1.14286em;
}

footer .footer-info-widget form button {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    line-height: 50px;
    font-size: 2.14286em;
    color: #a6a6ad;
    padding-right: 10px;
}

footer .list-inline .fa {
    color: #fff;
    margin-right: 20px;
    font-size: 2.14286em;
}

footer .list-inline .fa:hover {
    color: #ff5722;
}

footer .site-footer h3,
footer .site-footer .h3,
footer .site-footer h4,
footer .site-footer .h4 {
    position: relative;
    color: #ffffff;
    margin: 0;
    padding: 13px 0;
    font-size: 1.28571em;
}

footer .list-menu {
    margin-bottom: 15px;
    line-height: 1.71429em;
}

footer .list-menu a {
    color: #888888;
}

footer .list-menu a:hover {
    color: #ff5722;
}

footer .list-menu li {
    color: #888888;
}

footer .list-menu.contact .fa {
    width: 20px;
    margin-right: 5px;
    color: #ff5722;
}

footer .copyright {
    text-align: center;
    color: #6d6d6d;
    font-size: 1em;
    position: relative;
    padding: 10px 0;
    background-color: #f2f2f2;
    font-size: 12px;
}

footer .copyright a {
    color: #6d6d6d;
}

footer .copyright a:hover,
footer .copyright a:focus {
    color: #ff5722;
}

footer .copyright b {
    font-weight: normal;
}

footer .social-icons li {
    margin-right: 10px;
}

footer .back-to-top {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 3px;
    background-color: #ff5722;
    color: #fff;
}

footer .back-to-top.show {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 999;
}

/*============================================================================
6. Product detail
==============================================================================*/
.details-product #gallery_01 {
    margin-top: 15px;
    z-index: 0;
}

.details-product #gallery_01 .owl-carousel.owl-loaded {
    overflow: hidden;
}

.details-product .details-pro .product-price {
    font-size: 2.14286em;
    display: inline-block;
}

.details-product .details-pro .price-box {
    margin: 5px 0 5px;
}

.details-product .details-pro .price-box del {
    color: #adadad;
    font-size: 1.42857em;
    margin-left: 5px;
}

.details-product .details-pro .product-summary .rte img {
    display: none;
}

.details-product .details-pro .custom-btn-number {
    position: relative;
    padding: 0;
    margin-bottom: 20px;
    border: none;
    box-shadow: none;
    height: auto;
}

.details-product .details-pro .custom-btn-number label {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.details-product .details-pro .custom-btn-number #qty {
    height: 40px;
    font-size: 1em;
    margin: 0;
    width: 60px;
    padding: 0 2px;
    text-align: center;
}

.details-product .details-pro .custom-btn-number .qtyminus {
    position: absolute;
    left: 25px;
    top: 4px;
    font-size: 1.42857em;
}

.details-product .details-pro .custom-btn-number .qtyplus {
    position: absolute;
    right: 25px;
    top: 4px;
    font-size: 1.42857em;
}

.zoomWrapper {
    width: 100% !important;
    height: auto !important;
}

.zoomWrapper img {
    position: static !important;
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
}

.zoomWrapper img~img {
    display: none !important;
}

.product-tab .tab-link {
    margin-right: 20px;
}

.product-tab .tab-link h3,
.product-tab .tab-link .h3 {
    margin: 10px 0;
    font-size: 1.14286em;
}

.product-tab .tab-link span {
    font-size: 1.14286em;
}

.product-tab .tab-link.current h3,
.product-tab .tab-link.current .h3 {
    color: #ff5722;
}

.product-tab .tab-content.current {
    min-height: 1px;
}

@media (max-width: 480px) {
    .product-tab .tab-content.current {
        min-height: 20px;
    }
}

/*============================================================================
7. Collection
==============================================================================*/
.view-mode span {
    font-size: 0;
}

.button-view-mode {
    padding: 0;
    margin: 0;
    font-size: 1.42857em;
}

.button-view-mode.active {
    box-shadow: none;
    color: #333;
}

.button-view-mode.active a {
    color: #333;
}

.sortPagiBar {
    padding-bottom: 15px;
}

/*============================================================================
8. Blogs
==============================================================================*/
.blog-item {
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-item .date {
    position: absolute;
    background: #ff5722;
    text-align: center;
    color: #fff;
    padding: 3px 10px;
    z-index: 10;
}

.blog-item .date span {
    display: block;
    line-height: 45px;
}

.blog-item .date span~span {
    overflow: hidden;
    border-top: 1px solid #fff;
}

.blog-item-name {
    font-weight: 700;
    position: relative;
    font-size: 1.14286em;
    margin: 0;
}

.blog-item-name a {
    color: #333;
}

.blog-item-name .fa {
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 11px;
    color: #ff5722;
}

.blog-item-summary {
    font-size: 1em;
    margin-bottom: 0;
}

.blog-item-thumbnail {
    position: relative;
}

.list-blogs .blog-item {
    margin-bottom: 25px;
}

/*============================================================================
9. Article
==============================================================================*/
.article-main .article-title {
    font-size: 1.71429em;
    line-height: 1.92857em;
    margin: 15px 0 8px;
}

.article-main .postby {
    font-size: 1.14286em;
    line-height: 1.71429em;
    color: #676767;
    margin-bottom: 10px;
}

.article-main .article-content {
    font-size: 1em;
}

.article-main .form-group {
    margin: 0;
    padding-top: 0;
    padding-bottom: 8px;
}

#article-comments {
    margin-top: 30px;
}

#article-comments .article-comment {
    margin-bottom: 10px;
}

#article-comments .article-comment-user-image {
    margin: 0;
    float: left;
    width: 50px;
    margin-right: 12px;
}

#article-comments .article-comment-user-comment {
    padding-left: 63px;
    font-size: 1em;
}

#article-comments .user-name-comment {
    margin: 0;
    color: #ff5722;
    font-size: 15px;
    line-height: 1;
}

#article-comments .article-comment-date-bull {
    padding: 5px 0;
    display: block;
    color: #acacac;
    font-size: 12px;
}

.social-media {
    font-size: 1em;
}

.social-media label {
    display: inline-block;
}

.social-media a {
    margin-right: 7px;
    color: #222;
}

.social-media a:hover,
.social-media a:focus {
    text-decoration: none;
    color: #222;
}

.social-media a:hover .fa-facebook-official,
.social-media a:focus .fa-facebook-official {
    color: #3b5998;
}

.social-media a:hover .fa-twitter,
.social-media a:focus .fa-twitter {
    color: #1da1f2;
}

.social-media a:hover .fa-pinterest,
.social-media a:focus .fa-pinterest {
    color: #bd081c;
}

.social-media a:hover .fa-google-plus,
.social-media a:focus .fa-google-plus {
    color: #dd4b39;
}

.social-media .list-inline li {
    margin-right: 20px;
}

textarea.form-control {
    border: 1px solid #e1e1e1;
}

.section-news-2 {
    margin-bottom: 20px;
}

/*============================================================================
10. CART
==============================================================================*/
.cart-item {
    background: #fff;
    padding: 20px 10px;
    border-bottom: 1px solid #e1e1e1;
}

.cart-item-image {
    float: left;
    width: 120px;
    margin-right: 20px;
}

.cart-item-info {
    padding-left: 140px;
}

.cart-item-info h3,
.cart-item-info .h3 {
    margin: 0;
    font-size: 1.28571em;
    font-weight: 400;
}

.cart-item-info .product-price {
    line-height: 50px;
}

.cart-item-info input {
    width: 95px;
    height: 45px;
    border-color: #e1e1e1;
    float: left;
}

.cart-item-info .remove-item {
    color: #c6c6c6;
    font-size: 38px;
    font-weight: 300;
    line-height: 47px;
    float: right;
}

.cart-item-info .variant {
    color: #adadad;
}

.name-product-cart {
    color: #ff5722;
}

.cart .total-price {
    background: #fff;
    padding: 25px;
    line-height: 45px;
}

.delete-cart .title {
    font-size: 2.14286em;
    text-align: center;
    padding: 30px 10px;
}

.delete-cart .btn-50 {
    width: calc(50% - 3px);
}

.delete-cart .btn-50 a {
    color: #fff;
    display: block;
}

/*============================================================================
11. ACCOUNT,ORDER,ADDREDSS...
==============================================================================*/
/*11.1 Account gerenal*/
#customer_register {
    margin-bottom: 20px;
}

#customer_login,
#recover_customer_password {
    margin-bottom: 0;
}

.checkbox.style input {
    margin: 0 !important;
    display: none;
}

.checkbox.style label {
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
    text-transform: none;
    position: relative;
    padding-left: 55px;
    line-height: 50px;
}

.checkbox.style label:before {
    display: block;
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.checkbox.style input:checked+label:after {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 20px;
    color: #ff5722;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/*11.2 Account*/
.block-account h3,
.block-account .h3 {
    margin-top: 0;
}

.customer-name {
    color: #ff5722;
    line-height: 55px;
}

.block-content.form-signup {
    background: #fff;
    padding-top: 10px;
}

.block-content.form-signup p {
    padding: 0;
    display: table;
}

.block-content.form-signup p i {
    display: table-cell;
    width: 20px;
    text-align: center;
    color: #ff5722;
}

.address-title {
    padding-left: 10px;
    margin-bottom: 15px;
    border-radius: 0 !important;
    font-weight: 300;
}

.address-title button {
    background: none;
    border: none;
    font-size: 0;
    width: 50px;
    height: 55px;
}

.address-title button.btn-edit {
    background-image: url(//theme.hstatic.net/1000362795/1000658450/14/btn-edit.png?v=497);
    background-repeat: no-repeat;
    background-position: center;
}

.address-title button.btn-delete {
    background-image: url(//theme.hstatic.net/1000362795/1000658450/14/btn-delete.png?v=497);
    background-repeat: no-repeat;
    background-position: center;
}

.address-subtitle {
    margin-top: 0;
    text-transform: uppercase;
}

.address-item-action {
    right: 0;
    top: -7px;
}

.address-item-action .btn-row {
    padding-right: 5px;
}

.address-group {
    background: #fff;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.address-group p {
    color: #595959;
}

.address-group p label {
    float: left;
    font-weight: 300;
}

/*11.2 Order*/
#order_payment,
#order_shipping {
    background: #fff;
    padding: 10px 0;
}

#order_payment .address.note i,
#order_shipping .address.note i {
    color: #ff5722;
    margin-right: 5px;
}

.totalorders {
    background: #fff;
    border-color: #e1e1e1;
}

.order-headding {
    margin: 0;
}

.info-contact .widget-menu p {
    display: inline;
}

.info-contact .logo {
    font-size: 20px;
}

/*============================================================================
12. SIDEBAR
==============================================================================*/
.aside-item.collection-category .nav-item {
    position: relative;
    clear: left;
    font-size: 1.07143em;
}

.aside-item.collection-category .nav-item a {
    font-size: 1.07143em;
}

.aside-item.collection-category .nav-item .fa {
    position: absolute;
    right: 5px;
    top: 12px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
}

.aside-item.collection-category .nav-item .dropdown-menu {
    position: static;
    width: 100%;
    border: 0;
    padding-left: 15px;
    box-shadow: none;
}

.aside-item.collection-category .nav-item.active>a {
    color: #ff5722;
}

.aside-item.collection-category .nav-item.active>.dropdown-menu {
    display: block;
}

.aside-item.collection-category .nav>li>a {
    padding: 5px 15px;
}

.aside-item .nav>li>a:focus,
.aside-item .nav>li>a:hover {
    background: none;
}

/*
.ui-widget.ui-widget-content{
height: 2px;
background: #ebebeb;
}
.ui-slider-range.ui-corner-all.ui-widget-header {
background: $main-color !important;
}
.ui-slider-horizontal .ui-slider-handle {
height: 14px!important;
width: 14px!important;
border-radius: 50%!important;
top: -6px!important;
border: none!important;
background: $main-color!important;
}
.ui-widget.ui-widget-content {
border: none!important;
margin-bottom: 25px;
width: calc(100% - 14px);
margin-left: 7px;
}*/
#start {
    width: 100px;
    float: left;
}

@media (max-width: 1024px) {
    #start {
        width: 80px;
    }
}

#start input {
    text-align: center;
    border-radius: 0px;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#stop {
    width: 100px;
    float: left;
    margin-left: 30px;
    text-align: center;
    position: relative;
}

@media (max-width: 1024px) {
    #stop {
        width: 80px;
    }
}

#stop input {
    text-align: center;
    border-radius: 0px;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#stop:before {
    content: "-";
    position: absolute;
    left: -17px;
    font-size: 17px;
}

a#filter-value {
    height: 30px;
    line-height: 30px;
    font-weight: 400;
    width: 100px;
    margin-top: 15px;
    background-color: #ff5722;
    color: #fff;
    border-color: #ff5722;
}

a#filter-value:hover,
a#filter-value:focus {
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #bb2d00;
    border-color: #bb2d00;
}

/*============================================================================
#13. FIXED APPS
==============================================================================*/
div#isp_search_result_page_container .btn-search {
    display: none;
}

button.btn.btn-default.btn-search {
    display: none;
}

div#isp_search_result_page_container form {
    margin-bottom: 0;
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Update*/
footer .footer-info-widget p.hotline a {
    color: #fff;
}

.product-box .sale-flash {
    background-color: #ff5722;
}

.blog-item .date {
    background: #f02b2b;
}

.off-canvas-menu .action .btn-primary.btn-50:last-child {
    background: #2bf525;
}

.off-canvas-menu .action .btn-primary.btn-50:last-child:hover {
    background: #43f63d;
}

.details-product form button.btn-primary2 {
    background: #2bf525;
}

.details-product form button.btn-primary2:hover {
    background: #43f63d;
}

.view-desktop a.btn.btn-primary.btn-full {
    background: #ef7d00;
}

.view-desktop a.btn.btn-primary.btn-full:hover {
    background: #ff8a0a;
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Typography variables
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Slider*/
.home-slider,
.section-blog-sliders {
    overflow: hidden;
}

.home-slider .item,
.section-blog-sliders .item {
    position: relative;
}

.home-slider.owl-carousel .owl-nav .owl-next,
.section-blog-sliders.owl-carousel .owl-nav .owl-next {
    right: 15px !important;
    background: transparent;
    top: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev {
    left: 15px !important;
    background: transparent;
    top: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev:before,
.home-slider.owl-carousel .owl-nav .owl-next:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-next:before {
    font-size: 20px;
    background: #fff;
    border: 1px solid #222;
    color: #222;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev:hover:before,
.home-slider.owl-carousel .owl-nav .owl-next:hover:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev:hover:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-next:hover:before {
    color: #ff5722;
    border-color: #ff5722;
}

.home-slider.owl-carousel .owl-dots .owl-dot,
.section-blog-sliders.owl-carousel .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    background-color: #222;
}

.home-slider.owl-carousel .owl-dots .owl-dot.active,
.section-blog-sliders.owl-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 10px;
    background-color: #ff5722;
    border-radius: 6px;
}

@media (max-width: 767px) {

    .home-slider.owl-carousel .owl-dots .owl-dot.active,
    .section-blog-sliders.owl-carousel .owl-dots .owl-dot.active {
        height: 6px !important;
        width: 6px !important;
        border-radius: 50% !important;
        border: 1px solid #ff5722 !important;
    }
}

@media (max-width: 767px) {

    .home-slider.owl-carousel .owl-dots .owl-dot,
    .section-blog-sliders.owl-carousel .owl-dots .owl-dot {
        height: 6px !important;
        width: 6px !important;
        border-radius: 50% !important;
        border: 1px solid #fff !important;
    }
}

.section-blog-sliders.owl-carousel .owl-dots .owl-dot.active {
    background-color: #a8a8a8;
}

/*Tab products*/
.section_tab_product h2,
.section_tab_product .h2 {
    font-size: 1.78571em;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #222;
}

.section_tab_product .tabs-title {
    margin-bottom: 30px;
    border-radius: 0px;
    overflow: hidden;
    margin-top: 10px;
}

.section_tab_product .tabs-title li {
    display: inline-block;
    background: #fff;
    height: 20px;
    line-height: 20px;
    margin: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
}

.section_tab_product .tabs-title li.current {
    color: #ff5722;
    background: #fff;
}

.section_tab_product .tabs-title li:hover,
.section_tab_product .tabs-title li:focus {
    color: #ff5722;
}

.section_tab_product .tab-content {
    clear: left;
}

@media (max-width: 767px) {
    .section_tab_product .tabs-title li {
        width: 87px;
    }
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Table*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    .table-responsive-block {
        /* Force table to not be like tables anymore */
        /* Hide table headers (but not display: none;, for accessibility) */
        /*
      Label the data
      */
    }

    .table-responsive-block table,
    .table-responsive-block thead,
    .table-responsive-block tbody,
    .table-responsive-block th,
    .table-responsive-block td,
    .table-responsive-block tr {
        display: block;
    }

    .table-responsive-block thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-responsive-block tr {
        background: #fff;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .table-responsive-block td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 40%;
        text-align: right;
        font-weight: 700;
    }

    .table-responsive-block td.last {
        padding: 0;
        line-height: 50px;
    }

    .table-responsive-block td.last a {
        color: #ff5722;
    }

    .table-responsive-block td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 13px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        white-space: nowrap;
        font-weight: 400;
    }

    .table-responsive-block .table-order td:nth-of-type(1):before {
        content: "Đơn hàng";
    }

    .table-responsive-block .table-order td:nth-of-type(2):before {
        content: "Ngày";
    }

    .table-responsive-block .table-order td:nth-of-type(3):before {
        content: "Chuyển đến";
    }

    .table-responsive-block .table-order td:nth-of-type(4):before {
        content: "Địa chỉ";
    }

    .table-responsive-block .table-order td:nth-of-type(5):before {
        content: "Giá trị";
    }

    .table-responsive-block .table-order td:nth-of-type(6):before {
        content: "Tình trạng";
    }

    .table-responsive-block #order_details td:nth-of-type(1):before {
        content: "Sản phẩm";
    }

    .table-responsive-block #order_details td:nth-of-type(2):before {
        content: "Mã sản phẩm";
    }

    .table-responsive-block #order_details td:nth-of-type(3):before {
        content: "Giá";
    }

    .table-responsive-block #order_details td:nth-of-type(4):before {
        content: "Số lượng";
    }

    .table-responsive-block #order_details td:nth-of-type(5):before {
        content: "Tổng";
    }

    .table-responsive-block #order_details td:nth-of-type(6):before {
        content: "Tình trạng";
    }

    .table-responsive-block .totalorders td:nth-of-type(1):before {
        content: "Tạm tính";
    }

    .table-responsive-block .totalorders td:nth-of-type(2):before {
        content: "Phí vận chuyển";
    }

    .table-responsive-block .totalorders td:nth-of-type(3):before {
        content: "Tổng tiền";
    }

    .table-responsive-block .totalorders td:nth-of-type(4):before {
        content: "Số lượng";
    }

    .table-responsive-block .totalorders td:nth-of-type(5):before {
        content: "Tổng";
    }

    .table-responsive-block .totalorders td:nth-of-type(6):before {
        content: "Tình trạng";
    }
}

/*=========Filter===============*/
@media (max-width: 543px) {
    section.sidebar.left-content.col-lg-12 {
        padding: 0;
    }
}

/*========Menu============*/
@media (max-width: 1199px) {
    header nav .mega-content {
        width: 940px;
    }

    header nav .mega-content .level1.item {
        text-align: left;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .search.f-right {
        margin-right: 50px;
    }
}

@media (max-width: 767px) {
    header>.container {
        position: relative;
    }

    .menu-bar.hidden-md.hidden-lg {
        position: absolute;
        top: 40px;
        right: 15px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        z-index: 1000;
    }

    header .logo a {
        display: inline-block;
        /* width: 100%; */
        text-align: left;
    }

    header nav .nav-item {
        display: block;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    header nav .nav-item .dropdown-menu {
        display: none !important;
        position: static;
        border: none;
    }

    header nav .nav-item.open a {
        background: none !important;
    }

    header nav .nav-item.open>.dropdown-menu {
        display: block !important;
        margin: 0;
        padding: 0;
    }

    header nav li.menu-line {
        display: none;
        border: none;
    }

    header nav .nav-item>a {
        line-height: 20px;
        padding: 5px 15px 3px;
    }

    header nav #nav-mobile .nav-item>.dropdown-menu {
        padding: 0 0 0 15px;
        position: static;
        width: 100%;
        float: none;
        border: none;
        padding-right: 7px;
    }

    header nav .nav-item:hover>.dropdown-menu li.open>.dropdown-menu {
        display: block !important;
    }

    .header-main {
        padding: 10px 0;
    }

    #nav {
        padding-right: 0;
        display: none;
        padding-right: 0;
        padding: 10px 0;
        border: 1px solid #ebebeb;
        margin-bottom: 15px;
    }

    #nav.open {
        display: block;
    }

    #nav .nav-link>.fa {
        float: right;
        line-height: 22px;
        margin-right: -15px;
        width: 40px;
        text-align: center;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
    }
}

/*========Header============*/
@media (max-width: 543px) {
    .topbar .a-left {
        display: none;
    }

    .topbar ul.list-inline.f-right {
        float: left !important;
    }

    .search.f-right {
        float: none;
        width: 100%;
    }
}

/*========Footer============*/
@media (max-width: 420px) {
    .col-xs-6.footer-header {
        width: 100%;
    }
}

/*=============Product===========*/
/*=============Collection===========*/
@media (max-width: 430px) {
    .collection p.title-head-info {
        position: static;
    }

    .collection h1.title-head,
    .collection .title-head.h1 {
        margin-bottom: 5px;
    }
}

/*Product*/
@media (max-width: 480px) {
    .product-tab .tab-link {
        margin-right: 10px;
    }
}

/*Address*/
@media (max-width: 375px) {

    .sodiachi .btn.btn-50,
    .sodiachi input.btn-50[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*Product grrid*/
@media (max-width: 768px) {
    .quick-view {
        display: none !important;
    }
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Update*/
footer .footer-info-widget p.hotline a {
    color: #fff;
}

.product-box .sale-flash {
    display: inline-block;
    padding: 4px 10px;
    color: #fff;
    background-color: #fe9931;
    text-transform: uppercase;
    -webkit-box-shadow: 2px 2px 0px 0px rgba(218, 218, 218, 0.3);
    -moz-box-shadow: 2px 2px 0px 0px rgba(218, 218, 218, 0.3);
    box-shadow: 2px 2px 0px 0px rgba(218, 218, 218, 0.3);
}

.product-box .sale-flash:before {
    border-top: 10px solid #9e9e9e;
}

.blog-item .date {
    background: #f02b2b;
}

.off-canvas-menu .action .btn-primary.btn-50:last-child {
    background: #2bf525;
}

.off-canvas-menu .action .btn-primary.btn-50:last-child:hover {
    background: #43f63d;
}

.details-product form button.btn-primary2 {
    background: #2bf525;
}

.details-product form button.btn-primary2:hover {
    background: #43f63d;
}

.view-desktop a.btn.btn-primary.btn-full {
    background: #ef7d00;
}

.view-desktop a.btn.btn-primary.btn-full:hover {
    background: #ff8a0a;
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Typography variables
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Slider*/
.home-slider,
.section-blog-sliders {
    overflow: hidden;
}

.home-slider .item,
.section-blog-sliders .item {
    position: relative;
}

.home-slider.owl-carousel .owl-nav .owl-next,
.section-blog-sliders.owl-carousel .owl-nav .owl-next {
    right: 15px !important;
    background: transparent;
    top: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev {
    left: 15px !important;
    background: transparent;
    top: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev:before,
.home-slider.owl-carousel .owl-nav .owl-next:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-next:before {
    font-size: 20px;
    background: #fff;
    border: 1px solid #222;
    color: #222;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev:hover:before,
.home-slider.owl-carousel .owl-nav .owl-next:hover:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev:hover:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-next:hover:before {
    color: #ff5722;
    border-color: #ff5722;
}

.home-slider.owl-carousel .owl-dots .owl-dot,
.section-blog-sliders.owl-carousel .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

.home-slider.owl-carousel .owl-dots .owl-dot.active,
.section-blog-sliders.owl-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 10px;
    background-color: #ff5722;
    border-radius: 6px;
}

.section-blog-sliders.owl-carousel .owl-dots .owl-dot.active {
    background-color: #a8a8a8;
}

/*Tab products*/
.section_tab_product h2,
.section_tab_product .h2 {
    font-size: 1.78571em;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #222;
}

.section_tab_product .tabs-title {
    margin-bottom: 30px;
    border-radius: 0px;
    overflow: hidden;
    margin-top: 10px;
}

.section_tab_product .tabs-title li {
    display: inline-block;
    background: #fff;
    height: 20px;
    line-height: 20px;
    margin: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    color: #8c8c8c;
}

.section_tab_product .tabs-title li.current {
    color: #333;
    background: #fff;
}

.section_tab_product .tabs-title li:hover,
.section_tab_product .tabs-title li:focus {
    color: #333;
}

.section_tab_product .tab-content {
    clear: left;
}

@media (max-width: 767px) {
    .section_tab_product .tabs-title li {
        width: 87px;
    }
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Table*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    .table-responsive-block {
        /* Force table to not be like tables anymore */
        /* Hide table headers (but not display: none;, for accessibility) */
        /*
      Label the data
      */
    }

    .table-responsive-block table,
    .table-responsive-block thead,
    .table-responsive-block tbody,
    .table-responsive-block th,
    .table-responsive-block td,
    .table-responsive-block tr {
        display: block;
    }

    .table-responsive-block thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-responsive-block tr {
        background: #fff;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .table-responsive-block td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 40%;
        text-align: right;
        font-weight: 700;
    }

    .table-responsive-block td.last {
        padding: 0;
        line-height: 50px;
    }

    .table-responsive-block td.last a {
        color: #ff5722;
    }

    .table-responsive-block td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 8px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        white-space: nowrap;
        font-weight: 400;
    }

    .table-responsive-block .table-order td:nth-of-type(1):before {
        content: "Đơn hàng";
    }

    .table-responsive-block .table-order td:nth-of-type(2):before {
        content: "Ngày";
    }

    .table-responsive-block .table-order td:nth-of-type(3):before {
        content: "Chuyển đến";
    }

    .table-responsive-block .table-order td:nth-of-type(4):before {
        content: "Địa chỉ";
    }

    .table-responsive-block .table-order td:nth-of-type(5):before {
        content: "Giá trị";
    }

    .table-responsive-block .table-order td:nth-of-type(6):before {
        content: "Tình trạng";
    }

    .table-responsive-block #order_details td:nth-of-type(1):before {
        content: "Sản phẩm";
    }

    .table-responsive-block #order_details td:nth-of-type(2):before {
        content: "Mã sản phẩm";
    }

    .table-responsive-block #order_details td:nth-of-type(3):before {
        content: "Giá";
    }

    .table-responsive-block #order_details td:nth-of-type(4):before {
        content: "Số lượng";
    }

    .table-responsive-block #order_details td:nth-of-type(5):before {
        content: "Tổng";
    }

    .table-responsive-block #order_details td:nth-of-type(6):before {
        content: "Tình trạng";
    }

    .table-responsive-block .totalorders td:nth-of-type(1):before {
        content: "Tạm tính";
    }

    .table-responsive-block .totalorders td:nth-of-type(2):before {
        content: "Phí vận chuyển";
    }

    .table-responsive-block .totalorders td:nth-of-type(3):before {
        content: "Tổng tiền";
    }

    .table-responsive-block .totalorders td:nth-of-type(4):before {
        content: "Số lượng";
    }

    .table-responsive-block .totalorders td:nth-of-type(5):before {
        content: "Tổng";
    }

    .table-responsive-block .totalorders td:nth-of-type(6):before {
        content: "Tình trạng";
    }
}

/*=========Filter===============*/
@media (max-width: 543px) {
    section.sidebar.left-content.col-lg-12 {
        padding: 0;
    }
}

/*========Menu============*/
@media (max-width: 1199px) {
    header nav .mega-content {
        width: 940px;
    }

    header nav .mega-content .level1.item {
        text-align: left;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .search.f-right {
        margin-right: 50px;
    }
}

@media (max-width: 991px) {
    header>.container {
        position: relative;
    }

    .menu-bar.hidden-md.hidden-lg {
        position: absolute;
        top: 40px;
        right: 15px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        z-index: 1000;
    }

    header .logo a {
        display: inline-block;
        /* width: 100%; */
        text-align: left;
    }

    header nav .nav-item {
        display: block;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    header nav .nav-item .dropdown-menu {
        display: none !important;
        position: static;
        border: none;
    }

    header nav .nav-item.open a {
        background: none !important;
    }

    header nav .nav-item.open>.dropdown-menu {
        display: block !important;
        margin: 0;
        padding: 0;
    }

    header nav li.menu-line {
        display: none;
        border: none;
    }

    header nav .nav-item>a {
        line-height: 20px;
        padding: 5px 15px 3px;
    }

    header nav #nav-mobile .nav-item>.dropdown-menu {
        padding: 0 0 0 15px;
        position: static;
        width: 100%;
        float: none;
        border: none;
        padding-right: 7px;
    }

    header nav .nav-item:hover>.dropdown-menu li.open>.dropdown-menu {
        display: block !important;
    }

    .header-main {
        padding: 10px 0;
    }

    #nav {
        padding-right: 0;
        display: none;
        padding-right: 0;
        padding: 10px 0;
        border: 1px solid #ebebeb;
        margin-bottom: 15px;
    }

    #nav.open {
        display: block;
    }

    #nav .nav-link>.fa {
        float: right;
        line-height: 22px;
        margin-right: -15px;
        width: 40px;
        text-align: center;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
    }
}

/*========Header============*/
@media (max-width: 543px) {
    .topbar .a-left {
        display: none;
    }

    .topbar ul.list-inline.f-right {
        float: left !important;
    }

    .search.f-right {
        float: none;
        width: 100%;
    }
}

/*========Footer============*/
@media (max-width: 420px) {
    .col-xs-6.footer-header {
        width: 100%;
    }
}

/*=============Collection===========*/
@media (max-width: 430px) {
    .collection p.title-head-info {
        position: static;
    }

    .collection h1.title-head,
    .collection .title-head.h1 {
        margin-bottom: 5px;
    }
}

/*Product*/
@media (max-width: 480px) {
    .product-tab .tab-link {
        margin-right: 10px;
    }
}

/*Address*/
@media (max-width: 375px) {

    .sodiachi .btn.btn-50,
    .sodiachi input.btn-50[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*Product grrid*/
@media (max-width: 768px) {
    .quick-view {
        display: none !important;
    }
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Update*/
footer .footer-info-widget p.hotline a {
    color: #fff;
}

.product-box .sale-flash {
    display: inline-block;
    padding: 4px 10px;
    color: #fff;
    background-color: #fe9931;
    text-transform: uppercase;
    -webkit-box-shadow: 2px 2px 0px 0px rgba(218, 218, 218, 0.3);
    -moz-box-shadow: 2px 2px 0px 0px rgba(218, 218, 218, 0.3);
    box-shadow: 2px 2px 0px 0px rgba(218, 218, 218, 0.3);
}

.product-box .sale-flash:before {
    border-top: 10px solid #9e9e9e;
}

.blog-item .date {
    background: #f02b2b;
}

.off-canvas-menu .action .btn-primary.btn-50:last-child {
    background: #2bf525;
}

.off-canvas-menu .action .btn-primary.btn-50:last-child:hover {
    background: #43f63d;
}

.details-product form button.btn-primary2 {
    background: #2bf525;
}

.details-product form button.btn-primary2:hover {
    background: #43f63d;
}

.view-desktop a.btn.btn-primary.btn-full {
    background: #ef7d00;
}

.view-desktop a.btn.btn-primary.btn-full:hover {
    background: #ff8a0a;
}

/*============================================================================
#Mixin
==============================================================================*/
.text1line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text2line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text3line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text4line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.text5line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.text6line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.text7line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.text8line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.text9line {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
}

/*============================================================================
#Typography variables
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Slider*/
.home-slider,
.section-blog-sliders {
    overflow: hidden;
}

.home-slider .item,
.section-blog-sliders .item {
    position: relative;
}

.home-slider.owl-carousel .owl-nav .owl-next,
.section-blog-sliders.owl-carousel .owl-nav .owl-next {
    right: 15px !important;
    background: transparent;
    top: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev {
    left: 15px !important;
    background: transparent;
    top: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev:before,
.home-slider.owl-carousel .owl-nav .owl-next:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-next:before {
    font-size: 20px;
    background: #fff;
    border: 1px solid #222;
    color: #222;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev:hover:before,
.home-slider.owl-carousel .owl-nav .owl-next:hover:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-prev:hover:before,
.section-blog-sliders.owl-carousel .owl-nav .owl-next:hover:before {
    color: #ff5722;
    border-color: #ff5722;
}

.home-slider.owl-carousel .owl-dots .owl-dot,
.section-blog-sliders.owl-carousel .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

.home-slider.owl-carousel .owl-dots .owl-dot.active,
.section-blog-sliders.owl-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 10px;
    background-color: #ff5722;
    border-radius: 6px;
}

.section-blog-sliders.owl-carousel .owl-dots .owl-dot.active {
    background-color: #a8a8a8;
}

/*Tab products*/
.section_tab_product h2,
.section_tab_product .h2 {
    font-size: 1.78571em;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #222;
}

.section_tab_product .tabs-title {
    margin-bottom: 30px;
    border-radius: 0px;
    overflow: hidden;
    margin-top: 10px;
}

.section_tab_product .tabs-title li {
    display: inline-block;
    background: #fff;
    height: 20px;
    line-height: 20px;
    margin: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    color: #8c8c8c;
}

.section_tab_product .tabs-title li.current {
    color: #333;
    background: #fff;
}

.section_tab_product .tabs-title li:hover,
.section_tab_product .tabs-title li:focus {
    color: #333;
}

.section_tab_product .tab-content {
    clear: left;
}

@media (max-width: 767px) {
    .section_tab_product .tabs-title li {
        width: 87px;
    }
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Table*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    .table-responsive-block {
        /* Force table to not be like tables anymore */
        /* Hide table headers (but not display: none;, for accessibility) */
        /*
      Label the data
      */
    }

    .table-responsive-block table,
    .table-responsive-block thead,
    .table-responsive-block tbody,
    .table-responsive-block th,
    .table-responsive-block td,
    .table-responsive-block tr {
        display: block;
    }

    .table-responsive-block thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-responsive-block tr {
        background: #fff;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .table-responsive-block td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 40%;
        text-align: right;
        font-weight: 700;
    }

    .table-responsive-block td.last {
        padding: 0;
        line-height: 50px;
    }

    .table-responsive-block td.last a {
        color: #ff5722;
    }

    .table-responsive-block td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 8px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        white-space: nowrap;
        font-weight: 400;
    }

    .table-responsive-block .table-order td:nth-of-type(1):before {
        content: "Đơn hàng";
    }

    .table-responsive-block .table-order td:nth-of-type(2):before {
        content: "Ngày";
    }

    .table-responsive-block .table-order td:nth-of-type(3):before {
        content: "Chuyển đến";
    }

    .table-responsive-block .table-order td:nth-of-type(4):before {
        content: "Địa chỉ";
    }

    .table-responsive-block .table-order td:nth-of-type(5):before {
        content: "Giá trị";
    }

    .table-responsive-block .table-order td:nth-of-type(6):before {
        content: "Tình trạng";
    }

    .table-responsive-block #order_details td:nth-of-type(1):before {
        content: "Sản phẩm";
    }

    .table-responsive-block #order_details td:nth-of-type(2):before {
        content: "Mã sản phẩm";
    }

    .table-responsive-block #order_details td:nth-of-type(3):before {
        content: "Giá";
    }

    .table-responsive-block #order_details td:nth-of-type(4):before {
        content: "Số lượng";
    }

    .table-responsive-block #order_details td:nth-of-type(5):before {
        content: "Tổng";
    }

    .table-responsive-block #order_details td:nth-of-type(6):before {
        content: "Tình trạng";
    }

    .table-responsive-block .totalorders td:nth-of-type(1):before {
        content: "Tạm tính";
    }

    .table-responsive-block .totalorders td:nth-of-type(2):before {
        content: "Phí vận chuyển";
    }

    .table-responsive-block .totalorders td:nth-of-type(3):before {
        content: "Tổng tiền";
    }

    .table-responsive-block .totalorders td:nth-of-type(4):before {
        content: "Số lượng";
    }

    .table-responsive-block .totalorders td:nth-of-type(5):before {
        content: "Tổng";
    }

    .table-responsive-block .totalorders td:nth-of-type(6):before {
        content: "Tình trạng";
    }
}

/*=========Filter===============*/
@media (max-width: 543px) {
    section.sidebar.left-content.col-lg-12 {
        padding: 0;
    }
}

/*========Menu============*/
@media (max-width: 1199px) {
    header nav .mega-content {
        width: 100%;
    }

    header nav .mega-content .level1.item {
        text-align: left;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .search.f-right {
        margin-right: 50px;
    }
}

@media (max-width: 991px) {
    header>.container {
        position: relative;
    }

    .menu-bar.hidden-md.hidden-lg {
        position: absolute;
        top: 40px;
        right: 15px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        z-index: 1000;
    }

    header .logo a {
        display: inline-block;
        /* width: 100%; */
        text-align: left;
    }

    header nav .nav-item {
        display: block;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    header nav .nav-item .dropdown-menu {
        display: none !important;
        position: static;
        border: none;
    }

    header nav .nav-item.open a {
        background: none !important;
    }

    header nav .nav-item.open>.dropdown-menu {
        display: block !important;
        margin: 0;
        padding: 0;
    }

    header nav li.menu-line {
        display: none;
        border: none;
    }

    header nav .nav-item>a {
        line-height: 20px;
        padding: 5px 15px 3px;
    }

    header nav #nav-mobile .nav-item>.dropdown-menu {
        padding: 0 0 0 15px;
        position: static;
        width: 100%;
        float: none;
        border: none;
        padding-right: 7px;
    }

    header nav .nav-item:hover>.dropdown-menu li.open>.dropdown-menu {
        display: block !important;
    }

    .header-main {
        padding: 10px 0;
    }

    #nav {
        padding-right: 0;
        display: none;
        padding-right: 0;
        padding: 10px 0;
        border: 1px solid #ebebeb;
        margin-bottom: 15px;
    }

    #nav.open {
        display: block;
    }

    #nav .nav-link>.fa {
        float: right;
        line-height: 22px;
        margin-right: -15px;
        width: 40px;
        text-align: center;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
    }
}

/*========Header============*/
@media (max-width: 543px) {
    .topbar .a-left {
        display: none;
    }

    .topbar ul.list-inline.f-right {
        float: left !important;
    }

    .search.f-right {
        float: none;
        width: 100%;
    }
}

/*========Footer============*/
@media (max-width: 420px) {
    .col-xs-6.footer-header {
        width: 100%;
    }
}

/*=============Collection===========*/
@media (max-width: 430px) {
    .collection p.title-head-info {
        position: static;
    }

    .collection h1.title-head,
    .collection .title-head.h1 {
        margin-bottom: 5px;
    }
}

/*Product*/
@media (max-width: 480px) {
    .product-tab .tab-link {
        margin-right: 10px;
    }
}

/*Address*/
@media (max-width: 375px) {

    .sodiachi .btn.btn-50,
    .sodiachi input.btn-50[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*Product grrid*/
@media (max-width: 768px) {
    .quick-view {
        display: none !important;
    }
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Update*/
footer .footer-info-widget p.hotline a {
    color: #fff;
}

.product-box .sale-flash {
    background-color: #9e9e9e;
}

.product-box .sale-flash:before {
    border-top: 10px solid #9e9e9e;
}

.blog-item .date {
    background: #f02b2b;
}

.off-canvas-menu .action .btn-primary.btn-50:last-child {
    background: #2bf525;
}

.off-canvas-menu .action .btn-primary.btn-50:last-child:hover {
    background: #43f63d;
}

.details-product form button.btn-primary2 {
    background: #2bf525;
}

.details-product form button.btn-primary2:hover {
    background: #43f63d;
}

.view-desktop a.btn.btn-primary.btn-full {
    background: #ef7d00;
}

.view-desktop a.btn.btn-primary.btn-full:hover {
    background: #ff8a0a;
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Typography variables
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Slider*/
.home-slider {
    overflow: hidden;
}

.home-slider .item {
    position: relative;
}

.home-slider.owl-carousel .owl-nav .owl-next {
    right: 15px !important;
    background: transparent;
    top: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev {
    left: 15px !important;
    background: transparent;
    top: 50%;
}

.home-slider.owl-carousel .owl-nav .owl-prev:before,
.home-slider.owl-carousel .owl-nav .owl-next:before {
    font-size: 84px;
    background: transparent;
}

/*Tab products*/
.section_tab_product h2,
.section_tab_product .h2 {
    font-size: 1.71429em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 20px 0;
}

.section_tab_product .tabs-title {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.section_tab_product .tabs-title li {
    width: 140px;
    display: inline-block;
    background: #dadbdb;
    height: 40px;
    line-height: 40px;
    margin-right: 1px;
}

.section_tab_product .tabs-title li.current {
    color: #fff;
    background: #898989;
}

.section_tab_product .tab-content {
    clear: left;
}

@media (min-width: 1200px) {
    .section_tab_product .tab-content .products .col-lg-3:nth-child(4n+1) {
        clear: left;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .section_tab_product .products .col-sm-4:nth-child(3n+1) {
        clear: left;
    }
}

@media (max-width: 767px) {
    .section_tab_product .tabs-title li {
        width: 87px;
    }
}

/*============================================================================
#Mixin
==============================================================================*/
/*============================================================================
#Variable
==============================================================================*/
/*Table*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    .table-responsive-block {
        /* Force table to not be like tables anymore */
        /* Hide table headers (but not display: none;, for accessibility) */
        /*
      Label the data
      */
    }

    .table-responsive-block table,
    .table-responsive-block thead,
    .table-responsive-block tbody,
    .table-responsive-block th,
    .table-responsive-block td,
    .table-responsive-block tr {
        display: block;
    }

    .table-responsive-block thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-responsive-block tr {
        background: #fff;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .table-responsive-block td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 40%;
        text-align: right;
        font-weight: 700;
    }

    .table-responsive-block td.last {
        padding: 0;
        line-height: 50px;
    }

    .table-responsive-block td.last a {
        color: #ff5722;
    }

    .table-responsive-block td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 13px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        white-space: nowrap;
        font-weight: 400;
    }

    .table-responsive-block .table-order td:nth-of-type(1):before {
        content: "Đơn hàng";
    }

    .table-responsive-block .table-order td:nth-of-type(2):before {
        content: "Ngày";
    }

    .table-responsive-block .table-order td:nth-of-type(3):before {
        content: "Chuyển đến";
    }

    .table-responsive-block .table-order td:nth-of-type(4):before {
        content: "Địa chỉ";
    }

    .table-responsive-block .table-order td:nth-of-type(5):before {
        content: "Giá trị";
    }

    .table-responsive-block .table-order td:nth-of-type(6):before {
        content: "Tình trạng";
    }

    .table-responsive-block #order_details td:nth-of-type(1):before {
        content: "Sản phẩm";
    }

    .table-responsive-block #order_details td:nth-of-type(2):before {
        content: "Mã sản phẩm";
    }

    .table-responsive-block #order_details td:nth-of-type(3):before {
        content: "Giá";
    }

    .table-responsive-block #order_details td:nth-of-type(4):before {
        content: "Số lượng";
    }

    .table-responsive-block #order_details td:nth-of-type(5):before {
        content: "Tổng";
    }

    .table-responsive-block #order_details td:nth-of-type(6):before {
        content: "Tình trạng";
    }

    .table-responsive-block .totalorders td:nth-of-type(1):before {
        content: "Tạm tính";
    }

    .table-responsive-block .totalorders td:nth-of-type(2):before {
        content: "Phí vận chuyển";
    }

    .table-responsive-block .totalorders td:nth-of-type(3):before {
        content: "Tổng tiền";
    }

    .table-responsive-block .totalorders td:nth-of-type(4):before {
        content: "Số lượng";
    }

    .table-responsive-block .totalorders td:nth-of-type(5):before {
        content: "Tổng";
    }

    .table-responsive-block .totalorders td:nth-of-type(6):before {
        content: "Tình trạng";
    }
}

/*=========Filter===============*/
@media (max-width: 543px) {
    section.sidebar.left-content.col-lg-12 {
        padding: 0;
    }
}

/*========Menu============*/
@media (max-width: 1199px) {
    header nav .mega-content {
        width: 940px;
    }

    header nav .mega-content .level1.item {
        text-align: left;
    }
}

@media (max-width: 1024px) {
    header nav .mega-content {
        width: 100%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .search.f-right {
        margin-right: 50px;
    }
}

@media (max-width: 991px) {
    header>.container {
        position: relative;
    }

    .menu-bar.hidden-md.hidden-lg {
        position: absolute;
        top: 40px;
        right: 15px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        z-index: 1000;
    }

    header .logo a {
        display: inline-block;
        /* width: 100%; */
        text-align: left;
    }

    header nav .nav-item {
        display: block;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    header nav .nav-item .dropdown-menu {
        display: none !important;
        position: static;
        border: none;
    }

    header nav .nav-item.open a {
        background: none !important;
    }

    header nav .nav-item.open>.dropdown-menu {
        display: block !important;
        margin: 0;
        padding: 0;
    }

    header nav li.menu-line {
        display: none;
        border: none;
    }

    header nav .nav-item>a {
        line-height: 20px;
        padding: 5px 15px 3px;
    }

    header nav #nav-mobile .nav-item>.dropdown-menu {
        padding: 0 0 0 15px;
        position: static;
        width: 100%;
        float: none;
        border: none;
        padding-right: 7px;
    }

    header nav .nav-item:hover>.dropdown-menu li.open>.dropdown-menu {
        display: block !important;
    }

    .header-main {
        padding: 10px 0;
    }

    #nav {
        padding-right: 0;
        display: none;
        padding-right: 0;
        padding: 10px 0;
        border: 1px solid #ebebeb;
        margin-bottom: 15px;
    }

    #nav.open {
        display: block;
    }

    #nav .nav-link>.fa {
        float: right;
        line-height: 22px;
        margin-right: -15px;
        width: 40px;
        text-align: center;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
    }
}

/*========Header============*/
@media (max-width: 543px) {
    .topbar .a-left {
        display: none;
    }

    .topbar ul.list-inline.f-right {
        float: left !important;
    }

    .logo {
        display: block;
        font-size: 20px;
    }

    .search.f-right {
        float: none;
        width: 100%;
    }
}

/*========Footer============*/
@media (max-width: 420px) {
    .col-xs-6.footer-header {
        width: 100%;
    }
}

/*=============Product===========*/
@media (max-width: 543px) {
    .product-box .product-thumbnail>a {
        max-height: 1000px;
        height: auto;
    }
}

/*=============Collection===========*/
@media (max-width: 430px) {
    .collection p.title-head-info {
        position: static;
    }

    .collection h1.title-head,
    .collection .title-head.h1 {
        margin-bottom: 5px;
    }
}

/*Product*/
@media (max-width: 480px) {
    .product-tab .tab-link {
        margin-right: 10px;
    }
}

/*Address*/
@media (max-width: 375px) {

    .sodiachi .btn.btn-50,
    .sodiachi input.btn-50[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*Product grrid*/
@media (max-width: 768px) {
    .quick-view {
        display: none !important;
    }
}