/***model trigger button***/
.ks-info-btn {
  font-size:16px;
  font-family: 'Roboto Condensed', Helvetica, Arial, Lucida, sans-serif!important;
  text-transform:uppercase!important;
  color:#000!important;
  background:transparent!important;
  border:none!important;
  border-radius:0!important;
  padding:5px 0!important;
  font-weight:300!important;
  cursor: pointer!important;
	box-shadow:none!important;
}
.ks-info-btn i.ks-modal-icon {
  margin-left:4px;
}
.ks-info-btn i.ks-modal-icon::before {
  content: "";
  background:url('/wp-content/uploads/2026/01/info-icon-1.png');
  display:inline-block;
  position: relative;
  top: 2px;
  width: 16px;
  height: 16px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}
.ks-info-btn--icononly i.ks-modal-icon {
	margin-left:0!important;
}


/***********/
/***********/
/***modal***/
/***********/
/***********/
/*this is found in child theme*/
body.ks-modal-open * {
  z-index: auto;
}
.ks-modal[hidden] {
  display: none !important;
}
.ks-modal {
  position: fixed;
  inset: 0;
  z-index: 9999999!important;
  isolation:isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
/* overlay */
.ks-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index:1!important;
}
/* panel */
.ks-modal__panel {
  position: relative!important;
  z-index: 2!important;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 80px);
  margin: 16px auto;
  background: #fff;
  border-radius: 0px;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* header */
.ks-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ks-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
/* close button */
.ks-modal__close {
  border: none;
  background: transparent;
  cursor: pointer;
  width: 50px;
  height: 40px;
  font-size: 60px;
	font-weight:200;
    align-self: flex-end;
	flex: 1 0 40px;
    font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
    line-height: 0;
	padding-bottom:15px;
}
/* body */
.ks-modal__body {
  line-height: 1.45;
  overflow-y: auto;
  padding: 4% 8%;
}
/* footer */
.ks-modal__footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: right;
  padding: 12px 24px;
}
.ks-modal__footer .ks-modal__footer-close {
	background:transparent;
	border:none;
	border-radius:0;
    font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
	font-weight:400;
	cursor:pointer;
	color:#555;
}
/* background scroll lock */
body.ks-modal-open {
  overflow: hidden !important;
}