.elementor-1720 .elementor-element.elementor-element-12876623{--display:flex;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-1720 .elementor-element.elementor-element-42463a25 > .elementor-widget-container{margin:0px 15px 0px 15px;}#elementor-popup-modal-1720{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-1720 .dialog-message{width:600px;height:auto;}#elementor-popup-modal-1720 .dialog-close-button{display:flex;}#elementor-popup-modal-1720 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:1024px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}.elementor-1720 .elementor-element.elementor-element-42463a25{width:var( --container-widget-width, 595px );max-width:595px;--container-widget-width:595px;--container-widget-flex-grow:0;}.elementor-1720 .elementor-element.elementor-element-42463a25.elementor-element{--align-self:center;}}/* Start custom CSS for html, class: .elementor-element-42463a25 *//* Central alignment for the toggle switch */
.toggle-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}

/* Labels for the toggle (CM / IN) */
.toggle-label {
  font-weight: 400;
}

/* Slider switch container */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

/* Hide the actual checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider (background and toggle circle) */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 20px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

/* When the checkbox is checked */
.switch input:checked + .slider {
  background-color: #000;
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* Table container styling */
.toggle-container {
  font-family: 'Josefin Sans', sans-serif;
  margin-top: 20px;
}

.toggle-container table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.toggle-container table th, .toggle-container table td {
  padding: 10px;
  border: 1px solid #ccc;
}

.toggle-container table th {
  background-color: #f4f4f4;
  font-weight: bold;
  text-transform: uppercase;
}

/* Centre-align the table headers */
.toggle-container table th {
    text-align: center; /* Centre the text */
    vertical-align: middle; /* Align vertically in the middle */
}

/* Optional: Centre the table data for consistency */
.toggle-container table td {
    text-align: center; /* Centre text for table cells */
    vertical-align: middle;
}

/* Style the table for consistency */
.toggle-container table {
    width: 100%; /* Make table full width */
    border-collapse: collapse; /* Collapse borders for cleaner look */
}

.toggle-container table th,
.toggle-container table td {
    padding: 10px; /* Add spacing inside cells */
    border: 1px solid #ccc; /* Light grey border */
}

.toggle-container table th {
    font-weight: bold; /* Ensure header text is bold */
    background-color: #f7f7f7; /* Light grey background for headers */
}/* End custom CSS */