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


/* ---------- SITE FRAMEWORK ----------  */


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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100dvh;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    height: 100dvh;
    color: #212121;
}

* {
    box-sizing: border-box;
}

:root {
    --bs-success-rgb: 28, 187, 140;
    --bs-primary-rgb: 59, 125, 221;
}


/* DISPLAY CLASSES */

.full-width-fix {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hidden {
    display: none;
}

.hideImportant {
    display: none !important;
}


/* SITE FORMS */

input::placeholder {
    font-family: 'Open Sans';
}

textarea {
    font-family: 'Open Sans';
}

select {
    width: 100%;
    border: 1px solid #DBDBDB;
    height: 50px;
    padding: 0 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../images/chevron-down-black.svg) no-repeat 98% center #fff;
    outline: none !important;
    box-shadow: none !important;
}

input[type=text],
input[type=date],
input[type=tel],
input[type=number],
input[type=email],
input[type=password],
textarea {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border: 1px solid #DBDBDB;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: var(--mainColour);
    transition: 0.2s ease-in-out all;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0; 
}

textarea {
    height: 100px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

:is(input, select, textarea).input-error {
    border-color: #a30e0e !important;
}

.site-form-field {
    padding: 10px 0;
}

form label {
    font-size: 17px;
    color: #000000;
    font-weight: 600;
}

table.dataTable>tbody>tr>th,
table.dataTable>tbody>tr>td {
    padding: 10px;
}

.dt-input {
    height: 30px;
}


/* ----- TYPOGRAPHY ----- */

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    color: #024A2C;
    margin: 0;
    padding: 0 0 0px 0;
    font-weight: 600;
}

h1 {
    font-size: 36px;
    line-height: 46px;
}

h2 {
    font-size: 32px;
    line-height: 42px;
}

h3 {
    font-size: 30px;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    line-height: 34px;
    color: #212121;
}

h6 {
    font-size: 20px;
    line-height: 30px;
    color: #212121;
}

p {
    padding: 5px 0;
    font-size: 16px;
    color: #212121;
    line-height: 26px;
    margin: 0;
}

a {
    text-decoration: none;
    color: #212121;
    transition: all 0.3s ease-in-out;
}

a:focus-visible {
    background-color: #f9dc4a;
    color: #000;
    outline: 1px solid #000;
}

ul {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 14px;
    color: var(--paragraphColour);
    list-style-type: disc;
    line-height: 24px;
}

ul li {
    padding: 0 0 15px 0;
    line-height: 20px;
}

ol {
    list-style-position: outside;
    padding: 5px 0 20px 20px;
    font-size: 14px;
    color: var(--paragraphColour);
    list-style-type: decimal;
    line-height: 24px;
}

ol li {
    padding: 0 0 5px 0;
}

hr {
    color: #D8D8D8;
    background: #D8D8D8;
    height: 1px;
    border: 0;
    margin-bottom: 20px;
    position: relative;
}

.underline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.underline:after {
    content: '';
    width: 30px;
    height: 3px;
    background: #024A2C;
    border-radius: 5px;
}

[class^="button-"],
[class*=" button-"] {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    border: 1px solid #007242;
    background: #007242;
    color: #fff;
    font-size: 16px;
    height: 50px;
    gap: 5px;
    text-decoration: none !important;
    flex: 0 0 auto;
}

.button-secondary {
    background: #fff;
    color: #007242;
    font-weight: 600;
}

.button-action {
    background: #D8053E;
    border-color: #D8053E;
    font-weight: 600;
}

.button-tick:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/tick.svg) no-repeat center;
}

.button-add:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/add.svg) no-repeat center;
}

.button-filter:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/filter.svg) no-repeat center;
}

[class^="button-"].disabled,
[class*=" button-"].disabled {
    opacity: .5;
}


.btn {
    box-shadow: none !important;
    opacity: .9;
}

.btn-primary,
.btn-primary:hover {
    background-color: #3b7ddd;
    border-color: transparent;
}

.btn-secondary,
.btn-secondary:hover {
    background-color: #6c757d;
    border-color: transparent;
}

.btn-success,
.btn-success:hover {
    background-color: #1cbb8c;
    border-color: transparent;
}

.btn-danger,
.btn-danger:hover {
    background-color: #dc3545;
    border-color: transparent;
}

.btn-warning,
.btn-warning:hover {
    background-color: #fcb92c;
    border-color: transparent;
}

.btn:hover {
    opacity: 1;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.pop-message-holder {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000000000000;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pop-message {
    padding: 20px;
    font-size: 16px;
    display: none;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.login-splash {
    background: url(../images/login-splash.webp) no-repeat center top;
    background-size: cover;
}

.login-logo {
    width: 200px;
}

.login-form {
    width: 375px;
}
.login-splash h1 {
    color: #007242;
    font-size: 30px;
}

.dashboard {
    min-height: 100dvh;
    background: #f5f7fb;
}

.dashboard>nav {
    background: #024A2C;
    transition: all 0.3s ease-in-out;
    color: #fff;
    gap: 80px;
    height: 80px;
    flex: 0 0 auto;
}


.dashboard>nav aside {
    display: flex;
    align-items: stretch;
}

.dashboard>nav aside a {
    color: #fff;
    height: 100%;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 13px;
    font-weight: bold;
    border-right: 1px solid #03633B;
    gap: 5px;
}

.dashboard>nav aside a:first-child {
    border-left: 1px solid #03633B;
}

.dashboard>nav aside a.active {
    background: #007242;
}

.dashboard>nav aside a:hover {
    cursor: pointer;
}

.dashboard>nav aside a:before {
    width: 40px;
    height: 30px;
    content: '';
    background: url(../images/icons/dashboard.svg) no-repeat center;
}

.dashboard>nav aside a.icon-products:before {
    background-image: url(../images/icons/products.svg);
}

.dashboard>nav aside a.icon-groups:before {
    background-image: url(../images/icons/groups.svg);
}

.dashboard>nav aside a.icon-orders:before {
    background-image: url(../images/icons/orders.svg);
}

.dashboard>nav aside a.icon-media:before {
    background-image: url(../images/icons/media.svg);
}

.dashboard>nav aside a.icon-sites:before {
    background-image: url(../images/icons/sites.svg);
}

.dashboard>nav aside a.icon-reports:before {
    background-image: url(../images/icons/reports.svg);
}

.dashboard>main a {
    text-decoration: underline;
}

.dashboard>main {
    flex: 1;
}

header {
    background: #fff;
}

header h1 {
    font-weight: 700; 
}

.profile span {
    width: 30px;
    height: 30px;
    background: url(../images/icons/account.svg) no-repeat center;
}

.profile:after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/icons/down-arrow.svg) no-repeat center;
}

.sidebar-toggle {
    font-size: 30px;
    color: #000;
}

.logo {
    width: 187px;
    align-self: center;
}


.search-filters .custom-dropdown {
    width: 280px !important;
    height: 50px;
}

.search-filters label {
    font-size: 14px;
    font-weight: bold;
    display: block
}


.media-centre-bulk {
    width: 300px;
}

.media-centre-folders {
    width: 320px;
    flex: 0 0 auto;
}

.media-centre-body {
    position: relative;
}

.media-centre-drop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #ccc;
    align-items: center;
    justify-content: center;
    display: none;
    font-size: 22px;
    opacity: .7;
}

.media-centre-drop.active {
    display: flex;
}

.media-centre-content {
    background: #fff;
    border: 1px solid #C5C3C3;
    flex: auto;
    padding: 7px;
    gap: 10px;
    min-height: 600px;
}


.media-centre-info {
    margin-left: 1.5rem;
    background: #E8E8E8;
    width: 300px;
    margin-left: 0;
    padding: 10px;
}

.media-centre-thumbnail {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-centre-thumbnail img {
    width: auto;
    height: auto;
    min-width: 30%;
    min-height: 30%;
    max-width: 100%;
    max-height: 100%;
}

.media-centre-folders ul,
.media-centre-folders li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.media-centre-folders ul li ul {
    padding-left: 20px
}

.media-centre-folders ul li a {
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 30px;
    gap: 5px;
}

.media-centre-folders ul li:not(.open)>ul {
    display: none;
}

.media-centre-folders ul li>a:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/icons/folder.svg) no-repeat left center;
}

.media-centre-folders ul li.open>a:before {
    background-image: url(../images/icons/folder-open.svg);
}

.add-folder {
    border: 1px solid #C5C3C3;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    background: #fff url(../images/icons/folder-new.svg) no-repeat center;
}

input.media-centre-search {
    width: 430px;
    height: 50px;
    flex: 0 0 auto;
    border: 1px solid #C5C3C3;
    background: #fff url(../images/search.svg) no-repeat right 10px center;
}

.media-centre-content>a {
    display: flex;
    width: calc((100% - 50px) / 6);
    flex-direction: column;
    text-decoration: none !important;
}

.media-centre-content a>div {
    aspect-ratio: 1/1;
    width: 100%;
    border: 1px solid #EEEEEE;
    background: url(../images/icons/file.svg) no-repeat center;
    background-size: 30%;
    position: relative;
}

.media-centre-content a.image>div {
    background-size: 80%;
}
.media-centre-content a:not(.selected):hover >div:before  {
    content: '';
    border:1px solid #AAA;
    background: #fff;    
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
}
.media-centre-content>a.selected>div {
    border-color: #007242;
}

.media-centre-content>a.selected>div:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: #007242 url(../images/tick.svg) no-repeat center;
}

.media-centre-content a.folder>div {
    background-image: url(../images/icons/folder.svg);
    background-size: 30%;
}

.media-centre-content a>label {
    font-size: 10px;
    color: #212121;
    padding: 5px 0;
    line-height: 16px;
    height: 32px;
    overflow: hidden;
}

.media-centre-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.media-centre .insert-media {display: none;}
.media-box .media-centre .insert-media {display: flex;}


.dz-preview {
    position: relative;
    display: flex;
    width: calc((100% - 50px) / 6);
    flex-direction: column;
    text-decoration: none !important;
}

.dz-image {
    aspect-ratio: 1/1;
    width: 100%;
    border: 1px solid #EEEEEE;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dz-image img {
    max-height: 80%;
    max-width: 80%;
}

.dz-progress {
    position: absolute;
    left: 0;
    top: -5px;
    width: 100%;
    height: 6px;
    background: #a1a1a1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin: 5px 0;
}

.dz-progress>span {
    background: #024A2C;
    height: 100%;
}

.dz-error-message {
    line-height: 20px;
    font-size: 12px;
}


.toggle {
    display: flex;
    align-items: center;
    width: 80px;
    height: 30px;
    background: #E8E8E8;
    border: 1px solid #000000B3;
    font-size: 14px;
    color: #000000B3;
    transition: all 0.3s ease-in-out;
    padding: 2px;
    border-radius: 15px;
    outline: 0;
}

.toggle:before {
    content: '';
    aspect-ratio: 1/1;
    height: 100%;
    border-radius: 50%;
    background-color: #000000B3;
    flex: 0 0 auto;
}

.toggle:after {
    content: "OFF";
    flex: auto;
}

.toggle.active {
    flex-direction: row-reverse;
    background-color: #EAFCF4;
    border-color: #007242;
    color: #007242;
    font-weight: 500;
}

.toggle.active:before {
    background: #007242;
}

.toggle.active:after {
    content: 'ON';
}

.label-checkbox {
    display: flex;
    align-items: center;
    height: 40px;
    gap: 10px;
    cursor: pointer;
}

.checkbox {
    width: 20px;
    aspect-ratio: 1/1;
    border: 1px solid #024A2C;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    transition: all 0.2s ease-in-out;
    background-size: 70%;
}

.checkbox.active {
    background: #024A2C url(../images/tick.svg) no-repeat center;
}

.delete {
    display: inline-flex;
    height: 100%;
    aspect-ratio: 1/1;
    min-width: 40px;
    min-height: 40px;
    flex: 0 0 auto;
    background: url(../images/icons/trash.svg) no-repeat center;
}

.move {
    display: inline-flex;
    height: 100%;
    aspect-ratio: 1/1;
    min-width: 40px;
    min-height: 40px;
    flex: 0 0 auto;
    background: url(../images/icons/move.svg) no-repeat center;

}

.close {
    display: inline-flex;
    height: 100%;
    aspect-ratio: 1/1;
    min-width: 40px;
    min-height: 40px;
    flex: 0 0 auto;
    background: url(../images/icons/close.svg) no-repeat center;
}

.edit:not(.button-add) {
    min-width: 40px;
    min-height: 40px;
    background: url(../images/icons/edit.svg) no-repeat center;
}

.field {
    background: #F9F9F9;
    border: 1px solid #EEEEEE;
    padding: 0 0 0 1rem;
    color: #212121;
    font-size: 15px;
}

.item-row {
    display: flex;
    align-items: stretch;
    height: 80px;
    border: 1px solid #E8E5E5;
    border-width: 0 1px 1px;
}

.item-row:first-child {
    border-width: 1px;
}
.item-cell.hidden {display: none !important;}
.item-cell {
    border-left: 1px solid #E8E5E5;
    padding: .5rem;
    min-width: 80px;
}

.item-cell:first-child {
    border: 0;
}


.card-header {
    color: #024A2C;
    font-size: 28px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 0;
    background: inherit;
    gap: 10px;
}

.card-header:after {
    content: '';
    background: #024A2C;
    width: 30px;
    height: 3px;
    border-radius: 5px;
}

.card {
    box-shadow: none;
    border: 1px solid #E6E4E4;
    margin-bottom: 24px;
}

.green-line-v {
    display: flex;
    gap: 18px;
}

.green-line-v:before {
    content: '';
    width: 3px;
    flex: 0 0 auto;
    border-radius: 5px;
    background: #007242;
}

.green-line-h {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.green-line-h:after {
    content: '';
    height: 3px;
    flex: 0 0 auto;
    width: 30px;
    border-radius: 5px;
    background: #007242;
}


#infoWindow, #filterWindow {
    width: 33%;
    min-width: 400px;
}

#infoWindow.offcanvas-large {
    width: 60%;
}



.offcanvas-title {
    color: #024A2C;
    font-size: 28px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 0;
    background: inherit;
    gap: 10px;
}

.offcanvas-title:after {
    content: '';
    background: #024A2C;
    width: 30px;
    height: 3px;
    border-radius: 5px;
}


.offcanvas-body {
    background: #fff;
}

.green {
    color: #007242;
}

.empty-loader:not(.hidden):empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 5px;
}

.empty-loader:not(.hidden):empty:after {
    content: '';
    width: 5%;
    min-width: 20px;
    aspect-ratio: 1/1;
    border: 2px solid #fff;
    border-color: #3b7ddd transparent transparent;
    border-radius: 50%;
    animation: spin .75s infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Product Section */
.product-image {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #E8E7E7;

}

.product-image img {
    max-width: 80%;
    max-height: 80%;
}

.product-image>span {
    background: #037E4A;
    opacity: .9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 35px;
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: 14px;
}

.product-details .label {
    font-size: 14px;
    font-weight: bold;
    color: #037E4A;
    line-height: 14px;
}

.product-details h1 {
    color: #000000;
    font-weight: bold;
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.product-meta {
    font-size: 14px;
    color: #545353;
}

.product-meta .block {
    background: #037E4A;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: #fff;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
}

.product-preview {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #007242;
    font-size: 18px;
    text-decoration: none !important;
}

.product-preview:before {
    content: '';
    width: 30px;
    height: 17px;
    background: url(../images/icons/eye.svg) no-repeat left center;
}

.product-menu {
    width: 320px;
    background: #024A2C;
}

.product-menu>a:not(.hidden) {
    height: 60px;
    padding-left: 50px;
    color: #fff;
    text-decoration: none !important;
    font-size: 18px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #007242;
    transition: all 0.2s ease-in-out;
}

.product-menu>a.active {
    background: #007242;
    font-weight: bold;
}

.product-info:not(.active) {
    display: none;
}

.pills a {
    height: 43px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #EEFCF6;
    border-radius: 10px;
    font-size: 17px;
    font-weight: bold;
    color: #024A2C;
    transition: all 0.2s ease-in-out;
    text-decoration: none !important;

}

.pills a.active {
    background: #024A2C;
    color: #fff;
}

.pill-section:not(.active) {
    display: none;
}


.form-label {
    margin: 0 0 5px;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    color: #212121;
}

label.radio {
    display: flex;
    align-items: center;
    background: #EEFCF6;
    gap: 10px;
    padding: 0 10px;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
}

input:placeholder-shown,
input:required:invalid {
    background: #EEFCF6;
}

.media-box-overlay:not(.active),
.media-box-overlay:not(.active)+.media-box {
    display: none;
}

.media-box-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, .37);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-box {
    background: #fff;
    position: absolute;
    top: 50px;
    width: 1400px;
    height: 900px;
    left: calc(50% - 700px);
    margin-bottom: 20px;
}

.images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.images>li {
    padding: 0;
    margin: 0;
    width: 152px;
    font-size: 10px;
}

.images img {
    max-width: 80%;
    max-height: 80%;
}

.images .ui-sortable-placeholder {
    visibility: visible !important;
    width: 152px;
    height: 152px;
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #E8E7E7;
}

.images>li .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-options {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFFFFFE0;
    align-items: center;
    height: 33px;
    justify-content: space-between;
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.product-image:hover .product-image-options {
    display: flex;
    opacity: 1;
}


.pdf-list,
.video-list,
.tab-list {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    overflow: auto
}

.pdf-list>li,
.video-list>li,
.tab-list>li {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #E8E5E5;
}

.pdf-list>li:not(:last-child),
.video-list>li:not(:last-child),
.tab-list>li:not(:last-child) {
    border-bottom: 0;
}

.product-file,
.product-video,
.product-tab {
    display: flex;
    padding: 0 0 0 11px;
    position: relative;
    height: 80px;
    flex: auto;

}

.product-video>a,
.product-tab>a {
    position: absolute;
    right: 20px;
}

.product-file input,
.product-video input,
.product-tab input {
    flex: auto;
    height: 46px;
    background: #F9F9F9 !important;
    margin-right: 20px;
    border: 1px solid #EEEEEE;
}

.product-video input:not([disabled]),
.product-tab input:not([disabled]) {
    background: #fff !important;
}

.pdf-list .delete,
.video-list .delete,
.tab-list .delete {
    border: 1px solid #E8E5E5;
    border-width: 0 1px;
    padding: 0 20px;
    height: auto;
}

.pdf-list .move,
.video-list .move,
.tab-list .move {
    background: #F6F6F6;
    width: 28px;
    height: auto;
}

.pdf-list .ui-sortable-placeholder,
.video-list .ui-sortable-placeholder,
.tab-list .ui-sortable-placeholder {
    width: 100%;
    height: 80px;
    flex: 0 0 auto;
    background: #fff;
}

.tab-list>li {
    flex-wrap: wrap;
}

.tab-list .content-div {
    width: 100%;
}

.active-sites,
.country-restrictions {
    gap: 2px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.product-site,
.product-country {
    background: #F6F6F6;
    font-weight: bold;
    height: 50px;
    padding-left: 10px;
}

.attributes-list {
    gap: 5px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.product-attribute {
    gap: 10px;
}

.product-row {
    background: #fff;
}

.product-row .item-cell {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    font-size: 14px;
}

.product-row .item-cell:nth-child(1) {
    width: 36px;
    justify-content: center;
}

.product-row .item-cell:nth-child(2) {
    width: 80px;
    justify-content: center;
}

.product-row .item-cell:nth-child(3) {
    flex: auto;
}

.product-row .item-cell:nth-child(4) {
    width: 80px;
}

.product-row .item-cell:nth-child(5) {
    width: 100px;
    justify-content: center;
}

.product-row .item-cell:nth-child(6) {
    width: 180px;
}

.product-row .item-cell:nth-child(7) {
    width: 100px;
    justify-content: center;
}

.product-row .item-cell:nth-child(8) {
    width: 100px;
    justify-content: center;
}

.product-row .item-cell:nth-child(9) {
    width: 80px;
    justify-content: center;
}

.product-row .item-cell img {
    max-width: 90%;
    max-height: 90%;
}

.product-row.row-header,
.product-ordered-row.row-header,
.order-row.row-header {
    background: #024A2C;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.product-row.row-header .item-cell,
.product-ordered-row.row-header .item-cell,
.order-row.row-header .item-cell {
    border-color: #035835;
}

.sticky .make-sticky {
    position:fixed;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    
    z-index: 1003;
}

.sticky {
    margin-top: 80px;
}

.nodroparrow:after {
    display: none;
}

.options-button a {
    text-decoration: none !important;
}

.product-list li {
    gap: 10px;
}

.product-list li:first-child {
    font-weight: bold;
}

.product-list li>* {
    width: 120px;
}

.product-list li>div:first-child {
    width: 300px;
}

.product-list li>*:last-child {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.group-attributes input:nth-child(2) {
    display: none;
}

.order-row {
    background: #fff;
}

.order-row .item-cell {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    font-size: 14px;
}

.order-row .item-cell:nth-child(2) {
    width: 160px;   
}

.order-row:not(.row-header) .item-cell:nth-child(2) {
    
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    justify-content: center;
}
[data-type=data] .order-row .item-cell:nth-child(2) {
    flex: auto;
}

.order-row .item-cell:nth-child(2) a {
    text-decoration: none;
    font-weight: bold;
}
.order-row .item-cell:nth-child(2) a:hover {
    text-decoration: underline;
    color: #007242;
}

.order-row .item-cell:nth-child(3) {
    width: 100px;
}

.order-row .item-cell:nth-child(4) {
    width: 120px
}

.order-row .item-cell:nth-child(5) {
    width: 140px;
}

.order-row .item-cell:nth-child(6) {
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    justify-content: center;
}

.order-row .item-cell:nth-child(7) {
    width: 150px;
}

.order-row .item-cell:nth-child(8) {
    width: 180px;
}

.order-row .item-cell:nth-child(10) {
    width: 80px;
    justify-content: center;
}
.order-row .item-cell:nth-child(11) {
    width: 80px;
    justify-content: center;
}

.product-ordered-row {
    background: #fff;
}

.product-ordered-row .item-cell {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    font-size: 14px;
}

.product-ordered-row .item-cell:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.product-ordered-row .item-cell:nth-child(2) {
    width: 150px;
}

.product-ordered-row .item-cell:nth-child(3) {
    width: 60px;
    justify-content: center;

}

.product-ordered-row .item-cell:nth-child(n+4) {
    width: 100px;


}

.order-status {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5px;
    height: 40px;
    border: 1px solid #212121;
    background: #fff;
    color: #212121;
    font-size: 14px;
    font-weight: 500;
}
.order-status.shipped {
    background: #007242;
    border-color: #007242;
    color: #fff;
}
.order-status.part-shipped {
    background:#C8580D;
    border-color: #CE6000;
    color: #fff;
}

.order-status.complete {
    background:#0699D1;
    border-color: #0699D1;
    color: #fff;
}

.order-status.cancelled {
    background:#000000;
    border-color: #000000;
    color: #fff;
}

.out-of-stock {color: #D8053E}

.ticked:after{
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/check.svg) no-repeat center;
}
.refresh:after{
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/refresh.svg) no-repeat center;
}
.failed:after{
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/failed.svg) no-repeat center;
}


.custom-dropdown {
    display: flex;
    flex-direction: column;
    width: fit-content;
    position: relative;
    background: #fff;
}
.custom-dropdown > div:first-child {
    padding: 0 10px;
    height: 50px;
    font-size: 16px;
    border: 1px solid #C5C3C3;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.custom-dropdown > div:first-child:after {
    content: '';
    width: 20px;
    height: 20px;
    margin-left: auto;
    background: url(../images/chevron-down-black.svg) no-repeat center;
}
.custom-dropdown.disabled {
    opacity: 0.5;
}

.custom-dropdown > div:nth-child(2) {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #C5C3C3;
    border-width: 0 1px 1px;
    top: calc(100% - 1px);
    width: 100%;
    flex-direction: column;
    gap: 2px;
}

.custom-dropdown > div:nth-child(2) > div {
    cursor: pointer;
    font-size: 14px;
    line-height: 30px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-dropdown > div:nth-child(2) > div.active:after {
    content: '';
    width: 14px;
    height: 14px;
    margin-left: auto;
    margin-right: 10px;
    background: url(../images/check.svg) no-repeat center;
    background-size: contain;

}
.custom-dropdown.active > div:nth-child(1):after{
    transform: rotate(180deg);
}
.custom-dropdown.active > div:nth-child(2){
    display: flex;
    z-index: 10000;
} 

.search-form {
    padding: 0 10px;
    height: 50px;
    font-size: 16px;
    border: 1px solid #C5C3C3;
    display: flex;
    align-items: center;
    background: #fff;
    width: 300px;
}
.search-form input[type=search] {
    background: none;
    border:0;
    outline: 0;
    flex: auto;
}

.search-form input[type=submit] {
    width: 30px;
    height: 30px;
    border: 0;
    outline: 0;
    background: url(../images/search.svg) no-repeat center;

}

.set-limit.active {color: #007242;}

.search-filters-display:not(:empty){
    padding: 0 0 1rem;
}

.search-filters-display > div {
    color: #007242;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    gap: 5px;
}
.search-filters-display > div > a{
    width: 24px;
    height: 24px;
    background: url(../images/icons/green-close.svg) no-repeat center;

}

.search-filters-display > a{
    color: #007242;
    font-size: 14px;
}

#filterAccordion .accordion-item {border-width: 0 0 1px; border-radius: 0;}
#filterAccordion .accordion-button:not(.collapsed) {background: none; box-shadow: none;}
#filterAccordion .accordion-header .accordion-button {color: #024A2C; font-weight: 600; font-size: 18px; padding: 10px 0; margin:0; }

.sorting:after{
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/chevron-white-down.svg) no-repeat center;
}
.sorting-down:after{
    transform: rotate(180deg);
}

.pager {background: #fff;}
.pager ul {list-style: none; padding: 0; margin: 0; font-size: 18px; gap: 6px; height: 60px;}
.page-item {padding: 0; margin: 0;}
.page-item a{text-decoration: none; color: #0F0F0F;}
.page-item.active a{color: #007242; text-decoration: underline;}

.pager > nav > .page-item {
    display: flex; 
    align-items: center;
    background: #007242;
    color: #fff;
    width: 120px;
    font-size: 20px;
    font-weight: 500;
    gap: 5px;
    height: 60px;
    justify-content: center;
    text-decoration: none;
}
.pager > nav > .page-item:first-child:before {
    content: '';
    width: 15px;
    height: 15px;
    background: url(../images/chevron-right-white.svg) no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
}
.pager > nav > .page-item:last-child:after {
    content: '';
    width: 15px;
    height: 15px;
    background: url(../images/chevron-right-white.svg) no-repeat center;
    background-size: contain;
}

.profile-header:before {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/icons/account-green.svg) no-repeat left center;
}
.profile-header a {
    color: #007242;
}
.results-section .dropdown-toggle{
    outline: none !important;
    border: 0 !important;
    transition: 0.3s all ease-in-out;
    z-index: 1000;
    position: relative;
}
.results-section .dropdown-toggle.show {
    transform: rotate(90deg);
    z-index: 1002;
    color: #007242;
}
.results-section .dropdown-menu {
    border-radius: 0;
    padding: 0px 50px 0 0 !important;
    transform: none !important;
    inset: -10px 0 auto auto !important;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    background: none;
}
.results-section .dropdown-menu.show {
    z-index: 1001;
    background: #FBFBFB;
}


.modal-content {
    background: #EEEEEE;
    text-align: center;
    border-radius: 0;
}

.modal-header {
    border: 0;
}
.modal-footer {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 20px;
    background: transparent;
    border: 0;
}
.modal-footer .btn-primary {
    background: #007242;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}
.modal-footer .btn-secondary {
    color: #007242;
    border-color: #007242;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    background: transparent;

}