body {
    color: #3B3B4A;
    background: #FAF9FC;
    font-family: "Haas Regular";
    margin: 0;
    font-size: 16px;
}
hr {
    border: none;
    border-top: 1px solid #e3e3e3;
}
a { 
    text-decoration: none;
    color: #b995df;
}
a:hover {
    color: #9575b8;
}
input[type=text] {
    border: 2px solid #f1f1f1;
    color: #3B3B4A;
    padding: 12px 18px;
    font-size: 14px;
    margin-right: 10px;
    font-family: "Haas Regular";
    border-radius: 5px;
}
input[type=text]::placeholder {
    color: #aaa8b3;
}
input[type=text]:focus-visible {
    outline: none;
    border-color: #5e7eb8;
}

sidebar-container {
    display: grid;
    grid-template-columns: 1fr 4fr;
    column-gap: 15px;
}

sidebar {
    padding: 30px;
}
sidebar h3 {
    margin-bottom: 5px;
}
sidebar .shop-name {
    font-size: 14px;
    opacity: 0.66;
    margin-top: 0;
}
sidebar img.logo {
    border-radius: 7px;
    width: 50px;
}
sidebar a.link {
    text-decoration: none;
    color: #B3B1BD;
    font-size: 18px;
}
sidebar a.link:hover {
    color: #89888d;
}
sidebar a.link.active div {
    background: #88a7e1;
    border-radius: 5px;
    color: white;
}
sidebar a.link div {
    padding: 15px;
}
sidebar a.link i {
    padding-right: 15px;
}
sidebar a.link p {
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    vertical-align: middle;
    font-family: 'Haas Medium';
}
content {
    padding: 30px;
    background: white;
    min-height: 50vh;
    box-shadow: -10px 0px 10px 1px #f1f1f15c;
}

content h3 {
    margin-top: 60px;
}
p.small {
    font-size: 14px;
}
p.bold {
    font-family: "Haas Medium";
}
.dim {
   opacity: 0.66;
}
.dimmer {
    opacity: 0.33;
}
a.btn {
    text-decoration: none;
    display: inline-block;
}
.btn {
    padding: 12px 18px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Haas Medium";
    letter-spacing: 1px;
    cursor: pointer;
}
.btn i {
    margin-right: 10px;
}
.btn-small {
    padding: 6px 12px;
}

.btn-primary {
    background: #88a7e1;
    color: white;
    border: 2px solid #88a7e1;
}
.btn-primary:hover {
    background: #5e7eb8;
    color: white;
    border-color: #5e7eb8;
}
.btn-success {
    background: #62d5a5;
    color: white;
    border: 2px solid #62d5a5;
}
.btn-success:hover {
    background: #5ba184;
    color: white;
    border-color: #5ba184;
}
.btn-danger {
    background: #DE9292;
    border: 2px solid #DE9292;
    color: white;
}
.btn-danger:hover {
    background: #b16f6f;
    border-color: #b16f6f;
    color: white;
}
.btn-danger-white {
    background: white;
    border: 2px solid #DE9292;
    color: #DE9292;
}
.btn-danger-white:hover {
    background: #DE9292;
    color: white;
}

sync-table table-header,
sync-table table-row {
    display: grid;
    grid-template-columns: .5fr 1fr 4fr 1fr 3fr;
    column-gap: 10px;
    padding: 5px 10px;
}
sync-table table-header {
    background: #e3e3e3;
    color: #89888d;
    font-family: "Haas Medium";
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}
sync-table table-header,
sync-table table-row {
    border-top: 1px solid #f1f1f1;
}
sync-table.products-table table-row div:first-of-type p:first-of-type {
    margin-bottom: 0;
}
sync-table.products-table table-row div:first-of-type p:last-of-type {
    margin-top: 0;
}
sync-table table-row.variant {
    border-top: none;
}
sync-table table-row.variant p {
    margin: 10px 0;
}
sync-table.products-table table-row > p:nth-of-type(2) {
    margin: auto;
    margin-left: 0;
}
sync-table table-row p span {
    font-family: "Haas Medium";
    text-transform: uppercase;
}
sync-table table-row.variant {
    padding: 0px 10px;
}
sync-table table-row div {
    margin: auto;
    margin-left: 0;
}

sync-table table-row img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
}

.table-error {
    text-align: center;
    font-style: italic;
    color: #e18888;
}

.paginationGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.paginationGrid .btn {
    padding: 12px 24px;
}
.paginationGrid .btn i {
    margin-right: 0;
}
.paginationGrid div:nth-of-type(2) {
    text-align: center;
}
.paginationGrid div:last-of-type {
    margin-left: auto;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #88a7e1;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: auto;
    margin-top: 25px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.linear-background {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 1000px 104px;
    height: 30px;
    position: relative;
    overflow: hidden;
}
span.linear-background {
    width: 44px;
    display: inline-flex;
    height: 14px;
}
@keyframes placeHolderShimmer{
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9d9d9d;
}
::-webkit-scrollbar-thumb {
    background: rgb(187 187 187 / 75%);
}
::-webkit-scrollbar-track {
    background: rgb(211 211 211 / 50%);
}

.error-page {
    margin: auto;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 15px;
}
.error-page h3 {
    margin-top: 0;
}
.error-page div:first-of-type {
    text-align: right;
}
.error-page div:last-of-type {
    text-align: left;
}
.error-page img {
    max-width: 100px;
}
.error-page p {
    max-width: 300px;
    margin-right: auto;
}