.woocommerce-shipping-totals span.woocommerce-Price-amount.wdp-amount {
text-decoration: line-through;
}
.adp-choose-card-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-bottom: 2rem;
border: 2px solid #00000014;
border-radius: 8px;
padding: 0.75rem 1rem;
}
.adp-choose-product-discount-title {
display: flex;
}
.adp-choose-card-img {
max-height: 1.4rem;
margin-right: 5px;
margin-left: 5px;
}
.adp-choose-card {
position: relative;
border: 2px solid #00000014;
border-radius: 8px;
cursor: pointer;
padding: 0.75rem 1rem;
transition: background-color 0.2s ease;
}
.adp-choose-card:hover {
border: 1px solid #1d1d1d;
background-color: #f8f8f8;
}
.adp-choose-card input[type="radio"] {
position: absolute;
opacity: 0;
pointer-events: none;
}
.adp-choose-card label {
display: flex;
flex-direction: column;
gap: 0.25rem;
cursor: pointer;
position: relative;
}
.adp-choose-card-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.adp-choose-radio-title {
display: flex;
align-items: center;
gap: 0.5rem;
position: relative;
}
.adp-choose-radio-title::before {
content: "";
display: inline-block;
width: 16px;
height: 16px;
border-radius: 50%;
border: 2px solid #888;
box-sizing: border-box;
transition: all 0.2s ease;
flex-shrink: 0;
position: relative;
top: 0;
}
.adp-choose-radio-title::after {
content: "";
position: absolute;
left: 0.5rem;
top: 50%;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #888;
transform: translate(-50%, -50%);
opacity: 0;
transition: all 0.2s ease;
}
.adp-choose-card input[type="radio"]:checked + label .adp-choose-radio-title::before {
border-color: #666;
}
.adp-choose-card input[type="radio"]:checked + label .adp-choose-radio-title::after {
opacity: 1;
background-color: #666;
}
.adp-choose-card-title {
font-size: 1rem;
}
.adp-choose-card-price {
font-weight: 500;
color: #333;
}
.adp-choose-card-description {
display: flex;
font-size: 0.9rem;
color: #666;
}html {
background: #ECE9E6; background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6); background: linear-gradient(to right, #FFFFFF, #ECE9E6); }
body.wploti-maintenance-animation {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
flex-direction: column;
text-align: center;
overflow: hidden;
gap: 2vh;
width: 75vw;
height: 75vh;
margin: 10vh auto;
}
.title {
color: #ffcd46;
font-family: cursive;
}
.title a {
text-decoration: none;
color: #89add3;
} @media screen and (max-width : 800px) { body {
gap: 5vh;
}
}
.wploti-access-controls {
position: fixed;
top: 50%;
right: 0;
z-index: 10001;
display: flex;
flex-direction: column;
gap: 8px;
transform: translateY(-50%);
transition: opacity .2s ease, visibility .2s ease;
}
body.wploti-panel-open .wploti-access-controls {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.wploti-access-trigger {
width: 52px;
height: 52px;
padding: 0;
border: 0;
border-radius: 6px 0 0 6px;
background: #1d4ed8;
color: #fff;
cursor: pointer;
font-size: 24px;
}
.wploti-access-trigger:focus-visible,
.wploti-access-panel button:focus-visible,
.wploti-access-panel input:focus-visible {
outline: 3px solid #fbbf24;
outline-offset: 2px;
}
.wploti-access-panel {
position: fixed;
top: 50%;
right: 32px;
z-index: 10002;
box-sizing: border-box;
width: min(100% - 40px, 380px);
max-height: calc(100% - 64px);
overflow-y: auto;
padding: 44px 36px;
background: #1d4ed8; color: #f9fafb;
border: 1px solid rgba(255, 255, 255, .18);
border-radius: 16px;
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
box-shadow: 0 20px 50px rgba(8, 7, 16, .45);
transform: translateY(-50%) translateX(calc(100% + 48px));
opacity: 0;
visibility: hidden;
transition: transform .32s ease, opacity .32s ease, visibility 0s linear .32s;
}
.wploti-access-panel.is-open {
transform: translateY(-50%) translateX(0);
opacity: 1;
visibility: visible;
transition: transform .32s ease, opacity .32s ease;
}
.wploti-access-panel h2 {
margin: 0 0 28px;
color: #fff;
font-size: 26px;
font-weight: 600;
text-align: center;
}
.wploti-access-panel label {
display: block;
margin: 22px 0 8px;
color: #f1f3fb;
font-size: 14px;
font-weight: 500;
letter-spacing: .3px;
text-align: left;
}
.wploti-access-panel input {
box-sizing: border-box;
width: 100%;
height: 48px;
padding: 0 14px;
border: 1px solid rgba(255, 255, 255, .16);
border-radius: 6px;
background: rgba(255, 255, 255, .08);
color: #fff;
font-size: 15px;
}
.wploti-access-panel input::placeholder {
color: #d8dcec;
}
.wploti-access-panel input:focus {
background: rgba(255, 255, 255, .14);
border-color: rgba(255, 255, 255, .35);
}
.wploti-access-panel form>button {
width: 100%;
margin-top: 30px;
padding: 13px 0;
border: 0;
border-radius: 6px;
background: #ffffff;
color: #111827;
cursor: pointer;
font-size: 16px;
font-weight: 600;
transition: background .2s ease;
}
.wploti-access-panel form>button:hover {
background: #e5e7eb;
}
.wploti-panel-close {
position: absolute;
top: 16px;
right: 18px;
border: 0;
background: rgba(255, 255, 255, .08);
color: #fff;
width: 32px;
height: 32px;
border-radius: 50%;
cursor: pointer;
font-size: 20px;
line-height: 1;
}
.wploti-panel-error {
margin: 18px 0 0;
color: #fca5a5;
font-size: 13px;
text-align: center;
}
@media screen and (max-width: 480px) {
.wploti-access-panel {
right: 50%;
width: calc(100% - 32px);
transform: translateY(-50%) translateX(calc(50% + 100%));
}
.wploti-access-panel.is-open {
transform: translateY(-50%) translateX(50%);
}
}.wdp_pricing_table_caption { }
.wdp_pricing_table {
border-collapse: collapse;
font-size: 0.9em;
table-layout: fixed;
--highlight-range-bg: #efefef;
--highlight-range-text: #6d6d6d;
}
.wdp_pricing_table td {
border: solid 1px #dfdfdf;
padding: 5px 10px;
text-align: center;
caret-color: transparent;
}
.wdp_pricing_table tr.clickable_bulk {
cursor: pointer;
}
.wdp_pricing_table .clickable_bulk:hover > *,
.wdp_pricing_table .wdp_selected_row td {
background-color: var(--highlight-range-bg) !important;
color: var(--highlight-range-text) !important;
}
.wdp_pricing_table thead {
background: #efefef;
}
img.spinner_img:not([src]) {
visibility: visible;
}
.spinner_img {
content:url(//cannabivor.com/wp-content/plugins/advanced-dynamic-pricing-for-woocommerce/BaseVersion/assets/images/spinner-2x.gif);
display: block;
}
del .woocommerce-Price-amount {
display: inline;
}
.wdp_pricing_table_radio_btn td {
border: none;
}.wdp_deals_table_caption {
font-weight: bold;
}
.wdp_deals_table {
border-collapse: collapse;
font-size: 0.9em;
}
.wdp_deals_table td {
border: solid 1px #dfdfdf;
padding: 5px 10px;
text-align: center;
}
.wdp_deals_table thead {
background: #efefef;
}