| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025 |
- .studiou-fpp-product {
- max-width: 800px;
- margin: 20px 0;
- font-family: inherit;
- }
- .studiou-fpp-product-header {
- display: flex;
- gap: 20px;
- margin-bottom: 30px;
- align-items: flex-start;
- }
- .studiou-fpp-product-image {
- flex: 0 0 200px;
- }
- .studiou-fpp-product-image img {
- max-width: 100%;
- height: auto;
- border-radius: 4px;
- }
- .studiou-fpp-product-info {
- flex: 1;
- }
- .studiou-fpp-product-title {
- margin: 0 0 10px;
- font-size: 1.6em;
- }
- .studiou-fpp-product-description {
- color: #555;
- line-height: 1.6;
- }
- .studiou-fpp-section {
- margin-bottom: 25px;
- }
- .studiou-fpp-section h3 {
- margin: 0 0 12px;
- font-size: 1.2em;
- border-bottom: 2px solid #eee;
- padding-bottom: 8px;
- }
- /* Variants table */
- .studiou-fpp-variants-table-wrap {
- overflow-x: auto;
- }
- .studiou-fpp-variants-table {
- width: 100%;
- border-collapse: collapse;
- border: 1px solid #ddd;
- }
- .studiou-fpp-variants-table th,
- .studiou-fpp-variants-table td {
- padding: 10px 14px;
- text-align: left;
- border-bottom: 1px solid #eee;
- }
- .studiou-fpp-variants-table thead th {
- background: #f7f7f7;
- font-weight: 600;
- border-bottom: 2px solid #ddd;
- }
- .studiou-fpp-variants-table .studiou-fpp-col-select {
- width: 40px;
- text-align: center;
- }
- .studiou-fpp-variants-table .studiou-fpp-col-price {
- white-space: nowrap;
- font-weight: 600;
- }
- .studiou-fpp-variant-row {
- cursor: pointer;
- transition: background 0.15s;
- }
- .studiou-fpp-variant-row:hover {
- background: #f5f9ff;
- }
- .studiou-fpp-variant-row.studiou-fpp-variant-selected {
- background: #e8f4fd;
- }
- .studiou-fpp-variant-row input[type="radio"] {
- margin: 0;
- cursor: pointer;
- }
- /* Upload area */
- .studiou-fpp-upload-info {
- color: #777;
- font-size: 0.9em;
- margin-bottom: 12px;
- }
- .studiou-fpp-upload-area {
- border: 2px dashed #ccc;
- border-radius: 8px;
- padding: 40px 20px;
- text-align: center;
- cursor: pointer;
- transition: border-color 0.2s, background 0.2s;
- position: relative;
- }
- .studiou-fpp-upload-area:hover,
- .studiou-fpp-upload-area.studiou-fpp-dragover {
- border-color: #2271b1;
- background: #f0f7ff;
- }
- .studiou-fpp-upload-icon {
- font-size: 48px;
- width: 48px;
- height: 48px;
- color: #999;
- display: block;
- margin: 0 auto 10px;
- }
- .studiou-fpp-upload-area:hover .studiou-fpp-upload-icon {
- color: #2271b1;
- }
- .studiou-fpp-upload-prompt p {
- margin: 0;
- color: #777;
- }
- .studiou-fpp-file-input {
- display: none;
- }
- /* Progress bar */
- .studiou-fpp-progress {
- margin-top: 15px;
- display: flex;
- align-items: center;
- gap: 12px;
- }
- .studiou-fpp-progress-bar {
- flex: 1;
- height: 20px;
- background: #eee;
- border-radius: 10px;
- overflow: hidden;
- }
- .studiou-fpp-progress-fill {
- height: 100%;
- background: #2271b1;
- border-radius: 10px;
- transition: width 0.3s;
- }
- .studiou-fpp-progress-text {
- font-weight: 600;
- min-width: 40px;
- text-align: right;
- }
- /* Preview */
- .studiou-fpp-preview {
- display: flex;
- align-items: center;
- gap: 15px;
- padding: 15px;
- background: #f9f9f9;
- border: 1px solid #ddd;
- border-radius: 6px;
- margin-top: 15px;
- }
- .studiou-fpp-preview-image {
- flex: 0 0 80px;
- }
- .studiou-fpp-preview-image img {
- max-width: 80px;
- max-height: 80px;
- border-radius: 4px;
- display: block;
- }
- .studiou-fpp-preview-info {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 10px;
- }
- .studiou-fpp-preview-name {
- font-weight: 500;
- word-break: break-all;
- }
- .studiou-fpp-remove-file {
- flex-shrink: 0;
- color: #b32d2e !important;
- border-color: #b32d2e !important;
- }
- .studiou-fpp-remove-file:hover {
- background: #b32d2e !important;
- color: #fff !important;
- }
- /* Actions / Add to cart */
- .studiou-fpp-actions {
- padding-top: 15px;
- border-top: 2px solid #eee;
- }
- .studiou-fpp-add-to-cart-btn {
- padding: 12px 30px !important;
- font-size: 1.1em !important;
- font-weight: 600;
- }
- .studiou-fpp-add-to-cart-btn:disabled {
- opacity: 0.5;
- cursor: not-allowed;
- }
- /* Cart uploaded photo preview */
- .studiou-fpp-cart-preview {
- margin-top: 8px;
- }
- .studiou-fpp-cart-preview img {
- max-width: 70px;
- max-height: 70px;
- object-fit: cover;
- border-radius: 4px;
- border: 1px solid #ddd;
- }
- /* Messages */
- .studiou-fpp-msg {
- padding: 10px 15px;
- border-radius: 4px;
- margin-bottom: 12px;
- font-size: 0.95em;
- }
- .studiou-fpp-msg-error {
- background: #fef1f1;
- color: #b32d2e;
- border: 1px solid #f5c6c6;
- }
- .studiou-fpp-msg-success {
- background: #ecf7ed;
- color: #1e7e34;
- border: 1px solid #c3e6c3;
- }
- .studiou-fpp-error {
- color: #b32d2e;
- font-style: italic;
- }
- /* Quantity discount pre-selection notice (above variations form) */
- .studiou-fpp-qty-tiers-notice {
- display: flex;
- align-items: center;
- gap: 8px;
- padding: 10px 14px;
- margin: 0 0 15px;
- background: #fff7e6;
- border: 1px solid #f0c36d;
- border-left: 4px solid #dba617;
- border-radius: 4px;
- color: #6a4b00;
- font-size: 0.95em;
- }
- .studiou-fpp-qty-tiers-notice .dashicons {
- color: #dba617;
- font-size: 20px;
- width: 20px;
- height: 20px;
- }
- /* Quantity discount tier display */
- .studiou-fpp-qty-tiers-display {
- margin: 15px 0;
- }
- .studiou-fpp-qty-tiers-box {
- border: 2px solid #2271b1;
- border-radius: 6px;
- padding: 14px 18px;
- background: #f0f7ff;
- }
- .studiou-fpp-qty-tiers-box h4 {
- margin: 0 0 12px;
- font-size: 1.05em;
- font-weight: 600;
- color: #2271b1;
- display: flex;
- align-items: center;
- gap: 6px;
- }
- .studiou-fpp-qty-tiers-box h4 .dashicons {
- font-size: 20px;
- width: 20px;
- height: 20px;
- }
- .studiou-fpp-qty-tiers-table-display {
- width: 100%;
- border-collapse: collapse;
- font-size: 0.9em;
- }
- .studiou-fpp-qty-tiers-table-display th,
- .studiou-fpp-qty-tiers-table-display td {
- padding: 6px 10px;
- text-align: left;
- border-bottom: 1px solid #eee;
- }
- .studiou-fpp-qty-tiers-table-display thead th {
- font-weight: 600;
- color: #666;
- border-bottom: 2px solid #ddd;
- }
- .studiou-fpp-qty-tiers-table-display tbody tr:last-child td {
- border-bottom: none;
- }
- .studiou-fpp-qty-tiers-table-display tbody tr.studiou-fpp-qty-tier-active {
- background: #e8f4fd;
- font-weight: 600;
- }
- .studiou-fpp-qty-tiers-table-display tbody tr.studiou-fpp-qty-tier-active td {
- color: #2271b1;
- }
- /* Per-row tier display for custom variant-table plugins (pvtfw) */
- .studiou-fpp-row-tiers {
- display: flex;
- align-items: center;
- gap: 6px;
- margin-top: 6px;
- font-size: 0.8em;
- color: #555;
- flex-wrap: wrap;
- }
- .studiou-fpp-row-tiers .dashicons {
- font-size: 14px;
- width: 14px;
- height: 14px;
- color: #dba617;
- }
- .studiou-fpp-row-tiers-list {
- display: inline-flex;
- gap: 6px;
- flex-wrap: wrap;
- }
- .studiou-fpp-row-tier {
- background: #fff7e6;
- border: 1px solid #f0c36d;
- border-radius: 3px;
- padding: 1px 6px;
- white-space: nowrap;
- }
- .studiou-fpp-row-save-badge {
- display: inline-block;
- margin-left: 6px;
- padding: 2px 7px;
- background: #00a32a;
- color: #fff;
- border-radius: 3px;
- font-size: 0.75em;
- font-weight: 700;
- vertical-align: middle;
- }
- /* Responsive */
- @media (max-width: 600px) {
- .studiou-fpp-product-header {
- flex-direction: column;
- }
- .studiou-fpp-product-image {
- flex: none;
- text-align: center;
- }
- .studiou-fpp-preview {
- flex-direction: column;
- text-align: center;
- }
- .studiou-fpp-preview-info {
- flex-direction: column;
- }
- }
- /* ==========================================================================
- Upload cards stack — 1.5.0 multi-upload layout
- ========================================================================== */
- .studiou-fpp-upload-wrap .studiou-fpp-heading {
- margin: 20px 0 8px;
- font-size: 1.2em;
- }
- .studiou-fpp-dropzone-disabled {
- opacity: 0.5;
- cursor: not-allowed;
- pointer-events: none;
- }
- .studiou-fpp-cards {
- display: flex;
- flex-direction: column;
- gap: 12px;
- margin-top: 20px;
- }
- .studiou-fpp-card {
- position: relative;
- display: flex;
- gap: 14px;
- padding: 14px;
- border: 1px solid #ddd;
- border-radius: 6px;
- background: #fff;
- box-shadow: 0 1px 2px rgba(0,0,0,0.03);
- }
- .studiou-fpp-card.studiou-fpp-card-uploading {
- opacity: 0.85;
- }
- .studiou-fpp-card-remove {
- position: absolute;
- top: 6px;
- right: 8px;
- width: 26px;
- height: 26px;
- line-height: 1;
- padding: 0;
- border: 1px solid #d4d4d4;
- background: #fff;
- color: #b32d2e;
- border-radius: 50%;
- cursor: pointer;
- font-size: 18px;
- font-weight: 700;
- }
- .studiou-fpp-card-remove:hover {
- background: #b32d2e;
- color: #fff;
- border-color: #b32d2e;
- }
- .studiou-fpp-card-thumb {
- position: relative;
- flex: 0 0 100px;
- width: 100px;
- height: 100px;
- border-radius: 4px;
- overflow: hidden;
- background: #f4f4f4;
- }
- .studiou-fpp-card-thumb img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- display: block;
- }
- .studiou-fpp-card:not(.studiou-fpp-card-uploading) .studiou-fpp-card-thumb {
- cursor: zoom-in;
- }
- .studiou-fpp-card:not(.studiou-fpp-card-uploading) .studiou-fpp-card-thumb img {
- transition: opacity 0.15s;
- }
- .studiou-fpp-card:not(.studiou-fpp-card-uploading) .studiou-fpp-card-thumb:hover img {
- opacity: 0.85;
- }
- .studiou-fpp-card-thumb-placeholder {
- width: 100%;
- height: 100%;
- background: repeating-linear-gradient(45deg, #eee, #eee 6px, #f6f6f6 6px, #f6f6f6 12px);
- }
- .studiou-fpp-card-progress {
- position: absolute;
- bottom: 0; left: 0; right: 0;
- height: 18px;
- background: rgba(0,0,0,0.55);
- color: #fff;
- font-size: 0.75em;
- text-align: center;
- line-height: 18px;
- }
- .studiou-fpp-card-progress-fill {
- position: absolute;
- top: 0; left: 0; bottom: 0;
- width: 0%;
- background: #4caf50;
- transition: width 0.2s ease;
- }
- .studiou-fpp-card-progress-text {
- position: relative;
- z-index: 1;
- }
- .studiou-fpp-card-body {
- flex: 1;
- display: flex;
- flex-direction: column;
- gap: 8px;
- min-width: 0;
- }
- .studiou-fpp-card-name {
- font-weight: 600;
- word-break: break-all;
- padding-right: 30px;
- }
- .studiou-fpp-card-enlarge,
- .studiou-fpp-overview-enlarge {
- flex: 0 0 auto;
- padding: 4px 12px;
- font-size: 0.85em;
- line-height: 1.4;
- border: 1px solid #2271b1;
- background: #fff;
- color: #2271b1;
- border-radius: 3px;
- cursor: pointer;
- font-weight: 500;
- white-space: nowrap;
- position: relative;
- z-index: 2;
- }
- .studiou-fpp-card-enlarge:hover,
- .studiou-fpp-overview-enlarge:hover {
- background: #2271b1;
- color: #fff;
- }
- .studiou-fpp-card-uploading .studiou-fpp-card-enlarge {
- opacity: 0.4;
- pointer-events: none;
- }
- .studiou-fpp-overview-name-row {
- display: flex;
- gap: 8px;
- align-items: center;
- flex-wrap: wrap;
- }
- .studiou-fpp-card-controls {
- display: flex;
- gap: 10px;
- flex-wrap: wrap;
- align-items: center;
- }
- .studiou-fpp-card-variant {
- flex: 1 1 auto;
- min-width: 160px;
- padding: 6px 8px;
- }
- .studiou-fpp-card-qty {
- display: inline-flex;
- align-items: stretch;
- border: 1px solid #ccc;
- border-radius: 4px;
- overflow: hidden;
- }
- .studiou-fpp-card-qty .studiou-fpp-qty-btn {
- width: 28px;
- border: none;
- background: #f6f6f6;
- cursor: pointer;
- font-size: 1em;
- line-height: 1;
- }
- .studiou-fpp-card-qty .studiou-fpp-qty-btn:hover {
- background: #e8e8e8;
- }
- .studiou-fpp-card-qty .studiou-fpp-qty-input {
- width: 48px;
- text-align: center;
- border: none;
- border-left: 1px solid #ccc;
- border-right: 1px solid #ccc;
- padding: 4px;
- -moz-appearance: textfield;
- }
- .studiou-fpp-card-qty .studiou-fpp-qty-input::-webkit-outer-spin-button,
- .studiou-fpp-card-qty .studiou-fpp-qty-input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- .studiou-fpp-card-price-row {
- display: flex;
- gap: 10px;
- align-items: center;
- flex-wrap: wrap;
- margin-top: auto;
- }
- .studiou-fpp-card-price {
- font-size: 1.05em;
- font-weight: 600;
- min-width: 80px;
- }
- .studiou-fpp-card-badge {
- display: inline-block;
- background: #e6f7e8;
- color: #1e7e34;
- padding: 2px 7px;
- border-radius: 3px;
- font-size: 0.85em;
- font-weight: 700;
- }
- .studiou-fpp-card-addtocart {
- margin-left: auto !important;
- }
- .studiou-fpp-card-addtocart:disabled {
- opacity: 0.55;
- cursor: not-allowed;
- }
- /* ==========================================================================
- Order overview panel
- ========================================================================== */
- .studiou-fpp-overview {
- margin-top: 30px;
- padding: 18px;
- border: 1px solid #e3e3e3;
- border-radius: 6px;
- background: #fafafa;
- }
- .studiou-fpp-overview-title {
- margin: 0 0 14px;
- font-size: 1.15em;
- }
- .studiou-fpp-overview-lines {
- display: flex;
- flex-direction: column;
- gap: 10px;
- }
- .studiou-fpp-overview-line {
- display: flex;
- gap: 12px;
- padding: 10px;
- background: #fff;
- border: 1px solid #e6e6e6;
- border-radius: 4px;
- align-items: center;
- position: relative;
- }
- .studiou-fpp-overview-thumb {
- width: 56px;
- height: 56px;
- object-fit: cover;
- border-radius: 3px;
- border: 1px solid #ddd;
- flex: 0 0 auto;
- cursor: zoom-in;
- transition: opacity 0.15s;
- }
- .studiou-fpp-overview-thumb:hover {
- opacity: 0.85;
- }
- .studiou-fpp-overview-body {
- flex: 1;
- min-width: 0;
- }
- .studiou-fpp-overview-name {
- font-weight: 600;
- word-break: break-all;
- }
- .studiou-fpp-overview-variant {
- color: #666;
- font-size: 0.9em;
- margin-top: 2px;
- }
- .studiou-fpp-overview-meta {
- display: flex;
- gap: 10px;
- align-items: center;
- flex-wrap: wrap;
- margin-top: 4px;
- }
- .studiou-fpp-overview-qty {
- color: #333;
- font-size: 0.9em;
- }
- .studiou-fpp-overview-price {
- font-weight: 600;
- }
- .studiou-fpp-overview-badge {
- background: #e6f7e8;
- color: #1e7e34;
- padding: 1px 6px;
- border-radius: 3px;
- font-size: 0.8em;
- font-weight: 700;
- }
- .studiou-fpp-overview-remove {
- flex: 0 0 28px;
- width: 28px;
- height: 28px;
- line-height: 26px;
- text-align: center;
- font-size: 20px;
- font-weight: 700;
- text-decoration: none !important;
- color: #999;
- border: 1px solid #ccc;
- border-radius: 50%;
- }
- .studiou-fpp-overview-remove:hover {
- background: #b32d2e;
- color: #fff !important;
- border-color: #b32d2e;
- }
- .studiou-fpp-overview-footer {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 14px;
- padding-top: 14px;
- border-top: 1px solid #e3e3e3;
- flex-wrap: wrap;
- gap: 10px;
- }
- .studiou-fpp-overview-subtotal-label {
- margin-right: 6px;
- color: #444;
- }
- .studiou-fpp-overview-subtotal-value {
- font-size: 1.1em;
- font-weight: 700;
- }
- .studiou-fpp-overview-checkout {
- font-weight: 600 !important;
- }
- /* Mobile: below 640px the card + overview tighten and controls may wrap */
- @media (max-width: 640px) {
- .studiou-fpp-card {
- padding: 10px;
- gap: 10px;
- }
- .studiou-fpp-card-thumb {
- flex-basis: 70px;
- width: 70px;
- height: 70px;
- }
- .studiou-fpp-card-controls {
- flex-direction: column;
- align-items: stretch;
- }
- .studiou-fpp-card-variant {
- min-width: 0;
- width: 100%;
- }
- .studiou-fpp-card-qty {
- align-self: flex-start;
- }
- .studiou-fpp-card-price-row {
- flex-direction: column;
- align-items: stretch;
- }
- .studiou-fpp-card-addtocart {
- margin-left: 0 !important;
- width: 100%;
- }
- .studiou-fpp-overview-line {
- flex-wrap: wrap;
- }
- .studiou-fpp-overview-remove {
- position: absolute;
- top: 6px;
- right: 6px;
- }
- }
- /* ==========================================================================
- Lightbox — click a card / overview thumb to view the enlarged preview
- ========================================================================== */
- .studiou-fpp-lightbox {
- position: fixed;
- inset: 0;
- z-index: 100000;
- background: rgba(0, 0, 0, 0.85);
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 40px 24px;
- box-sizing: border-box;
- }
- body.studiou-fpp-lightbox-open {
- overflow: hidden;
- }
- .studiou-fpp-lightbox-inner {
- max-width: 100%;
- max-height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 10px;
- }
- .studiou-fpp-lightbox-img {
- max-width: 100%;
- max-height: calc(100vh - 120px);
- width: auto;
- height: auto;
- display: block;
- border-radius: 4px;
- box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
- background: #fff;
- }
- .studiou-fpp-lightbox-caption {
- color: #fff;
- font-size: 0.95em;
- max-width: 90vw;
- text-align: center;
- word-break: break-all;
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
- }
- .studiou-fpp-lightbox-close {
- position: absolute;
- top: 14px;
- right: 18px;
- width: 40px;
- height: 40px;
- background: rgba(255, 255, 255, 0.1);
- color: #fff;
- border: 1px solid rgba(255, 255, 255, 0.4);
- border-radius: 50%;
- font-size: 26px;
- line-height: 1;
- font-weight: 700;
- cursor: pointer;
- transition: background 0.15s;
- }
- .studiou-fpp-lightbox-close:hover {
- background: rgba(255, 255, 255, 0.25);
- }
- /* ==========================================================================
- Read-only variant price table (rendered above the upload dropzone, 1.5.12+)
- ========================================================================== */
- .studiou-fpp-price-table-wrap {
- margin: 18px 0 24px;
- }
- .studiou-fpp-price-table-title {
- margin: 0 0 10px;
- font-size: 1.15em;
- }
- .studiou-fpp-price-table {
- width: 100%;
- border-collapse: collapse;
- border: 1px solid #e3e3e3;
- background: #fff;
- font-size: 0.95em;
- }
- .studiou-fpp-price-table thead th {
- background: #f7f7f7;
- text-align: left;
- padding: 8px 12px;
- font-weight: 600;
- border-bottom: 2px solid #ddd;
- color: #444;
- }
- .studiou-fpp-price-table tbody td {
- padding: 10px 12px;
- border-bottom: 1px solid #eee;
- vertical-align: top;
- }
- .studiou-fpp-price-table tbody tr:last-child td {
- border-bottom: none;
- }
- .studiou-fpp-price-table-variant {
- font-weight: 600;
- }
- .studiou-fpp-price-table-price {
- white-space: nowrap;
- font-weight: 600;
- }
- .studiou-fpp-price-table-row-oos {
- opacity: 0.5;
- }
- .studiou-fpp-price-table-tiers {
- list-style: none;
- margin: 0;
- padding: 0;
- display: flex;
- flex-wrap: wrap;
- gap: 6px;
- }
- .studiou-fpp-price-table-tier {
- display: inline-flex;
- align-items: center;
- gap: 4px;
- background: #fff7e6;
- border: 1px solid #f0c36d;
- border-radius: 3px;
- padding: 1px 7px;
- font-size: 0.9em;
- white-space: nowrap;
- }
- .studiou-fpp-price-table-tier-qty {
- color: #6a4b00;
- font-weight: 600;
- }
- .studiou-fpp-price-table-tier-pct {
- color: #1e7e34;
- font-weight: 700;
- }
- .studiou-fpp-price-table-no-discount {
- color: #999;
- }
- @media (max-width: 640px) {
- .studiou-fpp-price-table thead th,
- .studiou-fpp-price-table tbody td {
- padding: 7px 8px;
- }
- .studiou-fpp-price-table-discount {
- font-size: 0.9em;
- }
- }
|