.blaty-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 40px;
max-width: 1300px;
margin: 0 auto;
font-family: 'Segoe UI', sans-serif;
padding: 20px;
font-size: 15px;
} .blaty-left {
width: 100%; 
display: flex !important;
flex-direction: column !important;
align-items: center !important; 
} @media (min-width: 900px) {
.blaty-left {
position: sticky !important;
top: 40px; align-self: start; max-height: calc(100vh - 60px); overflow-y: auto;
} .blaty-left::-webkit-scrollbar {
width: 6px;
}
.blaty-left::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 4px;
}
}
.blaty-right {
width: 100%;
}.blaty-right {
width: 100%;
}
.blaty-box {
background: #fff;
border-radius: 10px;
box-shadow: 0 0 12px rgba(0,0,0,0.05);
padding: 20px;
width: 100%;
max-width: 600px; margin-bottom: 24px;
box-sizing: border-box; }
#decor-preview-image {
width: 100%;
max-width: 350px;
height: auto;
max-height: 250px;
object-fit: contain;
display: block;
margin: 10px auto; border-radius: 6px;
} .blaty-form input[type="text"],
.blaty-form input[type="email"],
.blaty-form input[type="tel"],
.blaty-form input[type="number"],
.blaty-form select,
.blaty-form textarea {
width: 100%;
padding: 8px 10px;
margin-top: 6px;
margin-bottom: 12px;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 15px;
box-sizing: border-box;
}
.blaty-form label {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 4px;
margin-bottom: 8px;
}
.blaty-form label.checkbox-label {
flex-direction: row;
align-items: center;
}
.blaty-form button {
background: #0073aa;
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 15px;
width: 100%;
}
.blaty-form button:hover {
background: #005f8d;
}
.blaty-form button:disabled {
background: #ccc;
cursor: not-allowed;
} .blaty-preview {
font-size: 15px;
margin-top: 20px;
padding: 15px;
background: #f9f9f9;
border-radius: 5px;
line-height: 1.6;
} .blaty-svg-title {
display: block;
font-size: 1.1em;
font-weight: bold;
text-align: center;
width: 100%;
max-width: 600px;
margin: 20px 0 15px 0;
box-sizing: border-box;
}
.svg-container {
width: 100%;
max-width: 600px;
padding: 10px 0;
box-sizing: border-box;
}
#tech-svg {
width: 100%;
height: auto;
border-radius: 8px;
background: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
display: block;
} .blaty-modal-open-btn {
display: flex;
align-items: center;
width: 100%;
padding: 10px;
font-size: 16px;
text-align: left;
background: #f9f9f9;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
transition: background 0.2s ease;
}
.blaty-modal-open-btn:hover {
background: #f1f1f1;
}
#selected-decor-thumb {
width: 40px;
height: 40px;
object-fit: cover;
border-radius: 4px;
margin-right: 15px;
border: 1px solid #ddd;
}
.blaty-modal-overlay {
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.6);
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
box-sizing: border-box;
}
.blaty-modal-content {
background-color: #fefefe;
margin: auto;
border-radius: 8px;
width: 100%;
max-width: 900px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
animation: modal-fade-in 0.3s;
display: flex;
flex-direction: column;
}
.blaty-modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 25px;
border-bottom: 1px solid #e5e5e5;
}
.blaty-modal-header h3 {
margin: 0;
font-size: 20px;
}
.blaty-modal-close {
font-size: 32px;
font-weight: bold;
color: #aaa;
background: none;
border: none;
cursor: pointer;
padding: 0 5px;
line-height: 1;
}
.blaty-modal-close:hover {
color: #333;
}
.blaty-modal-body {
padding: 25px;
max-height: 70vh;
overflow-y: auto;
}
@keyframes modal-fade-in {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
} .decor-selector {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
gap: 20px;
margin-top: 10px;
}
.decor-option {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
border: 2px solid #eee;
border-radius: 8px;
padding: 10px;
transition: all 0.2s ease;
}
.decor-option:hover {
border-color: #0073aa;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.decor-option img {
width: 90px;
height: 90px;
object-fit: cover;
border-radius: 6px;
margin-bottom: 8px;
}
.decor-option span {
font-size: 13px;
text-align: center;
font-weight: 500;
}
.decor-option input[type="radio"] {
display: none;
}
.decor-option input[type="radio"]:checked + img + span {
font-weight: bold;
color: #0073aa;
}
.decor-option.selected {
border-color: #0073aa;
background-color: #f4faff;
box-shadow: 0 0 10px rgba(0, 115, 170, 0.7);
} .decor-preview-details-container {
text-align: center;
margin-top: 8px;
font-size: 14px;
color: #555;
line-height: 1.4;
}
.decor-preview-details-container span {
display: inline-block;
margin: 0 5px;
} .blaty-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 40px;
max-width: 1300px;
margin: 0 auto;
font-family: 'Segoe UI', sans-serif;
padding: 20px;
font-size: 15px;
}
.blaty-left {
width: 100%; 
display: flex !important;
flex-direction: column !important;
align-items: center !important; 
}
.blaty-right {
width: 100%;
}
.blaty-box {
background: #fff;
border-radius: 10px;
box-shadow: 0 0 12px rgba(0,0,0,0.05);
padding: 20px;
width: 100%;
max-width: 600px; 
margin-bottom: 24px;
box-sizing: border-box;
}
#decor-preview-image {
width: 100%;
max-width: 350px;
height: auto;
max-height: 250px;
object-fit: contain;
display: block;
margin: 10px auto; 
border-radius: 6px;
} .blaty-form input[type="text"],
.blaty-form input[type="email"],
.blaty-form input[type="tel"],
.blaty-form input[type="number"],
.blaty-form select,
.blaty-form textarea {
width: 100%;
padding: 8px 10px;
margin-top: 6px;
margin-bottom: 12px;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 15px;
box-sizing: border-box;
}
.blaty-form label {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 4px;
margin-bottom: 8px;
}
.blaty-form label.checkbox-label {
flex-direction: row;
align-items: center;
}
.blaty-form button {
background: #0073aa;
color: white;
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 15px;
width: 100%;
}
.blaty-form button:hover {
background: #005f8d;
}
.blaty-form button:disabled {
background: #ccc;
cursor: not-allowed;
} .blaty-preview {
font-size: 15px;
margin-top: 20px;
padding: 15px;
background: #f9f9f9;
border-radius: 5px;
line-height: 1.6;
} .blaty-svg-title {
display: block;
font-size: 1.1em;
font-weight: bold;
text-align: center;
width: 100%;
max-width: 600px;
margin: 20px 0 15px 0;
box-sizing: border-box;
}
.svg-container {
width: 100%;
max-width: 600px;
padding: 10px 0;
box-sizing: border-box;
}
#tech-svg {
width: 100%;
height: auto;
border-radius: 8px;
background: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
display: block;
} .blaty-modal-open-btn {
display: flex;
align-items: center;
width: 100%;
padding: 10px;
font-size: 16px;
text-align: left;
background: #f9f9f9;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
transition: background 0.2s ease;
}
.blaty-modal-open-btn:hover {
background: #f1f1f1;
}
#selected-decor-thumb {
width: 40px;
height: 40px;
object-fit: cover;
border-radius: 4px;
margin-right: 15px;
border: 1px solid #ddd;
}
.blaty-modal-overlay {
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.6);
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
box-sizing: border-box;
}
.blaty-modal-content {
background-color: #fefefe;
margin: auto;
border-radius: 8px;
width: 100%;
max-width: 900px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
animation: modal-fade-in 0.3s;
display: flex;
flex-direction: column;
}
.blaty-modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 25px;
border-bottom: 1px solid #e5e5e5;
}
.blaty-modal-header h3 {
margin: 0;
font-size: 20px;
}
.blaty-modal-close {
font-size: 32px;
font-weight: bold;
color: #aaa;
background: none;
border: none;
cursor: pointer;
padding: 0 5px;
line-height: 1;
}
.blaty-modal-close:hover {
color: #333;
}
.blaty-modal-body {
padding: 25px;
max-height: 70vh;
overflow-y: auto;
}
@keyframes modal-fade-in {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
} .decor-selector {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
gap: 20px;
margin-top: 10px;
}
.decor-option {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
border: 2px solid #eee;
border-radius: 8px;
padding: 10px;
transition: all 0.2s ease;
}
.decor-option:hover {
border-color: #0073aa;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.decor-option img {
width: 90px;
height: 90px;
object-fit: cover;
border-radius: 6px;
margin-bottom: 8px;
}
.decor-option span {
font-size: 13px;
text-align: center;
font-weight: 500;
}
.decor-option input[type="radio"] {
display: none;
}
.decor-option input[type="radio"]:checked + img + span {
font-weight: bold;
color: #0073aa;
}
.decor-option.selected {
border-color: #0073aa;
background-color: #f4faff;
box-shadow: 0 0 10px rgba(0, 115, 170, 0.7);
}
.decor-preview-details-container {
text-align: center;
margin-top: 8px;
font-size: 14px;
color: #555;
line-height: 1.4;
}
.decor-preview-details-container span {
display: inline-block;
margin: 0 5px;
} .radio-shape {
background: #f4faff;
border: 1px solid #cce5ff;
padding: 10px 15px;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
}
.radio-shape:hover {
background: #e2f0ff;
} .blaty-filter-bar {
padding: 15px 25px;
background: #f4faff;
border-bottom: 1px solid #e5e5e5;
}
.filter-inputs {
display: flex;
gap: 15px;
margin-top: 10px;
}
.filter-inputs input {
flex: 1;
padding: 8px 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
.decor-max-info {
display: block;
font-size: 11px;
color: #888;
margin-top: 4px;
} .add-hole-btn {
background-color: #fff;
color: #0073aa;
border: 1px dashed #0073aa;
font-weight: bold;
}
.add-hole-btn:hover {
background-color: #f4faff;
color: #005f8d;
}
.hole-item-box {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 6px;
padding: 15px;
margin-bottom: 15px;
box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.remove-hole-btn {
background-color: #dc3545;
color: white;
border: none;
padding: 5px 10px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
width: auto !important;
}
.remove-hole-btn:hover {
background-color: #c82333;
} .blaty-locked {
opacity: 0.4;
pointer-events: none;
position: relative;
user-select: none;
transition: opacity 0.3s ease;
}
.blaty-lock-overlay {
display: none; }
.blaty-locked .blaty-lock-overlay {
display: block;
position: absolute;
top: 50px; left: 50%;
transform: translateX(-50%);
background: #d9534f;
color: white;
padding: 12px 20px;
border-radius: 8px;
font-weight: bold;
font-size: 14px;
z-index: 100;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
width: 80%;
text-align: center; pointer-events: none; 
}
.blaty-pulse-btn {
animation: blaty-pulse 2s infinite;
border: 2px solid #0073aa;
}
@keyframes blaty-pulse {
0% { box-shadow: 0 0 0 0 rgba(0, 115, 170, 0.4); }
70% { box-shadow: 0 0 0 12px rgba(0, 115, 170, 0); }
100% { box-shadow: 0 0 0 0 rgba(0, 115, 170, 0); }
} .viz-switch-label {
display: flex;
align-items: center;
cursor: pointer;
font-size: 14px;
font-weight: 500;
color: #0073aa;
background: #f4faff;
padding: 6px 12px;
border-radius: 20px;
border: 1px solid #cce5ff;
}
.viz-switch-label input {
display: none;
}
.viz-slider {
width: 34px;
height: 18px;
background-color: #ccc;
border-radius: 20px;
margin-right: 10px;
position: relative;
transition: 0.3s;
}
.viz-slider::before {
content: "";
position: absolute;
width: 14px;
height: 14px;
border-radius: 50%;
background-color: white;
top: 2px;
left: 2px;
transition: 0.3s;
}
.viz-switch-label input:checked + .viz-slider {
background-color: #0073aa;
}
.viz-switch-label input:checked + .viz-slider::before {
transform: translateX(16px);
}  .blaty-modal-header h3 {
font-size: 20px; margin: 0;
} .blaty-filter-bar strong {
font-size: 14px; 
} .blaty-filter-bar label {
font-size: 13px; 
cursor: pointer;
}.wpcdt-wrap, .wpcdt-wrap * {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; outline:none;}
.wpcdt-clearfix:before, .wpcdt-clearfix:after{content: ""; display: table;}
.wpcdt-clearfix::after{clear: both;}
.wpcdt-timer-wrap{position: relative; text-align:center; margin: auto auto 15px auto !important; z-index: 1;}
.wpcdt-clock{width: 100%; margin: 0 auto; line-height: normal;} .time_circles{position: relative;width: 100%;height: 100%;}
.time_circles > div{position: absolute;text-align: center;}
.time_circles > div > h4{margin: 0px;padding: 0px;text-align: center;text-transform: uppercase;}
.time_circles > div > span{display: block;width: 100%;text-align: center;font-size: 300%;margin-top: 0.4em;font-weight: bold;}:root { --dk-wcag-top: 200px;
--dk-wcag-contrast-bg: #000000;
--dk-wcag-contrast-text: #ffff00;
--dk-wcag-brand-color: #0073aa; }
.dk-wcag-wrapper {
position: fixed;
top: var(--dk-wcag-top); z-index: 999999;
font-family: sans-serif; }
#dk-wcag-trigger {
background: var(--dk-wcag-brand-color);
color: #fff;
border: none;
padding: 12px; cursor: pointer;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
transition: background 0.3s;
}
#dk-wcag-trigger:hover {
filter: brightness(1.1);
}
.dk-wcag-panel {
position: absolute;
top: 0;
width: 250px;
background: #fff;
border: 1px solid #ddd; transition: all 0.3s ease-in-out;
padding: 15px;
}
.dk-wcag-header {
font-weight: bold;
margin-bottom: 10px;
font-size: 16px;
border-bottom: 1px solid #eee;
padding-bottom: 5px;
color: #333;
}
.dk-wcag-options button {
display: flex;
align-items: center;
width: 100%;
margin-bottom: 8px;
padding: 10px;
text-align: left;
background: #f5f5f5;
border: 1px solid #eee;
cursor: pointer;
color: #333;
font-size: 14px;
transition: all 0.2s;
}
.dk-wcag-options button .icon {
margin-right: 10px;
font-weight: bold;
width: 20px;
text-align: center;
}
.dk-wcag-options button:hover {
background: #e9e9e9;
}
.dk-wcag-options button.active {
background: var(--dk-wcag-brand-color);
color: #fff;
border-color: var(--dk-wcag-brand-color);
}  body.dk-wcag-contrast {
background-color: var(--dk-wcag-contrast-bg) !important;
color: var(--dk-wcag-contrast-text) !important;
}
body.dk-wcag-contrast * {
background-color: var(--dk-wcag-contrast-bg) !important;
color: var(--dk-wcag-contrast-text) !important;
border-color: var(--dk-wcag-contrast-text) !important;
box-shadow: none !important;
text-shadow: none !important;
} body.dk-wcag-contrast img,
body.dk-wcag-contrast svg {
filter: grayscale(100%) contrast(120%);
background: transparent !important;
} body.dk-wcag-contrast .dk-wcag-panel,
body.dk-wcag-contrast .dk-wcag-panel * {
background-color: #fff !important;
color: #000 !important; 
border-color: #ddd !important;
}
body.dk-wcag-contrast .dk-wcag-options button.active {
background-color: #000 !important;
color: #fff !important;
border: 2px solid #000 !important;
} html.dk-wcag-fontsize {
font-size: 120% !important;
} body.dk-wcag-links a {
text-decoration: underline !important;
text-decoration-thickness: 3px !important;
text-underline-offset: 3px;
} :focus-visible {
outline: 3px solid var(--dk-wcag-brand-color) !important;
outline-offset: 2px !important;
}
body.dk-wcag-contrast :focus-visible {
outline: 3px solid var(--dk-wcag-contrast-text) !important;
background-color: var(--dk-wcag-contrast-bg) !important;
color: var(--dk-wcag-contrast-text) !important;
}