/*
* en_conf_style.css
* Web Services, UITS
* This style sheet for the custom rules of confernce English website
* All media
* 14/10/2017
* If you intend to add CSS to it please ensure you add it in the 
* correct place and also that it is valid CSS and not a mix of 
* two seperate versions in one class or ID.
*/
.sliderArrowPrevNext-style-1 .slick-prev::before, .sliderArrowPrevNext-style-1 .slick-next::before {
	color: #a7a7a7 !important;
}
.selectmenuStyle{border-color: rgb(169, 169, 169);width: 100%;padding: 8px 15px;border-radius: 3px;height: 51px;}
.sidebar-page-layout .content-wrapper ul:not(.tab_list) li ol  li{
	list-style-image: none;
}
.form-group input[type="checkbox"]:not(old), .form-group input[type="radio"]:not(old){
	opacity: 1 !important;
}
.form-group input[type=checkbox]:not(old) + label, .form-group input[type=radio]:not(old) + label {
    display: inline-block;
     margin-left: initial !important; 
    line-height: 1.5em;
}

/* When slider is NOT initialized, lay items in a 3-column grid */
.hystorySlider:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 24px; /* spacing, adjust as you like */
  align-items: start;
}

/* Responsive: 2 per row on tablet, 1 per row on mobile */
@media (max-width: 991px) {
  .hystorySlider:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .hystorySlider:not(.slick-initialized) {
    grid-template-columns: 1fr;
  }
}

/* Flatten Slick wrappers if they remain in DOM after unslick
   (sometimes unslick leaves these temporarily or if reinit toggles) */
.hystorySlider:not(.slick-initialized) .slick-list,
.hystorySlider:not(.slick-initialized) .slick-track,
.hystorySlider:not(.slick-initialized) .slick-slide {
  display: contents; /* treats wrapper as transparent for layout */
}

/* Optional: ensure each direct child behaves like a grid item */
.hystorySlider > * {
  width: 100%; /* prevent unexpected widths from old inline styles */
}


.flag-wrap {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.flag-img {
  width: 48px;       /* tune: 40–56px */
  height: auto;
  display: block;
  border-radius: 2px; /* optional */
}

.btn-submit-outline {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #153147; /* Bootstrap primary color */
  background-color: transparent;
  border: 2px solid #153147;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-submit-outline:hover,
.btn-submit-outline:focus {
  color: #fff;
  background-color: #153147;
  border-color: #153147;
  text-decoration: none;
}

.btn-submit-outline:active {
  background-color: #2C4559;
  border-color: #2C4559;
}
