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

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

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

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

body {
    font-family: var(--body-font, 'Oxygen', sans-serif);
}

header,
main,
footer,
.p-nav {
    padding-left: 300px;
}

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

    header,
    main,
    footer,
    .p-nav {
        padding-left: 0;
    }
}

@media only screen and (min-width: 993px) {
    nav .brand-logo {
        padding-left: 10px;
    }
}

#recomendados {
    display: var(--display-recomendados-carousel);
}

@media only screen and (min-width: 1200px) { 
    html {
        font-size: var(--html-font-size-1200, 15px);
    }
}

@media only screen and (min-width: 992px) { 
    html {
        font-size: var(--html-font-size-992, 14.5px);
    }
}

@media only screen and (min-width: 0) { 
    html {
        font-size: var(--html-font-size-0, 14px);
    }
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.mt-1 {
    margin-top: 1em;
}

.mt-2 {
    margin-top: 2em;
}

.mt-3 {
    margin-top: 3em;
}

.mt-4 {
    margin-top: 4em;
}

.mb-05 {
    margin-bottom: 0.5em;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 2em;
}

.mb-3 {
    margin-bottom: 3em;
}

.mb-4 {
    margin-bottom: 4em;
}

.mr-1 {
    margin-right: 1em;
}

.text-shadow {
    text-shadow: 1px 1px 1px black;
}

.bold {
    font-weight: 700;
}

.pr-1 {
    padding-right: 1em;
}

nav .sidenav-back {
    margin: 0 18px;
}

.breadcrumb-nav {
    height: 46px;
    line-height: 46px;
    padding-left: 1.5rem;
}

.header {
    margin-bottom: 10vh;
}

.header i {
    margin-right: 8px;
}

.card .card-image .card-title {
    display: block;
    display: var(--display-text-in-banner);
}

.modal {
    border-radius: 4px !important;
}

.btn, .btn-large, .btn-small, .btn-floating, .btn-large, .btn-small, .btn-flat {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

/* Message Classes */
.message {
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 1rem;
}

.message.is-danger {
    background-color: #feecf0;
}

.message.is-warning {
    background-color: #fffbeb;
}

.message.is-success {
    background-color: #effaf3;
}

.message.is-danger .message-header {
    background-color: #f14668;
    color: #fff;
}

.message-header {
    align-items: center;
    background-color: #4a4a4a;
    border-radius: 4px 4px 0 0;
    color: #fff;
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    line-height: 1.25;
    padding: .75em 1em;
    position: relative;
}

.message.is-danger .message-body {
    border-color: #f14668;
    color: #cc0f35;
}

.message-header+.message-body {
    border-width: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.message-body {
    border-color: #dbdbdb;
    border-radius: 4px;
    border-style: solid;
    border-width: 0 0 0 4px;
    color: #4a4a4a;
    padding: 1.25em 1.5em;
}

/* Without Header */
.message.is-danger .message-body {
    border-color: #f14668;
    color: #cc0f35;
}

.message.is-warning .message-body {
    border-color: #ffdd57;
    color: #947600;
}

.message.is-success .message-body {
    border-color: #48c774;
    color: #257942;
}

.message-body {
    border-color: #dbdbdb;
    border-radius: 4px;
    border-style: solid;
    border-width: 0 0 0 4px;
    color: #4a4a4a;
    padding: 1.25em 1.5em;
}

.boton-total {
    padding-left: 20vw;
    padding-right: 20vw;
}

i.small {
    font-size: 2rem;
}

i.size-circle {
    font-size: 30px !important;
}

.fixed {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
}

.capitalize:first-letter {
    text-transform: capitalize;
}

.hidden {
    display: none;
}

/* Carousel (swiper) */
.carousel-cell {
    width: 70%;
    /* half-width */
    /* height: 100px; */
    margin-right: 10px;
}

.flickity-prev-next-button,
.flickity-page-dots {
    display: none;
}

/**** Preloader ****/
#preloader {
    position: fixed;
    /* Sit on top of the page content */
    z-index: 999999;
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white
}

.preloader-wrapper {
    position: absolute;
    top: 80px;
    left: 45%;
}

/****************/

.collapsible>.active .collapsible-header .chevron {
    transform: rotate(90deg);
}