.ktk-bmh-modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(4px);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ktk-bmh-modal-overlay.active {
opacity: 1;
visibility: visible;
} body.ktk-bmh-modal-open {
overflow: hidden !important;
} .ktk-bmh-address-input:focus {
outline: none !important;
border-color: rgb(255, 233, 0) !important;
box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1) !important;
position: relative !important;
z-index: 2 !important;
} .ktk-bmh-modal-overlay {
position: fixed !important;
z-index: 9999 !important;
}
.ktk-bmh-modal {
position: relative !important;
z-index: 9999 !important;
} .ktk-bmh-modal * {
box-sizing: border-box;
} .ktk-bmh-modal .pac-container {
font-family: inherit !important;
font-size: 14px !important;
} .ktk-bmh-modal {
background: #ffffff;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
max-width: 448px;
width: 90%;
height: 80vh; max-height: 80vh;
overflow: hidden; position: relative;
transform: scale(0.9) translateY(20px);
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
display: flex;
flex-direction: column;
}
.ktk-bmh-modal-overlay.active .ktk-bmh-modal {
transform: scale(1) translateY(0);
} .ktk-bmh-modal-header {
padding: 8px 12px 0;
position: relative;
flex-shrink: 0; } .ktk-bmh-header-top {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 8px;
}
.ktk-bmh-modal-close {
background: none;
border: none;
font-size: 24px;
color: rgb(39, 40, 45);
cursor: pointer;
padding: 8px !important;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
margin-left: auto; }
.ktk-bmh-modal-close:hover,
.ktk-bmh-modal-close:focus,
.ktk-bmh-modal-close:active {
background: rgb(255, 233, 0) !important;
color: rgb(39, 40, 45);
} .ktk-bmh-btn-back-header {
background: rgb(255, 233, 0) !important;
border: none;
font-size: 20px;
color: rgb(39, 40, 45);
cursor: pointer;
padding: 8px !important;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
flex-shrink: 0; }
.ktk-bmh-btn-back-header:hover,
.ktk-bmh-btn-back-header:focus,
.ktk-bmh-btn-back-header:active {
background: rgb(255, 233, 0) !important;
color: rgb(39, 40, 45);
}
.ktk-bmh-modal-title {
font-size: 18px !important;
font-weight: 600 !important;
color: #1a1a1a;
margin: 0; line-height: 1.3;
flex: 1; }
.ktk-bmh-modal-subtitle {
font-size: 16px !important;
font-weight: 600 !important;
color: rgb(39, 40, 45);
margin: 0 0 12px;
line-height: 1.5;
} .ktk-bmh-progress {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 24px;
position: relative;
width: 100%;
border-radius: 5px;
}
.ktk-bmh-progress[data-step="1"]::after { width: 0%; }
.ktk-bmh-progress[data-step="2"]::after { width: 50%; }
.ktk-bmh-progress[data-step="3"]::after { width: 100%; }
.ktk-bmh-progress-step {
width: 33%;
height: 10px;
border-radius: 0;
background: #e5e5e5;
display: flex;
position: relative;
z-index: 3;
transition: all 0.3s ease;
}
.ktk-bmh-progress-step.active {
background: rgb(255, 233, 0);
}
.ktk-bmh-progress-step.completed {
background: rgb(255, 233, 0);
} .ktk-bmh-modal-body {
padding: 0 24px 12px;
flex: 1; overflow: hidden; display: flex;
flex-direction: column;
} .ktk-bmh-step {
display: none;
flex: 1; overflow: hidden; overflow-y: auto; flex-direction: column;
}
.ktk-bmh-step.active {
display: flex; animation: fadeInUp 0.4s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .ktk-bmh-search-input {
width: 100%;
padding: 12px 16px;
border: 1px solid rgb(226, 226, 226);
border-radius: 8px;
font-size: 16px;
margin-bottom: 10px;
transition: border-color 0.2s ease;
background: #ffffff;
}
.ktk-bmh-search-input:focus {
outline: none;
border-color: #000;
box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
.ktk-bmh-search-input::placeholder {
color: #999;
font-style: italic;
} .ktk-bmh-step-content-fixed {
flex-shrink: 0; }
.ktk-bmh-step-content-scrollable {
flex: 1; max-height: 430px;
overflow: hidden;
display: flex;
flex-direction: column;
} .ktk-bmh-load-more-container {
display: none;
text-align: center;
margin-top: 20px;
padding: 20px 0;
}
.ktk-bmh-load-more-btn {
background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
color: #333;
border: 2px solid #ddd;
border-radius: 8px;
padding: 12px 24px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
min-width: 120px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.ktk-bmh-load-more-btn:hover {
background: linear-gradient(135deg, #e8e8e8 0%, #ddd 100%);
border-color: #bbb;
transform: translateY(-1px);
}
.ktk-bmh-load-more-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none;
} .ktk-bmh-scroll-loading {
text-align: center;
padding: 15px;
color: rgb(39, 40, 45);
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
opacity: 0;
animation: fadeInOut 1.5s ease-in-out infinite;
}
@keyframes fadeInOut {
0%, 100% { opacity: 0.3; }
50% { opacity: 0.8; }
} .ktk-bmh-options-container {
flex: 1;
overflow-y: auto;
padding-right: 4px;
min-height: 0;
} .ktk-bmh-options-container::-webkit-scrollbar {
width: 6px;
}
.ktk-bmh-options-container::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.ktk-bmh-options-container::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 3px;
}
.ktk-bmh-options-container::-webkit-scrollbar-thumb:hover {
background: #a1a1a1;
} .ktk-bmh-options-grid.loading::after {
content: '';
display: block;
width: 100%;
height: 40px;
background: linear-gradient(90deg, transparent, rgba(0, 124, 186, 0.1), transparent);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
border-radius: 8px;
margin-top: 16px;
}
@keyframes shimmer {
0% {
background-position: -200% 0;
}
100% {
background-position: 200% 0;
}
}
.ktk-bmh-option-card {
padding: 6px 12px;
border-bottom: 1px solid rgb(226, 226, 226);
}
.ktk-bmh-option-card:last-child {
border-bottom: none;
}
.ktk-bmh-option-card:focus,
.ktk-bmh-option-card:hover {
cursor: pointer;
background: rgb(254, 249, 195);
}
.ktk-bmh-option-card.selected {
background: rgb(255, 233, 0);
position: relative;
}
.ktk-bmh-option-card.selected::after {
content: '✓';
position: absolute;
right: 20px;
top: 8px;
pointer-events: none;
} .ktk-bmh-option-card.search-result {
border: 2px solid rgb(255, 233, 0);
background: rgba(0, 124, 186, 0.02);
}
.ktk-bmh-option-title {
font-size: 16px !important;
font-weight: 400 !important;
font-style: normal !important;
color: rgb(39, 40, 45);
margin-bottom: 4px;    
} .ktk-bmh-empty-search {
text-align: center;
padding: 40px 20px;
color: rgb(39, 40, 45);
}
.ktk-bmh-empty-search h4 {
margin: 0 0 8px;
color: #333;
}
.ktk-bmh-empty-search p {
margin: 0;
font-size: 14px;
} .ktk-bmh-location-section {
margin-bottom: 24px;
}
.ktk-bmh-location-options {
display: flex;
flex-direction: column;
gap: 16px;
}
.ktk-bmh-address-option {
flex: 1;
}
.ktk-bmh-address-input.disabled {
background: #f8f9fa;
color: #6c757d;
cursor: not-allowed;
border-color: #e9ecef;
}
.ktk-bmh-location-separator {
text-align: center;
position: relative;
margin: 0;
}
.ktk-bmh-location-separator::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: #e9ecef;
z-index: 1;
}
.ktk-bmh-location-separator span {
background: white;
padding: 0 16px;
color: #6c757d;
font-size: 14px;
position: relative;
z-index: 2;
}
.ktk-bmh-geolocation-option {
flex: 1;
}
.ktk-bmh-skip-btn {
margin-top: 24px;
}
.ktk-bmh-skip-btn,
.ktk-bmh-geolocation-btn {
width: 100%;
padding: 8px !important;
background: #fff !important;
color: rgb(51, 51, 51) !important;
border: 1px solid rgb(51, 51, 51);
border-radius: 12px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.ktk-bmh-skip-btn:hover,
.ktk-bmh-geolocation-btn:hover {
color: rgb(51, 51, 51) !important;
background: rgb(255, 233, 0) !important;
}
.ktk-bmh-skip-btn.selected {
background: rgb(171, 249, 93) !important;
color: rgb(51, 51, 51) !important;
}
.ktk-bmh-geolocation-btn:disabled {
background: #ccc !important;
cursor: not-allowed;
}
.ktk-bmh-geolocation-btn.success,
.ktk-bmh-geolocation-btn.success:hover {
color: rgb(51, 51, 51) !important;
background: rgb(171, 249, 93) !important;
} .ktk-bmh-time-section {
margin-bottom: 24px;
}
.ktk-bmh-time-toggle {
display: flex;
gap: 16px;
margin-bottom: 16px;
}
.ktk-bmh-time-option {
flex: 1;
padding: 16px;
border: 2px solid #e5e5e5;
border-radius: 12px;
text-align: center;
cursor: pointer;
transition: all 0.2s ease;
background: white;
}
.ktk-bmh-time-option:hover {
border-color: rgb(255, 233, 0);
}
.ktk-bmh-time-option.selected {
border-color: rgb(255, 233, 0);
background-color: rgb(255, 233, 0);
} .ktk-bmh-time-inputs-always-visible {
display: flex;
gap: 16px;
margin-bottom: 8px;
}
.ktk-bmh-time-inputs-always-visible .ktk-bmh-date-input,
.ktk-bmh-time-inputs-always-visible .ktk-bmh-time-select {
padding: 12px;
border: 2px solid #e5e5e5;
border-radius: 8px;
font-size: 14px;
transition: border-color 0.2s ease;
width: 50%;
} .ktk-bmh-time-inputs-always-visible .ktk-bmh-date-input:disabled,
.ktk-bmh-time-inputs-always-visible .ktk-bmh-time-select:disabled,
.ktk-bmh-time-inputs-always-visible .ktk-bmh-date-input.disabled,
.ktk-bmh-time-inputs-always-visible .ktk-bmh-time-select.disabled {
background: #f8f9fa;
color: #6c757d;
cursor: not-allowed;
border-color: #e9ecef;
opacity: 0.6;
}
.ktk-bmh-time-inputs-always-visible .ktk-bmh-date-input:disabled:focus,
.ktk-bmh-time-inputs-always-visible .ktk-bmh-time-select:disabled:focus,
.ktk-bmh-time-inputs-always-visible .ktk-bmh-date-input.disabled:focus,
.ktk-bmh-time-inputs-always-visible .ktk-bmh-time-select.disabled:focus {
border-color: #e9ecef;
outline: none;
} .ktk-bmh-emergency-separator {
display: flex;
align-items: center;
margin: 0 0 8px;
gap: 16px;
}
.ktk-bmh-emergency-separator-line {
flex: 1;
height: 1px;
background: linear-gradient(90deg, transparent 0%, #e5e5e5 20%, #e5e5e5 80%, transparent 100%);
}
.ktk-bmh-emergency-separator-text {
text-align: center;
font-size: 14px;
color: rgb(39, 40, 45);
opacity: 0.7;
white-space: nowrap;
padding: 0 8px;
}
.ktk-bmh-emergency-line-1 {
font-weight: 500;
margin-bottom: 2px;
}
.ktk-bmh-emergency-line-2 {
font-size: 13px;
opacity: 0.8;
} .ktk-bmh-emergency-option {
width: 100%;
}
.ktk-bmh-emergency-option .ktk-bmh-time-option {
width: 100%;
padding: 8px;
background: #fff;
color: rgb(51, 51, 51);
border: 1px solid rgb(51, 51, 51);
border-radius: 30px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
text-align: center;
transition: all 0.2s ease;
}
.ktk-bmh-emergency-option .ktk-bmh-time-option:hover {
background-color: rgb(255, 233, 0);
}
.ktk-bmh-emergency-option .ktk-bmh-time-option.selected {
color: #fff;
background-color: rgb(255, 66, 66);
} .ktk-bmh-modal-footer {
padding: 8px 12px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
flex-shrink: 0;
}
.ktk-bmh-btn {
padding: 12px 24px;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
}
.ktk-bmh-btn-primary {
background: rgb(255, 233, 0);
color: white;
}
.ktk-bmh-btn-primary:hover {
background: #005a87;
}
.ktk-bmh-btn-primary:disabled {
background: #ccc;
cursor: not-allowed;
}
.ktk-bmh-btn-outline {
background: transparent;
color: rgb(255, 233, 0);
border: 2px solid rgb(255, 233, 0);
}
.ktk-bmh-btn-outline:hover {
background: rgb(255, 233, 0);
color: white;
} .ktk-bmh-btn-small {
padding: 8px 16px;
font-size: 14px;
}
.ktk-bmh-btn-medium {
padding: 12px 24px;
font-size: 16px;
}
.ktk-bmh-btn-large {
padding: 16px 32px;
font-size: 18px;
} .ktk-bmh-block-wrapper {
margin: 16px 0;
} .ktk-bmh-loading {
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
color: rgb(39, 40, 45);
}
.ktk-bmh-spinner {
width: 20px;
height: 20px;
border: 2px solid #e5e5e5;
border-top: 2px solid rgb(255, 233, 0);
border-radius: 50%;
animation: spin 1s linear infinite;
margin-right: 12px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} .ktk-bmh-error {
background: #fff5f5;
border: 1px solid #fed7d7;
border-radius: 8px;
padding: 16px;
color: #c53030;
margin-bottom: 16px;
} .ktk-bmh-empty {
text-align: center;
padding: 40px;
color: rgb(39, 40, 45);
}
.ktk-bmh-empty-icon {
font-size: 48px;
margin-bottom: 16px;
opacity: 0.3;
} @media (max-width: 768px) {
.ktk-bmh-modal {
width: 90%;
border-radius: 12px;
}
.ktk-bmh-step {
overflow-y: auto;
}
.ktk-bmh-modal-header,
.ktk-bmh-modal-body,
.ktk-bmh-modal-footer {
padding-left: 20px;
padding-right: 20px;
}
.ktk-bmh-modal-title {
font-size: 18px !important;
}
.ktk-bmh-options-grid {
grid-template-columns: 1fr;
}
.ktk-bmh-time-inputs {
grid-template-columns: 1fr;
}
.ktk-bmh-modal-footer {
flex-direction: column-reverse;
}
.ktk-bmh-btn {
width: 100%;
justify-content: center;
}
}
@media (max-width: 480px) {
.ktk-bmh-modal {
width: 100%;
height: 100%;
max-height: 100vh;
border-radius: 0;
}
.ktk-bmh-step {
overflow-y: auto;
}
.ktk-bmh-time-toggle {
flex-direction: column;
}
.ktk-bmh-location-options {
gap: 12px;
}
.ktk-bmh-location-separator span {
font-size: 13px;
}
} .ktk-bmh-trigger-btn {
background: rgb(255, 233, 0);
color: rgb(39, 40, 45);
border: none;
padding: 10px 13px;
border-radius: 15px;
font-size: 23px;
font-weight: 700;
cursor: pointer;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
text-transform: uppercase;
}  .ktk-bmh-sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
} .ktk-bmh-modal-close:focus,
.ktk-bmh-option-card:focus,
.ktk-bmh-btn:focus,
.ktk-bmh-trigger-btn:focus {
background-color: rgb(255, 233, 0);
} .ktk-bmh-step-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
padding-bottom: 8px;
border-bottom: 1px solid #f0f0f0;
} .ktk-bmh-btn-back-small {
padding: 8px 16px;
background: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
color: #495057;
cursor: pointer;
transition: all 0.2s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 4px;
}
.ktk-bmh-btn-back-small:hover {
background: #e9ecef;
color: #343a40;
border-color: #adb5bd;
transform: translateX(-2px);
}
.ktk-bmh-btn-back-small:active {
transform: translateX(-1px);
} .ktk-bmh-breadcrumb {
font-size: 14px;
color: #6c757d;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
flex: 1;
margin-left: 16px;
}
.ktk-bmh-breadcrumb-category {
color: #495057;
font-weight: 600;
}
.ktk-bmh-breadcrumb-separator {
color: #adb5bd;
font-weight: 400;
}
.ktk-bmh-breadcrumb-service {
color: #495057;
font-weight: 500;
} .ktk-bmh-btn-full-width {
width: 100% !important;
margin: 0 !important;
justify-content: center;
font-size: 16px;
font-weight: 600;
padding: 16px 24px;
} .ktk-bmh-modal-footer {
display: flex;
flex-direction: column;
gap: 0;
padding: 8px 12px;
border-radius: 0 0 12px 12px;
}.ktk-bmh-slider-wrapper {
position: relative;
margin: 20px 0;
}
.ktk-bmh-slider-wrapper .swiper {
width: 100%;
overflow: hidden;
padding: 0 10px;
}
.ktk-bmh-slider-wrapper .swiper-wrapper {
display: flex;
align-items: stretch;
} .ktk-bmh-slider-wrapper .swiper-slide {
flex-shrink: 0;
height: auto;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.ktk-bmh-slider-slide {
overflow: hidden;
cursor: pointer;
height: 100%;
display: flex;
flex-direction: column;
transition: border-color 0.3s ease, border-bottom 0.3s ease;
border-bottom: 3px solid transparent;
}
.ktk-bmh-slider-slide:hover {
border-bottom: 3px solid #2575fc;
} .ktk-bmh-slider-image {
width: 100%;
height: auto;
object-fit: contain;
overflow: hidden;
flex-shrink: 0;
}
.ktk-bmh-slider-image img {
width: 100%;
height: 100%;
object-fit: contain;
} .ktk-bmh-slider-content {
padding: 0 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.ktk-bmh-slider-title {
font-size: 17px !important;
font-weight: 700 !important;
margin-bottom: 0;
color: #000;
line-height: 1.5;
font-style: normal !important;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
}
.ktk-bmh-slider-subtitle {
font-size: 16px;
font-weight: 400;
margin-bottom: 0;
color: #939393;
line-height: 1.5;
flex-grow: 1;
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
} .ktk-bmh-slider-wrapper .swiper-button-next,
.ktk-bmh-slider-wrapper .swiper-button-prev {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10;
color: #333;
font-size: 0;
margin-top: 0;
}
.ktk-bmh-slider-wrapper .swiper-button-next:after,
.ktk-bmh-slider-wrapper .swiper-button-prev:after {
display: none;
}
.ktk-bmh-slider-wrapper .swiper-button-next .icon,
.ktk-bmh-slider-wrapper .swiper-button-prev .icon {
font-size: 40px;
line-height: 1;
color: #333;
transition: color 0.3s ease;
}
.ktk-bmh-slider-wrapper .swiper-button-next:hover .icon,
.ktk-bmh-slider-wrapper .swiper-button-prev:hover .icon {
color: #007cba;
}
.ktk-bmh-slider-wrapper .swiper-button-disabled {
opacity: 0.4;
cursor: not-allowed;
pointer-events: none;
}
.ktk-bmh-slider-wrapper .swiper-button-prev {
left: -18px;
}
.ktk-bmh-slider-wrapper .swiper-button-next {
right: -18px;
} @media (max-width: 768px) {
.ktk-bmh-slider-wrapper .swiper-button-prev,
.ktk-bmh-slider-wrapper .swiper-button-next {
display: none;
}
.ktk-bmh-slider-content {
padding: 0 15px;
}
.ktk-bmh-slider-title {
font-size: 16px !important;
}
.ktk-bmh-slider-subtitle {
font-size: 14px !important;
}
}html{line-height:1.15;-webkit-text-size-adjust:100%}*,:after,:before{box-sizing:border-box}body{background-color:#fff;color:#333;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-size:1rem;font-weight:400;line-height:1.5;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,h2,h3,h4,h5,h6{color:inherit;font-family:inherit;font-weight:500;line-height:1.2;margin-block-end:1rem;margin-block-start:.5rem}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.5rem}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-block-end:.9rem;margin-block-start:0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em;white-space:pre-wrap}a{background-color:transparent;color:#c36;text-decoration:none}a:active,a:hover{color:#336}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}abbr[title]{border-block-end:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none;height:auto;max-width:100%}details{display:block}summary{display:list-item}figcaption{color:#333;font-size:16px;font-style:italic;font-weight:400;line-height:1.4}[hidden],template{display:none}@media print{*,:after,:before{background:transparent!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre{white-space:pre-wrap!important}blockquote,pre{-moz-column-break-inside:avoid;border:1px solid #ccc;break-inside:avoid}thead{display:table-header-group}img,tr{-moz-column-break-inside:avoid;break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{-moz-column-break-after:avoid;break-after:avoid}}label{display:inline-block;line-height:1;vertical-align:middle}button,input,optgroup,select,textarea{font-family:inherit;font-size:1rem;line-height:1.5;margin:0}input[type=date],input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{border:1px solid #666;border-radius:3px;padding:.5rem 1rem;transition:all .3s;width:100%}input[type=date]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#333}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;width:auto}[type=button],[type=submit],button{background-color:transparent;border:1px solid #c36;border-radius:3px;color:#c36;display:inline-block;font-size:1rem;font-weight:400;padding:.5rem 1rem;text-align:center;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}[type=button]:focus:not(:focus-visible),[type=submit]:focus:not(:focus-visible),button:focus:not(:focus-visible){outline:none}[type=button]:focus,[type=button]:hover,[type=submit]:focus,[type=submit]:hover,button:focus,button:hover{background-color:#c36;color:#fff;text-decoration:none}[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto;resize:vertical}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}select{display:block}table{background-color:transparent;border-collapse:collapse;border-spacing:0;font-size:.9em;margin-block-end:15px;width:100%}table td,table th{border:1px solid hsla(0,0%,50%,.502);line-height:1.5;padding:15px;vertical-align:top}table th{font-weight:700}table tfoot th,table thead th{font-size:1em}table caption+thead tr:first-child td,table caption+thead tr:first-child th,table colgroup+thead tr:first-child td,table colgroup+thead tr:first-child th,table thead:first-child tr:first-child td,table thead:first-child tr:first-child th{border-block-start:1px solid hsla(0,0%,50%,.502)}table tbody>tr:nth-child(odd)>td,table tbody>tr:nth-child(odd)>th{background-color:hsla(0,0%,50%,.071)}table tbody tr:hover>td,table tbody tr:hover>th{background-color:hsla(0,0%,50%,.102)}table tbody+tbody{border-block-start:2px solid hsla(0,0%,50%,.502)}@media(max-width:767px){table table{font-size:.8em}table table td,table table th{line-height:1.3;padding:7px}table table th{font-weight:400}}dd,dl,dt,li,ol,ul{background:transparent;border:0;font-size:100%;margin-block-end:0;margin-block-start:0;outline:0;vertical-align:baseline}.comments-area a,.page-content a{text-decoration:underline}.alignright{float:right;margin-left:1rem}.alignleft{float:left;margin-right:1rem}.aligncenter{clear:both;display:block;margin-inline:auto}.alignwide{margin-inline:-80px}.alignfull{margin-inline:calc(50% - 50vw);max-width:100vw}.alignfull,.alignfull img{width:100vw}.wp-caption{margin-block-end:1.25rem;max-width:100%}.wp-caption.alignleft{margin:5px 20px 20px 0}.wp-caption.alignright{margin:5px 0 20px 20px}.wp-caption img{display:block;margin-inline:auto}.wp-caption-text{margin:0}.gallery-caption{display:block;font-size:.8125rem;line-height:1.5;margin:0;padding:.75rem}.pagination{display:flex;justify-content:space-between;margin:20px auto}.sticky{display:block;position:relative}.bypostauthor{font-size:inherit}.hide{display:none!important}.post-password-form{margin:50px auto;max-width:500px}.post-password-form p{align-items:flex-end;display:flex;width:100%}.post-password-form [type=submit]{margin-inline-start:3px}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#eee;clip:auto!important;clip-path:none;color:#333;display:block;font-size:1rem;height:auto;left:5px;line-height:normal;padding:12px 24px;text-decoration:none;top:5px;width:auto;z-index:100000}.post .entry-title a{text-decoration:none}.post .wp-post-image{max-height:500px;-o-object-fit:cover;object-fit:cover;width:100%}@media(max-width:991px){.post .wp-post-image{max-height:400px}}@media(max-width:575px){.post .wp-post-image{max-height:300px}}#comments .comment-list{font-size:.9em;list-style:none;margin:0;padding:0}#comments .comment,#comments .pingback{position:relative}#comments .comment .comment-body,#comments .pingback .comment-body{border-block-end:1px solid #ccc;display:flex;flex-direction:column;padding-block-end:30px;padding-block-start:30px;padding-inline-end:0;padding-inline-start:60px}#comments .comment .avatar,#comments .pingback .avatar{border-radius:50%;left:0;margin-inline-end:10px;position:absolute}body.rtl #comments .comment .avatar,body.rtl #comments .pingback .avatar,html[dir=rtl] #comments .comment .avatar,html[dir=rtl] #comments .pingback .avatar{left:auto;right:0}#comments .comment-meta{display:flex;justify-content:space-between;margin-block-end:.9rem}#comments .comment-metadata,#comments .reply{font-size:11px;line-height:1}#comments .children{list-style:none;margin:0;padding-inline-start:30px;position:relative}#comments .children li:last-child{padding-block-end:0}#comments ol.comment-list .children:before{content:"↪";display:inline-block;font-size:1em;font-weight:400;left:0;line-height:100%;position:absolute;top:45px;width:auto}body.rtl #comments ol.comment-list .children:before,html[dir=rtl] #comments ol.comment-list .children:before{content:"↩";left:auto;right:0}@media(min-width:768px){#comments .comment-author,#comments .comment-metadata{line-height:1}}@media(max-width:767px){#comments .comment .comment-body{padding:30px 0}#comments .children{padding-inline-start:20px}#comments .comment .avatar{float:left;position:inherit}body.rtl #comments .comment .avatar,html[dir=rtl] #comments .comment .avatar{float:right}}.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{margin-inline-end:auto;margin-inline-start:auto;width:100%}@media(max-width:575px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{padding-inline-end:10px;padding-inline-start:10px}}@media(min-width:576px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:500px}.site-footer.footer-full-width .footer-inner,.site-header.header-full-width .header-inner{max-width:100%}}@media(min-width:768px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:600px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}@media(min-width:992px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:800px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}@media(min-width:1200px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:1140px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}.site-header+.elementor{min-height:calc(100vh - 320px)}.site-header{display:flex;flex-wrap:wrap;justify-content:space-between;padding-block-end:1rem;padding-block-start:1rem;position:relative}.site-header .site-title{font-size:2.5rem;font-weight:500;line-height:1.2}.site-header .site-branding{display:flex;flex-direction:column;gap:.5rem;justify-content:center}.site-header .header-inner{display:flex;flex-wrap:wrap;justify-content:space-between}.site-header .header-inner .custom-logo-link{display:block}.site-header .header-inner .site-branding .site-description,.site-header .header-inner .site-branding .site-title{margin:0}.site-header .header-inner .site-branding .site-logo img{display:block}.site-header .header-inner .site-branding.show-logo .site-title,.site-header .header-inner .site-branding.show-title .site-logo{display:none!important}.site-header.header-inverted .header-inner{flex-direction:row-reverse}.site-header.header-inverted .header-inner .site-branding{text-align:end}.site-header.header-stacked .header-inner{align-items:center;flex-direction:column;text-align:center}.site-footer{padding-block-end:1rem;padding-block-start:1rem;position:relative}.site-footer .site-title{font-size:1.5rem;font-weight:500;line-height:1.2}.site-footer .site-branding{display:flex;flex-direction:column;gap:.5rem;justify-content:center}.site-footer .footer-inner{display:flex;flex-wrap:wrap;justify-content:space-between}.site-footer .footer-inner .custom-logo-link{display:block}.site-footer .footer-inner .site-branding .site-description,.site-footer .footer-inner .site-branding .site-title{margin:0}.site-footer .footer-inner .site-branding .site-logo img{display:block}.site-footer .footer-inner .site-branding.show-logo .site-title,.site-footer .footer-inner .site-branding.show-title .site-logo{display:none!important}.site-footer .footer-inner .copyright{align-items:center;display:flex;justify-content:flex-end}.site-footer .footer-inner .copyright p{margin:0}.site-footer.footer-inverted .footer-inner{flex-direction:row-reverse}.site-footer.footer-inverted .footer-inner .site-branding{text-align:end}.site-footer.footer-stacked .footer-inner{align-items:center;flex-direction:column;text-align:center}.site-footer.footer-stacked .footer-inner .site-branding .site-title{text-align:center}.site-footer.footer-stacked .footer-inner .site-navigation .menu{padding:0}@media(max-width:576px){.site-footer:not(.footer-stacked) .footer-inner .copyright,.site-footer:not(.footer-stacked) .footer-inner .site-branding,.site-footer:not(.footer-stacked) .footer-inner .site-navigation{display:block;max-width:none;text-align:center;width:100%}.site-footer .footer-inner .site-navigation ul.menu{justify-content:center}.site-footer .footer-inner .site-navigation ul.menu li{display:inline-block}}.site-header.header-stacked .site-navigation-toggle-holder{justify-content:center;max-width:100%}.site-header.menu-layout-dropdown .site-navigation{display:none}.site-navigation-toggle-holder{align-items:center;display:flex;padding:8px 15px}.site-navigation-toggle-holder .site-navigation-toggle{align-items:center;background-color:rgba(0,0,0,.05);border:0 solid;border-radius:3px;color:#494c4f;cursor:pointer;display:flex;justify-content:center;padding:.5rem}.site-navigation-toggle-holder .site-navigation-toggle-icon{display:block;width:1.25rem}.site-navigation-toggle-holder .site-navigation-toggle-icon:after,.site-navigation-toggle-holder .site-navigation-toggle-icon:before{background-color:currentColor;border-radius:3px;content:"";display:block;height:3px;transition:all .2s ease-in-out}.site-navigation-toggle-holder .site-navigation-toggle-icon:before{box-shadow:0 .35rem 0 currentColor;margin-block-end:.5rem}.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:before{box-shadow:none;transform:translateY(.35rem) rotate(45deg)}.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:after{transform:translateY(-.35rem) rotate(-45deg)}.site-navigation{align-items:center;display:flex}.site-navigation ul.menu,.site-navigation ul.menu ul{list-style-type:none;padding:0}.site-navigation ul.menu{display:flex;flex-wrap:wrap}.site-navigation ul.menu li{display:flex;position:relative}.site-navigation ul.menu li a{display:block;padding:8px 15px}.site-navigation ul.menu li.menu-item-has-children{padding-inline-end:15px}.site-navigation ul.menu li.menu-item-has-children:after{align-items:center;color:#666;content:"▾";display:flex;font-size:1.5em;justify-content:center;text-decoration:none}.site-navigation ul.menu li.menu-item-has-children:focus-within>ul{display:block}.site-navigation ul.menu li ul{background:#fff;display:none;left:0;min-width:150px;position:absolute;top:100%;z-index:2}.site-navigation ul.menu li ul li{border-block-end:1px solid #eee}.site-navigation ul.menu li ul li:last-child{border-block-end:none}.site-navigation ul.menu li ul li.menu-item-has-children a{flex-grow:1}.site-navigation ul.menu li ul li.menu-item-has-children:after{transform:translateY(-50%) rotate(-90deg)}.site-navigation ul.menu li ul ul{left:100%;top:0}.site-navigation ul.menu li:hover>ul{display:block}footer .site-navigation ul.menu li ul{bottom:100%;top:auto}footer .site-navigation ul.menu li ul ul{bottom:0}footer .site-navigation ul.menu a{padding:5px 15px}.site-navigation-dropdown{bottom:0;left:0;margin-block-start:10px;position:absolute;transform-origin:top;transition:max-height .3s,transform .3s;width:100%;z-index:10000}.site-navigation-toggle-holder:not(.elementor-active)+.site-navigation-dropdown{max-height:0;transform:scaleY(0)}.site-navigation-toggle-holder.elementor-active+.site-navigation-dropdown{max-height:100vh;transform:scaleY(1)}.site-navigation-dropdown ul{padding:0}.site-navigation-dropdown ul.menu{background:#fff;margin:0;padding:0;position:absolute;width:100%}.site-navigation-dropdown ul.menu li{display:block;position:relative;width:100%}.site-navigation-dropdown ul.menu li a{background:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.102);color:#55595c;display:block;padding:20px}.site-navigation-dropdown ul.menu li.current-menu-item a{background:#55595c;color:#fff}.site-navigation-dropdown ul.menu>li li{max-height:0;transform:scaleY(0);transform-origin:top;transition:max-height .3s,transform .3s}.site-navigation-dropdown ul.menu li.elementor-active>ul>li{max-height:100vh;transform:scaleY(1)}@media(max-width:576px){.site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation{display:none!important}}@media(min-width:768px){.site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation-toggle-holder{display:none!important}}@media(min-width:576px)and (max-width:767px){.site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation{display:none!important}}@media(min-width:992px){.site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .site-navigation-toggle-holder{display:none!important}}@media(max-width:992px){.site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .site-navigation{display:none!important}}.site-header.menu-dropdown-none:not(.menu-layout-dropdown) .site-navigation-toggle-holder{display:none!important}