.blocker {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
overflow: auto;
z-index: 1;
padding: 20px;
box-sizing: border-box;
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
text-align: center
}
.blocker:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -0.05em
}
.blocker.behind {
background-color: transparent
}
.modal {
display: none;
vertical-align: middle;
position: relative;
z-index: 2;
max-width: 500px;
box-sizing: border-box;
width: 90%;
background: #fff;
padding: 15px 30px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-o-border-radius: 8px;
-ms-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: 0 0 10px #000;
-moz-box-shadow: 0 0 10px #000;
-o-box-shadow: 0 0 10px #000;
-ms-box-shadow: 0 0 10px #000;
box-shadow: 0 0 10px #000;
text-align: left
}
.modal a.close-modal {
position: absolute;
top: -12.5px;
right: -12.5px;
display: block;
width: 30px;
height: 30px;
text-indent: -9999px;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==)
}
.modal-spinner {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
padding: 12px 16px;
border-radius: 5px;
background-color: #111;
height: 20px
}
.modal-spinner>div {
border-radius: 100px;
background-color: #fff;
height: 20px;
width: 2px;
margin: 0 1px;
display: inline-block;
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
animation: sk-stretchdelay 1.2s infinite ease-in-out
}
.modal-spinner .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s
}
.modal-spinner .rect3 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s
}
.modal-spinner .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s
}
@-webkit-keyframes sk-stretchdelay {
0%,
40%,
100% {
-webkit-transform: scaleY(0.5)
}
20% {
-webkit-transform: scaleY(1.0)
}
}
@keyframes sk-stretchdelay {
0%,
40%,
100% {
transform: scaleY(0.5);
-webkit-transform: scaleY(0.5)
}
20% {
transform: scaleY(1.0);
-webkit-transform: scaleY(1.0)
}
}
.save-share-cart .item { }
.save-share-cart a img { } .ripple {
background-position: center;
transition: background 0.8s;
cursor: pointer;
background-color: #2196f3;
}
.ripple:hover {
background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
}
.ripple:active {
background-color: #6eb9f7;
background-size: 100%;
transition: background 0s;
}
.cart_title_wrapper {
margin-top: 15px;
margin-bottom: 50px;
}
.cart_title_wrapper input {
margin-left: 100px;
}
.cart_title_wrapper label {
margin-left: 20px;
}
.cart_save_close_wrapper button {
width: 100px;
margin-right: 10px;
}
#save-share-cart-url-button-container,
#share-cart-url-button-container {
display: inline-block;
margin-right: 10px;
}
.button.button.button-primary.scuf_save_cart_view {
margin-right: 10px;
}
.scuf-save-cart-table td {
text-align: center;
}
h3.scuf-cart-saved-msg {
color: green;
}
#scuf_save_cart_title {
border-radius: 5px;
width: 50%;
}
.cart_save_close_wrapper {
margin-left: 260px
}
.cart_save_close_wrapper button {
border-radius: 5px
}
div#TB_ajaxContent {
margin-top: 40px;
height: auto !important;
max-height: calc(100vh - 32px);
overflow-y: auto;
overflow-x: hidden;
box-sizing: border-box;
}
.cart_title_wrapper label {
color: black;
font-weight: bold
}
.scuf-save-cart-table th {
padding-left: 80px;
}
@media screen and (max-width: 800px) {
#TB_window {
margin: 0px !important;
width: 90% !important;
height: auto;
max-width: 400px;
margin: 0 auto;
visibility: visible;
left: 50% !important;
top: 50% !important;
transform: translate(-50%, -50%) !important;
max-height: 90vh;
overflow-y: auto;
}
#TB_ajaxContent {
width: 100% !important;
height: auto !important;
max-height: calc(100vh - 20px - 30px) !important;
overflow-y: auto !important;
}
.cart_save_close_wrapper {
margin-left: auto;
margin-right: auto;
text-align: center;
}
#scuf_save_cart_title {
width: 90%;
margin: 0 auto;
}
.cart_title_wrapper input {
margin-left: 0;
width: 90%;
}
#TB_ajaxContent h2 {
margin-left: 10px;
}
.ripple {
margin: 10px auto;
display: block;
}
}
@media screen and (max-width: 360px) {
#TB_window {
margin: 0px !important;
width: 95% !important;
max-width: 360px;
height: auto;
left: 50% !important;
top: 50% !important;
transform: translate(-50%, -50%) !important;
margin-left: 0 !important;
max-height: 90vh;
overflow-y: auto;
}
.cart_save_close_wrapper {
margin-left: auto;
margin-right: auto;
text-align: center;
}
#scuf_save_cart_title {
width: 90%;
}
.cart_title_wrapper input {
margin-left: 0;
width: 90%;
}
}
.scuf-pagination {
margin-top: 20px;
}
.scuf-pagination a {
margin: 0 5px;
padding: 6px 10px;
background-color: #eee;
text-decoration: none;
border-radius: 3px;
color: #333;
}
.scuf-pagination a.active-page {
background-color: #007cba;
color: white;
font-weight: bold;
}
.scuf-pagination a:hover {
background-color: #ddd;
}
.scu-woocommerce-message {
margin-bottom: 2.617924em;
background-color: #0f834d;
margin-left: 0;
border-radius: 2px;
color: #fff;
clear: both;
border-left: .6180469716em solid rgba(0, 0, 0, .15);
padding: 1em 2em 1em 3.5em;
position: relative;
list-style: none outside;
}
.scu-woocommerce-message::before {
content: '';
position: absolute;
left: 1.2em;
top: 50%;
width: 0.7em;
height: 0.35em;
transform: translateY(-65%) rotate(-45deg);
color: white;
border-left: 2px solid currentColor;
border-bottom: 2px solid currentColor;
}
.scu-woocommerce-message::after{
content: '';
display: block;
clear: both;
} .scuf-carts-wrap {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
color: #111827;
width: 100%;
max-width: 1000px;
margin: 0 auto;
box-sizing: border-box;
} .scuf-carts-wrap h2, .scuf-carts-wrap h3 {
font-family: 'Inter', sans-serif !important;
} .scuf-ch-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 32px;
gap: 20px;
}
.scuf-ch-title {
font-size: 24px !important;
font-weight: 700 !important;
color: #111827 !important;
margin: 0 0 4px 0 !important;
display: flex;
align-items: center;
gap: 8px;
}
.scuf-ch-help {
font-size: 14px;
color: #9ca3af;
cursor: help;
font-weight: 400;
}
.scuf-ch-subtitle {
font-size: 14px;
color: #6b7280;
margin: 0 !important;
}
.scuf-ch-cta {
background: #7c3aed !important;
color: #fff !important;
padding: 10px 20px !important;
border-radius: 8px !important;
font-weight: 600 !important;
font-size: 14px !important;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none !important;
transition: background 0.2s;
box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.2);
}
.scuf-ch-cta:hover {
background: #6d28d9 !important;
} .scuf-ch-filters {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
gap: 16px;
margin-bottom: 30px;
background: transparent;
}
.scuf-ch-view-toggle {
display: flex;
background: #f5f3ff;
padding: 2px;
border-radius: 10px;
border: 1px solid #ddd6fe;
flex-shrink: 0;
z-index: 10;
position: relative;
}
.scuf-ch-search-wrap {
position: relative;
flex: 1;
min-width: 200px;
}
.scuf-ch-search-icon {
position: absolute;
left: 12px;
top: 50%;
transform: translateY(-50%);
pointer-events: none;
}
.scuf-ch-search {
width: 100% !important;
padding: 8px 12px 8px 36px !important;
border: 1px solid #e5e7eb !important;
border-radius: 8px !important;
font-size: 14px !important;
background: #fff !important;
}
.scuf-ch-search:focus {
border-color: #7c3aed !important;
outline: none !important;
box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1) !important;
}
.scuf-ch-select {
padding: 8px 32px 8px 12px !important;
border: 1px solid #e5e7eb !important;
border-radius: 8px !important;
font-size: 14px !important;
color: #374151 !important;
background: #fff !important;
min-width: 140px;
}
.scuf-ch-view-btn {
padding: 6px;
border-radius: 6px;
border: none;
background: transparent;
color: #6b7280;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.scuf-ch-view-btn.active {
background: #7c3aed;
color: #fff;
box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3);
} .scuf-ch-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
gap: 20px;
margin-bottom: 40px;
} .scuf-ch-card {
position: relative;
min-width: 0;
background: #fff;
border: 1px solid #f3f4f6;
border-radius: 12px;
padding: 16px;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 0 1px 3px rgba(0,0,0,0.02);
transition: transform 0.2s, box-shadow 0.2s;
}
.scuf-ch-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
} .scuf-ch-card-top {
display: flex;
align-items: center;
gap: 12px;
}
.scuf-ch-card-icon {
width: 40px;
height: 40px;
background: #f5f3ff;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.scuf-ch-card-title-area {
flex: 1;
min-width: 0;
}
.scuf-ch-card-name-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}
.scuf-ch-card-name {
font-size: 15px;
color: #111827;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.scuf-ch-card-date {
font-size: 12px;
color: #9ca3af;
} .scuf-ch-badge {
font-size: 11px;
font-weight: 600;
padding: 2px 8px;
border-radius: 6px;
text-transform: capitalize;
}
.scuf-ch-badge--active { background: #ecfdf5; color: #059669; }
.scuf-ch-badge--public { background: #ecfdf5; color: #059669; }
.scuf-ch-badge--private { background: #fffbeb; color: #d97706; } .scuf-ch-thumbs {
display: flex;
align-items: center;
gap: 8px;
background: #f9fafb;
padding: 10px;
border-radius: 8px;
position: relative;
}
.scuf-ch-thumb {
width: 40px;
height: 40px;
border-radius: 6px;
object-fit: cover;
background: #fff;
border: 1px solid #e5e7eb;
}
.scuf-ch-thumb-more {
width: 40px;
height: 40px;
border-radius: 6px;
background: #f3f4f6;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
color: #6b7280;
border: 1px solid #e5e7eb;
}
.scuf-ch-price {
margin-left: auto;
font-weight: 700;
font-size: 15px;
color: #111827;
} .scuf-ch-privacy-row {
margin-bottom: -4px;
}
.scuf-ch-privacy {
font-size: 12px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 4px;
}
.scuf-ch-privacy--public { color: #10b981; }
.scuf-ch-privacy--private { color: #f59e0b; } .scuf-ch-actions {
display: flex;
gap: 6px;
border-top: 1px solid #f3f4f6;
padding-top: 12px;
}
.scuf-ch-action-btn {
flex: 1;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 8px;
border-radius: 6px;
font-size: 12px;
font-weight: 600;
background: #f5f3ff;
color: #7c3aed;
border: none;
cursor: pointer;
transition: background 0.2s;
text-decoration: none !important;
}
.scuf-ch-action-btn:hover {
background: #ede9fe;
}
.scuf-ch-action-btn--danger {
background: #fff;
color: #ef4444;
border: 1px solid #fee2e2;
flex: 0 0 36px;
}
.scuf-ch-action-btn--danger:hover {
background: #fef2f2;
}
.scuf-saved-share-popover {
position: absolute;
left: 16px;
right: 16px;
bottom: 58px;
z-index: 30;
padding: 12px;
border: 1px solid #e5e7eb;
border-radius: 8px;
background: #ffffff;
box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}
.scuf-saved-share-popover::after {
content: '';
position: absolute;
right: 52px;
bottom: -7px;
width: 12px;
height: 12px;
border-right: 1px solid #e5e7eb;
border-bottom: 1px solid #e5e7eb;
background: #ffffff;
transform: rotate(45deg);
}
.scuf-saved-share-popover-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-bottom: 10px;
}
.scuf-saved-share-popover-head strong {
color: #111827;
font-size: 13px;
font-weight: 800;
}
.scuf-saved-share-close {
display: inline-flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
padding: 0;
border: 0;
border-radius: 6px;
background: #f9fafb;
color: #6b7280;
cursor: pointer;
font-size: 18px;
line-height: 1;
}
.scuf-saved-share-close:hover {
background: #f3f4f6;
color: #111827;
}
.scuf-saved-share-options {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
}
.scuf-saved-share-option {
min-height: 34px;
border: 1px solid #ede9fe;
border-radius: 7px;
background: #f5f3ff;
color: #6d28d9;
cursor: pointer;
font-size: 12px;
font-weight: 800;
}
.scuf-saved-share-option:hover {
background: #ede9fe;
}
.scuf-saved-share-option--wide {
grid-column: 1 / -1;
background: #111827;
border-color: #111827;
color: #ffffff;
}
.scuf-saved-share-option--wide:hover {
background: #000000;
} .scuf-ch-pagination {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
border-top: 1px solid #f3f4f6;
padding-top: 24px;
}
.scuf-ch-pagination-info {
font-size: 14px;
color: #6b7280;
}
.scuf-ch-pages {
display: flex;
gap: 4px;
}
.scuf-ch-page-btn {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
text-decoration: none !important;
font-size: 14px;
font-weight: 500;
color: #6b7280;
background: #fff;
border: 1px solid #e5e7eb;
transition: all 0.2s;
}
.scuf-ch-page-btn:hover {
border-color: #7c3aed;
color: #7c3aed;
}
.scuf-ch-page-btn--active {
background: #7c3aed !important;
color: #fff !important;
border-color: #7c3aed !important;
}
.scuf-ch-per-page {
font-size: 14px;
color: #6b7280;
}
.scuf-ch-per-page strong {
color: #111827;
} .scuf-ch-empty {
text-align: center;
padding: 80px 20px;
background: #fff;
border: 1px dashed #e5e7eb;
border-radius: 12px;
}
.scuf-ch-empty-icon {
margin-bottom: 20px;
}
.scuf-ch-empty h3 {
font-size: 20px !important;
font-weight: 700 !important;
color: #111827 !important;
margin-bottom: 8px !important;
}
.scuf-ch-empty p {
font-size: 15px;
color: #6b7280;
margin-bottom: 24px !important;
}
.scuf-ch-grid--list {
display: flex;
flex-direction: column;
gap: 16px;
}
.scuf-ch-grid--list .scuf-ch-card {
flex-direction: row;
align-items: center;
gap: 20px;
flex-wrap: wrap;
padding: 20px;
}
.scuf-ch-grid--list .scuf-ch-card-top {
flex: 1;
min-width: 250px;
}
.scuf-ch-grid--list .scuf-ch-thumbs {
flex: 1;
min-width: 200px;
background: transparent;
padding: 0;
}
.scuf-ch-grid--list .scuf-ch-meta {
flex-shrink: 0;
margin-bottom: 0;
}
.scuf-ch-grid--list .scuf-ch-actions {
flex: 0 0 100%;
border-top: 1px solid #f3f4f6;
margin-top: 10px;
padding-top: 15px;
} .scuf-share-modal-v2 {
font-family: 'Inter', -apple-system, sans-serif;
color: #1f2937;
padding: 10px 5px;
}
.scuf-share-header {
position: relative;
box-sizing: border-box;
min-height: 96px;
padding-right: 72px;
display: flex;
flex-direction: column;
justify-content: center;
}
.scuf-share-header h3 {
margin: 0 0 8px 0 !important;
font-size: 20px !important;
font-weight: 800 !important;
color: #111827;
line-height: 1.25;
}
.scuf-share-header p {
font-size: 14px;
color: #6b7280;
line-height: 1.5;
margin: 0 !important;
}
.scuf-share-message-area {
margin-bottom: 24px;
}
.scuf-message-label-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.scuf-message-label-row label {
font-weight: 700;
font-size: 13px;
color: #374151;
}
.scuf-magic-btn {
background: #f5f3ff;
color: #7c3aed;
border: 1px solid #ddd6fe;
padding: 4px 10px;
border-radius: 6px;
font-size: 11px;
font-weight: 700;
cursor: pointer;
transition: all 0.2s;
}
.scuf-magic-btn:hover {
background: #ede9fe;
}
#scuf-share-message {
width: 100%;
border: 1px solid #e5e7eb;
border-radius: 10px;
padding: 12px;
font-size: 14px;
line-height: 1.5;
background: #f9fafb;
resize: none;
min-height: 80px;
transition: border-color 0.2s;
}
#scuf-share-message:focus {
border-color: #7c3aed;
outline: none;
background: #fff;
}
.scuf-share-platforms label {
display: block;
font-weight: 700;
font-size: 13px;
margin-bottom: 12px;
}
.scuf-platform-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
margin-bottom: 24px;
}
.scuf-platform-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 12px;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 12px;
text-decoration: none !important;
transition: all 0.2s;
cursor: pointer;
}
.scuf-platform-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
border-color: #7c3aed;
}
.scuf-platform-icon {
font-size: 24px;
margin-bottom: 6px;
}
.scuf-platform-name {
font-size: 12px;
font-weight: 700;
color: #4b5563;
}
.scuf-share-copy-link label {
display: block;
font-weight: 700;
font-size: 13px;
margin-bottom: 8px;
}
.scuf-copy-input-wrap {
display: flex;
gap: 8px;
}
#scuf-copy-link-input {
flex: 1;
border: 1px solid #e5e7eb;
border-radius: 8px;
padding: 8px 12px;
font-size: 13px;
background: #f3f4f6;
color: #6b7280;
}
.scuf-copy-btn {
background: #111827;
color: #fff;
border: none;
border-radius: 8px;
padding: 0 16px;
font-size: 13px;
font-weight: 700;
cursor: pointer;
}
.scuf-copy-btn:hover {
background: #000;
}
.scuf-hidden-platform {
display: none;
} .scuf-platform-icon svg {
display: block;
color: #7c3aed;
transition: transform 0.2s;
}
.scuf-platform-item:hover .scuf-platform-icon svg {
transform: scale(1.15);
}
.scuf-magic-btn svg {
display: inline-block;
vertical-align: middle;
}
.scuf-platform-icon {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
}