

body{
    font-family: 'Poppins', sans-serif;
}

:root {
    --color-blue-palacio: #0071BC;
    --color-darkblue-palacio: #011C40;
    --color-orange-palacio: #D95E32;
    --color-brown-palacio: #a58e80;
    --color-gray-1-palacio: #F2F2F2;
    --color-black-palacio: #000;
    --color-white-palacio: #fff;
    --font: "Popins";
    --font-bold: "Popins-Bold";
}

body,
html {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 20px;
    line-height: 1.2;
}

p {
    font-size: 18px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    p {
        font-size: 16px;
    }
}

a {
    color: var(--color-blue-palacio);
}

.bg-blue {
    background: var(--color-blue-palacio);
}

.bg-dark-blue {
    background: var(--color-darkblue-palacio);
}

.color-black {
    color: var(--color-black-palacio);
}

.color-white {
    color: var(--color-white-palacio);
}

.color-dark-blue {
    color: var(--color-darkblue-palacio);
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.btn {
    padding: 10px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 18px;
    outline: none !important;
}

.btn-blue,
.btn-primary {
    background: var(--color-blue-palacio);
    color: var(--color-white-palacio);
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
}

.btn-blue:hover,
.btn-primary:hover {
    background: var(--color-white-palacio);
    color: var(--color-blue-palacio);
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
}

.btn-white {
    background: var(--color-white-palacio);
    color: var(--color-blue-palacio);
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
}

.btn-white:hover {
    background: var(--color-blue-palacio);
    color: var(--color-white-palacio);
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
}


.container-panel table th{
    width:100%;
    padding:10px 0px;
}
.btn-gray {
    background: var(--color-gray-1-palacio);
    color: var(--color-blue-palacio);
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
}

.btn-gray:hover {
    background: var(--color-darkblue-palacio);
    color: var(--color-white-palacio);
}

.link-blue {
    background: var(--color-white-palacio);
    color: var(--color-blue-palacio);
    padding: 0;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.link-blue:hover {
    color: var(--color-darkblue-palacio);
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.input-style {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--color-blue-palacio);
}

.input-style:focus {
    border: 1px solid var(--color-darkblue-palacio);
    outline: none !important;
}

.veladura {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.87);
    z-index: 9;
}

.popUp,
.popUpSearch {
    position: fixed;
    top: 23%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60%;
    z-index: 1001;
    background-color: var(--color-white-palacio);
    padding: 30px;
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    text-align: center;
    border-top: 6px solid var(--color-blue-palacio);
    display: none;
    z-index: 10;
}

.popUp p {
    color: black;
}

.closePop {
    position: absolute;
    right: 10px;
    top: 5px;
    color: var(--color-darkblue-palacio);
}

.container {
    width: 100%;
    padding: 0;
    margin: 0;
}

#header {
    position: relative;
}

#wrapper {
    background: var(--color-white-palacio) !important;
    padding: 0;
}

#wrapper .container {
    max-width: 80%;
    margin: 0 auto;
    padding-top: 50px;
}

.page-index #wrapper .container,
.page-category #wrapper .container {
    padding-top: 0px;
    max-width: 100% !important;
}

.page-category .breadcrumb {
    display: none;
}

.header-nav {
    margin: 0 !important;
}

.header-nav .row,
.header-top .row {
    margin: 0;
}

.header-nav .col-md-5.col-xs-12 {
    display: none;
}

.header-nav .col-md-7.right-nav {
    max-width: 200px;
    position: absolute;
    right: 50px;
    top: 18px;
    z-index: 10;
}

#header .header-nav .blockcart {
    background: var(--color-white-palacio);
    margin-left: 0;
}

.header-nav #menu-icon .material-icons {
    color: var(--color-blue-palacio);
    font-size: 40px;
}
#header.is-open .header-nav #menu-icon .material-icons {
    color: var(--color-brown-palacio);
}

#_desktop_language_selector {
    display: none;
}

.header-top {
    padding: 0 !important;
    max-width: 80%;
    margin: 20px auto 0px;
    position: relative;
}

.icon-wrapper {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon-wrapper img {
    width: 20px;
}

#_desktop_logo {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#header .header-top .menu {
    margin-bottom: 0;
    margin-top: 15px;
}

.header-top .col-sm-12.position-static {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.user-icon {
    width: 16px;
}

.icon-search,
.shopping-card-icon {
}

.user-icon path,
.shopping-card-icon path,
.icon-search path {
    fill: var(--color-blue-palacio);
}

.icon-search {
    display: block;
    padding: 0.75rem;
}

.icon-search:hover {
    cursor: pointer;
}
.icon-search svg {
    height:20px;
    width:20px;
    overflow: initial;
    position: relative;
}
#header .header-nav .cart-preview.active {
    background: transparent;
}

.cart-products-count {
    color: var(--color-blue-palacio);
}

#header .header-nav .user-info a {
    padding: 0.75rem;
    display:block;
}
#header .header-nav .user-info a.logout {position: absolute;font-size: 13px;top: 34px;padding: 0;left: 41px;}
#header .header-nav .user-info {
    margin:0;
    position: relative;
}

.top-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    /* min-width: 650px; */
}

.top-menu li {
    min-height: 60px;
}

.top-menu li a {
    color: var(--color-darkblue-palacio) !important;
    font-family: var(--font-bold) !important;
    font-size: 20px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.top-menu li.current,
.top-menu li:hover {
    border-bottom: 4px solid var(--color-blue-palacio);
}
.top-menu a[data-depth="1"], .top-menu a[data-depth="2"] {
    color: var(--color-darkblue-palacio) !important;
}
.top-menu a[data-depth="1"]:hover, .top-menu a[data-depth="2"]:hover {
    color: var(--color-blue-palacio) !important;
}

.top-menu li.current a,
.top-menu li:hover a {
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.page-header > h1 {
    color: var(--color-blue-palacio);
}

.link-active {
    color: var(--color-blue-palacio) !important;
    border-bottom: 4px solid var(--color-blue-palacio);
}

.line {
    display: block;
    position: absolute;
    bottom: 8px;
    width: 100%;
    height: 12px;
    background: #fff;
}

.line:nth-child(2),
.line:nth-child(5) {
    bottom: 26px;
    height: 8px;
}

.line:nth-child(3),
.line:nth-child(6) {
    bottom: 40px;
    height: 5px;
}

.line-special {
    position: absolute;
    top: 8px;
    width: 100%;
    height: 12px;
    background: #fff;
}

.line-special:nth-child(2) {
    top: 26px;
    height: 8px;
}

.line-special:nth-child(3) {
    top: 40px;
    height: 5px;
}

.carousel .carousel-item .caption {
    bottom: initial;
    top: 40%;
    left: 50%;
    max-width: 100%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.carousel .text-banner img {
    width: auto;
    display: block;
    margin: 0 auto;
}

.carousel .text-banner span {
    font-family: var(--font-bold);
    display: block;
    width: 100%;
    padding: 90px 0px;
    font-size: 70px;
    font-weight: bolder;
    letter-spacing: 11px;
    position: relative;
}

.carousel .text-banner span:before {
    content: "";
    height: 1px;
    width: 40%;
    background: white;
    position: absolute;
    top: 40px;
    left: 30%;
}

.carousel .text-banner span:after {
    content: "";
    height: 1px;
    width: 40%;
    background: white;
    position: absolute;
    bottom: 40px;
    left: 30%;
}

.cards-home-custom {
    max-width: 80%;
    margin: 20px auto 80px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card-item {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    margin-bottom:20px;
}

.card-item img {
    width:100%;
}

.featured-products {
    max-width: 80%;
    margin: 50px auto;
    text-align: center;
}

.products-section-title {
    margin-bottom: 50px !important;
}

.products {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    /* justify-content: center !important; */
}

.products .product-miniature {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    /* margin: 15px 0.8125rem; */
    padding: 10px;
}
.page-category .products .product-miniature {
    flex-basis:25%;
}

.featured-products .products-section-title, #wp_posts > h2 {
    color: var(--color-darkblue-palacio);
    font-family: var(--font-bold);
    font-size: 42px;
    letter-spacing: 5px;
}
#wp_posts > h2 {
    text-align:center;
}
.featured-custom-tabs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 992px;
    margin: 40px auto;
    border-bottom: 1px solid #cccc;
}

.featured-custom-tabs ul li {
    padding-bottom: 10px;
    letter-spacing: 2px;
    font-size: 20px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.featured-custom-tabs ul li a {
    color: var(--color-darkblue-palacio);
}

.featured-custom-tabs ul li:hover {
    border-bottom: 3px solid var(--color-blue-palacio);
}

.featured-custom-tabs ul li:hover a {
    color: var(--color-blue-palacio);
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.featured-custom-tabs ul li.active {
    color: var(--color-blue-palacio);
    /* border-bottom: 3px solid var(--color-blue-palacio); */
}
.product-flag {
    padding: 10px 15px !important;
}
.product-flag.new {
    background: var(--color-darkblue-palacio) !important;
}
.product-flag.on-sale {
    background: var(--color-orange-palacio) !important;
    width: fit-content !important;
}
.products .product-flags {
    top: 10px;
}
.products .product-flags li {
    text-transform: none;
    padding: 8px 15px;
}

.products .thumbnail-container,
.products .thumbnail-container .highlighted-informations {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.products .product-description {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    box-shadow: none !important;
}

.products .product-description .product-title {
    width: 100%;
    text-align: left !important;
}

.productss .product-description .product-title a {
    font-size: 20px;
    color: var(--color-black-palacio);
}

.products .product-description .product-price-and-shipping .price {
    color: var(--color-darkblue-palacio);
    font-size: 18px;
}

.show-more {
    color: var(--color-black-palacio);
    text-decoration: underline;
}

.show-more:hover {
    color: var(--color-blue-palacio);
}

body:not(#contact) .contact-us {
    text-align: center;
    position: fixed;
    bottom: 51px;
    background: white;
    z-index: 2000;
    padding: 30px;
    width: 500px;
    right: -577px;
    box-shadow: 0 0 50px #0000003d;
    transition: all ease .2s;
}
.cerrarContacto {
    display:block;
    text-align:right;
    font-size:30px;
    margin-top:-5px;
    cursor:pointer;
}
body:not(#contact) .contact-us.desplegado {
    right:55px;
}

.contact-us .form-title {
    font-size: 17px;
    font-family: var(--font-bold);
    letter-spacing: 5px;
}

.form-custom {
    max-width: 767px;
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.form-wrapper {
    -ms-flex-preferred-size: 50%;
    flex-basis: 100%;
    margin: 20px 0px;
}

.form-wrapper input {
    width: 80%;
}

.form-wrapper input:nth-child(2) {
    margin: 20px 0px;
}

.form-wrapper textarea {
    width: 100%;
    min-height: 100%;
}

.form-custom small {
    width: 100%;
}

.btn#send-form {
    display: block;
    margin: 20px 0px;
}

.disabled-btn {
    opacity: 0.5;
    pointer-events: none;
}

.product-additional-info,
#block-reassurance,
.product-information .tabs {
    display: none;
}

.product-quantity {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.product-quantity .add {
    width: 100%;
    margin: 20px 0px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.product-name {
    font-family: var(--font-bold);
    color: var(--color-darkblue-palacio) !important;
    font-size: 46px;
    text-align: left;
}

.product-prices {
    text-align: left;
}

.current-price > span {
    font-size: 32px;
    color: var(--color-darkblue-palacio);
}

.product-description {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.product-description > p > span,
.product-description > p {
    color: var(--color-black-palacio) !important;
    font-size: 20px !important;
    line-height: 1.5;
    max-width: 100%;
}

.product-add-to-cart {
    text-align: right;
}

.js-qv-mask {
}

.product-cover img {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.js-product-images-modal .modal-body > figure {
    text-align: center;
    background: #fff;
}

.js-product-images-modal .modal-body #thumbnails {
    display: none;
}

.product-accessories .products-section-title {
    color: var(--color-darkblue-palacio);
    font-family: var(--font-bold);
    font-size: 42px;
    letter-spacing: 5px;
}

.bootstrap-touchspin {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#quantity_wanted {
    border: none;
    font-size: 18px;
    width: 68px !important;
}

.btn-touchspin {
    border: none !important;
}

.input-group-btn-vertical {
    min-height: 25px;
    position: relative;
}

.input-group-btn-vertical button {
    position: absolute !important;
    z-index: 10;
}

.bootstrap-touchspin-up {
    top: 45%;
    right: -32px;
}

.product-quantity .input-group-btn-vertical .btn i {
    font-size: 20px;
}

.touchspin-up:after {
    content: url("../img/plus-square-solid.svg") !important;
}

.bootstrap-touchspin-down {
    top: 50%;
    left: -90px;
}

.touchspin-down:after {
    content: url("../img/minus-square-solid.svg") !important;
}

.product-customization {
    width: 100%;
    margin: 0;
}

.product-customization-item {
    margin: 0 !important;
}

.product-customization .card {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.product-customization .product-message {
    background: var(--color-white-palacio);
    text-align: right;
    border-bottom: 1px solid black;
    height: 42px;
    max-width: 70%;
    outline: none !important;
}

#left-column {
    margin-top: 50px;
    padding: 30px;
}

.page-category .left-column {
    padding: 0;
    width: 75%;
    margin-top: 50px;
}

.block-category .category-cover img {
    width: 100%;
    height: 430px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.card-block > h1 {
    color: var(--color-blue-palacio);
}

.category-cover {
    width: 100%;
}

.box-text-category {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--color-white-palacio);
}

.category-title {
    font-family: var(--font-bold);
    font-size: 64px;
    letter-spacing: 11px;
    color: var(--color-white-palacio);
    margin: 30px 0px;
}

.category-subtitle {
    font-weight: 100;
    letter-spacing: 5px;
    margin-top: 35px;
}

#products {
    max-width: 80%;
    margin: 50px auto;
}
.block-category-inner {
    max-width: 80%;
    margin:0 auto;
}
#category-description h2 {
    margin-bottom:15px;
    font-size:18px !important;
}

#js-product-list-top {
    margin-bottom: 50px;
}

.active_filters {
    background: none;
    text-align: right;
}

.block-categories,
#search_filters {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
    padding: 20px 20px 0px 20px;
}

.search-widget {
    padding-left: 20px;
    outline: none;
}

.search-widget form button[type="submit"] {
    outline: none !important;
}

.popUpSearch .search-widget {
    margin-top: 20px;
}

.popUpSearch .search-widget form input[type="text"] {
    min-width: 400px;
}

.search-widget form input[type="text"] {
    border: none;
    border-bottom: 1px solid var(--color-darkblue-palacio);
    font-size: 18px;
}

.search-widget form input[type="text"]:focus {
    outline: none;
}

.search-widget .material-icons {
    color: var(--color-blue-palacio) !important;
    font-weight: 800;
}

.category-top-menu > li:nth-child(1) {
    display: none;
}

.category-sub-menu > li {
    margin: 15px 0px;
}

.category-sub-menu > li > a {
    border-bottom: none !important;
}

#search_filters .ui-slider .ui-slider-handle {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: var(--color-blue-palacio);
    border: 1px solid var(--color-blue-palacio);
    outline: none;
}

.ui-widget-content {
    background: var(--color-gray-1-palacio);
    border: none;
}

#search_filters .ui-widget-header {
    background: var(--color-blue-palacio);
}

.page-category .category-sub-menu > li > a {
    font-weight: 100 !important;
    font-size: 18px !important;
}

.page-category .category-sub-menu > li.active > a {
    color: var(--color-blue-palacio);
}

#search_filters > p {
    display: none;
}

.facet-title {
    color: var(--color-black-palacio) !important;
    font-size: 18px;
    font-weight: 100;
    margin: 20px 0px;
}

.faceted-slider p {
    color: var(--color-blue-palacio) !important;
}


#_desktop_search_filters_clear_all .btn {
    padding: 10px 10px;
    font-size: 14px;
}

.page-category .products-selection .col-md-6 {
    width: 70%;
}

.page-category .products-selection .total-products {
    width: 27%;
}

#footer {
    padding: 0;
}

.p-footer {
    padding: 30px 15px;
}

.p-footer p {
    font-size: 16px;
}

.p-footer a {
    text-decoration: underline;
    color: var(--color-white-palacio);
}

.services {
    background: url("../img/Banner_Servicios.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.services .wrapper {
    max-width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 450px;
}

.services .services__item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    text-align: center;
    color: var(--color-white-palacio);
    min-height: 180px;
}

.services .services__item img {
    margin-bottom: 20px;
}

.services .services__item h3 {
    font-family: var(--font-bold);
}

.services .services__item h4 {
    color: var(--color-white-palacio);
    font-weight: lighter;
    max-width: 60%;
    margin: 10px auto;
}

.cart-grid {
    margin: 100px 0px;
}

.checkout.cart-detailed-actions a {
    font-size: 16px;
}

.js-cart-line-product-quantity {
    border: none !important;
}

.cart-overview .current-price > span {
    font-size: 24px;
}

.cart-summary {
    min-height: 247px;
}

.cart-detailed-totals {
    padding: 20px;
}

.card-block.cart-summary-totals .cart-summary-line.cart-total {
    background: none;
}

.cart-grid-body {
    width: 60%;
}

.cart-grid-right {
    width: 40%;
}

.cart-overview .bootstrap-touchspin-up {
    left: -24px;
}

.cart-overview .js-cart-line-product-quantity {
    width: 30px !important;
}

.remove-from-cart .material-icons {
    color: var(--color-blue-palacio);
}

.cart-grid .cart-grid-body a:hover {
    color: var(--color-blue-palacio);
}

#blockcart-modal .product-name {
    color: var(--color-blue-palacio);
    text-align: left;
}

.product-total {
    background-color: var(--color-white-palacio) !important;
}

.cart-content-btn button,
.cart-content-btn a {
    font-size: 14px;
}

#blockcart-modal .cart-content .cart-content-btn .btn {
    padding: 10px 20px;
}

.quickview .modal-content {
    background: var(--color-white-palacio);
    padding: 20px;
    margin: 0 auto;
}

.quickview .modal-footer {
    display: none;
}

.quickview #product-description-short {
    display: none;
}

.quickview .modal-body .col-md-6 > h1 {
    text-align: right;
}

a.quick-view:hover {
    color: var(--color-blue-palacio) !important;
}

#checkout p,
#checkout label,
#checkout span {
    color: var(--color-black-palacio);
    font-size: 16px;
}

.page-order .p-footer p {
    color: var(--color-white-palacio) !important;
}

.page-order #_desktop_logo {
    position: initial;
}

.page-order #_desktop_contact_link {
    display: none !important;
}

.page-order .icon-search {
    display: none;
}

#js-checkout-summary {
    padding: 20px;
}

.cart-summary-products p > a {
    color: var(--color-blue-palacio) !important;
}

#cart-summary-product-list .media-body .product-name {
    font-size: 18px;
}

#cart-summary-product-list .media-body .product-price {
    color: var(--color-blue-palacio) !important;
}

.custom-radio input[type="radio"]:checked + span {
    background-color: var(--color-blue-palacio);
}

.form-control:focus,
.input-group.focus {
    outline: none !important;
}

#payment-option-2-additional-information p {
    font-size: 14px;
}

#checkout a:hover {
    color: var(--color-blue-palacio) !important;
}

#checkout .nav-link.active {
    color: var(--color-blue-palacio) !important;
}

.step-title {
    color: var(--color-darkblue-palacio);
}

.js-address-form a,
.js-terms a {
    color: var(--color-blue-palacio) !important;
}

.checkout-step .address-item.selected {
    border: none !important;
}

.checkout-step .address-alias {
    padding-left: 10px;
}

.order-options textarea {
    border-radius: 10px;
    border: 1px solid var(--color-blue-palacio);
    outline: none;
    padding: 5px;
}

.form-control-comment {
    font-size: 12px !important;
    margin: 2px 0px;
    display: block;
    outline: none;
}

.page-contact .breadcrumb {
    display: none;
}

.page-contact #wrapper .container {
    max-width: 100%;
    padding-top: 0;
}

.page-contact #footer .contact-us {
    display: none;
}

.banner {
    position: relative;
}

.banner > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.page-contact .page-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    max-width: 90%;
    margin: 100px auto;
}

.page-contact .page-content .contact-us {
    margin: 0;
}

.page-contact .left-column {
    width: 100% !important;
}

.page-contact #left-column {
    width: 40%;
    margin: 0;
    padding: 0;
}

.contact-rich {
    padding-right: 50px;
}

.contact-rich > h4 {
    display: none;
}

.contact-rich .icon .material-icons {
    color: var(--color-blue-palacio);
    font-size: 35px !important;
}

.contact-rich hr {
    display: none;
}

.contact-rich .block {
    margin: 20px 0px;
}

.contact-rich .block .data {
    font-size: 18px;
    color: var(--color-black-palacio);
}

.contact-rich .data.email {
    display: none;
}

.contact-rich a {
    display: inline-block;
    font-size: 18px !important;
    color: var(--color-blue-palacio);
    margin: 5px 0px 0px !important;
}

.contact-rich .block:nth-child(4) a {
    pointer-events: none;
    color: var(--color-black-palacio);
}

.cms-id-7 .breadcrumb {
    display: none;
}

.cms-id-7 .page-header {
    display: none;
}

.promo-banner a {
    color: var(--color-blue-palacio) !important;
}

.promo-banner a:hover {
    color: var(--color-white-palacio) !important;
}

.promo-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
}

.promo-item__img,
.promo-item__text {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
}

.promo-item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    text-align: left;
}

.offer-title {
    color: var(--color-darkblue-palacio);
    font-family: var(--font-bold);
    font-size: 44px;
    margin: 20px 0px;
}

.offer-desc {
    color: var(--color-black-palacio);
    line-height: 1.5;
    margin: 30px 0px;
}

.promo-item__text a {
    color: var(--color-white-palacio) !important;
}

.promo-item__text a:hover {
    color: var(--color-blue-palacio) !important;
}

.old-price {
    color: var(--color-orange-palacio);
    text-decoration: line-through;
    margin: 0px 10px;
    font-weight: 100;
    font-size: 18px;
}

.new-price {
    color: var(--color-darkblue-palacio);
    font-family: var(--font-bold);
    font-size: 26px;
}

.page-search #js-product-list-header {
    color: var(--color-blue-palacio);
}

#pagenotfound .page-not-found,
#products .page-not-found {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-authentication #content {
    max-width: 60%;
}

.page-addresses .address,
.page-authentication #content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.forgot-password a,
.no-account a {
    color: var(--color-blue-palacio);
}

.page-authentication .page-header > h1 {
    color: var(--color-blue-palacio);
}

.form-control, select{
    background: var(--color-white-palacio);
    padding: 10px;
    border-radius: 30px;
    border:0px;
    background-color:var(--color-gray-1-palacio);
    transition:all 0.3s ease-in-out;
     border:1px solid transparent;
}


.form-control:focus, select:focus{
    background-color:white;
    border:1px solid lightgray;
}

.form-control.js-visible-password {
    border-radius: 10px 0px 0px 10px;
}

.input-group .input-group-btn > .btn[data-action="show-password"] {
    background: var(--color-darkblue-palacio);
    padding: 14px;
    border: 1px solid var(--color-darkblue-palacio);
}

.form-control-label {
    color: var(--color-black-palacio);
    font-size: 16px;
    text-align: left;
}

.page-customer-account #content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.send-renew-password-link {
    color: var(--color-black-palacio);
    text-align: center;
}

.forgotten-password .form-fields {
    max-width: 767px;
    margin: 50px auto;
}

.forgotten-password .form-fields .center-email-fields {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.forgotten-password .form-fields label.required {
    width: 42%;
}

.forgotten-password .form-fields .email {
    width: 50%;
}

.forgotten-password .form-control-submit {
    margin: 40px 0px;
    font-size: 16px;
}

.pp-loader {
    margin-bottom: 20px;
}
.pagination .page-list {
    box-shadow: none;
}
.pagination .current a {
    color: var(--color-blue-palacio) !important;
}
.container-products {
    margin: 100px 0px;
}
/*#main {
    background-image:url(https://pescaderiapalacio.es/themes/pescaderia_theme/assets/img/fondo_navidad.png);
    background-repeat:no-repeat;
    background-size:100% auto;
    background-position:center 450px;;
}*/

#search_widget {
    overflow: initial;
}
.popUpSearch #search_widget {
    width:calc(100% - 30px);
    padding-left: 0 !important;
    float: left;
}
.popUpSearch .search-widget form button[type="submit"], .page-not-found .search-widget form button[type="submit"] {
    top: -33px;
}
#products .page-not-found, #pagenotfound .page-not-found {
    overflow:initial !important;
}
#products .page-not-found .search-widget, #pagenotfound .page-not-found .search-widget {
    width:100%;
    padding-left: 0;
}
.page-not-found .search-widget form {
    width: calc(100% - 30px);
}
.introText h2 {
    font-size:18px !important;
}
.introText.plegada {
    height: 79px;
    overflow:hidden;
    position:relative;
}
.introText.plegada:after {
    display:block;
    content:'';
    position:absolute;
    width:100%;
    height: 61px;
    bottom:0;
    left:0;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 100%);
}

.contactBubble {
    position:fixed;
    bottom:30px;
    right:30px;
    height:60px;
    width:60px;
    background: var(--color-darkblue-palacio);
    border-radius: 50%;
    box-shadow: 0 0 30px #0000004d;
    z-index: 2001;
}
body#contact .contactBubble {
    display:none;
}
.contactBubble span.contacto {
    position:absolute;
    height:25px;
    width:35px;
    border:3px solid white;
    bottom:15px;
    left:13px;
    cursor: pointer;
}
span.contacto:after {
    position:absolute;
    content:'';
    display:block;
    background:white;
    height:20px;
    width:3px;
    transform:rotate(45deg);
    top: -4px;
    right: 7px;
}
span.contacto:before {
    position:absolute;
    content:'';
    display:block;
    background:white;
    height:20px;
    width:3px;
    transform:rotate(-45deg);
    top: -4px;
    left: 8px;
}
.contactBubble span.whatsapp {
    position:absolute;
    top:-70px;
    left:-3px;
}
.header-host {
    position:relative;
}
.header-host h2 {
    color:white;
    position:absolute;
    height:100%;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    top:0;
    font-size:40px;
    left: 0;
    text-align: center;
}
.intro-host {
    margin:50px auto;
    max-width:800px;
}
.images-host {
    display:flex;
    flex-wrap:wrap;
}
.images-host img {
    width:25%;
    height:auto;
}
.serv-host {
    margin:0;
    padding:0;
    display:flex;
    flex-wrap:wrap;
    margin-top:40px !important;
}
.serv-host li {
    width:25%;
    padding:20px;
    list-style:none;
    text-align:center;
}
.serv-host li h3 {
    color: var(--color-blue-palacio);
}
.contact-host {
    text-align:center;
    margin-top:40px;
}
.contact-host a {
    background: var(--color-blue-palacio);
    padding: 20px;
    color: white !important;
    font-weight: bold;
    cursor: pointer;
}
.cms-id-10 .page-header {
    display:none;
}
.form-success {
    color: rgb(25, 135, 84);
}
.form-error {
    color: rgb(220, 53, 69);
}
.login--link{
    text-align: left;
}

@media (max-width: 1199px) {
    .top-menu {
        min-width: 600px;
    }
    #_desktop_logo {
        left: 10px;
    }
    .header-top {
        max-width: 100%;
    }
    .top-menu li a {
        font-size: 18px;
    }
    .header-nav .col-md-7.right-nav {
        right: 0px;
    }
    .user-icon {
        width: 17px;
    }
    .icon-search,
    .shopping-card-icon {
        width: 20px;
    }
    #wrapper .container {
        max-width: 90%;
    }
    .carousel .text-banner span {
        font-size: 55px;
    }
    .carousel .carousel-item .caption-description {
        display: block;
    }
    .services .wrapper {
        max-width: 90%;
    }
    .cards-home-custom {
        max-width: 90%;
    }
    .product-description > p > span,
    .product-description > p {
        max-width: 100%;
    }
    .category-title {
        font-size: 52px;
    }
    .page-category .products-selection {
        display: none;
    }
    .promo-item__img img {
        max-width: 400px;
    }
    .products .product-miniature {
        flex-basis:33.33333333%;
    }
}

@media (max-width: 992px) {
    .carousel .text-banner span {
        font-size: 42px;
        padding: 70px 0px;
    }
    .top-menu {
        min-width: 450px;
    }
    .top-menu li a {
        font-size: 15px;
    }
    #wrapper .container {
        padding-top: 20px;
    }
    .services .wrapper {
        max-width: 100%;
        padding: 80px 0px;
    }
    .services .services__item {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .form-custom {
        max-width: 80%;
    }
    .block-category .category-cover img {
    height: 284px;
    }
    .category-title {
        font-size: 42px;
    }
    .cart-grid-body,
    .cart-grid-right {
        width: 100%;
        padding: 0;
    }
    .banner > img {
        width: 100%;
        height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: right;
        object-position: right;
    }
    .page-contact #left-column {
        width: 100%;
        margin-bottom: 50px;
    }
    .page-contact .contact-us {
        margin: 20px;
    }
    .page-contact .page-content {
        margin: 0px auto;
    }
    .contact-rich {
        padding-right: 0px;
    }
    .promo-item__img,
    .promo-item__text {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
    .page-authentication #content {
        max-width: 80%;
    }
    .featured-custom-tabs ul {
        margin: 10px auto;
        /* min-width: 992px; */
        flex-direction: column;
    }
    .featured-custom-tabs ul li {
        padding:10px 0;
    }
    .featured-custom-tabs ul li a {
        display:block;
    }
    .featured-custom-tabs {
        overflow-x: auto;
    }
    .products .product-miniature {
        flex-basis:50%;
    }
}

@media (max-width: 767px) {
    .top-menu li.current,
    .top-menu li:hover {
        border-bottom: none;
    }
    .top-menu li {
        min-height: 45px;
    }
    .popUp,
    .popUpSearch {
        width: 80%;
    }
    .js-top-menu.mobile .top-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .js-top-menu-bottom {
        display: none;
    }
    .header-top {
        margin: 0;
    }
    .header-nav {
        display: block;
        height: 72px;
        max-height: initial !important;
    }
    .header-nav .hidden-md-up.text-sm-center.mobile {
        padding: 10px 0px 20px;
    }
    #header .header-nav .top-logo {
        margin-left: 20px;
    }
    #header .header-nav .blockcart.active {
        margin-left: 0;
    }
    .carousel .carousel-item img {
        -o-object-position: right;
        object-position: right;
    }
    .carousel .text-banner span {
        letter-spacing: 5px;
        font-size: 32px;
        padding: 60px 0px;
    }
    .services {
        background: url(../img/Banner_Servicios_mobile.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .cards-home-custom {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .card-item {
        -ms-flex-preferred-size: 51%;
        flex-basis: 51%;
        margin: 10px 0px;
        width: 50%;
        float: left;
    }
    .featured-products .products-section-title,
    .title-custom, #wp_posts h2 {
        font-size: 26px;
    }


    #products {
        margin: 20px auto;
    }
    .products {
        margin-top: 50px;
    }
    .form-wrapper {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin: 10px 0px;
    }
    .form-wrapper input {
        width: 100%;
    }
    .product-name {
        font-size: 38px;
        text-align: left;
    }
    .product-prices, .product-add-to-cart {
        text-align:left;
    }
    .product-quantity {
        justify-content:flex-start;
        margin-left: 32px;
    }
    .product-description > p > span,
    .product-description > p {
        font-size: 18px !important;
    }
    .product-accessories .products-section-title {
        font-size: 34px;
    }
    .category-cover {
        display: block;
        /* min-height: 500px; */
    }
    .page-category .left-column {
        margin-top: 0px;
    }
    .page-category .search-widget {
        width: 100%;
        padding: 0;
        overflow: initial !important;
    }
    #search_widget form {
        display:flex;
    }
    .search-widget form button[type="submit"] {
    top: -36px;
    right: 41px;
    }
    .page-category .search-widget form input[type="text"] {
        width: 100%;
    }
    .cart-grid {
        margin: 0;
    }
    .card-block.cart-summary-totals {
        padding: 0;
    }
    .card-block.cart-summary-totals .cart-summary-line.cart-total {
        padding: 0;
        padding-top: 15px;
    }
    .product-line-grid {
        position: relative;
    }
    .product-line-grid-right {
        position: absolute;
        top: 64%;
        left: 20px;
    }
    .p-footer p {
        font-size: 14px;
    }
    #checkout .checkout-step .forgot-password {
        margin-left: 0 !important;
        margin-bottom: 20px;
    }
    .forgotten-password .form-fields label.required,
    .forgotten-password .form-fields .email {
        width: 100%;
        text-align: left;
    }
    .product-quantity .qty {
        margin-right: 0px;
    }
    #header .header-nav .user-info a {
        margin-top: 1px;
    }
    #left-column {
        margin-top:20px;
    }
    .page-category .products .product-miniature {
        flex-basis:50%;
    }
    .introText.plegada {
        height: 120px;
    }
    .header-host {
        padding:30px;
        height: 250px;
    }
    .header-host img {
        position:absolute;
        top:0;
        left:0;
        height: 100%;
        object-fit: cover;
    }
    .header-host h2 {
        font-size: 32px;
    }
    .images-host img {
        width:50%;
    }
    .serv-host li {
        width:100%;
    }
}

@media (max-width: 600px) {
    #wrapper .container {
        max-width: 90%;
        padding-top: 20px;
    }
    .popUpSearch {
        width: 100%;
        position: relative;
        left: initial;
        top: initial;
        transform: initial;
        z-index: initial;
        padding: 5px;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        display: block !important;
    }
    .popUpSearch .closePop, .popUpSearch h3 {
        display:none;
    }
    .popUpSearch #search_widget {
        float:none;
        padding: 0;
        margin: 4px 0;
    }
    .popUpSearch .search-widget form input[type="text"] {
        min-width: 100%;
    }
    .services .services__item img {
        max-width: 60px;
    }
    .cards-home-custom {
        margin: 50px auto;
    }
    .card-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
    .cart-overview .current-price > span {
        font-size: 20px;
    }
    .promo-item__img img {
        max-width: 250px;
    }
    body:not(#contact) .contact-us.desplegado {
        width: calc(100% - 60px);
        right: 30px;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .box-text-category {
        top: 30%;
    }
    .text-banner img {
        width: 200px;
    }
    .carousel .carousel-item img {
        -o-object-position: 85%;
        object-position: 85%;
    }
    .carousel .text-banner span {
        font-size: 20px;
    }
    .services .services__item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
    .form-custom {
        max-width: 90%;
    }
    .product-name {
        font-size: 32px;
    }
    .product-accessories .products-section-title {
        font-size: 24px;
    }
    .product-customization .product-message {
        max-width: 90%;
    }
    .cart-item {
        padding: 40px 0;
    }
    .product-description > p > span,
    .product-description > p {
        font-size: 16px !important;
    }
    .page-product .product-quantity #quantity_wanted {
        width: 55px;
    }
    .input-group-btn-vertical button {
        z-index: 10;
        top: 35%;
    }
    .page-product .bootstrap-touchspin-down {
        right: 0px;
        top: 40%;
    }
    .page-contact .page-content {
        padding: 0;
    }
    .contact-rich .block .data,
    .contact-rich a {
        font-size: 16px !important;
    }
    .cart-content-btn button,
    .cart-content-btn a {
        font-size: 12px;
    }
    #blockcart-modal .cart-content .cart-content-btn {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #blockcart-modal .cart-content .cart-content-btn .btn {
        width: 100%;
    }
    .category-title {
        letter-spacing: 4px;
    }
    .page-search #products {
        max-width: 100%;
    }
    .page-search .search-widget {
        padding-left: 0px;
    }
    .bootstrap-touchspin-up {
        right: -30px;
    }
    .bootstrap-touchspin-down {
        top: 50%;
        left: -100px;
    }
    .card-item {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .product-line-grid-right .price,
    .product-line-grid-right .qty {
        width: 50%;
    }
}
@media (min-width:1920px) {
    main {
        max-width:1920px;
        margin:0 auto;
    }
}


.container--login {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* background-color: var(--color-blue-palacio); */
}

form#loginForm {
    text-align: center;
    width: 90%;
    max-width: 400px;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    padding: 60px 60px;
}
.container-panel {
    height: 100%;
}

body {background-color: var(--color-gray-1-palacio);}

.container-panel {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    width: calc(100% - 300px);
    transform: translateX(330px);
    height: 100%;
    background-color: var(--color-gray-1-palacio);
    border-radius: 0px;
    height: 100vh;
    overflow: auto;
    padding-top: 20px;
    padding-bottom: 0px;
}
body *{
    box-sizing:border-box;
}
form#loginForm label {
    display: block;
    text-align: left;
}

form#loginForm input {
    width: 100%;
    margin: 0 auto;
}

form#loginForm input {
    margin-bottom: 20px;
}

form#loginForm button{
    border-color:white;
    box-shadow:none !important;
    cursor:pointer;
    border: 1px solid transparent;
}

form#loginForm button:hover{
    border: 1px solid var(--color-blue-palacio)
}

body {
    margin: 0px;
}
.bTable {
    border-radius: 30px!important;
    width: 100%!important;
    height: 38px!important;
    line-height: 38px !important;
    border: 1px solid var(--color-blue-palacio) !important;
    color: var(--color-blue-palacio)!important;
    text-transform: uppercase!important;
    font-size: 12px!important;
    cursor: pointer!important;
    transition: all 0.3s ease-in-out!important;
     background-color:var(--color-blue-palacio) !important;
    color:white !important;
    white-space: nowrap;
}

.bTable:hover{
   background-color:white !important;
    color:var(--color-blue-palacio) !important;
}

button.bTable--create:hover, .bTable.whiteBlueButton:hover{
    background-color:var(--color-blue-palacio) !important;
    color:white;
}

button.bTable--create:hover b, .bTable.whiteBlueButton:hover b{
    color:white;
}

button.bTable--create, .bTable.whiteBlueButton
{
      border-radius: 30px!important;
      width: 100%!important;
      height: 36px!important;
      line-height: 36px !important;
      border: 1px solid var(--color-blue-palacio) !important;
      color: var(--color-blue-palacio)!important;
      text-transform: uppercase!important;
      font-size: 12px!important;
      cursor: pointer!important;
      transition: all 0.3s ease-in-out!important;
      color:var(--color-blue-palacio);
      background-color:white !important;
      color:white !important;
      width: 100px !important;
}
button.bTable--create b, .bTable.whiteBlueButton b{
    color:var(--color-blue-palacio);
    margin:0px;
}
div#infoPopup p {
    color: black;
}
div#infoPopup button{
     border-radius: 30px!important;
    width: 150px!important;
    height: 38px!important;
    line-height: 38px !important;
    border: 1px solid var(--color-blue-palacio) !important;
    color: var(--color-blue-palacio)!important;
    text-transform: uppercase!important;
    font-size: 12px!important;
    cursor: pointer!important;
    transition: all 0.3s ease-in-out!important;
     background-color:var(--color-blue-palacio) !important;
    color:white !important;
}
button.bTable--remove, .bTable.orangeButton{
    border-radius: 30px!important;
    width: 100%!important;
    height: 36px!important;
    line-height: 36px !important;
    border: 1px solid var(--color-orange-palacio) !important;
    color: var(--color-orange-palacio)!important;
    text-transform: uppercase!important;
    font-size: 12px!important;
    cursor: pointer!important;
    transition: all 0.3s ease-in-out!important;
    background-color:white !important;
    color:white !important;
    width: 100px !important;
}
button.bTable--remove:hover, .bTable.orangeButton:hover{
    background-color:var(--color-orange-palacio) !important;
}
button.bTable--remove:hover b, .bTable.orangeButton:hover b{
    color:white !important;
}
button.bTable--remove b, .bTable.orangeButton b{
    color: var(--color-orange-palacio)!important;
}

.container-panel table {
    width: 100%;
    margin-top: 0px !important;
    position: relative;
    z-index: 2;
}
.container-panel table tr{
    /* border-bottom:2px solid lightgray; */
    /* margin-bottom: 10px; */
}
.container--login img {
    margin-bottom: 60px;
}

.container-menu {
    width: 300px;
    position: fixed;
    left: -0px;
    top: 0;
    background-color: var(--color-darkblue-palacio);
    height: 100%;
    text-align: center;
    padding: 40px 0px;
}

img.logo-menu {
    margin-bottom: 40px;
}

button#bLogout {
    border: none;
    font-size: 14px;
    position: absolute;
    width: 225px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
    cursor: pointer;
}

.container-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    padding:10px 0px;
    position:relative;
}

.container-button a p{
    width:50%;
    text-align:left;
    color:white;
    text-decoration:none;
    margin-left:40px;
    font-size:16px;
    margin-top:0px;
    margin-bottom:0px;
}

.container-button a:hover, .container-button a.selected--link{
    background-color:#102c53;
}

.container-button a:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:0px;
    background-color:var(--color-blue-palacio);
    transition:all 0.3s ease-in-out;
}

.container-button a:hover:before, .container-button a.selected--link:before{
    width:5px;
}
span.lines--menu {
    width: 7px;
    height: 100%;
    position: fixed;
    left: 305px;
    top: 0px;
    display: block;
    z-index: 999;
    background-color: var(--color-darkblue-palacio);
}
span.lines--menu:after{
    content:"";
     width: 5px;
    height: 100%;
    position: fixed;
    left: 315px;
    top: 0px;
    display: block;
    z-index: 999;
    background-color: var(--color-darkblue-palacio);
}

span.lines--menu:before{
    content:"";
     width: 3px;
    height: 100%;
    position: fixed;
    left: 323px;
    top: 0px;
    display: block;
    z-index: 999;
    background-color: var(--color-darkblue-palacio);
}

.container-panel--box {
    max-width: 1080px;
    width: 100%;
    margin: 40px auto;
}

.container-panel--box table{
    background-color:white;
    margin-bottom:20px;
    border-radius:5px;

}

.container-panel--box table tr td{
    border-bottom:2px solid #f2f2f2;
    padding:20px;
}

.container-panel--box table tr:last-child td{
    border-bottom:0px !important;
}

.blue-text {
    color: var(--color-blue-palacio);
}

h3.blue-text.title--tabla {
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom:10px;
    margin-top:10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 40px;
}

.tabl--selector {
    display: flex;
    justify-content: space-between;
    border-bottom:1px solid lightgray;
    transition:all 0.3s ease-in-out;
}

.tabl--selector a{
    text-decoration:none;
    font-size:24px;
    color:gray;
    border:3px solid transparent;
    padding-bottom:10px;
    transition:all 0.3s ease-in-out;
    display: inline-block;
    margin-right: 40px;
}

.tabl--selector a:hover, .tabl--selector a.selected-tab{
    border-bottom:3px solid var(--color-blue-palacio) !important;
    color:var(--color-blue-palacio) !important;
}

table.table--panel th{
    text-align:left;
    padding:20px;
}

table.table--panel tr td:nth-child(1), table.table--panel th:nth-child(1){
    width:25%;
}

table.table--panel tr td:nth-child(2), table.table--panel th:nth-child(2){
    width:15%;
}
table.table--panel tr td:nth-child(3), table.table--panel th:nth-child(3){
    width:25%;
}

table.table--panel tr td:nth-child(4), table.table--panel th:nth-child(4){
    width:15%;
}

table.table--panel tr td:nth-child(5), table.table--panel th:nth-child(5){
    width:20%;
}

table#orderTable tr td:nth-child(1), table#orderTable th:nth-child(1){
    width:25%;
}

table#orderTable tr td:nth-child(2), table#orderTable th:nth-child(2){
    width:15%;
}
table#orderTable tr td:nth-child(3), table#orderTable th:nth-child(3){
    width:25%;
}

table#orderTable tr td:nth-child(4), table#orderTable th:nth-child(4){
    width:15%;
}

table#orderTable tr td:nth-child(5), table#orderTable th:nth-child(5){
    width: 10%;
}

table#usersTable tr td, table#usersTable th{
    text-align:left;
    margin-left:20px;
    padding-left: 20px;
    color: black;
}
table#usersTable th{
        border-bottom: 2px solid #f2f2f2;
}
table#usersTable tr td:nth-child(1), table#usersTable th:nth-child(1){
    width:15%;
}

table#usersTable tr td:nth-child(2), table#usersTable th:nth-child(2){
    width:15%;
}
table#usersTable tr td:nth-child(3), table#usersTable th:nth-child(3){
    width:15%;
}

table#usersTable tr td:nth-child(4), table#usersTable th:nth-child(4){
    width: 35%;
}

table#usersTable tr td:nth-child(5), table#usersTable th:nth-child(5){
    width: 25%;
}





.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 0px 5px 0px rgb(0 0 0 / 28%);
    padding: 60px;
    max-width: 479px;
    background-color: white;
    width: 90%;
}
.popup p{
    color:red;
}
.popup.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.popup.hide {
    animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

a.close--popup {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 15px;
    height: 15px;
}
div#errorPopup{
    transition:all 0.3s ease-in-out;
}
a.close--popup:after{
    content:"";
    width:15px;
    height:2px;
    background-color:#898989;
    position:absolute;
    transform:rotate(45deg);
    left:0;
    top:50%;
}

a.close--popup:before{
    content:"";
    width:15px;
    height:2px;
    background-color:#898989;
    position:absolute;
    transform:rotate(135deg);
    left:0;
    top:50%;
}

.veladura--tooltip {
    height: 100%;
    width: 100%;
    position: fixed;
    background-color: #0000006e;
    top: 0;
    left: 0;
    transition:all 0.3s ease-in-out;
}

.pedido--fixed {
    width: 100%;
    background-color: white;
    border: var(--color-darkblue-palacio) solid 1px;
    position: sticky;
    bottom: 0;
    z-index: 5000;
    max-width: 1080px;
    width: 100%;
}

.pedido--button {
    position: absolute;
    right: 0%;
    top: 0%;
    margin-top: 20px;
    margin-right: 40px;
}

.container-pedido {
    margin: 0 auto;
    padding: 10px 20px;
    padding-top: 0px;
}

table#orderTable tr {
    text-align: left;
}

button#bMailOrder {
    /* margin: 0 auto; */
    display: block;
    width: 100% !important;
}
tbody#orderTBody tr {
    margin-bottom: 20px;
}

tbody#orderTBody {
    margin-bottom: 20px;
}

table#orderTable {
    margin-bottom: 20px;
}

button#bMailOrder {
    width: 150px !important;
    margin-left: auto;
}

div#infoPopup h3{
    color:var(--color-blue-palacio);
    letter-spacing:3px;
    margin-top:0px;
}

h3.blue-text.title--tabla button {
    max-width: 200px;
    background-color: transparent !important;
    color: var(--color-orange-palacio) !important;
    border: 1px solid var(--color-orange-palacio) !important;
    height: 36px !important;
    line-height: 36px !important;
}
h3.blue-text.title--tabla button:hover{
    background-color:var(--color-orange-palacio) !important;
}
table#usersTable button {
    width: 100% !important;
}
h3.blue-text.title--tabla button:hover{
    color:white !important;
}
div#addTableForm form .table--add-form-box{
    display: flex;
    align-items:center;
    margin-bottom:20px;
}
div#addTableForm form .table--add-form-box input{
    width:75%;
}
div#addTableForm form h3{
    font-size:18px !important;
    letter-spacing:3px;
    margin-bottom:10px;
}
div#addTableForm form .table--add-form-box button{
    width:25% !important;
    margin-left:20px !important;
    margin-right: 20px;
}
@media screen and (max-width:1450px){
   
    .container-menu{
        width:250px;
    }
    span.lines--menu{
        left:255px;
    }
    span.lines--menu:after{
        content:"";
         width: 5px;
        height: 100%;
        position: fixed;
        left: 265px;
        top: 0px;
        display: block;
        z-index: 999;
        background-color: var(--color-darkblue-palacio);
        }
    
    span.lines--menu:before{
        content:"";
         width: 3px;
        height: 100%;
        position: fixed;
        left: 273px;
        top: 0px;
        display: block;
        z-index: 999;
        background-color: var(--color-darkblue-palacio);
    }
     .container-panel {
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px;
        width: calc(100% - 265px);
        transform: translateX(280px);
        height: 100%;
        background-color: var(--color-gray-1-palacio);
        border-radius: 0px;
        height: 100vh;
        overflow: auto;
        padding-top: 20px;
        padding-left: 20px;
        padding-bottom: 0px;
    }
    .container-panel table{
        /* max-width: 800px !important; */
        width:100% !important;
    }
    table#usersTable tr td:nth-child(1), table#usersTable th:nth-child(1){
    width:10%;
        padding-right:20px;
    }
    
    table#usersTable tr td:nth-child(2), table#usersTable th:nth-child(2){
        width:10%;
          padding-right:20px;
    }
    table#usersTable tr td:nth-child(3), table#usersTable th:nth-child(3){
        width:15%;
          padding-right:20px;
    }
    
    table#usersTable tr td:nth-child(4), table#usersTable th:nth-child(4){
        width: 30%;
    }
    
    table#usersTable tr td:nth-child(5), table#usersTable th:nth-child(5){
        width: 20%;
    }

    table td, table th{
        font-size:14px;
    }
    td.thtdButton button b{
    font-size: 10px !important;
    }
    .container-panel--box table tr td{
        padding:10px;
    }
        table#usersTable tr td *{
        word-break: break-word;
        width: 120px !important;
    }
    table#usersTable tr td:nth-child(4) *, table#usersTable th:nth-child(4) *{
        width:180px !important;
    }
     table#usersTable tr td:nth-child(5) *, table#usersTable th:nth-child(5) *{
        width:180px !important;
    }


}

@media screen and (max-width:1280px){
  table#usersTable tr td:nth-child(4) *, table#usersTable th:nth-child(4) *{
        width:150px !important;
    }
     table#usersTable tr td:nth-child(5) *, table#usersTable th:nth-child(5) *{
        width:150px !important;
    }
}


@media screen and (max-width:1200px){
    .container-menu{
        width:200px;
    }
    span.lines--menu{
        left:202px;
    }
    span.lines--menu:after{
        content:"";
         width: 5px;
        height: 100%;
        position: fixed;
        left: 205px;
        top: 0px;
        display: block;
        z-index: 999;
        background-color: var(--color-darkblue-palacio);
        }
    
    span.lines--menu:before{
        content:"";
         width: 3px;
        height: 100%;
        position: fixed;
        left: 213px;
        top: 0px;
        display: block;
        z-index: 999;
        background-color: var(--color-darkblue-palacio);
    }
    .container-menu img{
        width:100%;
    }
    .container-button img{
        width:16px;
    }
    .container-button a p{
        width:60%;
        margin-left:20px;
        font-size:14px;
    }
    button#bLogout{
        width:150px;
        font-size:12px;
        padding: 10px;
    }
      .container-panel {
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px;
        width: calc(100% - 200px);
        transform: translateX(215px);
        height: 100%;
        background-color: var(--color-gray-1-palacio);
        border-radius: 0px;
        height: 100vh;
        overflow: auto;
        padding-top: 20px;
        padding-left: 20px;
        padding-bottom: 0px;
    }
    .container-panel table{
        max-width: 979px !important;
        width:100% !important;
        margin:0 auto;
    }
}

@media screen and (max-width:1080px){
    body * {
    box-sizing: border-box !important;
    }
    .main--pescaderia {
        display: flex;
        flex-direction: column;
    }
    
    .container-menu {
        position: relative;
        width: 100%;
        height: auto;
        padding: 15px 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    img.logo-menu{
        max-width:150px;
        margin-bottom: 10px;
        margin-left:20px;
    }
    button#bLogout{
        position:relative;
    }
    
    span.lines--menu{
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 5px;
        left: 0;
        bottom: -10px;
        top: initial;
    }
    span.lines--menu:after{
         position: absolute;
        bottom: 0;
        width: 100%;
        height: 3px;
        left: 0;
        bottom: -6x;
        top: initial;
    }
    span.lines--menu:before{
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: -8px;
        top: initial;
    }
    .container-button{
        display:flex;
        align-items:center;
        width:100%;
    }
    .container-button{
        width:100% !important;
        justify-content: center;
    }
    .container-button a p{
        width:100%;
    }
    .container-button a{
        padding:20px 20px;
    }
    .container-button a:before {
        content: "";
        position: absolute;
        left: 0;
        top: initial;
        height: 0px;
        width: 100%;
        background-color: var(--color-blue-palacio);
        transition: all 0.3s ease-in-out;
        bottom: 0;
    }
    .container-button a:hover:before, .container-button a.selected--link:before {
        height: 5px;
        width: 100%;
    }
    .container-button a:hover, .container-button a.selected--link{
        background-color:transparent;
    }
    .container-panel{
        position:relative;
        left:initial;
        transform:initial;
        width: 100%;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        height: 100%;
    }
    .pedido--fixed{
        position: sticky;
        border: var(--color-darkblue-palacio) solid 1px;
        bottom: 0;
        z-index: 5000;
        margin-top:20px;
    }

}

.overflow--table-selector {
    overflow-x: auto;
    padding-bottom:20px;
}

.tabl--selector {white-space: nowrap;}
