/****
Fuentes
***********/

@font-face {
    font-family: 'gotham-coke';
    src: url('../fonts/got-coke-book.eot');
    src: url('../fonts/got-coke-book.eot?#iefix') format('embedded-opentype'), url('../fonts/got-coke-book.woff2') format('woff2'), url('../fonts/got-coke-book.woff') format('woff'), url('../fonts/got-coke-book.ttf') format('truetype'), url('../fonts/got-coke-book.svg#gotham-coke') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'androgyneregular';
    src: url('../fonts/androgyne_tb-webfont.eot');
    src: url('../fonts/androgyne_tb-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/androgyne_tb-webfont.woff2') format('woff2'), url('../fonts/androgyne_tb-webfont.woff') format('woff'), url('../fonts/androgyne_tb-webfont.ttf') format('truetype'), url('../fonts/androgyne_tb-webfont.svg#androgyneregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* TCCC-UnityCondensed */

@font-face {
    font-family: TcccUnityCondensed;
    src: url('/static/font/TCCC-UnityCondensed/ttf/medium.ttf') format('truetype');
}

/* TCCC-UnityHeadline */

@font-face {
    font-family: TcccUnityHeadline;
    src: url('/static/font/TCCC-UnityHeadline/ttf/bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: TcccUnityHeadline;
    src: url('/static/font/TCCC-UnityHeadline/ttf/black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: TcccUnityHeadline;
    src: url('/static/font/TCCC-UnityHeadline/ttf/medium.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: TcccUnityHeadline;
    src: url('/static/font/TCCC-UnityHeadline/ttf/regular.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: TcccUnityHeadline;
    src: url('/static/font/TCCC-UnityHeadline/ttf/regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: TcccUnityHeadline;
    src: url('/static/font/TCCC-UnityHeadline/ttf/light.ttf') format('truetype');
    font-weight: 100;
}

/*-------------------------------------------------------------------------------*/

/****
Variables
***********/

:root {
    --bg-primary: #fff;
    --primary: #fff;
    --secondary: #df0000;
    --black: #000;
    --grey: #666666;
    --light-grey: #dedada;
    --light-grey-hover: #a3a3a3;
    --red: #ea0716;
    --red-secondary: #fb203291;
    --red-terciary: #de0012d4;
    --white: #ebebeb;
    --font-primary: 'gotham-coke', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-size-primary: 1.5rem;
}

/*-------------------------------------------------------------------------------*/

/****
Generales
***********/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
    font-size: var(--font-size-primary);
}

html {
    font-size: 62.5%;
    /* 1rem = 10px */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

ul {
    list-style-type: none;
}

input,
input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=phone],
input[type=button],
input[type=submit],
select,
textarea {
    font-size: var(--font-size-primary);
    outline: none;
    padding: 1rem;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: inherit;
}

/*-------------------------------------------------------------------------------*/

/****
Utilidades
***********/

.bgPrimary {
    background-color: var(--red);
}

.btn {
    font-size: var(--font-size-primary);
}

.btn-primary,
.btn-secondary {
    border: none;
    border-radius: 5px;
    color: var(--primary);
}

.btn-primary {
    background-color: var(--red);
}

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

.btn-primary:hover,
.btn-secondary:hover {
    border: none;
}

.bold {
    font-weight: 700;
}

.text-shadow {
    text-shadow: 0px 0px 20px var(--black);
}

.underline {
    font-weight: 700;
    text-decoration: underline;
}

.c-red {
    color: var(--red) !important;
}

.active {
    color: var(--primary) !important;
}

.error {
    color: var(--red);
    font-weight: 700;
}

.error-required {
    border: 2px solid var(--red);
    border-radius: 5px;
}

/*-------------------------------------------------------------------------------*/

.container_general {
    margin-top: 100px;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .container_general {
        margin-top: 300px;
    }
}


/****
Login wrong
***********/

.login-wrong {
    margin-top: 10%;
    text-align: center;
    width: 100%;
}

.login-wrong__content {
    padding: 20px;
}

.login-wrong__content h2 {
    font-size: 3rem;
}

.login-wrong__content h5 {
    font-size: var(--font-size-primary);
}

/****
Login
***********/

.login {
    background: transparent url(/themes/reactibar/img/reactibar/fonfoLogin.jpg) no-repeat scroll 0 0;
    background-size: cover;
    background-attachment: fixed;
}

.login-container {
    color: var(--primary);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 90%;
}

.login-container * {
    border: none;
    color: var(--primary);
}

.login-container__logo {
    width: 90%;
}

.login-container__logo img {
    height: auto;
    max-width: 500px;
}

.login-container__form {
    width: 100%;
}

.login-container__form h3 {
    font-size: 5rem;
}

.login-container__form input {
    border-radius: 10px;
    color: var(--grey);
    font-size: var(--font-size-primary);
    ;
    width: 100%;
}

.remember {
    align-items: center;
    display: flex;
    justify-content: center;
}

.remember input {
    height: 30px;
    width: 30px;
}

.remember label {
    font-size: 2.5rem;
    margin: 0 0 0 1rem;
}

#form__submit {
    background-color: var(--red-secondary);
    -webkit-box-shadow: inset 0px -1px 8px 3px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px -1px 8px 3px rgba(0, 0, 0, 0.5);
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
    padding: .5rem 4rem;
    transition: .5s;
    width: fit-content;
}

#form__submit:hover {
    background-color: var(--red);
}

.forgotten {
    font-size: 2rem;
}

.register-mail-resend {
    margin-top: 30px;
}

.register-mail-resend a span {
    font-size: 1.7rem;
}

.register-mail-resend a span {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
}

@media screen and (min-width: 481px) {
    /*Start Tablets*/
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .login-container__form {
        max-width: 500px;
        width: 70%;
    }
}

@media screen and (min-width: 1025px) {
    /*Start Desktops*/
}

/*-------------------------------------------------------------------------------*/

/****
Nav
***********/

.nav__header {
    align-items: baseline;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 1rem;
    padding-left: 1.2rem;
}

.nav__header__item * {
    padding: 0;
}

.nav-link {
    cursor: pointer;
}

.nav {
    background-color: var(--red);
}

.nav__icon {
    display: none;
}

.nav__list-container {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav__list {
    align-items: center;
}

.nav__list .nav-item {
    color: var(--primary);
}

.nav__list .nav-item .nav-link {
    color: var(--primary);
}

.nav__list .active {
    color: var(--black) !important;
}

@media screen and (min-width: 991px) {
    /*Start Desktops*/
    .nav__header {
        flex-direction: row;
    }
    .nav__header__item {
        padding: 0 2rem;
    }
    .nav__header,
    .nav__list-container {
        width: 100%;
        padding-right: 10%;
    }
    .nav__list {
        justify-content: space-between;
        width: 60%;
    }
    .nav__icon {
        display: inherit;
        position: absolute;
        top: -60px;
        left: 30px;
        z-index: 10;
    }
    .nav__icon img {
        width: 90%;
    }
}

/*-------------------------------------------------------------------------------*/

/****
Footer
***********/

.end {
    height: 200px;
}

.footer {
    color: var(--primary);
    height: fit-content;
    margin-top: auto;
    width: 100%;
    z-index: 10;
}

.footer__bar {
    background-color: var(--red-secondary);
    height: 20px;
    width: 100%;
}

.footer__list {
    background-color: var(--red);
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 20px 20px;
}

.footer__list__item {
    padding: 2px 0;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .end {
        height: 50px;
    }
    .footer__list {
        display: flex;
        justify-content: flex-end;
        padding: 20px 100px;
    }
    .footer__list__items {
        align-items: flex-end;
        display: flex;
    }
    .footer__list__item {
        padding: 0 15px;
    }
}

/*-------------------------------------------------------------------------------*/

/****
Welcome
***********/

/* .fondo {
    background: transparent url(/themes/reactibar/img/reactibar/welcome-wallpaper.png) no-repeat scroll 0 0;
    background-size: cover;
    background-attachment: fixed;
} */

.welcome-wallpaper {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -5;
}

.welcome {
    color: var(--primary);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3%;
    text-align: center;
}

.welcome__title {
    font-size: 3rem;
    width: 90%;
}

.welcome__title img {
    width: 30%;
    margin-top: 1%;
}

.welcome__body {
    font-size: 2rem;
}

.welcome__logo img {
    width: 28%;
    margin-top: -5%;
    transform: rotate(10deg);
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .welcome__container {
        margin: 0 auto;
        width: 90%;
    }
    .welcome__title {
        font-family: var(--font-secondary);
        font-size: 7rem;
        margin: 30px 0 0 0;
        /* font-size: 6rem; */
        /* width: 100%; */
    }
    .welcome__title img {
        position: relative;
        top: -15px;
        width: 30%;
    }
    .welcome__subtitle {
        margin: 0 auto;
        width: 100%;
    }
    .welcome__subtitle h2 {
        font-size: 4.5rem;
        margin: 0 auto;
        width: 65%;
    }
    .welcome__logo {
        /* margin-top: 5%; */
        text-align: end;
        width: 80%;
    }
    .welcome__logo img {}
}

/*-------------------------------------------------------------------------------*/

/****
Mechanics
***********/

.mechanics {
    width: 100%;
    /* height: 500px; */
}

.mechanics__info {
    text-align: center;
}

.mechanics__info__wallpaper {
    display: none;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.mechanics__info__title {
    color: var(--primary);
    font-size: 3rem;
    width: 100%;
}

.mechanics__info__list {
    background-color: var(--red-terciary);
    padding-top: 20px;
}

.mechanics__info__item {
    padding: 10% 0;
}

.info__item__title {
    color: var(--primary);
    font-size: 2rem;
    margin-top: 15px;
}

.info__item__icon {
    height: auto;
    width: 40%;
}

.info__item__description {
    color: var(--primary);
    font-size: 1.7rem;
    width: 80%;
    margin: 0 auto;
}

.info__item__description span {
    font-size: 2.1rem;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .mechanics__info {
        margin-bottom: 10%;
    }
    .mechanics__info__wallpaper {
        display: inherit;
        left: 0;
        position: absolute;
        top: 84px;
        z-index: -5;
    }
    .mechanics__info__list {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        margin-top: 180px;
        padding: 70px 0;
    }
    .mechanics__info__title {
        margin-bottom: 50px;
    }
    .mechanics__info__item {
        padding: 0;
        width: 25%;
    }
    .info__item__icon {
        width: 23%;
    }
}

.mechanics__products {
    padding-top: 25px;
    margin: 0 auto;
    text-align: center;
    width: 90%;
}

.mechanics__products__title {
    font-size: 2.5rem;
}

.mechanics__carousel__item {
    margin-bottom: 50px;
}

.mechanics__carousel__item img {
    height: auto;
    margin: 0 auto;
    width: 100%;
}

.mechanics__carousel__info {
    color: var(--black);
    margin-top: 50px;
}

.mechanics__carousel__info div h4 {
    background-color: var(--red);
    border-radius: 5px;
    color: var(--primary);
    display: inline;
    height: fit-content;
    padding: 5px;
    width: 110px;
}

.mechanics__carousel__info-extra {
    color: var(--black);
    margin: 0 auto 20px auto;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .mechanics__carousel__item {
        align-items: center;
        display: flex;
        gap: 5%;
    }
    .mechanics__carousel__item img {
        height: 100%;
        width: 50%;
    }
    .mechanics__carousel__info div {
        align-items: center;
        display: flex;
        gap: 5%;
    }
    .mechanics__carousel__info div p {
        text-align: start;
        width: 80%;
    }
    .mechanics__carousel__info-extra {
        width: 60%;
    }
}

/*-------------------------------------------------------------------------------*/

/****
Catalogue
***********/

/****
    Catalogue - Header
    ***********/

.catalogue {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 50px;
}

.catalogue__header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.catalogue__header__wallpaper {
    display: none;
}

.catalogue__header__title {
    background-color: var(--red-terciary);
    color: var(--primary);
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.catalogue__header__title img {
    width: 30%;
}

.catalogue__header__title h2 {
    margin-top: 15px;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .catalogue__header {
        margin: 120px 0;
    }
    .catalogue__header__wallpaper {
        display: inherit;
        height: auto;
        left: 0;
        position: absolute;
        top: 84px;
        z-index: -5;
        width: 100%;
    }
    .catalogue__header__title img {
        width: auto;
    }
}

/****
    Catalogue - Buscador
    ***********/

.catalogue__sidebar {
    width: 90%;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .catalogue__sidebar {
        width: 18%;
    }
}

.catalogue__search__title,
.catalogue__categories__title {
    border-top: 2px solid var(--red);
    color: var(--red);
    font-size: 2rem;
    margin-top: 40px;
}

.catalogue__search__input {
    margin: 5px 0;
}

.catalogue__search__submit {
    background-size: contain !important;
    border: none;
    display: block;
    text-align: end;
    height: 45px;
    width: 45px;
}

.catalogue__search__range {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.catalogue__search__range .catalogue__search__input {
    width: 30%;
}

/* Jquery slider catalogo */

/* Componente principal*/

#slider-range {
    background-color: var(--red);
    border: 0;
    height: 1px;
    margin: 20px auto 30px auto;
    width: 95%;
}

/* Barra de rango seleccionado */

.ui-slider-horizontal .ui-slider-range {
    background-color: var(--red);
    height: 2.5px;
}

/* Selectores */

.ui-slider-horizontal .ui-slider-handle {
    background: url('/themes/reactibar/img/reactibar/chapa.png') no-repeat scroll 0 0;
    background-size: cover;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    padding: 18px;
    top: -1.1em;
}

/* FIN - Jquery slider catalogo */

.catalogue__categories {
    margin-top: 20px;
}

.catalogue__categories__title a {
    font-size: 2rem;
}

.catalogue__categories__list li a {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.catalogue__categories__list li a span {
    color: var(--red);
}

/****
    Catalogue - Llistat productes
    ***********/

.catalogue__product-list {
    margin-top: 30px;
}

.product-list__paginator {
    width: 90%;
    margin: 0 auto;
}

.product-list__paginator .btn {
    border-radius: 5px;
    border: none;
    min-width: 35px;
}

.product-list__paginator .btn:hover {
    background-color: var(--red-secondary);
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .catalogue__product-list {
        width: 70%;
    }
}

.product-list__products {
    margin: 0 auto;
    width: 95%;
}

.product-list.isotope li {
    margin-top: 50px;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .product-list.isotope li {
        width: 30%;
    }
}

.product-list.isotope li .image {
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    width: 60%;
}

.product-list.isotope li .image a img {
    width: 100%;
    height: auto;
}

.product-list.isotope li .title {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 80%;
}

.product-list.isotope li .title a {
    /* Nom del producte */
    width: 100%;
}

.product-list.isotope li .title a h3 {
    /* Nom del producte */
    min-height: 50px;
}

.product-list li .title .prices {
    /* Preu del producte */
    background: url('/themes/reactibar/img/reactibar/chapa.png') no-repeat scroll 0 0;
    background-size: cover;
    color: white;
    font-weight: 700;
    order: 5;
    padding: 25px;
    user-select: none;
    width: fit-content;
}

.product-list li .title .prices .price {}

.product-list li .title .prices .currency {}

.product-list li .title .buttons {
    /* Botons del producte */
    display: flex;
    width: 55%;
    justify-content: space-evenly;
}

.product-list li .title .buttons a {
    width: fit-content;
}

.product-list li .title .buttons .btn-primary,
.product-list li .title .buttons .btn-default {
    color: var(--primary);
}

.product-list li .title .buttons .btn-primary {
    /* background: var(--red); */
}

.product-list li .title .buttons .btn-default {
    background: var(--black);
}

/*-------------------------------------------------------------------------------*/

/****
Producte
***********/

.product-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.product-info__image {
    width: 90%;
}

.product-info__content {
    width: 90%;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .product-info {
        width: 70%;
        justify-content: space-between;
    }
    .product-info__image {
        width: 40%;
    }
    .product-info__content {
        width: 55%;
    }
}

.product-info .nav {
    background-color: transparent;
}

.product-info .box,
.product-images .box {
    padding: 20px;
}

.product-images .box {
    text-align: center;
}

.product-info .tab-content {}

.product-info .tab-pane {
    margin-top: 10px;
}

.product-info .active {
    color: var(--black) !important;
}

.product-info .price {
    color: var(--red);
    font-size: 2rem;
    font-weight: 700;
}

.product-info .block {
    display: block;
    font-weight: 700;
    margin-top: 10px;
}

.product-info .lead strong {
    font-size: 2rem;
    font-weight: 700;
}

.product-content .nav-item a {
    padding: 12px;
}

.product-content .nav-item a.active {
    background-color: var(--red);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: var(--primary) !important;
}

.product-content .add-to-cart {
    margin-top: 20px;
}

.product-content .add-to-cart * {
    font-size: var(--font-size-primary);
}

/*-------------------------------------------------------------------------------*/

/****
Incidence claim
***********/

.incidence__claim {
    margin-top: 100px;
}

.incidence__claim * {
    font-size: 1.6rem;
}

.table__incidence td {
    padding: 15px 0;
}

/*-------------------------------------------------------------------------------*/

/****
Incidence claim
***********/

.client__form {
    margin-top: 40px;
}

.client__form * {
    font-size: var(--font-size-primary);
}

/*-------------------------------------------------------------------------------*/

/****
Box
***********/

.box {
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #ffffff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0 1px 2px rgba(71, 73, 72, 0.25);
    -webkit-box-shadow: 0 1px 2px rgb(71 73 72 / 25%);
    box-shadow: 0 1px 2px rgb(71 73 72 / 25%);
    padding: 20px;
    padding-bottom: 60px;
    margin-bottom: 50px !important;
    overflow-x: auto;
}

.box .col_remove {
    color: var(--red);
}

.box .col_remove a {
    font-size: 2rem;
}

.box .col_remove a:hover {
    color: var(--black);
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .box {
        padding: 60px;
    }
    .box .col_product {
        align-items: baseline;
        display: flex;
        justify-content: space-between;
    }
    .table td,
    .table th {
        vertical-align: initial;
    }
}

.box-header {
    margin: 0 -20px;
    padding: 0 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.box .box-header h3 {
    font-size: 16px;
    line-height: 24px;
    color: #474948;
    font-weight: 700;
    margin: 0;
}

.box .box-header h5 {
    font-size: 14px;
    line-height: 21px;
    color: #939694;
    font-weight: 400;
    margin: 0;
}

.box .total {
    color: var(--red);
    font-size: 2rem;
    font-weight: 700;
}

.box textarea {
    font-size: var(--font-size-primary);
}

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

.box-footer button[type="button"] {
    background-color: var(--light-grey);
}

.box-footer button[type="button"]:hover {
    background-color: var(--light-grey-hover);
}

.box .box-footer a {}

/*-------------------------------------------------------------------------------*/

/****
Orders
***********/

.client__orders {
    margin-top: 40px;
}

.client__orders * {}

/*-------------------------------------------------------------------------------*/

/****
Client Transactions
***********/

.client__transactions {
    margin-top: 20px;
}

#cuadro-puntos {
    border-collapse: collapse;
    border-radius: 10px;
    border-style: hidden;
    box-shadow: 0 0 0 1px #666;
    margin-bottom: 2px;
}

#cuadro-puntos tbody tr td {
    border: 1px solid;
    text-align: center;
    line-height: 15px;
    padding: 5px 12px;
    color: #000000;
}

#cuadro-puntos tbody tr td span {
    font-size: 22px;
    line-height: 24px;
}

.btn-login {
    background-color: #df0000;
    border: 1px solid #df0000;
    color: #ffffff;
    display: block;
    font-size: var(--font-size-primary) !important;
    margin: 0 auto;
    text-transform: uppercase;
    width: 100%;
    padding: 5px 0 0 0;
}

.btn-login:hover,
.open>.dropdown-toggle.btn-login {
    background-color: #ffffff;
    color: #df0000;
}

.client__transactions #transactions tbody td {
    font-size: 1.6rem;
    padding-top: 20px;
}

/*-------------------------------------------------------------------------------*/

/****
Modal
***********/

.modal * {
    font-weight: 700;
}

.modal h6 {
    font-size: var(--font-size-primary);
}

.modal-header {
    background-color: var(--red);
    color: var(--primary);
}

.modal-header button {
    color: var(--primary);
}

.modal-header button:hover {
    border: none;
    color: var(--light-grey-hover);
    text-shadow: none;
}

.modal-header button span {
    font-size: 2.5rem;
}

.modal-header * {
    font-size: 2rem;
}

/*-------------------------------------------------------------------------------*/

/****
Datatable
***********/

#transactions_wrapper.form-inline {
    justify-content: space-between !important;
}

div.dataTables_length,
div.dataTables_filter {
    margin-bottom: 35px;
}

div.dataTables_length label,
div.dataTables_filter label {
    font-size: 2rem;
}

div.dataTables_length label select,
div.dataTables_filter label input {
    font-size: 2rem;
}

div.dataTables_length label select {
    margin-right: 20px;
}

div.dataTables_filter label input {
    margin-left: 20px;
}

.dataTables_paginate {
    margin-top: 40px;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

/*-------------------------------------------------------------------------------*/

/****
Modal recuperar contrseña
***********/

.modal-recovery {}

.modal-recovery * {
    font-weight: 700;
}

.modal-recovery .titulo-pagina {
    color: var(--red);
    text-align: center;
}

.modal-recovery .modal-header {
    background-color: var(--bg-primary);
    color: var(--black);
}

.modal-recovery .modal-body button {
    padding: 13px;
    transition: .2s;
    white-space: normal;
}

.modal-recovery .modal-footer a {
    border: 1px solid var(--grey);
    font-size: 2rem;
}

@media screen and (min-width: 769px) {
    /*Start laptops*/
    .panel {
        margin-bottom: 20px;
        background-color: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
}

/*-------------------------------------------------------------------------------*/

/****
Datatable Usuario VENTAS
***********/

#tblClients_wrapper #tblClients_filter input {
    font-size: var(--font-size-primary);
}

#tblClients_wrapper .dataTables_paginate li {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 2px;
}

#tblClients_wrapper .dataTables_paginate li a {
    border-radius: 5px;
}

#tblClients_wrapper #tblClients td {
    padding: 10px 0;
}

#tblClients_wrapper #tblClients thead th {
    background-color: transparent;
    border: none;
    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
    font-weight: 700;
    padding: 10px 0;
}

/*-------------------------------------------------------------------------------*/

/****
CISTELLA
***********/

#shipping-container-div .btn.btn-md.pull-left {
    margin-right: 30px;
}

.footer .footer__list .separator {
    display: none;
}

@media (min-width: 768px) {
    .footer .footer__list .separator {
        display: block;
    }
}
