.sidebar-dark-gradiant {
    background: linear-gradient(51.25deg, #40916c -25.2%, #1e6091 98.59%);
}

[class*="sidebar-dark-"] .sidebar a {
    color: #fff !important;
}
.bg-primary {
    background: linear-gradient(51.25deg, #503581 -25.2%, #0382a6 98.59%);
}
.btn-primary {
    background: linear-gradient(51.25deg, #503581 -25.2%, #0382a6 98.59%);
    border: none;
}
.btn-danger {
    background: linear-gradient(51.25deg, #503581 -25.2%, #dc3545 98.59%);
    border: none;
}
.login-page {
    /* background: linear-gradient(51.25deg, #503581 -25.2%, #0382A6 98.59%); */
    /* background: linear-gradient(270deg, #503581, #0382a6); */
    background: linear-gradient(270deg, #40916c, #1e6091);

    background-size: 400% 400%;
    -webkit-animation: bganimation 12s ease infinite;
    animation: bganimation 12s ease infinite;
}
.login-logo a,
.register-logo a {
    color: #fff !important;
}

@-webkit-keyframes bganimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes bganimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: linear-gradient(270deg, #0382a6, #503581);
}
.select2-container {
    width: 100% !important;
}

.control-checkbox {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 0;
}
.control-checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control_indicator {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border: 0px solid #000000;
    border-radius: 0px;
}
.control-checkbox:hover input ~ .control_indicator,
.control-checkbox input:focus ~ .control_indicator {
    background: #cccccc;
}

.control-checkbox input:checked ~ .control_indicator {
    background: #503581;
}
.control-checkbox:hover input:not([disabled]):checked ~ .control_indicator,
.control-checkbox input:checked:focus ~ .control_indicator {
    background: linear-gradient(51.25deg, #503581 -25.2%, #0382a6 98.59%);
}
.control-checkbox input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: "";
    position: absolute;
    display: none;
}
.control-checkbox input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}
.control-checkbox .control_indicator::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    margin-left: -16px;
    margin-top: -16px;
    background: #2aa1c0;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}
@-webkit-keyframes s-ripple {
    0% {
        transform: scale(0);
    }
    20% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes s-ripple {
    0% {
        transform: scale(0);
    }
    20% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@-webkit-keyframes s-ripple-dup {
    0% {
        transform: scale(0);
    }
    30% {
        transform: scale(1);
    }
    60% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes s-ripple-dup {
    0% {
        transform: scale(0);
    }
    30% {
        transform: scale(1);
    }
    60% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.control-checkbox input + .control_indicator::before {
    -webkit-animation: s-ripple 250ms ease-out;
    animation: s-ripple 250ms ease-out;
}
.control-checkbox input:checked + .control_indicator::before {
    -webkit-animation-name: s-ripple-dup;
    animation-name: s-ripple-dup;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #5e72e4 solid;
    border-radius: 50%;
    -webkit-animation: sp-anime 0.8s infinite linear;
    animation: sp-anime 0.8s infinite linear;
}
@-webkit-keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
.is-hide {
    display: none;
}

.d-none {
    display: none;
}
.opacity-none {
    opacity: 0;
    width: 0;
    height: 0;
}
.dropdown-toggle-table::after {
    content: none;
}

.table-image {
    /* width: 100px; */
    display: flex;
    align-items: center;
}

.table-image img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}
.table-center tbody tr td {
    vertical-align: middle;
}
.lb-closeContainer {
    position: absolute;
    right: 15px;
    top: 8px;
    z-index: 999;
}

/* Element showing an inline error message */
.form-error {
    display: block;
    color: #b94a48;
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 140%;
    font-size: 14px;
}
table.vertical-center tbody tr td {
    vertical-align: middle;
}

.select2-container {
    width: 100% !important;
}

.dropzone .dz-message {
    margin: 1em 0;
}

#editor-container {
    height: 350px;
}
.dropzone {
    border: 1px solid rgb(57 75 139 / 30%) !important;
    border-radius: 10px;
    padding: 10px 10px !important;
}
.dropzone .dz-message {
    margin: 0px 0 !important;
}
.dropzone .dz-message i {
    text-align: center;
    display: block;
    color: var(--primary-color);
    font-size: 40px;
    margin-right: auto;
    margin-left: auto;
}
.dropzone .dz-message h3 {
    font-size: 21px;
}
.dropzone .dz-message span {
    font-size: 14px;
}
.dropzone:hover .dz-message i {
    color: #444;
    -webkit-transition: width 2s;
}

.dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.fotos-principales img {
    height: 159px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 7px;
}

.perfil-image img {
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

#map_seguimiento {
    height: calc(100vh - 270px);
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
}
div.dataTables_wrapper div.dataTables_filter {
    float: right;
}

.dropzone .dz-message i {
    background: -webkit-linear-gradient(
        51.25deg,
        #503581 -25.2%,
        #0382a6 98.59%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected],
.select2-container--default
    .select2-results__option--highlighted[aria-selected]:hover {
    background: linear-gradient(
        51.25deg,
        #503581 -25.2%,
        #0382a6 98.59%
    ) !important;
}

.page-item.active .page-link {
    background: linear-gradient(51.25deg, #503581 -25.2%, #0382a6 98.59%);
    border: none;
}
.holder-lfm img {
    width: auto;
    max-width: 100%;
    height: auto !important;
}
.lang-tab {
    display: flex;
    align-items: center;
}

.lang-tab img {
    height: 20px;
    width: auto;
    margin-right: 10px;
}
.nav-lang li a {
    color: #000000;
}
.nav-lang li.active a span {
    background: -webkit-linear-gradient(
        51.25deg,
        #503581 -25.2%,
        #0382a6 98.59%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    height: 100px;
    width: 100%;
    background: linear-gradient(51.25deg, #503581 -25.2%, #0382a6 98.59%);
    border: none;
}
.ui-sortable-helper {
    background: linear-gradient(
        51.25deg,
        rgb(80 53 129 / 5%) -25.2%,
        rgb(3 130 166 / 50%) 98.59%
    ) !important;
}
.list-section {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #000;
}
.list-section .sortable-button {
    position: absolute;
    bottom: 10px;
    left: 15px;
    cursor: move;
}
.list-section .sortable-button.btn-remove-list-section {
    position: absolute;
    bottom: 10px;
    left: auto;
    right: 15px;
    cursor: pointer;
}

.ql-container {
    font-family: Open Sans, sans-serif;
}

.ql-toolbar {
    position: relative;

    padding: 0.625rem 0.75rem;

    color: #8898aa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem 0.25rem 0 0;
    background-color: #fff;
}

.ql-toolbar + .ql-container {
    margin-top: -1px;
}

.ql-toolbar + .ql-container .ql-editor {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.ql-editor {
    font-size: 1rem;
    line-height: 1.5;

    display: block;

    width: 100%;
    min-height: 6rem;
    padding: 0.625rem 0.75rem;

    transition: all 0.15s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    color: #8898aa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: padding-box;
    box-shadow: 0 3px 2px rgba(233, 236, 239, 0.05);
}
@media (prefers-reduced-motion: reduce) {
    .ql-editor {
        transition: none;
    }
}
.ql-editor::-ms-expand {
    border: 0;
    background-color: transparent;
}
.ql-editor:focus {
    color: #8898aa;
    border-color: var(--system);
    outline: 0;
    background-color: #fff;
    box-shadow: 0 3px 9px rgba(50, 50, 9, 0),
        3px 4px 8px rgba(94, 114, 228, 0.1);
}
.ql-editor:focus {
    border-color: #dee2e6;
}

.ql-hidden {
    position: absolute;

    transform: scale(0);
}

.ql-editor.ql-blank::before {
    font-style: normal;

    top: 0.625rem;
    left: 0.75rem;

    color: #adb5bd;
}

.ql-editor:focus::before {
    display: none;
}

.ql-formats {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.ql-formats:first-child {
    padding-left: 0;
}
.ql-formats:last-child {
    padding-right: 0;
}

.ql-toolbar button {
    padding: 0 0.25rem;

    cursor: pointer;
    transition: all 0.15s ease;

    color: #525f7f;
    border: none;
    background: none;
}
.ql-toolbar button:hover {
    color: var(--system);
}
.ql-toolbar button:first-child {
    margin-left: -0.25rem;
}

.ql-toolbar .ql-active {
    color: var(--system);
}

.ql-toolbar button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.ql-toolbar .ql-stroke {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ql-toolbar .ql-thin {
    stroke-width: 1;
}

.ql-toolbar .ql-fill {
    fill: currentColor;
}

.ql-toolbar input.ql-image {
    position: absolute;

    transform: scale(0);
}

.ql-tooltip {
    position: absolute;

    display: flex;

    width: 18.5rem;
    margin-top: 0.6rem;
    padding: 0.625rem 0.75rem;

    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0.4375rem;
    background-color: #fff;
    box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);

    flex-wrap: nowrap;
}
.ql-tooltip:before,
.ql-tooltip:after {
    position: absolute;
    bottom: 100%;
    left: 50%;

    content: "";
    transform: translateX(-50%);
}
.ql-tooltip:before {
    border-right: 0.6rem solid transparent;
    border-bottom: 0.6rem solid rgba(0, 0, 0, 0.05);
    border-left: 0.6rem solid transparent;
}
.ql-tooltip:after {
    border-right: 0.5rem solid transparent;
    border-bottom: 0.5rem solid #fff;
    border-left: 0.5rem solid transparent;
}

.ql-container .ql-tooltip:hover {
    display: flex !important;
}

.ql-tooltip .ql-preview {
    font-size: 0.875rem;
    line-height: 1.5;

    width: 100%;
    padding: 0.25rem 0.5rem;

    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    border-radius: 0.25rem;
}
@media (prefers-reduced-motion: reduce) {
    .ql-tooltip .ql-preview {
        transition: none;
    }
}

.ql-tooltip.ql-editing .ql-preview {
    display: none;
}

.ql-tooltip input {
    font-size: 0.875rem;
    line-height: 1.5;

    display: none;

    width: 100%;
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);

    color: #8898aa;
    border: none;
    background-color: transparent;
}
.ql-tooltip input:focus {
    outline: none;
}

.ql-tooltip.ql-editing input {
    display: block;
}

.ql-tooltip .ql-action,
.ql-tooltip .ql-remove {
    margin-left: 0.25rem;
}

.ql-tooltip .ql-action::before,
.ql-tooltip .ql-remove::before {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;

    display: inline-block;

    padding: 0.25rem 0.5rem;

    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;

    border: 1px solid transparent;
    border-radius: 0.25rem;
}
@media (prefers-reduced-motion: reduce) {
    .ql-tooltip .ql-action::before,
    .ql-tooltip .ql-remove::before {
        transition: none;
    }
}
.ql-tooltip .ql-action::before:hover,
.ql-tooltip .ql-action::before:focus,
.ql-tooltip .ql-remove::before:hover,
.ql-tooltip .ql-remove::before:focus {
    text-decoration: none;
}
.ql-tooltip .ql-action::before:focus,
.ql-tooltip .ql-action::before.focus,
.ql-tooltip .ql-remove::before:focus,
.ql-tooltip .ql-remove::before.focus {
    outline: 0;
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.ql-tooltip .ql-action::before,
.ql-tooltip.ql-editing .ql-action::before {
    color: #fff;
    border-color: var(--system);
    background-color: var(--system);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.ql-tooltip .ql-action::before:hover,
.ql-tooltip.ql-editing .ql-action::before:hover {
    color: #fff;
    border-color: var(--system);
    background-color: var(--system);
}
.ql-tooltip .ql-action::before:focus,
.ql-tooltip .ql-action::before.focus,
.ql-tooltip.ql-editing .ql-action::before:focus,
.ql-tooltip.ql-editing .ql-action::before.focus {
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08),
        0 0 0 0 rgba(94, 114, 228, 0.5);
}
.ql-tooltip .ql-action::before.disabled,
.ql-tooltip .ql-action::before:disabled,
.ql-tooltip.ql-editing .ql-action::before.disabled,
.ql-tooltip.ql-editing .ql-action::before:disabled {
    color: #fff;
    border-color: var(--system);
    background-color: var(--system);
}
.ql-tooltip .ql-action::before:not(:disabled):not(.disabled):active,
.ql-tooltip .ql-action::before:not(:disabled):not(.disabled).active,
.show > .ql-tooltip .ql-action::before.dropdown-toggle,
.ql-tooltip.ql-editing .ql-action::before:not(:disabled):not(.disabled):active,
.ql-tooltip.ql-editing .ql-action::before:not(:disabled):not(.disabled).active,
.show > .ql-tooltip.ql-editing .ql-action::before.dropdown-toggle {
    color: #fff;
    border-color: var(--system);
    background-color: var(--system-2);
}
.ql-tooltip .ql-action::before:not(:disabled):not(.disabled):active:focus,
.ql-tooltip .ql-action::before:not(:disabled):not(.disabled).active:focus,
.show > .ql-tooltip .ql-action::before.dropdown-toggle:focus,
.ql-tooltip.ql-editing
    .ql-action::before:not(:disabled):not(.disabled):active:focus,
.ql-tooltip.ql-editing
    .ql-action::before:not(:disabled):not(.disabled).active:focus,
.show > .ql-tooltip.ql-editing .ql-action::before.dropdown-toggle:focus {
    box-shadow: none, 0 0 0 0 rgba(94, 114, 228, 0.5);
}

.ql-tooltip .ql-action::before {
    content: "Edit";
}

.ql-tooltip.ql-editing .ql-action::before {
    content: "Save";
}

.ql-tooltip .ql-remove::before {
    content: "Remove";

    color: #212529;
    border-color: #fff;
    border-color: #dee2e6;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.ql-tooltip .ql-remove::before:hover {
    color: #212529;
    border-color: white;
    background-color: white;
}
.ql-tooltip .ql-remove::before:focus,
.ql-tooltip .ql-remove::before.focus {
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08),
        0 0 0 0 rgba(255, 255, 255, 0.5);
}
.ql-tooltip .ql-remove::before.disabled,
.ql-tooltip .ql-remove::before:disabled {
    color: #212529;
    border-color: #fff;
    background-color: #fff;
}
.ql-tooltip .ql-remove::before:not(:disabled):not(.disabled):active,
.ql-tooltip .ql-remove::before:not(:disabled):not(.disabled).active,
.show > .ql-tooltip .ql-remove::before.dropdown-toggle {
    color: #212529;
    border-color: white;
    background-color: #e6e6e6;
}
.ql-tooltip .ql-remove::before:not(:disabled):not(.disabled):active:focus,
.ql-tooltip .ql-remove::before:not(:disabled):not(.disabled).active:focus,
.show > .ql-tooltip .ql-remove::before.dropdown-toggle:focus {
    box-shadow: none, 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.ql-tooltip.ql-editing .ql-remove::before {
    display: none;
}

.ql-editor blockquote {
    font-size: 1.25rem;

    margin-bottom: 1rem;
}

.ql-editor img {
    max-width: 100%;
    height: auto;
}
.form-control-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #525f7f;
}
.uk-panel-scrollable {
    max-width: 100%;
}
.uk-lightbox.uk-open {
    z-index: 99999 !important;
}
.uk-object-contain {
    width: 100%;
    object-fit: cover;
}

.main-header .navbar-nav {
    margin-top: 0;
}

.select2-container--default .select2-selection--single {
    height: calc(2.25rem + 2px) !important;
    border: 1px solid #ced4da !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: calc(2.25rem + 2px) !important;
}

@media screen and (max-width: 600px) {
    .content-header h1 {
        font-size: 18px;
    }
}

.img-product {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.dataTable tbody tr td {
    vertical-align: middle;
}

.card-product img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.card-product .card-body {
    padding: 10px 10px;
}
.card-product .card-body .card-title {
    margin-bottom: 10px !important;
}
.card-product .card-body .card-text {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.card-product .card-body .price h5 {
    line-height: 0;
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }
    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xxl-0 {
        margin-left: 0;
    }
    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }
    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }
    .offset-xxl-3 {
        margin-left: 25%;
    }
    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }
    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }
    .offset-xxl-6 {
        margin-left: 50%;
    }
    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }
    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }
    .offset-xxl-9 {
        margin-left: 75%;
    }
    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }
    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }
}

.row-card-product {
    display: flex;
    align-items: center;
}
.row-card-product .row-card-image img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    min-width: 42px;
}

.row-card-product .row-card-body .row-card-title {
    display: block;
    line-height: 1.2em;
    font-style: italic;
}
.row-card-product .row-card-body .row-card-price {
    font-size: 13px;
}
.row-cart-plus {
    display: flex;
    align-items: center;
}
.row-cart-plus .uk-icon-button {
    width: 25px;
    height: 25px;
    color: #fff;
}
.row-cart-plus .uk-icon-button:hover {
    color: #fff;
}
.row-cart-plus .uk-icon-button.uk-icon-button-dimiss {
    background: linear-gradient(51.25deg, #503581 -25.2%, #dc3545 98.59%);
}
.row-cart-plus .uk-icon-button.uk-icon-button-plus {
    background: linear-gradient(51.25deg, #503581 -25.2%, #0382a6 98.59%);
}
.row-cart-plus .uk-icon-button svg {
    width: 15px;
    height: 15px;
}

.row-cart-plus .uk-margin-small-right {
    margin-right: 3px !important;
}

.autocomplete-suggestions {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* border: 1px solid #999; */
    background: #fff;
    cursor: default;
    overflow: auto;
    /* -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); */
    box-shadow: 0 5px 15px rgba(0,0,0,.08);

}
.autocomplete-suggestion {
    padding: 5px 10px;
    white-space: nowrap;
    overflow: hidden;
}
.autocomplete-no-suggestion {
    padding: 5px 10px;
}
.autocomplete-selected {
    background: #f0f0f0;
}
.autocomplete-suggestions strong {
    font-weight: bold;
    color: #000;
}
.autocomplete-group {
    padding: 2px 5px;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    display: block;
    /* border-bottom: 1px solid #000; */
}
.card-checkout .card-body{
    padding: 8px;
}
.card-all-products .card-body{
    padding: 10px;
}
.row-border-bottom{
    border-bottom: 2px solid #0c79a1;
}
.row-border-disable {
    border-bottom: 2px solid #fff;
}
.uk-card-detalle-checkout{
    padding: 20px 0px!important;
    padding-top: 0px!important;
    border-bottom: 2px solid #077da4;
}
.uk-card-detalle-checkout .uk-card-title{
    font-size: 16px;
}
.uk-table-image-cart{
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.uk-table-link>a{
    padding: 5px 5px!important;
}

.uk-table-cart td{
    padding: 5px 5px!important;

}