.DejavoCP-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.DejavoCP-popup.open {
    opacity: 1;
    visibility: visible;
}

.DejavoCP-popup.open .DejavoCP-popup-content {
    top: 50%;
}

.DejavoCP-popup-inner {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.DejavoCP-popup-content {
    position: absolute;
    padding: 15px;
    top: 60%;
    left: 50%;
    width: 360px;
    height: 360px;
    max-width: 90%;
    max-height: 90%;
    background-color: #fff;
    border-radius: var(--dej-min-radius);
    transform: translate3d(-50%, -50%, 0);
    transition: all 0.5s;
}

.DejavoCP-popup.DejavoCP-share .DejavoCP-popup-content {
    height: auto;
    padding: 30px;
}

.DejavoCP-popup-content-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.DejavoCP-popup-close {
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 32px;
    position: absolute;
    top: -32px;
    right: -32px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.DejavoCP-search-input input {
    display: block;
    width: 100%;
    border: none;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    box-shadow: none;
    color: #222;
    background-color: #f2f2f2;
    border-radius: var(--dej-min-radius);
    -webkit-appearance: none;
}

.DejavoCP-search-result {
    flex-grow: 1;
    margin-top: 15px;
    overflow-y: auto;
    position: relative;
}

.DejavoCP-search-result ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.DejavoCP-search-result ul li {
    display: block;
    padding: 10px 0;
    border: 1px solid #fafafa;
}

.DejavoCP-search-result ul li .item-inner {
    display: flex;
    align-items: center;
}

.DejavoCP-search-result ul li .item-inner .item-image {
    width: 48px;
}

.DejavoCP-search-result ul li .item-inner .item-image img {
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: var(--dej-min-radius);
    box-shadow: none;
}

.DejavoCP-search-result ul li .item-inner .item-name {
    flex-grow: 1;
    padding: 0 10px;
    color: var(--dej-text-color1);
}

.DejavoCP-search-result ul li .item-inner .item-add {
    width: 48px;
    text-align: center;
}

.DejavoCP-search-result ul li .item-inner .item-add span {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #222;
    background-color: #f2f2f2;
    cursor: pointer;
    border-radius: var(--dej-min-radius);
    transition: all 0.5s;
}

.DejavoCP-search-result ul li .item-inner .item-add span:hover {
    color: #fff;
    background-color: #222;
}

.DejavoCP-search-result:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
}

.DejavoCP-search-result:after {
    display: block;
    content: '\f351';
    font-size: 22px;
    font-family: "dej-icon-rr";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 8;
    animation: Dejavo-spinner 1s linear infinite;
    opacity: 0;
    visibility: hidden;
}

.DejavoCP-search-result.DejavoCP-loading:before, .DejavoCP-search-result.DejavoCP-loading:after {
    opacity: 1;
    visibility: visible;
}

.DejavoCP-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999979;
    box-sizing: border-box;
    pointer-events: none;
}

.DejavoCP-area .DejavoCP-inner {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.DejavoCP-table {
    padding: 15px 15px 78px 15px;
    margin: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: #292a30;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99999997;
    pointer-events: none;
}

.DejavoCP-table * {
    box-sizing: border-box;
}

.DejavoCP-table.DejavoCP-table-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.DejavoCP-table-inner {
    background-color: #ffffff;
    border-radius: var(--dej-max-radius);
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    position: relative;
}

.DejavoCP-table-inner:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 7;
}

.DejavoCP-table-inner:after {
    display: block;
    content: '\f351';
    font-size: 26px;
    font-family: "dej-icon-rr";
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    z-index: 8;
    animation: Dejavo-spinner 1s linear infinite;
}

.DejavoCP-table-inner.DejavoCP-loading:before, .DejavoCP-table-inner.DejavoCP-loading:after {
    opacity: 1;
    visibility: visible;
}

.DejavoCP-table-close {
    z-index: 6;
    position: absolute !important;
    top: 0;
    cursor: pointer;
    right: 0;
}

.DejavoCP-table-close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 52px;
    min-height: 52px;
    background-color: #eeeeee;
    color: black;
    border-radius: var(--dej-max-radius);
}

.DejavoCP-table-items {
    z-index: 5;
    height: 100%;
    position: relative;
}

.DejavoCP-table-items .DejavoCP-no-result {
    display: block;
    padding: 15px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.DejavoCP-table-items table {
    border-spacing: 0;
    border-collapse: collapse;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 6;
}

.DejavoCP-table-items table thead {
    z-index: 8;
}

.DejavoCP-table-items table thead tr {
    border: none;
    margin: 0;
    padding: 0;
}

.DejavoCP-table-items table thead tr th {
    position: relative;
    border-collapse: collapse;
    z-index: 8 !important;
    text-transform: uppercase;
    padding: 15px 15px 15px 0;
    margin: 0;
    width: auto;
    min-width: 300px;
    max-width: 300px;
    vertical-align: middle;
    color: #43454b;
    font-weight: 700;
    background-color: #f7f7f7;
    border: none;
    border-image-width: 0;
    text-align: justify;
}

.DejavoCP-table-items table thead tr th .DejavoCP-remove, .DejavoCP-page .DejavoCP-remove {
    text-transform: none;
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
    color: var(--dej-color1);
}

.DejavoCP-table-items table thead tr th:first-child {
    padding-left: 15px;
}

.DejavoCP-table-items table thead tr th a {
    text-decoration: none;
}

.DejavoCP-table-items table tbody {
    z-index: 7;
}

.DejavoCP-table-items table tbody tr {
    border: none;
    margin: 0;
    padding: 0;
}

.DejavoCP-table-items table tbody tr td {
    position: relative;
    border-collapse: collapse;
    background-color: #ffffff;
    padding: 15px 15px 15px 0;
    vertical-align: top;
    width: auto;
    min-width: 200px;
    max-width: 300px;
    color: #43454b;
    font-weight: 400;
    border: none;
    z-index: 6;
    border-image-width: 0;
    text-align: justify;
}



.DejavoCP-table-items table tbody tr td:first-child {
    z-index: 7;
    padding-left: 15px;
}

.DejavoCP-table-items table tbody tr td.td-placeholder {
    text-align: center;
}

.DejavoCP-table-items table tbody tr td.td-placeholder:before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 8px;
    background-color: #eeeeee;
    border-radius: var(--dej-min-radius);
}

.DejavoCP-table-items table tbody tr.tr-image td.td-placeholder {
    background-image: url("../images/placeholder.png");
    background-repeat: no-repeat;
    background-position: center;
}

.DejavoCP-table-items table tbody tr.tr-image td.td-placeholder:before {
    display: none;
}

.DejavoCP-table-items table tbody tr.tr-image a {
    text-decoration: none;
    outline: none;
    display: block;
}

.DejavoCP-table-items table tbody tr.tr-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: var(--dej-min-radius);
    box-shadow: none;
}

.DejavoCP-table-items table tbody tr.tr-add_to_cart td p, .DejavoCP_table tbody tr.tr-add_to_cart td p, .DejavoCP-table-items table tbody tr.tr-add_to_cart td .add_to_cart_inline, .DejavoCP_table tbody tr.tr-add_to_cart td .add_to_cart_inline {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}


.DejavoCP-table-items table tbody tr:nth-child(2n) td {
    background-color: rgba(251, 251, 251, 0.25);
}

.DejavoCP-table-items table tbody tr:hover td {
    background-color: rgba(248, 248, 248, 0.3);
}



.DejavoCP-table-items table tbody tr:hover td {
    background-color: #f8f8f8;
}

.DejavoCP-table-items table.has-1 thead tr th, .DejavoCP-table-items table.has-2 thead tr th,
.DejavoCP-table-items table.has-1 tbody tr td, .DejavoCP-table-items table.has-2 tbody tr td {
    width: 25%;
}


.DejavoCP-bar {
    width: 100%;
    height: 78px;
    position: fixed;
    left: 0;
    bottom: -80px;
    padding: 15px;
    box-sizing: border-box;
    background-color: #292a30;
    color: #cfd2d4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    z-index: 99999998;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.DejavoCP-bar-btn {
    height: 48px;
    line-height: 48px;
    padding: 0 20px 0 68px;
    position: relative;
    border-radius: var(--dej-min-radius);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    order: 1;
    margin-left: 15px;
    cursor: pointer;
}

.DejavoCP-bar-btn-icon-wrapper {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.DejavoCP-bar-btn-icon-inner {
    position: relative;
    width: 15px;
    height: 15px;
    margin-top: 15px;
    margin-left: 0;
    margin-right: 15px;
}


.DejavoCP-bar-btn-icon-inner span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: var(--dej-min-radius);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.DejavoCP-bar-btn-icon-inner span:nth-child(1) {
    top: 0;
}

.DejavoCP-bar-btn-icon-inner span:nth-child(2) {
    top: 5px;
}

.DejavoCP-bar-btn-icon-inner span:nth-child(3) {
    top: 10px;
}

.DejavoCP-bar-btn.DejavoCP-bar-btn-open .DejavoCP-bar-btn-icon-inner span:nth-child(1) {
    top: 6px;
    transform: rotate(135deg);
}

.DejavoCP-bar-btn.DejavoCP-bar-btn-open .DejavoCP-bar-btn-icon-inner span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.DejavoCP-bar-btn.DejavoCP-bar-btn-open  .DejavoCP-bar-btn-icon-inner span:nth-child(3) {
    top: 6px;
    transform: rotate(-135deg);
}

.DejavoCP-bar-btn.DejavoCP-bar-btn-icon {
    font-size: 0;
    padding: 0;
    width: 48px;
    overflow: hidden;
}


.DejavoCP-bar-print, .DejavoCP-bar-share, .DejavoCP-bar-search, .DejavoCP-bar-remove {
    width: 48px;
    flex: 0 0 48px;
}


.DejavoCP-bar-share, .DejavoCP-bar-print, .DejavoCP-bar-search, .DejavoCP-bar-remove {
    width: 48px;
    height: 48px;
    position: relative;
    margin: 0 5px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--dej-min-radius);
    transition: all 0.5s;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}


.DejavoCP-bar-remove {
    margin: 0 0 0 10px;
    cursor: pointer;
    background-color: #e32718;
}

.DejavoCP-share-content {
    width: 100%;
    height: 100%;
    min-height: 120px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.DejavoCP-share-content:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
}

.DejavoCP-share-content:after {
    display: block;
    content: '\f351';
    font-size: 22px;
    font-family: "dej-icon-rr";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 8;
    animation: Dejavo-spinner 1s linear infinite;
    opacity: 0;
    visibility: hidden;
}

.DejavoCP-share-content.DejavoCP-loading {
    pointer-events: none;
}

.DejavoCP-share-content.DejavoCP-loading:before, .DejavoCP-share-content.DejavoCP-loading:after {
    opacity: 1;
    visibility: visible;
}

.DejavoCP-share-content input[type="url"] {
    width: 100%;
    text-align: center;
    border: 1px solid #a4a4a4;
    border-radius: var(--dej-max-radius);
    padding: 5px;
}

.DejavoCP-share-text, .DejavoCP-share-link, .DejavoCP-share-links {
    width: 100%;
}

.DejavoCP-share-link, .DejavoCP-share-links {
    margin-top: 10px;
}

.DejavoCP-share-links a {
    margin: 0 4px;
}


.DejavoCP-bar-items {
    height: 48px;
    flex-grow: 1;
    white-space: nowrap;
    width: auto;
    text-align: right;
    order: 0;
}

.DejavoCP-bar-item {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--dej-min-radius);
}

.DejavoCP-bar-item img {
    width: 48px;
    height: 48px;
    cursor: move;
    margin: 0;
    z-index: 6;
    border-radius: var(--dej-min-radius);
    -webkit-user-drag: none;
    user-drag: none;
}

.DejavoCP-bar-item-remove {
    width: 12px;
    height: 12px;
    font-size: 12px;
    color: #fff;
    position: absolute !important;
    top: 2px;
    right: 2px;
    background-color: #000000ab;
    z-index: 7;
    border-radius:var(--dej-min-radius);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.DejavoCP-bar-item-remove:hover {
    background-color: #ff2222;
}

.DejavoCP-bar-item.removing {
    opacity: .5;
}

.DejavoCP-bar-item:hover .DejavoCP-bar-item-remove {
    opacity: 1;
    visibility: visible;
}


.DejavoCP-bar.DejavoCP-bar-open {
    bottom: 0;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.DejavoCP-bar-notice {
    position: fixed;
    bottom: 88px;
    width: auto;
    left: 50%;
    padding: 0 10px;
    background-color: rgba(0, 0, 0, .7);
    color: #ffffff;
    border-radius: var(--dej-min-radius);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.DejavoCP-area.DejavoCP-area-open-bar.DejavoCP-bar-click-outside-yes:not(.DejavoCP-area-open-table) .DejavoCP-inner .DejavoCP-bar:hover .DejavoCP-bar-notice,
.DejavoCP-area.DejavoCP-area-open-bar.DejavoCP-bar-click-outside-yes-empty[data-count="0"]:not(.DejavoCP-area-open-table) .DejavoCP-inner .DejavoCP-bar:hover .DejavoCP-bar-notice {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.DejavoCP-bar[data-count="0"] .DejavoCP-bar-search {
    margin-right: 0;
}

.DejavoCP-bar[data-count="0"] .DejavoCP-bar-remove, .DejavoCP-bar[data-count="1"] .DejavoCP-bar-remove {
    display: none;
}

.DejavoCP-btn {
    cursor: pointer;
}


.DejavoCP-menu-item .DejavoCP-menu-item-inner:after {
    content: attr(data-count);
    display: block;
    background-color: #e94b35;
    color: #ffffff;
    font-size: 10px;
    font-weight: 400;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: var(--dej-min-radius);
}

body.woocommerce-cart .DejavoCP-hide-checkout, body.woocommerce-checkout .DejavoCP-hide-checkout, .DejavoCP-hide-empty[data-count="0"] {
    display: none;
}

.DejavoCP_list {
    max-width: 100%;
    overflow-x: auto;
}

.DejavoCP_table table tr th, .DejavoCP_table table tr td {
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}
.DejavoCP_table table tr th{
    padding: 15px 15px 0 0;
}

@media screen and (max-width: 767px) {
    .DejavoCP-bar .DejavoCP-bar-btn {
        font-size: 0 !important;
        padding: 0 !important;
        width: 48px !important;
        flex: 0 0 48px !important;
        overflow: hidden;
    }

    .DejavoCP-bar .DejavoCP-bar-items .DejavoCP-bar-item .DejavoCP-bar-item-remove {
        opacity: 1;
        visibility: visible;
    }
    .DejavoCP-bar {
        padding: 7px;
    }
    .DejavoCP-bar-btn {
        margin-left: 7px;
        margin-right: 5px;
    }
    .DejavoCP-bar-share, .DejavoCP-bar-print, .DejavoCP-bar-search, .DejavoCP-bar-remove {
        margin: 0 3px;
    }
}



.DejavoCP-bar.DejavoCP-bar-bubble {
    background: transparent none !important;
    pointer-events: none;
}

.DejavoCP-bar.DejavoCP-bar-bubble > a, .DejavoCP-bar.DejavoCP-bar-bubble .DejavoCP-bar-items, .DejavoCP-bar.DejavoCP-bar-bubble .DejavoCP-bar-remove {
    display: none !important;
}

.DejavoCP-bar.DejavoCP-bar-bubble .DejavoCP-bar-btn {
    pointer-events: auto;
    width: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    box-shadow: rgba(0, 0, 0, .15) 0 0 20px;
}

/* Notiny */

.notiny-theme-DejavoCP {
    padding: 10px;
    background-color: #ffffff;
    color: #222222;
    margin: 5px 0;
    min-height: 32px;
    max-width: 100vw;
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .03);
}

.notiny-theme-DejavoCP .notiny-img {
    padding: 0;
    width: 48px;
    flex: 0 0 48px;
    margin: 0 10px 0 0;
}

.notiny-theme-DejavoCP .notiny-img img {
    width: 100%;
    height: auto;
    margin: 0;
}

.notiny-theme-DejavoCP .notiny-text {
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
}

.notiny-container-fluid-top .notiny-theme-DejavoCP, .notiny-container-fluid-bottom .notiny-theme-DejavoCP {
    width: 90%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.notiny-container-fluid-top {
    top: 10px !important;
}

.notiny-container-fluid-bottom {
    bottom: 10px !important;
}


/* Print */

.DejavoCP-area .table-print, .DejavoCP-area .tr-print, .DejavoCP-area .td-print, .DejavoCP_table .tr-print, .DejavoCP_table .td-print {
    display: none;
}
@media print {
    .DejavoCP-area .table-print {
        display: table;
    }
    .DejavoCP_table .tr-add_to_cart {
        display: none;
    }

    .DejavoCP-area .tr-print {
        display: table-row;
    }

    .DejavoCP-area .td-print {
        display: table-cell;
    }

    .DejavoCP-area {
        font-size: 14px !important;
    }

    .DejavoCP-area .DejavoCP-bar, .DejavoCP_table thead, .DejavoCP_table .DejavoCP-table-close, .DejavoCP_table .DejavoCP-remove {
        display: none !important;
    }

    .DejavoCP-table {
        padding: 0;
        position: absolute;
        height: auto;
    }

    .DejavoCP-area {
        position: absolute;
        height: auto;
    }

    .DejavoCP-inner {
        height: auto;
    }


    .DejavoCP-table-inner {
        height: auto;
        max-height: unset;
    }

    .DejavoCP-area .tr-name td:not(.td-label), .DejavoCP-area .tr-name td:not(.td-label) a {
        font-weight: 700;
        text-transform: uppercase;
        pointer-events: none;
        text-decoration: none;
    }
}
