.toolbar-anti-flicker.toolbar-loading.toolbar-fixed.toolbar-horizontal.toolbar-tray-open body {
    padding-top: 8rem !important;
}


.langswitcher li:first-child {
    display: none;
  }
  
  
  .page-tabs-text {
   
    padding: 3rem;
}
  .page-topic {
    
    padding: 3rem;
}

  .webformhide2025 {
      display: none;
    }
	
	
  
   .sm25-faq-container {
      width: 100%;
    }

    .sm25-faq-category {
      margin-bottom: 20px;
    }

    .sm25-faq-category h2 {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 15px;
    }

    .sm25-faq-item {
      margin-bottom: 10px;
    }

    .sm25-faq-question {
      cursor: pointer;
      background: #003366;
      color: #fff;
      padding: 10px 15px;
      border-radius: 4px;
      font-size: 1em;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }

    .sm25-faq-question:hover {
      background: #00509e;
    }
	
	.sm25-faq-question.active {
  background: #000;
}

    .sm25-faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 4px;
      margin-top: 5px;
      font-size: 0.9em;
      color: #555;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .sm25-faq-answer.open {
      max-height: 100%; /* Adjust based on the maximum expected height */
      padding: 10px 15px;
    }
	
	
	h2.topic-title {
    font-size: 2rem;
    color: #24366F;
    text-transform: uppercase;
   
    padding-bottom: 0px;
    margin: 0px;
}


/* Table styling */
table {
  
}

caption {
  padding-top: 8px; /* Adjust to your preferred padding */
  padding-bottom: 8px;
  color: #6c757d; /* Muted text color */
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px; /* Replace with your cell padding */
  line-height: 1.5; /* Adjust to your base line height */
  vertical-align: top;
  border-top: 1px solid #dee2e6; /* Table border color */
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #f8f9fa; /* Replace with your nested table background */
}

/* Condensed table */
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 4px; /* Replace with your condensed cell padding */
}

/* Bordered table */
.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dee2e6;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* Zebra striping */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f2f2f2; /* Replace with your striped row color */
}

/* Hover effect */
.table-hover > tbody > tr:hover {
  background-color: #f8f9fa; /* Replace with your hover row color */
}

/* Table cell sizing */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

/* Contextual row variants */
.table-row-variant-active {
  background-color: #e2e3e5;
}

.table-row-variant-success {
  background-color: #d4edda;
}

.table-row-variant-info {
  background-color: #d1ecf1;
}

.table-row-variant-warning {
  background-color: #fff3cd;
}

.table-row-variant-danger {
  background-color: #f8d7da;
}

/* Responsive tables */
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
  width: 100%;
  margin-bottom: 0.75rem;
  overflow-y: hidden;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  border: 1px solid #dee2e6;
}

.table-responsive > .table {
  margin-bottom: 0;
}

.table-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
  white-space: nowrap;
}

.table-responsive > .table-bordered {
  border: 0;
}

.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
  border-bottom: 0;
}



.webform-submission-form {
	
	max-width: 800px;
	width: 100%;
	    margin: 0 auto;
}
/* Scoped CSS for forms with the class webform-submission-form */
.webform-submission-form input[type="text"],
.webform-submission-form input[type="tel"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="number"] {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  margin-bottom: 1rem;
}




/* Focus effect for input fields */
.webform-submission-form input[type="text"]:focus,
.webform-submission-form input[type="tel"]:focus,
.webform-submission-form input[type="email"]:focus,
.webform-submission-form input[type="number"]:focus {
  border-color: #3997cb;
  outline: none;
  box-shadow: 0 0 5px rgba(57, 151, 203, 0.5);
}

/* Textarea Styles */
.webform-submission-form textarea {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  margin-bottom: 1rem;
}

/* Focus effect for textarea */
.webform-submission-form textarea:focus {
  border-color: #3997cb;
  outline: none;
  box-shadow: 0 0 5px rgba(57, 151, 203, 0.5);
}

/* Fieldgroup Styles */
.webform-submission-form .fieldgroup {
  margin-bottom: 1rem;
}

/* Label Styles */
.webform-submission-form label {
  font-weight: 600;
}

.webform-submission-form label.option {
  font-weight: normal;
}

/* Fieldset Legend */
.webform-submission-form .fieldset-legend {
  font-weight: 600;
}

/* Required Field Indicator */
.webform-submission-form .form-required:after {
  content: " *";
}

/* Checkbox and Radio Styles */
.webform-submission-form input[type="checkbox"],
.webform-submission-form input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  width: 1rem;
  height: 1rem;
}







.webform-submission-form input[type="submit"] {
            background-color: #24366F;
            color: #fff;
            padding: 10px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1re,;
            cursor: pointer;
           transition: background-color 0.3s ease, transform 0.2s ease;
            display: block;
			margin-top:1rem;
            
        }

        .webform-submission-form input[type="submit"]:hover {
            background-color: #4197CB;
            box-shadow: 0 4px 10px rgba(65, 151, 203, 0.3);
			 transform: scale(1.05);
        }


#togglewebformButton {
		background-color: #24366F;
            color: #fff;
            padding: 10px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1re,;
            cursor: pointer;
           transition: background-color 0.3s ease, transform 0.2s ease;
            display: block;
			    margin: 0 auto;
		
	}
	
	
	#togglewebformButton:hover {
		 background-color: #4197CB;
            box-shadow: 0 4px 10px rgba(65, 151, 203, 0.3);
			 transform: scale(1.05); 
		
	}
	
	.togglewebformactive {
       background-color: #4197CB !important;
            box-shadow: 0 4px 10px rgba(65, 151, 203, 0.3) !important;
			 transform: scale(1.05) !important;
    }


button {
  transition: background-color 0.3s ease, transform 0.2s ease;
}


button:hover {
 
  transform: scale(1.05);
}

 #chatTogglesm2025 {
            position: fixed;
            bottom: 0;
            right: 0;
            background-color: transparent;
            border: none;
            cursor: pointer;
            z-index: 10000;
        }

        #chatTogglesm2025 img {
            width: 80px;
            
            
           
        }

        #curvyArrowsm2025 {
            position: fixed;
            bottom: 70px;
            right: 90px;
            width: 40px;
            height: 40px;
            background: url('img/chatbotup-arrow.png') no-repeat center center;
            background-size: contain;
            display: none;
        }

        #chatPlaceholdersm2025 {
            display: none;
            position: fixed;
            bottom: 120px;
            right: 20px;
            z-index: 10000;
            
            
            
        }

        .weaver-default-new {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        #WebChatDiv1 {
            flex: 1;
        }

        #closeChatsm2025 {
            position: absolute;
                bottom: 305px;
    left: -15px;
			z-index: 1000;
            background: #f4f4f9;
            border: none;
            color: #333;
            font-size: 20px;
            cursor: pointer;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
		
	
form#search-form {
	
	width: 100%;
	font-size: 2rem;
}

	
form#search-form input[type="search"] {
	    display: block;
    margin: 3rem 0rem 3rem 0rem;
    width: 100%;
    height: 5rem;
	
}

form#search-form input[type="submit"] {
            background-color: #24366F;
            color: #fff;
            padding: 10px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1re,;
            cursor: pointer;
           transition: background-color 0.3s ease, transform 0.2s ease;
            display: block;
			margin-bottom: 3rem;
            
        }

        form#search-form input[type="submit"]:hover {
            background-color: #4197CB;
            box-shadow: 0 4px 10px rgba(65, 151, 203, 0.3);
			 transform: scale(1.05);
        }
		
		form#user-login-form input {
    display: block;
    margin-bottom: 1rem;
}