@import "custom-variables.css";
@import "custom.css";
@import "fonts.css";
::-moz-selection {
    background: var(--primary-text-color);
    color: #fff;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background-color: var(--body-bg-color);
    font-family: TcccUnityHeadline, Arial, Helvetica, sans-serif;
    color: var(--body-text-color);
    font-weight: 400;
}

@media (max-width: 767px) {
    body {
        padding: 0;
    }
}

.wrapper {
    background-color: transparent;
}

@media (max-width: 767px) {
    .container {
        padding: 0 10px;
        width: 440px;
    }
}

@media (max-width: 479px) {
    .container {
        padding: 0 10px;
        width: 300px;
    }
}


/*---
| GENERAL ELEMENTS
---*/

b,
strong {
    font-weight: 900;
}

p,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
table,
form,
blockquote,
canvas,
caption,
embed,
fieldset,
figure,
video,
progress,
object,
map,
hr {
    margin: 0 0 20px;
}

a {
    /*color: #1abc9c;*/
    text-decoration: none;
    -webkit-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, -webkit-border-color 200ms ease-in-out;
    -moz-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, -moz-border-color 200ms ease-in-out;
    -o-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border-color 200ms ease-in-out;
    transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border-color 200ms ease-in-out;
}

a:hover,
a:focus {
    color: #148f77;
}

hr {
    border-top: 1px solid #f0f0f0;
    margin: 40px 0;
}

hr.small {
    margin: 20px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    letter-spacing: -0.5px;
    font-family: Gotham, Arial, Helvetica, sans-serif;
    color: var(--primary-text-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus {
    text-decoration: none;
}

h1 {
    font-size: 48px;
    line-height: 60px;
}

h2 {
    font-size: 32px;
    line-height: 42px;
}

h3 {
    font-size: 26px;
    line-height: 35px;
}

h4 {
    font-size: 1rem;
    line-height: 1.4rem;
}

h5 {
    font-size: 14px;
    line-height: 20px;
}

h6 {
    font-size: 10px;
    line-height: 14px;
}

code {
    border-bottom: 1px solid #e3e3e3;
    background-color: #f0f0f0;
    color: #606362;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

pre {
    border-bottom: 1px solid #e3e3e3;
    background-color: #f0f0f0;
    color: #606362;
    font-size: 12px;
    padding: 10px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

ul {
    list-style-position: inside;
}

.font-digital {
    font-family: Digital, sans-serif !important;
}

.lh-2 {
    line-height: 2 !important;
}


/*---
| LISTS
---*/

.list {
    list-style-position: inside;
}

.list .list {
    padding-left: 40px;
}

.list-disc {
    list-style-type: disc;
}

.list-square {
    list-style-type: square;
}

.list-border {
    list-style: none;
}

.list-border li {
    border-left: 5px solid #1abc9c;
    padding-left: 10px;
    margin-bottom: 5px;
}

.list-chevron {
    list-style: none;
}

.list-chevron li:before {
    content: "\f105";
    color: #1abc9c;
    font-family: FontAwesome;
    margin-right: 5px;
}

.list-none {
    list-style-type: none;
}

.columns1 {
    -webkit-columns: 20px 1;
    -moz-columns: 20px 1;
    columns: 20px 1;
}

.columns2 {
    -webkit-columns: 20px 2;
    -moz-columns: 20px 2;
    columns: 20px 2;
}

.columns3 {
    -webkit-columns: 20px 3;
    -moz-columns: 20px 3;
    columns: 20px 3;
}

.columns4 {
    -webkit-columns: 20px 4;
    -moz-columns: 20px 4;
    columns: 20px 4;
}

@media (max-width: 767px) {
    .columns1,
    .columns2,
    .columns3,
    .columns4 {
        -webkit-columns: 20px 1;
        -moz-columns: 20px 1;
        columns: 20px 1;
    }
}


/*---
| TABLES
---*/

.table {
    color: var(--primary-text-color) !important;
    font-size: .9rem !important;
    line-height: 2rem !important;
    font-family: TcccUnityHeadline, Arial, Helvetica, sans-serif !important;
}

.table thead th {
    font-weight: 400 !important;
}

.table td,
.table th {
    border-top: 0 !important;
    border-bottom: 1px solid var(--primary-color) !important;
    vertical-align: middle !important;
    padding: 0 !important;
}

.table> :not(:first-child) {
    border-top: 0 !important;
}

.table-striped tbody>tr:nth-child(2n+1)>td,
.table-striped tbody>tr:nth-child(2n+1)>th {
    background-color: #f0f0f0;
}

.table-bordered {
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.table-bordered thead:first-child tr:first-child>th:first-child,
.table-bordered thead:first-child tr:first-child>td:first-child,
.table-bordered tbody:first-child tr:first-child>th:first-child,
.table-bordered tbody:first-child tr:first-child>td:first-child {
    -webkit-border-top-left-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius-topleft: 2px;
    -moz-background-clip: padding;
    border-top-left-radius: 2px;
    background-clip: padding-box;
}

.table-bordered thead:first-child tr:first-child>th:last-child,
.table-bordered thead:first-child tr:first-child>td:last-child,
.table-bordered tbody:first-child tr:first-child>th:last-child,
.table-bordered tbody:first-child tr:first-child>td:last-child {
    -webkit-border-top-right-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius-topright: 2px;
    -moz-background-clip: padding;
    border-top-right-radius: 2px;
    background-clip: padding-box;
}

.table-bordered thead:last-child tr:last-child>th:first-child,
.table-bordered thead:last-child tr:last-child>td:first-child tbody:last-child tr:last-child>th:first-child,
.table-bordered tbody:last-child tr:last-child>td:first-child,
.table-bordered tfoot:last-child tr:last-child>th:first-child,
.table-bordered tfoot:last-child tr:last-child>td:first-child {
    -webkit-border-bottom-left-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius-bottomleft: 2px;
    -moz-background-clip: padding;
    border-bottom-left-radius: 2px;
    background-clip: padding-box;
}

.table-bordered thead:last-child tr:last-child>th:last-child,
.table-bordered thead:last-child tr:last-child>td:last-child,
.table-bordered tbody:last-child tr:last-child>th:last-child,
.table-bordered tbody:last-child tr:last-child>td:last-child,
.table-bordered tfoot:last-child tr:last-child>th:last-child,
.table-bordered tfoot:last-child tr:last-child>td:last-child {
    -webkit-border-bottom-right-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius-bottomright: 2px;
    -moz-background-clip: padding;
    border-bottom-right-radius: 2px;
    background-clip: padding-box;
}

.table-hover tbody tr:hover>th,
.table-hover tbody tr:hover>td {
    background-color: #1abc9c;
    color: #ffffff;
}


/*---
| IMAGES
---*/

.img-rounded {
    -webkit-border-radius: 10px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 10px;
    -moz-background-clip: padding;
    border-radius: 10px;
    background-clip: padding-box;
}

.img-circle {
    -webkit-border-radius: 9999px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 9999px;
    -moz-background-clip: padding;
    border-radius: 9999px;
    background-clip: padding-box;
}

.img-polaroid {
    border: 1px solid #d7d7d7;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    /*color: @arguments;*/
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}


/*---
| GENERIC THINGS
---*/

.clear {
    clear: both;
}

.script {
    font-family: "Shadows Into Light", cursive;
    font-weight: 400;
    font-size: 150%;
}

.price-list {
    margin: 0 0 -20px 0;
}

.price-list li {
    margin: 0;
    padding: 15px;
    border-bottom: 1px dotted #f0f0f0;
    list-style: none;
    font-size: .9rem;
    position: relative;
}

.price-list li strong {
    position: absolute;
    right: 20px;
}

.price-list li em {
    display: block;
    margin-top: 10px;
}

.price-list li.important {
    font-size: 1.1rem;
    color: #1abc9c;
}


/*---
| FLASH MESSAGE
---*/

.flash {
    background-color: #1abc9c;
    font-size: 12px;
    color: #ffffff;
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
}

.flash a.remove {
    display: block;
    width: 14px;
    height: 14px;
    text-align: center;
    color: rgba(71, 73, 72, 0.6);
    text-shadow: 0 1px rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-size: 14px;
    line-height: 14px;
    position: absolute;
    top: 4px;
    right: 4px;
}

.flash a.remove:hover {
    color: rgba(71, 73, 72, 0.8);
}

.flash.error {
    background-color: #c24227;
}

@media (max-width: 479px) {
    .mm20 {
        margin-top: 20px;
    }
}


/*---
| FORMS
---*/

form {
    margin-bottom: 0;
}

label {
    font-size: .9rem;
    margin-bottom: .2rem;
}

label.control-label {
    white-space: nowrap;
}

select,
select.form-select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    font-family: TcccUnityHeadline, Arial, Helvetica, sans-serif;
    font-size: .9rem;
    font-weight: 300;
    -webkit-border-radius: .5rem;
    -webkit-background-clip: padding-box;
    -moz-border-radius: .5rem;
    -moz-background-clip: padding;
    border-radius: .5rem;
    background-clip: padding-box;
    width: 100%;
    background-color: #fff;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    border-color: #cacaca;
    -webkit-box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    -moz-box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    /*color: @arguments;*/
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    background-color: #f6f6f6;
    border-color: #cacaca;
    -webkit-box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    -moz-box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    /*color: @arguments;*/
}

textarea {
    min-height: 60px !important;
    max-height: 240px !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.control-group {
    margin-bottom: 10px;
}

.field-text-description {
    font-size: .8rem;
    margin-top: .5rem;
}


/*---
| BUTTONS
---*/

.btn {
    border-radius: .5rem;
}

.btn,
.btn-default {
    background-color: var(--default-button-bg-color);
    color: var(--default-button-text-color);
    border: 1px solid var(--default-button-bg-color);
}

.btn:hover,
.btn:focus,
.btn:active,
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
    background-color: var(--default-button-bg-color-hover);
    color: var(--default-button-text-color-hover);
    border: 1px solid var(--default-button-bg-color-hover);
}

.btn-primary,
.btn-success,
div.dataTables_paginate ul.pagination li.active a {
    background-color: var(--primary-button-bg-color);
    color: var(--primary-button-text-color);
    border: 1px solid var(--primary-button-bg-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: var(--primary-button-bg-color-hover);
    color: var(--primary-button-text-color-hover);
    border: 1px solid var(--primary-button-bg-color-hover);
}

.btn-secondary {
    background-color: var(--secondary-button-bg-color);
    color: var(--secondary-button-text-color);
    border: 1px solid var(--secondary-button-bg-color);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--secondary-button-bg-color-hover);
    color: var(--secondary-button-text-color-hover);
    border: 1px solid var(--secondary-button-bg-color-hover);
}

.btn-white {
    background-color: #fff;
    color: var(--primary-text-color);
}

.btn-white:hover {
    background-color: #c8c8c8;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    opacity: .25;
}

.dataTables_wrapper .dataTables_paginate {
    margin: 1rem 0 !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button {
    border: 0 !important;
    box-shadow: none !important;
    font-weight: 600 !important;
    font-size: .875rem !important;
    padding: .3rem .8rem !important;
    border-radius: .5rem;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button {
    background: #fff !important;
    color: var(--primary-text-color) !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button:hover,
.dataTables_wrapper .dataTables_paginate a.paginate_button:focus,
.dataTables_wrapper .dataTables_paginate a.paginate_button:active {
    background: #c8c8c8 !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.disabled {
    opacity: .25;
    !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate a.paginate_button.disabled:focus,
.dataTables_wrapper .dataTables_paginate a.paginate_button.disabled:active {
    opacity: .25;
    !important;
    background: transparent !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.current {
    background: var(--primary-button-bg-color) !important;
    color: var(--primary-button-text-color) !important;
    border: 1px solid var(--primary-button-bg-color) !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate a.paginate_button.current:focus,
.dataTables_wrapper .dataTables_paginate a.paginate_button.current:active {
    background: var(--primary-button-bg-color-hover) !important;
    color: var(--primary-button-text-color-hover) !important;
    border: 1px solid var(--primary-button-bg-color-hover) !important;
}


/*---
| BOX
---*/

.box {
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 2%;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.box .box-header {
    margin: 0 -10px;
    padding: 0 20px 20px 0;
    border-bottom: 1px solid #f0f0f0;
    background-color: #ffffff;
}

.box .box-header h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--primary-text-color);
    margin: 0;
}

.box .box-header h4 {
    margin: 0;
}

.box .box-header h5 {
    font-size: 14px;
    line-height: 21px;
    color: var(--priamry-text-color);
    font-weight: 400;
    margin: 0;
}

.box .box-image {
    margin: -20px -20px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.box .box-image a,
.box .box-image img {
    display: block;
}

.box .box-body,
.box .box-content {
    margin-top: 20px;
}

.box .box-body>*:last-child,
.box .box-content>*:last-child {
    margin-bottom: 0;
}

.box .box-body .price-list,
.box .box-content .price-list {
    margin: 0;
    padding: 0;
}

.box .box-body .price-list li,
.box .box-content .price-list li {
    margin: 0;
    padding: 0;
}

.box .box-footer {
    margin: 20px -20px -20px;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.box .box-footer:before {
    content: '';
    display: block;
}

.box .box-footer:after {
    content: '';
    display: table;
    clear: both;
}

.box .box-header+.box-footer {
    border-top: none;
    margin-top: 0;
}

.box .box-content.highlight {
    margin: 0 -20px -20px 0;
    padding: 20px;
    background-color: #f9f9f9;
}

.box .buttons {
    margin: 20px -20px -20px;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.box .buttons:before {
    content: '';
    display: block;
}

.box .buttons:after {
    content: '';
    display: table;
    clear: both;
}

.box.border-top {
    border-top: 5px solid #1abc9c;
}

.box.border-right {
    border-right: 5px solid #1abc9c;
}

.box.border-bottom {
    border-bottom: 5px solid #1abc9c;
}

.box.border-left {
    border-left: 5px solid #1abc9c;
}

.extend {
    margin: 0 -20px;
    padding: 0 20px;
}


/*---
| PANELS (THESE TO REPLACE ALL BOXES)
---*/

.panel {
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 20px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    /*color: @arguments;*/
}

.panel .panel-content {
    margin: -20px;
    padding: 20px;
}

.panel.border-top {
    border-top: 5px solid #1abc9c;
}

.panel.border-right {
    border-right: 5px solid #1abc9c;
}

.panel.border-bottom {
    border-bottom: 5px solid #1abc9c;
}

.panel.border-left {
    border-left: 5px solid #1abc9c;
}

.panel-navigation {
    list-style: none;
    margin: -20px 0;
    font-size: 12px;
}

.panel-navigation .panel-navigation {
    margin: 0;
}

.panel-navigation a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin: 0 -20px;
    color: #474948;
    text-decoration: none;
    position: relative;
}

.panel-navigation a:hover {
    background-color: #1abc9c;
    color: #ffffff;
    border-color: #1abc9c;
}

.panel-navigation a:hover .toggle {
    color: #1abc9c;
    background-color: #ffffff;
}

.panel-navigation.primary>li>a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.panel-navigation.primary .toggle {
    margin-top: 2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    height: 20px;
    width: 20px;
    text-align: center;
    position: absolute;
    right: 20px;
    background-color: #d7d7d7;
    color: #ffffff;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}


/*---
| PAYMENT FORM
---*/

.payment-form>div {
    margin-top: 20px;
}

.payment-form ul.form {
    list-style: none;
}

.payment-form ul.form>li {
    margin-bottom: 20px;
}


/*---
| MODAL
---*/

.modal {
    border: none;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    /*color: @arguments;*/
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.modal .modal-header {
    padding: 20px;
}

.modal .modal-header .hgroup.title {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.modal .modal-header button {
    margin: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border-radius: 3px;
    border: 1px solid var(--ternary-color);
    color: var(--ternary-color);
}

.modal .modal-body {
    padding: 20px;
}

.modal .modal-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f9f9f9;
    text-align: left;
    -webkit-border-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0;
    -moz-background-clip: padding;
    border-radius: 0;
    background-clip: padding-box;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    /*color: @arguments;*/
}

.modal .modal-head+modal-footer {
    border-top: none;
}

.modal-backdrop {
    background-color: #474948;
}

.modal-backdrop,
.modal-backdrop.fade.in {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
}


/*---
| TABLES
---*/

.styled-table {
    width: 100%;
    margin-bottom: 20px;
}

.styled-table thead th,
.styled-table thead td {
    font-size: 12px;
    color: #474948;
    border-bottom: 1px solid #d7d7d7;
    text-transform: uppercase;
}

.styled-table thead th {
    font-weight: 600;
}

.styled-table thead td {
    font-weight: 400;
}

.styled-table tbody th,
.styled-table tbody td {
    border-bottom: 1px solid #f0f0f0;
}

.styled-table thead th,
.styled-table tbody th,
.styled-table thead td,
.styled-table tbody td {
    text-align: left;
    padding: 10px;
    vertical-align: top;
}

.styled-table thead th:first-child,
.styled-table tbody th:first-child,
.styled-table thead td:first-child,
.styled-table tbody td:first-child {
    padding-left: 0;
}

.styled-table thead th:last-child,
.styled-table tbody th:last-child,
.styled-table thead td:last-child,
.styled-table tbody td:last-child {
    padding-right: 0;
}

.styled-table thead th.text-left,
.styled-table tbody th.text-left,
.styled-table thead td.text-left,
.styled-table tbody td.text-left {
    text-align: left;
}

.styled-table thead th.text-center,
.styled-table tbody th.text-center,
.styled-table thead td.text-center,
.styled-table tbody td.text-center {
    text-align: center;
}

.styled-table thead th.text-right,
.styled-table tbody th.text-right,
.styled-table thead td.text-right,
.styled-table tbody td.text-right {
    text-align: right;
}

#transactions td.col_points,
#transactions td.col_current {
    font-size: 13px;
}


/*---
| HELPERS
---*/

span.label.red {
    background-color: #e74c3c;
}

span.label.green {
    background-color: #2ecc71;
}

span.label.blue {
    background-color: #258cd1;
}

span.label.yellow {
    background-color: #e08e0b;
}


/*---
| AJAX LOADER
---*/

.ajax_loading_indicator {
    position: fixed;
    background: url('../../img/loader.gif') center center no-repeat rgba(71, 73, 72, 0.5);
    width: 100%;
    height: 100%;
}

.ajax_loading_indicator>span {
    display: none;
}


/*=====
	
	HEADER

=====*/

.header {
    position: relative;
    z-index: 250;
}

.header a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}

.header .top {
    position: relative;
    z-index: 10;
    background-color: #474948;
    height: 32px;
    font-size: 12px;
    line-height: 32px;
    color: #ffffff;
}

.header .top p,
.header .top ul {
    margin-bottom: 0;
}

.header .top a {
    font-size: 12px;
    color: inherit;
    text-decoration: none;
    color: #ffffff;
}

.header .top a:hover {
    color: #1abc9c;
    text-decoration: none;
    color: #c7c8c8;
}

.header .bottom {
    background-color: #ffffff;
    padding: 0;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    /*color: @arguments;*/
    /*zoom: 1;*/
}

.header .bottom:before {
    content: '';
    display: block;
}

.header .bottom:after {
    content: '';
    display: table;
    clear: both;
}

@media (max-width: 767px) {
    .header .bottom .container {
        position: relative;
        /*margin-bottom: -30px;*/
        height: 150px;
        overflow: hidden;
    }
}

.header .logo {
    padding: 10px 0;
}

.header .logo a {
    display: inline-block;
    height: 60px;
    text-decoration: none;
    font-size: 20px;
    overflow-y: hidden;
    text-align: left;
    width: auto;
    max-width: 650px;
}

@media (max-width: 767px) {
    .header .logo a {
        width: 440px;
        font-size: 1.1em;
    }
}

.header .logo img {
    max-height: 100%;
    margin-right: 10px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .header .logo {
        width: auto;
        float: none;
        margin: 0;
    }
    .header .logo a {
        /*text-align: center;*/
    }
}

.search {
    padding: 25px 0;
}

@media (max-width: 767px) {
    .search {
        padding: 20px 0;
    }
}

.search .qs_s {
    position: relative;
}

.search .qs_s #query {
    background-color: #f0f0f0;
    border-color: #d7d7d7;
    padding: 4px 14px;
    margin-bottom: 0;
    width: 100%;
    height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 9999px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 9999px;
    -moz-background-clip: padding;
    border-radius: 9999px;
    background-clip: padding-box;
    -webkit-box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    -moz-box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    /*color: @arguments;*/
}

.search .qs_s #query:focus {
    background-color: #f6f6f6;
    -webkit-box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    -moz-box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    box-shadow: inset 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    /*color: @arguments;*/
}

.search #autocomplete-results {
    position: absolute;
    width: 100%;
}

.search #autocomplete-results ul {
    margin: 6px 0 0;
    background-color: #ffffff;
    border-left: 5px solid #1abc9c;
    position: relative;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    /*color: @arguments;*/
}

.search #autocomplete-results ul:before {
    content: "";
    display: block;
    width: 26px;
    height: 14px;
    position: absolute;
    left: 50%;
    top: -14px;
    margin-left: -13px;
    background-image: url('../../img/triangle.png');
    z-index: 100;
}

.search #autocomplete-results ul li {
    list-style: none;
    border-top: 1px solid #f0f0f0;
}

.search #autocomplete-results ul li:first-child {
    border-top: none;
}

.search #autocomplete-results ul a {
    display: block;
    padding: 10px;
    color: inherit;
    text-decoration: none;
}

.search #autocomplete-results ul a .image {
    width: 30px;
    height: 30px;
    overflow: hidden;
    float: left;
    margin-right: 10px;
}

.search #autocomplete-results ul a .image img {
    display: block;
}

.search #autocomplete-results ul a h6 {
    line-height: 30px;
    font-size: 12px;
    margin: 0;
    font-weight: 400;
}

.search #autocomplete-results ul a:hover {
    background-color: #f0f0f0;
}

.search #autocomplete-results ul li.active a {
    text-decoration: none;
    background-color: #1abc9c;
}

.search #autocomplete-results ul li.active a h6 {
    font-weight: 700;
    color: #ffffff;
}

.mini-cart {
    padding: 20px 0;
}

@media (max-width: 767px) {
    .mini-cart {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
    }
}

@media (max-width: 480px) {
    .mini-cart {
        padding: 60px 0;
    }
}

.mini-cart a {
    display: block;
    line-height: 40px;
    float: right;
    height: 40px;
    width: 40px;
    background: url('../../img/cart.png') no-repeat left center;
    position: relative;
}

.mini-cart a>span {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    text-align: center;
    background-color: #1abc9c;
    color: #ffffff;
    position: absolute;
    top: 0;
    right: 0px;
    -webkit-border-radius: 12px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 12px;
    -moz-background-clip: padding;
    border-radius: 12px;
    background-clip: padding-box;
}


/*---
| NAVIGATION
---*/

nav.navigation {
    background-color: #fbfbf9;
    position: relative;
    z-index: 240;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    /*color: @arguments;*/
}

@media (max-width: 979px) {
    nav.navigation .container .row .span9 {
        width: auto;
    }
}

.main-menu {
    margin: 0;
    height: auto;
    /*zoom: 1;*/
}

.main-menu:before {
    content: '';
    display: block;
}

.main-menu:after {
    content: '';
    display: table;
    clear: both;
}

.main-menu li {
    list-style: none;
}

.main-menu a {
    text-decoration: none;
    font-size: 12px;
    display: block;
}

.main-menu li {
    position: relative;
}

.main-menu li ul {
    display: none;
    position: absolute;
    left: 0px;
    top: 50px;
    border-top: 5px solid #1abc9c;
    background-color: #ffffff;
    /*overflow: hidden;*/
    margin: 0;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    /*color: @arguments;*/
    z-index: 1000;
    min-width: 200px;
}

.main-menu li ul li a {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    color: #474948;
}

.main-menu li ul li.menu-item-has-children>a:before {
    font-family: fontAwesome;
    content: "\f0da";
    float: right;
    color: #474948;
}

.main-menu li ul li:first-child a {
    border-top: none;
}

.main-menu li ul li ul {
    left: 190px;
    top: 10px;
}

.main-menu li:hover>a {
    background-color: #1abc9c;
    color: #ffffff;
}

.main-menu li:hover.menu-item-has-children>a:before {
    color: #ffffff;
}

.main-menu li:hover>ul {
    display: block;
}

.main-menu>li {
    float: left;
}

.main-menu>li>a {
    padding: 15px 30px 15px 0;
    color: #606362;
    text-transform: uppercase;
}

.main-menu>li:hover>a,
.main-menu>li>a:hover {
    color: #1abc9c;
    background: none;
}

.main-menu>li ul li ul li>ul {
    left: auto;
    right: 190px;
}

.main-menu>li ul li ul li>ul li ul {
    right: auto;
    left: 190px;
}

.main-menu .megamenu-parent {
    position: static;
}

.main-menu .megamenu-sub-menu {
    /*margin-left: 0px !important;*/
    padding: 20px;
    padding-top: 0px;
}

.main-menu .megamenu-sub-menu ul {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    min-width: 0px;
}

.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu {
    width: 100%;
}

.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu>li {
    display: block;
    padding: 0px;
    margin: 0px;
    border: 0px;
}

.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu>li a {
    display: block;
    background: none;
    color: #474948;
    padding: 5px;
    margin: 0px;
    border: 0px;
    font-size: 12px;
}

.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu>li a:before {
    content: "\f105";
    color: #1abc9c;
    font-family: FontAwesome;
    margin-right: 5px;
}

.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu>li a:hover {
    color: #1abc9c;
}

.main-menu .megamenu-sub-menu .megamenu-column {
    float: left;
    padding-right: 20px;
}

.main-menu .megamenu-sub-menu .megamenu-column ul {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    /*color: @arguments;*/
    border: 0px;
    padding: 0px;
}

.main-menu .megamenu-sub-menu .megamenu-column a {
    color: #1abc9c;
}

.main-menu .megamenu-sub-menu .megamenu-column a:before {
    content: "";
}

.main-menu .megamenu-sub-menu .megamenu-column a:hover {
    color: #474948;
}

.main-menu .megamenu-sub-menu .megamenu-content {
    /*padding-top: 20px;*/
    font-size: 12px;
}

.main-menu .megamenu-sub-menu .megamenu-content .map-canvas,
.main-menu .megamenu-sub-menu .megamenu-content img,
.main-menu .megamenu-sub-menu .megamenu-content iframe {
    margin: 0px;
    padding: 0px;
    display: block;
}

.main-menu .megamenu-sub-menu .megamenu-content .map-canvas {
    margin-bottom: 20px;
}

.main-menu .megamenu-sub-menu .megamenu-content [class*="span"] {
    width: 100%;
}

.main-menu .megamenu-sub-menu .megamenu-content ul {
    display: block;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    /*color: @arguments;*/
    border: 0px;
    list-style: disc;
}

.main-menu .megamenu-sub-menu .megamenu-content ul li {
    border: 0px;
    list-style: disc;
}

.main-menu .megamenu-sub-menu .megamenu-content ul li a {
    border: 0px;
    background: none;
    color: #474948;
}

.main-menu .megamenu-sub-menu .megamenu-content ul li a:hover {
    color: #1abc9c;
    background: none;
}

.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu .megamenu-heading,
.main-menu .megamenu-sub-menu .megamenu-heading {
    margin: 0px;
    padding: 0px;
    padding-top: 20px;
    left: auto;
    right: auto;
    clear: both;
}

.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu .megamenu-heading a:hover,
.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu .megamenu-heading:hover a,
.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu .megamenu-heading a,
.main-menu .megamenu-sub-menu .megamenu-heading a:hover,
.main-menu .megamenu-sub-menu .megamenu-heading:hover a,
.main-menu .megamenu-sub-menu .megamenu-heading a {
    background: none;
    margin: 0px;
    padding: 0px;
    color: #474948;
    font-weight: bold;
    font-size: 16px;
    cursor: text;
    margin-bottom: 20px;
    display: block;
    border: 0px;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
}

.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu .megamenu-heading a:hover:before,
.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu .megamenu-heading:hover a:before,
.main-menu .megamenu-sub-menu .megamenu-inner-sub-menu .megamenu-heading a:before,
.main-menu .megamenu-sub-menu .megamenu-heading a:hover:before,
.main-menu .megamenu-sub-menu .megamenu-heading:hover a:before,
.main-menu .megamenu-sub-menu .megamenu-heading a:before {
    display: none;
}

.main-menu .megamenu-sub-menu input[type="text"],
.main-menu .megamenu-sub-menu input[type="password"],
.main-menu .megamenu-sub-menu input[type="date"],
.main-menu .megamenu-sub-menu input[type="datetime"],
.main-menu .megamenu-sub-menu input[type="email"],
.main-menu .megamenu-sub-menu input[type="number"],
.main-menu .megamenu-sub-menu input[type="search"],
.main-menu .megamenu-sub-menu input[type="tel"],
.main-menu .megamenu-sub-menu input[type="time"],
.main-menu .megamenu-sub-menu input[type="url"],
.main-menu .megamenu-sub-menu textarea,
.main-menu .megamenu-sub-menu select {
    min-height: 30px;
    width: 100%;
}

.main-menu .megamenu-sub-menu textarea {
    height: 100px;
}

.megamenu_container {
    height: auto;
}

.main-menu-button {
    display: none !important;
}

@media only screen and (max-width: 768px) {
    .main-menu-button {
        display: block !important;
        -webkit-border-radius: 2px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 2px;
        -moz-background-clip: padding;
        border-radius: 2px;
        background-clip: padding-box;
        padding: 10px;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 10px;
        text-decoration: none;
        border: 0px;
        background-color: #1abc9c;
        color: #ffffff;
    }
    .main-menu-button:after {
        font-family: fontAwesome;
        content: "\f078";
        font-weight: bold;
        float: right;
    }
    .main-menu-button:hover,
    .main-menu-button:focus,
    .main-menu-button:active {
        background-color: rgba(26, 188, 156, 0.8);
        color: #ffffff;
        text-decoration: none;
    }
    .megamenu_container {
        overflow: hidden;
        -webkit-transition: height 0.5s ease;
        -moz-transition: height 0.5s ease;
        -o-transition: height 0.5s ease;
        -ms-transition: height 0.5s ease;
        transition: height 0.5s ease;
        padding-bottom: 10px;
    }
    .main-menu {
        position: relative;
        margin-bottom: 5px;
        right: 0%;
        display: none;
    }
    .main-menu.selected {
        display: block;
    }
    .main-menu li {
        display: block;
        float: none;
        margin-top: 1px;
        position: static;
    }
    .main-menu li a {
        display: block;
        float: none;
        padding: 10px 15px;
    }
    .main-menu li a:hover {
        background-color: #1abc9c;
        -webkit-border-radius: 2px;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 2px;
        -moz-background-clip: padding;
        border-radius: 2px;
        background-clip: padding-box;
        color: #ffffff !important;
    }
    .main-menu li.back>a:before {
        font-family: fontAwesome;
        content: "\f0d9";
        margin-right: 5px;
    }
    .main-menu li.menu-item-has-children>a:before {
        font-family: fontAwesome;
        content: "\f0da";
        float: right;
        /*color: @black;*/
    }
    .main-menu li.megamenu-parent {
        display: none;
    }
    .main-menu li ul,
    .main-menu li ul li ul,
    .main-menu li ul li ul li ul,
    .main-menu li ul li ul li ul li ul {
        /*display: block;*/
        /*position: static;*/
        display: none;
        width: 100%;
        position: absolute;
        left: 100%;
        right: auto;
        top: 0px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        /*color: @arguments;*/
        background: none;
        border: 0px;
    }
    .main-menu li.selected>ul {
        display: block;
    }
}

.mobile-nav {
    width: 100%;
    margin: 15px 0;
}


/*---
| MAIN
---*/

.main {
    padding: 20px 20px 138px 20px;
    position: relative;
    z-index: 10;
}


/*---
| CRUMBS
---*/

.crumbs {
    background-color: #fbfbf9;
    position: relative;
    z-index: 40;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    /*color: @arguments;*/
}

.breadcrumb {
    background-color: transparent;
    margin: 0;
    font-size: 12px;
    padding: 15px 0;
    -webkit-border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0px;
    -moz-background-clip: padding;
    border-radius: 0px;
    background-clip: padding-box;
}

.breadcrumb li {
    text-shadow: none;
}

.breadcrumb li:last-child a:after {
    content: "";
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
    color: #1abc9c;
}

.breadcrumb a:after {
    content: "\f105";
    font-family: FontAwesome;
    margin: 0 5px 0 8px;
    color: #adafae;
}

.breadcrumb .active {
    color: #939694;
}


/*---
| CONNECT
---*/

.twitter-bar {
    padding: 20px 0;
    background-color: #fbfbf9;
    position: relative;
    z-index: 40;
    -webkit-box-shadow: 0 -1px 2px rgba(71, 73, 72, 0.09999999999999998);
    -moz-box-shadow: 0 -1px 2px rgba(71, 73, 72, 0.09999999999999998);
    box-shadow: 0 -1px 2px rgba(71, 73, 72, 0.09999999999999998);
    /*color: @arguments;*/
}

.twitter-bar .icon {
    font-size: 16px;
    line-height: 32px;
    background-color: #00acee;
    color: #ffffff;
    float: left;
    width: 32px;
    text-align: center;
    margin-right: 10px;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    /*color: @arguments;*/
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.twitter-bar #tweets {
    float: left;
}

@media (max-width: 767px) {
    .twitter-bar #tweets {
        max-width: 390px;
    }
}

@media (max-width: 480px) {
    .twitter-bar #tweets {
        max-width: 250px;
    }
}

.tweet_list {
    list-style: none;
    margin: 0;
}

.tweet_list .tweet {
    color: #868988;
    font-size: 12px;
    line-height: 18px;
    /*zoom: 1;*/
}

.tweet_list .tweet:before {
    content: '';
    display: block;
}

.tweet_list .tweet:after {
    content: '';
    display: table;
    clear: both;
}

.tweet_list .tweet .avatar {
    height: 32px;
    width: 32px;
    float: left;
    margin-right: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    /*color: @arguments;*/
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}

.tweet_list .tweet .avatar img {
    display: block;
    height: 32px;
    width: 32px;
}

.tweet_list .tweet .text {
    margin: 7px 0;
    float: left;
}

@media (max-width: 767px) {
    .tweet_list .tweet .text {
        max-width: 340px;
    }
    .header .logo img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .tweet_list .tweet .text {
        max-width: 200px;
    }
    .header .logo img {
        max-width: 300px;
    }
}

.tweet_list .tweet .tweet_time {
    margin-left: 5px;
    font-size: 10px;
    font-style: italic;
}

.tweet_list .tweet a {
    color: inherit;
    text-decoration: none;
}

.tweet_list .tweet a:hover {
    color: #1abc9c;
}


/*---
| FOOTER
---*/

.footer-bg-wrapper {
    position: relative;
}

.footer-bg-wrapper .footer-bg-gradient {
    position: absolute;
    z-index: -1;
    height: 320px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: transparent url('/themes/rexel_gold/img/bg-blue-gradient.jpg') repeat-x 10px 10px;
}

.footer .wrap-footer {
    position: relative;
    height: 100%;
}

.footer .main-footer {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
}

.footer .logo-footer-left {
    position: absolute;
    width: 382px;
    height: 185px;
    z-index: 2;
    left: 25px;
    top: -165px;
}

.footer .logo-footer-left img {
    width: 90%;
}

.footer .logo-footer {
    background: transparent url('/themes/rexel_gold/img/footer-translucent-bg.png') no-repeat center center;
    background-size: cover;
    height: 185px;
    width: 100%;
    position: absolute;
    bottom: 10px;
    z-index: 1;
}

.footer .logo-footer-right {
    position: absolute;
    width: 290px;
    height: 102px;
    z-index: 2;
    right: 30px;
    top: -30px;
}

.footer .logo-footer-right img {
    width: 90%;
}

.footer h6 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: #474948;
}

.footer .links {
    margin: 0;
}

.footer strong {
    font-size: 20px;
}

.footer .info-footer {
    color: var(--primary-text-color);
}

.footer .info-footer .legal {
    font-size: .7rem;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 60px;
}

.footer .contenido-patrocinadores {
    height: 100%;
    display: flex;
}

.footer .texto-patrocinadores {
    color: var(--primary-text-color);
    font-size: .8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 20px 20px;
}

@media (max-width: 1307px) {
    .footer .texto-patrocinadores>h4 {
        margin-left: 0;
    }
}

@media (max-width:1080px) {
    .footer .texto-patrocinadores {
        display: none;
    }
}

.footer .info-footer {
    height: 45%;
    text-align: right;
}

.footer .slider {
    height: 55%;
}

.footer .full-bottom {
    height: 100%;
}

.footer .scroller {
    overflow: hidden;
    flex: 1;
    margin-right: 340px;
    display: flex;
    height: 100%;
    align-items: center;
    margin-top: 10px;
    padding: 0 0 0 20px;
}

.footer .marcas-scroller {
    width: 100%;
}

.footer .marcas-scroller li {
    padding-right: 5px;
    display: inline;
    width: auto;
    text-align: center;
    margin-left: 20px;
}

.footer .marcas-scroller li>img {
    width: auto;
    height: 24px;
    margin-left: auto;
    margin-right: auto;
}

.footer .simply-scroll,
.footer .simply-scroll .simply-scroll-clip {
    width: 100%;
    height: 24px;
}

@media (max-width:660px) {
    .footer {
        height: 300px;
        max-height: 300px;
        min-height: 300px;
    }
    .footer .main-footer {
        height: 100%;
    }
    .footer .scroller {
        margin-right: 0;
        margin-top: -3px;
        padding-left: 20px !important;
        padding-right: 20px !important;
        align-items: end;
        padding-bottom: 10px;
    }
    .footer .scroller .simply-scroll {
        /*background-color: #fff;*/
    }
    .footer .slider {
        height: 40%;
    }
    .footer .info-footer {
        height: 60%;
        text-align: left;
        padding: 0 20px;
    }
    .footer .info-footer .legal {
        text-align: left;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-right: 0;
        padding-top: 5px;
        gap: 22px;
        font-size: .8rem;
    }
    .footer .info-footer .legal span.separator {
        display: none;
    }
    .footer-bg-wrapper .footer-bg-gradient {
        bottom: 150px;
    }
}


/*---
| CREDITS
---*/

.credits {
    background-color: #474948;
    padding: 10px 0;
    color: #939694;
    font-size: 12px;
    line-height: 18px;
}

.credits p {
    margin-bottom: 0;
}

.credits a {
    color: #adafae;
    text-decoration: none;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.credits a:hover {
    color: #c7c8c8;
}


/*---
| SEARCH ENGINE - PRICE INPUTS
---*/

#search-engine {
    margin: 40px 0 40px 0;
}

#search-engine .buscador {
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 20px;
    position: relative;
}

#search-engine .buscador i {
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 1.3rem;
}

#search-engine .selector {
    border-top: 1px solid var(--secondary-color);
}

#search-engine .price-filter {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 20px;
}

#search-engine .price-filter input {
    font-family: Digital, sans-serif;
    color: var(--secondary-text-color);
}


/*---
| SEARCH ENGINE - PRICE SLIDER
---*/

#slider-range {
    background-color: #ede8d6;
    border: 0;
    height: 3px;
    margin: 20px auto 30px auto;
    width: 95%;
}

.ui-slider-horizontal .ui-slider-range {
    background-color: var(--secondary-text-color);
    height: 3px;
}

.ui-slider-horizontal .ui-slider-handle {
    background: url('/themes/rexel_gold/img/products_page/slider-button.png') no-repeat scroll 0 0;
    background-size: cover;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    padding: 18px;
    top: -1.1em;
}


/*---
| PRODUCT CATEGORY LIST - LEFT MENU
---*/

.left-menu__product-category {
    padding-top: 10px;
    border-top: 1px solid var(--secondary-color);
}

.left-menu__product-category .left-menu__product-category__category-list a,
.left-menu__product-category .left-menu__product-category__title {
    display: flex;
    flex-wrap: wrap;
}

.left-menu__product-category .left-menu__product-category__title {
    font-size: 1.3rem;
    font-weight: 400;
}

.left-menu__product-category .left-menu__product-category__title>span {
    flex: 50%;
}

.left-menu__product-category .left-menu__product-category__category-list {
    margin-top: 10px;
    text-transform: uppercase !important;
}

.left-menu__product-category .left-menu__product-category__category-list a {
    font-size: 1.1rem;
    text-decoration: none;
}

.left-menu__product-category .left-menu__product-category__category-list a.selected {
    font-weight: 900;
}

.left-menu__product-category .left-menu__product-category__category-list a>.text-end {
    font-family: Digital, sans-serif;
}

.left-menu__product-category .left-menu__product-category__category-list a>span {
    flex: 50%;
}

.left-menu__product-category .left-menu__product-category__category-list a:hover {
    text-decoration: none;
    border: 0;
    font-weight: 600;
}


/*---
| PRODUCT PAGINATION
---*/

.paginator .btn {
    border: 0;
    box-shadow: none;
    font-weight: 600;
    padding: .3rem .8rem;
}

.paginator .btn-default {
    color: var(--primary-color);
}


/*---
| LEFT MENU
---*/

@media (min-width: 991px) {
    .sidebar {
        max-width: 300px;
        margin-bottom: 70px;
    }
}


/*---
| SHOPPINGCART
---*/

.shoppingcart {
    display: flex;
    gap: 30px;
}

.shoppingcart .shoppingcart-wrapper {
    flex: 1;
}


/*---
| PRODUCT LIST
---*/

.products {
    display: flex;
    gap: 30px;
}

.products .product-categories {
    width: 100%;
    max-width: 300px;
}

.products .product-list-wrapper {
    flex-grow: 1;
}

@media (max-width: 992px) {
    .products {
        flex-direction: column;
    }
    .products .product-categories {
        max-width: 300px;
        margin: 0 auto;
    }
}

.products .product-list {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    grid-gap: 50px;
}

.products .product-list-item {
    list-style: none;
    transition: box-shadow 0.3s ease-in-out;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.products .product-list-item:hover {
    border-radius: 5px;
    -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.25);
}

.products .product-list-item .image {
    text-align: center;
}

.products .product-list-item .prices-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.products .image img {
    max-width: 100%;
}

.products .title {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products .product-name a {
    color: var(--primary-text-color);
}

.products .product-name h3 {
    font-size: 1.1rem;
    line-height: 1.3rem;
    text-align: center;
    font-weight: 600;
}

.products .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}


/*---
| FLEXSLIDER
---*/

.flexslider {
    margin: 0;
    padding: 0;
}

.flexslider .slides>li {
    display: none;
    -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
    width: 100%;
    display: block;
}

.flex-pauseplay span {
    text-transform: capitalize;
}

.slides:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .slides {
    display: block;
}

* html .slides {
    height: 1%;
}

.flexslider {
    margin: -40px 0 80px;
    position: relative;
    z-index: 10;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.09999999999999998);
    /*color: @arguments;*/
}

.flexslider .slides li {
    list-style: none;
}

.flexslider .flex-control-nav {
    margin: 0;
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.flexslider .flex-control-nav li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}

.flexslider .flex-control-nav a {
    text-decoration: none;
    display: block;
    width: 12px;
    height: 12px;
    background-color: transparent;
    text-indent: -9999px;
    border: 2px solid #ffffff;
    cursor: pointer;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.5);
    /*color: @arguments;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 9999px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 9999px;
    -moz-background-clip: padding;
    border-radius: 9999px;
    background-clip: padding-box;
    -webkit-background-clip: border-box;
    -moz-background-clip: border-box;
    background-clip: border-box;
}

.flexslider .flex-control-nav a:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.flexslider .flex-control-nav a.flex-active {
    background-color: #ffffff;
}

.flexslider .flex-direction-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin: -50px 0 0;
    /*zoom: 1;*/
}

.flexslider .flex-direction-nav:before {
    content: '';
    display: block;
}

.flexslider .flex-direction-nav:after {
    content: '';
    display: table;
    clear: both;
}

.flexslider .flex-direction-nav li {
    display: block;
    list-style: none;
    float: right;
    padding-right: 20px;
}

.flexslider .flex-direction-nav li a {
    background: url('../../img/rarr.png') no-repeat center center;
    text-decoration: none;
}

.flexslider .flex-direction-nav li:first-child {
    float: left;
    padding-right: 0;
    padding-left: 20px;
}

.flexslider .flex-direction-nav li:first-child a {
    background-image: url('../../img/larr.png');
}

.flexslider .flex-direction-nav a {
    display: block;
    width: 55px;
    height: 102px;
    text-indent: -9999px;
    text-decoration: none;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.flexslider .flex-direction-nav a:hover {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.flexslider .flex-direction-nav a:focus,
.flexslider .flex-direction-nav a:active {
    outline: 0 none;
}

.flexslider .flex-direction-nav .flex-prev {
    left: 0;
}

.flexslider .flex-direction-nav .flex-next {
    right: 0;
}

.flexslider .flex-direction-nav .flex-prev,
.flexslider .flex-direction-nav .flex-next {
    position: static;
}

.flexslider .flex-progress {
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 20;
    background-color: rgba(71, 73, 72, 0.19999999999999996);
}

.flexslider .flex-progress span {
    display: block;
    height: 5px;
    background-color: #1abc9c;
    width: 0%;
}

@media (max-width: 479px) {
    .flex-control-nav {
        display: none;
    }
}


/*--
| CAPTIONS (used with Flex)
---*/

.caption {
    position: absolute;
    top: 50%;
    bottom: auto;
    width: 100%;
    margin-top: -85px;
    padding: 0;
    background-color: transparent;
    overflow: visible;
    font-family: inherit !important;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

@media (min-width: 768px) and (max-width: 979px) {
    .caption {
        margin-top: -75px;
    }
}

@media (max-width: 767px) {
    .caption {
        display: none !important;
        -webkit-opacity: 0 !important;
        -moz-opacity: 0 !important;
        opacity: 0 !important;
    }
}

.caption h3 {
    display: inline-block;
    font-weight: 700;
    padding: 10px 20px;
    background-color: #1abc9c;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 54px;
}

@media (min-width: 768px) and (max-width: 979px) {
    .caption h3 {
        font-size: 24px;
        line-height: 36px;
    }
}

.caption p {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(71, 73, 72, 0.8);
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 979px) {
    .caption p {
        font-size: 12px;
        line-height: 18px;
    }
}

.caption .btn {
    display: inline-block !important;
    border-bottom: none !important;
}


/*---
| PROMOS
---*/

.promos {
    margin-bottom: 60px;
}

.promos .box {
    color: #939694;
}

.promos .hgroup.title {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.promos p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px;
}

.promos img {
    float: right;
    margin: 0 0 10px 10px;
}

.promos .low-price img {
    margin-top: -25px;
}


/*---
| JCAROUSEL
---*/

.jcarousel-wrapper {
    position: relative;
}

.jcarousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.jcarousel ul {
    width: 20000em;
    position: absolute;
    list-style: none;
    margin-bottom: 0;
}

.jcarousel li {
    margin-bottom: 0;
}

.jcarousel a {
    margin: 0 4px 6px;
    text-decoration: none;
}

.jcarousel-controls {
    /*zoom: 1;*/
}

.jcarousel-controls:before {
    content: '';
    display: block;
}

.jcarousel-controls:after {
    content: '';
    display: table;
    clear: both;
}

.jcarousel-controls .carousel-control-prev,
.jcarousel-controls .carousel-control-next {
    display: block;
    line-height: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    background-color: #474948;
    color: #ffffff;
    float: left;
    margin: 4px 0;
}

.jcarousel-controls .carousel-control-prev:hover,
.jcarousel-controls .carousel-control-next:hover,
.jcarousel-controls .carousel-control-prev:focus,
.jcarousel-controls .carousel-control-next:focus {
    background-color: #1abc9c;
}

.jcarousel-controls .carousel-control-prev {
    margin-right: 1px;
}


/*---
| HOME / FEATURED
---*/

.featured {
    margin-bottom: 80px;
}


/*---
| PRODUCT
---*/

.product-info {
    display: flex;
    margin-bottom: 80px;
}

@media (max-width: 1200px) {
    .product-info {
        flex-direction: column;
        align-items: center;
    }
}

.product-info .product-content {
    width: 100%;
}

.product-info .product-content .nav-tabs {
    margin: -20px -20px 20px;
}

.product-info .product-content .tab-content {
    overflow: visible;
}

.product-info .product-content #product .details,
.product-info .product-content #product .short-description,
.product-info .product-content #product .options,
.product-info .product-content #product .extras,
.product-info .product-content #product .add-to-cart {
    padding: 20px 0;
}

.product-info .product-content #product .details {
    padding-top: 0;
}

.product-info .product-content #product .add-to-cart {
    padding-bottom: 0;
}

.product-info .product-content #product form>div {
    border-bottom: 1px solid #f0f0f0;
}

.product-info .product-content #product form>div:last-child {
    border-bottom: none;
}

.product-info .product-content #product .details h1 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 30px;
}

.product-info .product-content #product .details .prices {
    line-height: 24px;
    margin: 0 0 20px;
}

.product-info .product-content #product .details .prices .price {
    display: inline-block;
    color: #1abc9c;
    font-weight: 600;
    font-size: 20px;
}

.product-info .product-content #product .details .prices .base {
    color: #c7c8c8;
    font-size: 14px;
    font-weight: 400;
}

.product-info .product-content #product .details .meta {
    color: #606362;
    font-size: 12px;
    text-decoration: none;
    /*zoom: 1;*/
}

.product-info .product-content #product .details .meta:before {
    content: '';
    display: block;
}

.product-info .product-content #product .details .meta:after {
    content: '';
    display: table;
    clear: both;
}

.product-info .product-content #product .details .meta>div {
    float: left;
    margin-right: 20px;
}

.product-info .product-content #product .details .meta>div i {
    margin-right: 2px;
}

.product-info .product-content #product .details .meta .categories a {
    color: inherit;
    text-decoration: none;
}

.product-info .product-content #product .details .meta .categories a:after {
    content: ", ";
}

.product-info .product-content #product .details .meta .categories a:last-child:after {
    content: "";
}

.product-info .product-content #product .details .meta .categories a:hover {
    color: var(--primary-color);
}

.product-info .product-content #product .short-description {
    color: #939694;
    font-size: 14px;
}

.product-info .product-content #product .short-description p {
    margin-bottom: 0;
}

.product-info .product-content #product .extra {
    float: left;
    margin-right: 20px;
}

.product-info .product-content #description {
    font-size: 13px;
}

.product-info .product-content #description>*:last-child {
    margin-bottom: 0;
}

.product-info .product-content #description ul li,
.product-info .product-content #description ol li {
    list-style-position: inside;
}

.product-info .product-images {
    width: 100%;
    max-width: 300px;
}

.product-info .product-images .box {
    margin-bottom: 0;
}

.product-info .product-images .primary {
    margin: -20px -20px 0;
}

.product-info .product-images .thumbs {
    margin: 0 -20px;
    padding: 20px;
    position: relative;
}

.product-info .product-images .thumbs:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    position: absolute;
    left: 20px;
    top: -8px;
    z-index: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.product-info .product-images .thumbs .thumbs-list {
    margin-left: -3%;
    margin-bottom: -3%;
    /*zoom: 1;*/
}

.product-info .product-images .thumbs .thumbs-list:before {
    content: '';
    display: block;
}

.product-info .product-images .thumbs .thumbs-list:after {
    content: '';
    display: table;
    clear: both;
}

.product-info .product-images .thumbs .thumbs-list li {
    width: 17%;
    float: left;
    margin-left: 3%;
    margin-bottom: 3%;
    list-style: none;
}

.product-info .product-images .thumbs .thumbs-list li a {
    display: block;
    border: 4px solid #f0f0f0;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.product-info .product-images .thumbs .thumbs-list li a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #474948;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    -moz-opacity: 0;
    opacity: 0;
}

.product-info .product-images .thumbs .thumbs-list li a:hover {
    border-color: #1abc9c;
}

.product-info .product-images .thumbs .thumbs-list li a:hover:before {
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.product-info .product-images .thumbs .thumbs-list li a.active {
    border-color: var(--secondary-color);
}

.product-info .product-images .thumbs .thumbs-list li img {
    display: block;
}

.product-info .social {
    margin: 0 -20px -20px;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.product-info .social #sharrre {
    text-align: center;
}

.product-info .social #sharrre>div {
    display: inline-block;
}

html.lt-ie9 .product-info .product-images .thumbs,
html.lt-ie9 .product-info .product-images .thumbs .thumbs-list,
html.lt-ie9 .product-info .product-images .thumbs .thumbs-list li img {
    display: none;
}

.product-reviews {
    padding: 80px 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0 -1px 2px rgba(71, 73, 72, 0.19999999999999996), 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    -moz-box-shadow: 0 -1px 2px rgba(71, 73, 72, 0.19999999999999996), 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    box-shadow: 0 -1px 2px rgba(71, 73, 72, 0.19999999999999996), 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    /*color: @arguments;*/
}

.product-reviews h5 {
    text-align: center;
    margin-bottom: 40px;
}

.product-reviews h5 .script {
    display: inline-block;
    margin: 0 5px;
    color: #1abc9c;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

.fb-comments,
.fb-comments>span,
.fb-comments iframe[style] {
    width: 100% !important;
}

.product-related {
    padding-top: 80px;
}

.product-related h5 {
    text-align: center;
    margin-bottom: 40px;
}

.comment-item,
.rating-item {
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
    padding-top: 20px;
}

.comment-item .gravatar,
.rating-item .gravatar {
    float: left;
    margin-right: 10px;
}

.comment-item h6,
.rating-item h6 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.comment-item small,
.rating-item small {
    font-size: 12px;
    line-height: 18px;
    color: #868988;
}

.comment-item h5,
.rating-item h5 {
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.comment-item p,
.rating-item p {
    font-size: 12px;
    line-height: 18px;
    color: #666968;
    margin-bottom: 0;
}

.comment-item .rating,
.rating-item .rating {
    font-size: 12px;
    color: #868988;
}

.comment-item:first-child,
.rating-item:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

#ratings .well {
    color: #666968;
}

#ratings .well h6 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}


/*---
| CART
---*/

.cart-items .col_product .image {
    float: left;
    margin-right: 20px;
}

.orders .col_product .image {
    float: left;
    margin-right: -20px;
}

.cart-items .col_product .image a,
.orders .col_product .image a {
    display: block;
    border: 4px solid #f0f0f0;
    position: relative;
}

.cart-items .col_product .image a:before,
.orders .col_product .image a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #474948;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
}

.cart-items .col_product .image a:hover,
.cart-items .col_product .image a:focus,
.orders .col_product .image a:hover,
.orders .col_product .image a:focus {
    border-color: #1abc9c;
}

.cart-items .col_product .image a:hover:before,
.cart-items .col_product .image a:focus:before,
.orders .col_product .image a:hover:before,
.orders .col_product .image a:hover:before {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.cart-items .col_product h5,
.orders .col_description h5 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 14px;
}

.cart-items .col_product h5 a,
.orders .col_description h5 a {
    color: inherit;
}

.cart-items .col_product h5 a:hover,
.cart-items .col_product h5 a:focus,
.orders .col_description h5 a:hover,
.orders .col_description h5 a:focus {
    color: #1abc9c;
}

.cart-items .col_product .options li,
.cart-items .col_product .extras li,
.orders .col_description .options li,
.orders .col_description .extras li {
    list-style: none;
    font-size: 12px;
    text-transform: uppercase;
    color: #797d7b;
}

.cart-items .col_product .options,
.orders .col_description .options {
    margin-top: -10px;
}

.orders .col_description .options li,
.orders .col_description .extras li {
    font-size: 9px;
}

.cart-items .col_product .options li:before,
.cart-items .col_product .extras li:before,
.orders .col_description .options li:before,
.orders .col_description .extras li:before {
    content: "\f105";
    color: #1abc9c;
    font-family: FontAwesome;
    margin-right: 5px;
}

.orders tr.important,
.cart tr.important {
    font-size: 14px;
    font-weight: bold;
    color: #1abc9c;
}

.orders tr.important td.total,
.cart tr.important td.total {
    font-size: 30px;
    line-height: 18px;
}

.cart tr.important td.total {
    text-align: right;
}

.orders tr.important td.total span,
.cart tr.important td.total span {
    display: block;
    font-size: 11px;
}

.orders p.info {
    font-size: 14px;
    font-style: italic;
    color: #797d7b;
    text-align: left;
}

.orders p.info i {
    color: #1abc9c;
    font-size: 20px;
    padding-right: 10px;
}

.orders .order-shipping-info span {
    display: block;
}

.orders .order-shipping-info strong {
    color: #666968;
}

.orders .col_cancel {
    text-align: center;
}

.cart-items .col_remove a {
    text-decoration: none;
}

.cart-items .col_qty input[type="text"] {
    width: 3rem;
    text-align: right;
    float: right;
}

.cart-items .col_single .single-price,
.cart-items .col_total .single-price,
.cart-items .col_discount .single-price,
.cart-items .col_single .total-price,
.cart-items .col_total .total-price,
.cart-items .col_discount .total-price,
.cart-items .col_single .discount,
.cart-items .col_total .discount,
.cart-items .col_discount .discount {
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 980px) {
    .styled-table.orders thead,
    .cart-items thead {
        display: none;
    }
    .styled-table.orders tbody,
    .cart-items tbody {
        width: 100%;
    }
    .styled-table.orders tbody tr,
    .cart-items tbody tr {
        overflow: hidden;
        height: auto;
        width: 100%;
        border: 1px solid #e3e3e3;
    }
    .styled-table.orders tbody tr td,
    .cart-items tbody tr td {
        display: block;
        text-align: left;
        padding-left: -webkit-calc(50% - 10px);
        padding-left: -moz-calc(50% - 10px);
        padding-left: calc(50% + 10px);
        position: relative;
        overflow: hidden;
        height: auto;
        border-bottom: 1px solid #f0f0f0;
    }
    .styled-table.orders tbody tr td:first-child,
    .cart-items tbody tr td:first-child {
        padding: 10px;
        padding-left: -webkit-calc(50% - 10px);
        padding-left: -moz-calc(50% - 10px);
        padding-left: calc(50% + 10px);
    }
    .styled-table.orders tbody tr td.text-right,
    .cart-items tbody tr td.text-right {
        text-align: right;
    }
    .styled-table.orders tbody tr td:before,
    .cart-items tbody tr td:before {
        content: attr(data-title);
        display: block;
        /*float: left;
	width: 50%;*/
        font-weight: bold;
        position: absolute;
        left: 0px;
        top: 0px;
        padding: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        /*width: 50%;*/
        width: 35%;
        height: 100%;
        background-color: #f9f9f9;
    }
}

@media(max-width: 767px) {
    .cart section.category .children,
    .cart section.category .partial,
    .search section.category .children,
    .search section.category .partial,
    .client-account section.category .children,
    .client-account section.category .partial {
        display: none;
    }
}

.cart .coupon form {
    margin: 20px 0 0;
}

.cart .coupon .input-append {
    margin-bottom: 0;
    width: 100%;
}

.cart .coupon .input-append input[type="text"],
.cart .coupon .input-append button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cart .coupon .input-append input[type="text"] {
    width: 80%;
    height: 30px;
}

.cart .coupon .input-append button {
    width: 20%;
}


/*---
| CHECKOUT
---*/

.checkout .nav-tabs {
    margin: -20px -20px 20px;
}

.checkout .nav-tabs li {
    width: 20%;
}

@media (max-width: 480px) {
    .checkout .nav-tabs li {
        width: 33.33%;
    }
}

.checkout .nav-tabs li>div {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.checkout .shipping-methods .box-content,
.checkout .payment-methods .box-content {
    /*zoom: 1;*/
}

.checkout .shipping-methods .box-content:before,
.checkout .payment-methods .box-content:before {
    content: '';
    display: block;
}

.checkout .shipping-methods .box-content:after,
.checkout .payment-methods .box-content:after {
    content: '';
    display: table;
    clear: both;
}

.checkout .shipping-methods .box-content .price,
.checkout .payment-methods .box-content .price {
    float: left;
}

.checkout .shipping-methods .box-content input,
.checkout .payment-methods .box-content input {
    float: right;
}


/*---
| STATIC PAGE
---*/

.static-page {
    margin-bottom: 20px;
    padding: 20px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    /*color: @arguments;*/
    padding: 0;
    background-color: #ffffff;
}

.static-page .box-header {
    margin: 0 -20px;
    padding: 0 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    background-color: #ffffff;
}

.static-page .box-header h3 {
    font-size: 16px;
    line-height: 24px;
    color: #474948;
    font-weight: 700;
    margin: 0;
}

.static-page .box-header h5 {
    font-size: 14px;
    line-height: 21px;
    color: #939694;
    font-weight: 400;
    margin: 0;
}

.static-page .box-image {
    margin: -20px -20px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.static-page .box-image a,
.static-page .box-image img {
    display: block;
}

.static-page .box-body,
.static-page .box-content {
    margin-top: 20px;
}

.static-page .box-body>*:last-child,
.static-page .box-content>*:last-child {
    margin-bottom: 0;
}

.static-page .box-body .price-list,
.static-page .box-content .price-list {
    margin: -20px;
}

.static-page .box-body .price-list li,
.static-page .box-content .price-list li {
    margin: 0;
}

.static-page .box-footer {
    /*zoom: 1;*/
    margin: 20px -20px -20px;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.static-page .box-footer:before {
    content: '';
    display: block;
}

.static-page .box-footer:after {
    content: '';
    display: table;
    clear: both;
}

.static-page .box-header+.box-footer {
    border-top: none;
    margin-top: 0;
}

.static-page .box-content.highlight {
    margin: 0 -20px;
    padding: 0 20px;
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: -20px;
}

.static-page .buttons {
    /*zoom: 1;*/
    margin: 20px -20px -20px;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.static-page .buttons:before {
    content: '';
    display: block;
}

.static-page .buttons:after {
    content: '';
    display: table;
    clear: both;
}

.static-page .hgroup.title+.buttons {
    border-top: none;
    margin-top: 0;
}

.static-page>.row-fluid {
    position: relative;
}

@media (max-width: 767px) {
    .static-page>.row-fluid {
        position: static;
    }
}

.static-page>.row-fluid>.span3 {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #fbfbf9;
    border-right: 1px solid #e3e3e3;
}

@media (max-width: 767px) {
    .static-page>.row-fluid>.span3 {
        position: static;
        top: auto;
        bottom: auto;
    }
}

.static-page>.row-fluid>.span9 {
    margin-left: 25.641%;
    min-height: 600px;
}

@media (max-width: 767px) {
    .static-page>.row-fluid>.span9 {
        margin-left: 0;
    }
}

.static-page .content {
    padding: 30px 60px 30px 30px;
    min-height: 260px;
}

@media (max-width: 767px) {
    .static-page .content {
        padding: 30px 60px;
    }
}

.static-page .content .row,
.static-page .content .row-fluid {
    margin-bottom: 20px;
}

.static-page .content ul ul,
.static-page .content ol ol,
.static-page .content ul ol,
.static-page .content ol ul {
    padding-left: 40px;
}


/*---
| SEARCH
---*/

.filter .control-group,
.filter input,
.filter select,
.filter textarea {
    margin-bottom: 0;
}


/*---
| WELL
---*/

.well {
    border: 1px solid #e7e7da;
    color: #606362;
    padding: 20px;
    margin-bottom: 40px;
    background-color: #fbfbf9;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.well:before {
    content: '';
    display: block;
}

.well:after {
    content: '';
    display: table;
    clear: both;
}

.well *:last-child {
    margin-bottom: 0;
}

.well-large {
    padding: 40px;
}


/*---
| OPTIONS PANEL
---*/

.options-panel {
    position: fixed;
    top: 200px;
    left: -240px;
    z-index: 1000;
    width: 272px;
    /*zoom: 1;*/
}

.options-panel:before {
    content: '';
    display: block;
}

.options-panel:after {
    content: '';
    display: table;
    clear: both;
}

.options-panel .options-panel-content {
    width: 200px;
    padding: 20px;
    background-color: #ffffff;
    float: left;
    -webkit-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    box-shadow: 0 1px 2px rgba(71, 73, 72, 0.19999999999999996);
    /*color: @arguments;*/
}

.options-panel .options-panel-toggle {
    float: left;
    width: 32px;
    height: 32px;
}

.options-panel .options-panel-toggle a {
    display: block;
    width: 32px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    background-color: #1abc9c;
    color: #ffffff;
    text-decoration: none;
}


/*---
| HERO UNIT
---*/

.hero-unit {
    border: 1px solid #e3e3e3;
    background-color: #f0f0f0;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}


/*---
| GRIDS
---*/

.show-grid [class*="span"] {
    background-color: #f0f0f0;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}


/*---
| ORDER HISTORY
---*/

.orders tbody,
.order tbody {
    line-height: 28px;
    font-size: 12px;
}


/*---
| LABEL
---*/

.label {
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    font-size: 10px;
    line-height: 14px;
    padding: 2px 6px;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.label-sale {
    background-color: #1abc9c;
}

label.error {
    color: #c24227;
    cursor: auto;
}


/*---
| ALERTS
---*/

.alert {
    font-size: 13px;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
}


/*---
| WIDGET
---*/

.widget {
    background-color: #ffffff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 0;
    border: 2px solid #D1C370;
}

.widget h3.widget-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 20px;
    margin: -20px -20px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-product-info {
    clear: both;
    margin: 0;
}

.detail-product-info span {
    margin-top: 3px;
    float: left;
    color: #ffffff;
    padding: 2px 10px;
    margin-right: 5px;
}

.detail-product-info span.no-stock {
    background-color: #BE5F7C;
}

.detail-product-info span.other-info {
    background-color: #1ABC9C;
    clear: left;
}

.profile-widget {}

.profile-widget .user-name {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    font-size: 1rem;
    line-height: 1rem;
}

.profile-widget .user-name img {
    width: 30px;
}

.profile-widget .profile-image {
    margin-bottom: 10px;
}

.profile-widget .profile-image img {
    vertical-align: middle;
    margin: 0;
    width: 60px;
    height: 60px;
    background-clip: padding-box;
    border: 1px solid #d7d7d7;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-widget h3.widget-title {
    padding-bottom: 10px;
}

.profile-widget h3.widget-title span {
    display: block;
    font-size: 0.8em;
    color: #868988;
    font-weight: 100;
}

.profile-widget h5 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-widget h5 span {
    font-weight: 100;
    font-size: 0.6em;
    text-transform: capitalize;
}

.profile-widget p.expiration {
    text-align: center;
    font-size: 0.8em;
    font-style: italic;
    margin: 0px;
    padding: 0px;
}

.capitalize {
    text-transform: capitalize;
}

.paginator.paginator-top {
    margin-bottom: 25px;
}

.paginator.paginator-bottom {
    margin-top: 25px;
}

div.slideshow,
div.slideshow2,
div.slideshow3,
div.slideshow4 {
    text-align: center;
}

.table-condensed th,
.table-condensed td {
    padding: 1px;
}

#returns ul {
    list-style: decimal;
    padding-left: 25px;
}

#returns ul li {
    margin-bottom: 10px;
}

#returns p,
#shipping p {
    text-align: justify;
}

#shipping .shipping-companies {
    text-align: center;
}

#shipping .shipping-companies img {
    height: 50px;
    padding: 5px;
    border: 1px solid #d7d7d7;
}


/* COOKIES */

#cook-alert {
    background-color: #FCFCFC;
    font-size: 12px;
    color: #666666;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-right-radius: 3px;
    margin: 0 3px;
    padding: 5px 20px 5px 10px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #D3D3D3;
    border-left: 1px solid #D3D3D3;
    border-right: 1px solid #D3D3D3;
    font-family: TcccUnityHeadline, arial, sans-serif;
}

#cook-alert .cook-message {
    float: left;
    padding-right: 10px;
    padding-top: 2px;
    font-style: italic;
}

#cook-alert .cook-message a {
    cursor: pointer;
    color: #666666;
    text-decoration: underline;
}

#cook-alert .cook-message a:hover {}

#cook-alert .cook-button {
    float: right;
    background-color: #4D90FE;
    color: #FFFFFF;
    font-weight: bold;
    padding: 3px 20px;
    border: 1px solid #3079ED;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}

#cook-alert .cook-button:hover {}

#cook-alert .cook-close {
    position: absolute;
    top: -2px;
    right: 3px;
    color: #999999;
    font-weight: bold;
    cursor: pointer;
}

#cook-alert .cook-close:hover {
    color: #111111;
}

.cookies-info .cookie-content {
    text-align: justify;
}

.cookies-info .cookie-content ul {
    margin: 30px 0 30px 0;
    padding-left: 50px;
}

.cookies-info .cookie-content ul li {
    margin-bottom: 15px;
    list-style: square;
}

section#buscador button {
    margin-top: -10px;
}

@media (max-width: 979px) {
    section#buscador button {
        float: none;
        margin-top: 0px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    section#buscador button {
        float: none;
        margin-top: -48px;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    section#buscador button {
        margin-top: 0px;
        margin-left: 0px;
        margin-bottom: 10px;
        float: left;
    }
}

.dataTables_processing {
    position: absolute;
    top: 40%;
    left: 40%;
    z-index: 999;
    padding: 5px 20px;
}

#loadingLabel {
    display: none;
}

#loadingLabel .loadingLabel-fade {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background-color: white;
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=50)";
    -khtml-opacity: 0.50;
    opacity: 0.5;
}

#loadingLabel .loadingLabel-content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    color: #555;
    text-align: center;
    font-size: 20px;
    padding-top: 20%;
    font-weight: 900;
}

#loadingLabel .loadingLabel-content .loadingLabel-imgLoader {
    display: block;
    width: 50px;
    margin: 20px auto;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

#tblClients tr td.txtRight {
    text-align: right;
}

#shippingAddress .vcard {
    display: inline-block;
    border: 1px dashed #666;
    padding: 15px;
    margin: 10px auto 25px auto;
    text-align: left;
    min-width: 250px;
}

#shippingAddress .vcard span {
    display: block;
}

#shippingAddress .vcard span.fn {
    font-weight: bold;
}

#shippingAddress div {
    text-align: center;
}

#shippingAddress h3 {
    margin-top: -15px;
}


/*---
| POINTS DISPLAY - PRODUCT
---*/

.price-display {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.price-display-wrapper {
    display: flex;
    border: 3px solid #d1d3d5;
}

.price-display-wrapper>span {
    border: 1px solid #d1d3d5;
    padding: 1px 2px 0 2px;
    background: #fff url('/themes/rexel_gold/img/products_page/points-display-bg.png') repeat-x;
}

.price-display-wrapper>span>span {
    filter: brightness(85%);
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 600;
    font-family: Digital, sans-serif;
}


/*---
| NAV-TABS
---*/

.nav-link {
    color: var(--secondary-text-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover {
    color: var(--primary-text-color);
}

.nav-tabs .nav-link:hover {
    color: var(--secondary-text-color);
}


/*---
| HEADER MENU
---*/

body {
    height: 70%;
}

#menu {
    width: 75%;
    height: 70%;
}

.menu-bottom {
    height: 30%;
}

html {
    width: 100%;
    height: 100%;
}

body>.top {
    height: 20%;
}

#logo {
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
}

#logo img {
    margin: 0 auto;
    max-height: 100%;
}

.header-logo {
    text-align: center;
    padding-top: 2rem;
}

.header-logo a {
    text-decoration: none;
}

.header-logo a:hover,
.header-logo a:active,
.header-logo a:focus {
    text-decoration: none;
    border: 0;
}

.header-logo img {
    width: 100%;
    max-width: 374px;
    text-align: center;
}

.header-menu {
    display: flex;
    background-color: transparent !important;
    width: fit-content;
    gap: 30px;
    padding: 20px;
    border-radius: 5px;
    float: right;
    flex-wrap: wrap;
    justify-content: center;
}

.header-menu-separation-line {
    border-bottom: 2px solid var(--ternary-color);
}

.menu-item a {
    text-align: center;
    color: var(--ternary-text-color);
    cursor: pointer;
    padding-bottom: 2px;
}

.menu-item a:hover,
.menu-item a:focus,
.menu-item a:active,
.menu-item.active a {
    color: var(--primary-text-color);
    border-bottom: 4px solid var(--secondary-color);
}

@media (max-width:709px) {
    body>.top {
        height: 50%;
    }
}

@media (max-width: 991px) {
    body>.top {
        height: 30%;
    }
    #menu {
        height: 40%;
    }
    #logo {
        height: 41%;
    }
    #logo img {
        max-height: 125px;
    }
    .header-menu {
        float: none;
        margin: 0 auto;
    }
    html>body {
        height: 100%;
    }
}

@media (min-width:573px) {
    .salir {
        min-height: 40%;
    }
    .client-account {
        margin-left: 15%;
        width: 70%;
        margin-bottom: 65px;
    }
}

@media (max-width: 573px) {
    body>.top {
        height: 50%;
    }
    #menu {
        height: 37%;
    }
    #logo {
        height: 30%;
        padding-top: 10px;
        padding-bottom: 0;
    }
    .salir {
        height: 16%;
    }
    .client-account {
        margin-bottom: 64px;
    }
}

@media (min-width: 991px) {
    .header-menu {
        gap: 50px;
    }
}

a:hover {
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    color: var(--primary-text-color);
}

.menu-item {
    position: relative;
}

.menu-item a.logout-anchor {
    color: var(--primary-text-color);
}

.submenu {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease-in-out;
    position: absolute;
    top: 20px;
    left: min(-60px, -25%);
    z-index: 20;
    width: 150%;
    min-width: 240px;
    color: white;
}

.submenu.left-position {
    right: 0 !important;
    left: unset !important;
}

.submenu.right-position {
    left: 0 !important;
}

.menu-item:hover .submenu {
    visibility: visible;
    opacity: 1;
}

.submenu-container {
    margin-top: 10px;
    border: 3px solid var(--primary-color);
    background-color: #fff;
}

.submenu-container .submenu-item {
    font-size: .9rem;
    line-height: 2rem;
}

.submenu-container .submenu-item a {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--ternary-text-color);
    border-bottom: none;
}

.submenu-container .submenu-item a:hover,
.submenu-container .submenu-item.active a {
    border-bottom: none;
    font-weight: 900;
    color: var(--primary-text-color);
}


/*---
| LIGHTBOX
---*/

.lb-data .lb-caption {
    font-size: 1rem !important;
    font-weight: 300 !important;
    font-family: Gotham, sans-serif !important;
}
