@font-face {
  font-display: swap; 
  font-family: 'almoni-dl';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/almoni-dl-aaa-400.ttf') format('TrueType'); 
}
@font-face {
  font-display: swap; 
  font-family: 'almoni-dl';
  font-style: bold;
  font-weight: 700;
  src: url('fonts/almoni-dl-aaa-700.ttf') format('TrueType'); 
}
@font-face {
  font-display: swap; 
  font-family: 'almoni-dl';
  font-style: black;
  font-weight: 900;
  src: url('fonts/almoni-dl-aaa-900.ttf') format('TrueType'); 
}

.pcs-modal-backdrop{position:fixed;inset:0;background:rgba(16,19,21,.55);backdrop-filter:blur(1px);z-index:99998;display:flex;align-items:flex-end;justify-content:center;}
.pcs-modal{background:#fff; color:#101315; width:100%; border-radius:0px; box-shadow:0 24px 60px rgba(0,0,0,.25); overflow:hidden; font-family:system-ui,-apple-system,Segoe UI,Arial}
.pcs-modal-actions{display:flex; gap:12px; padding:16px 18px; background:#f6f7f9; justify-content:flex-end; align-items:center}
.pcs-btn{border:0; border-radius:12px; padding:10px 16px; font-weight:600; cursor:pointer}
.pcs-btn-decline{background:#101315; color:#fff}
body.pcs-locked{overflow:hidden !important}

/* Position variants */
.pcs-pos-bottom{align-items:flex-end; justify-content:center;}
.pcs-pos-center{align-items:center; justify-content:center;}
.pcs-pos-right{align-items:center; justify-content:flex-end; padding-right:16px;}
.pcs-pos-bottom .pcs-modal{width:100%; border-radius:0;}
.pcs-pos-center .pcs-modal{width:min(680px,92vw); border-radius:20px;}
.pcs-pos-right .pcs-modal{width:420px; border-radius:16px;}

/* Preferences panel */
.pcs-prefs{max-height:0; overflow:hidden; transition:max-height .25s ease;}
.pcs-prefs.open {
    max-height: calc(100vh - 200px);
    overflow: auto;
}
.pcs-prefs-inner{padding:12px 18px; background:#fff; border-top:1px solid #eceff3}
.pcs-prefs-title{font-weight:800; font-size:16px; margin-bottom:10px}
.pcs-pref-item{display:flex; align-items:flex-start; justify-content:space-between; gap:16px; padding:12px 0; border-top:1px dashed #e6e8eb}
.pcs-pref-item:first-child{border-top:0}
.pcs-pref-name{font-weight:700; margin-bottom:6px}
.pcs-chip{display:inline-block; padding:6px 10px; background:#eef2f7; border-radius:999px; font-size:12px}

/* Toggle Switch Styles */
.pcs-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.pcs-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pcs-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

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

input:checked + .pcs-slider {
  background-color: #000;
}

input:checked + .pcs-slider:before {
  transform: translateX(26px);
}

.pcs-cookies-table{width:100%; border-collapse:collapse; margin-top:10px; font-size:13px}
.pcs-cookies-table th,.pcs-cookies-table td{border:1px solid #e5e7eb; padding:6px 8px; text-align:right}
.pcs-prefs-actions{display:flex; gap:10px; justify-content:flex-end; margin-top:8px}


/* new */

.pcs-modal-backdrop.pcs-pos-right {
    align-items: flex-end;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
}
.pcs-modal-backdrop .pcs-modal {
    width: 100%;
    max-width: 602px;
    border-radius: 6px 0px 0px 0px;
    border: 1px solid #E3E3E3;
    border-right: 0;
    border-bottom: 0;
    box-shadow: 0px 0px 20px 0px #00000026;
    position: relative;    
	display: flex;
    flex-direction: column;
}
.pcs-modal:has(.pcs-prefs.open) button.pcs-btn.pcs-btn-prefs {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.close-icon-pcs {
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    background-color: transparent;
    padding: 5px;
    cursor: pointer;
}
.pcs-modal-backdrop .pcs-modal-actions {
    display: block;
    padding: 26px 37px 20px 30px;
	background: #FFFFFF;
}
.pcs-btns {
    display: flex;
    align-items: inherit;
    gap: 11px;
	flex-direction: row-reverse;
}
button.pcs-btn {
    width: 100%;
    height: 44px;
    border-radius: 0;    
	font-family: 'almoni-dl';
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
}
button.pcs-btn.pcs-btn-accept {
    background: var(--pcs-bg-color);
    color: #FFFFFF;
}
button.pcs-btn.pcs-btn-decline {
    color: #475966;
    background: transparent;
    border: 1px solid #536776;
}
button.pcs-btn.pcs-btn-prefs {
    color: #475966;
	font-weight: 400;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}
.pcs-modal-backdrop .text_title {
	font-family: 'almoni-dl';
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    margin-bottom: 20px;
}
.text_title strong {
    font-weight: 900;
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}
.text_title a {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-align: right;
    color: var(--pcs-bg-color);
}
.pcs-modal .pcs-prefs-inner {
    padding: 0px 37px 0px 30px;
	border-top: 0;
}
.pcs-modal .pcs-pref-item {
    padding: 13px;
    border: 1px solid #DFDFDF;
    border-radius: 6px;
    margin-bottom: 14px;
}
.pcs-pref-name {
	font-family: 'almoni-dl';
    font-weight: 900;
    font-size: 20px;
    line-height: 22px;
    text-align: right;
    margin-bottom: 8px;
	color: #475966;
}
.pcs-pref-control {
    position: absolute;
    left: 12px;
    top: 11px;
}
.pcs-pref-item {
    position: relative;
}
.pcs-pref-desc {
    font-family: 'almoni-dl';
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #4D4D4D;
}
.pcs-pref-necessary label.pcs-switch {
    pointer-events: none;
}
.pcs-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 11px;
	order: 3;
}
.pcs-powered span {
    font-family: 'almoni-dl';
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    color: #000000;
}
@media(max-width:767px){
	.pcs-modal-backdrop .pcs-modal {
		max-width: 100%;
		border-radius: 0px;
	}
	.pcs-modal-backdrop .text_title {
		font-size: 17px;
	}
	button.pcs-btn {
		height: 36px;
		padding: 7px 0px;
		font-size: 16px;
	}
	.pcs-modal-backdrop .pcs-modal-actions {
		padding: 15px;
	}
	.text_title strong {
		font-size: 23px;
	}
	.text_title a {
		font-size: 17px;
	}
	.pcs-btns {
		gap: 8px;
	}
	.pcs-modal .pcs-prefs-inner {
		padding: 0px 15px;
	}
	.pcs-modal .pcs-pref-item {
		padding: 12px;
	}
	.pcs-powered {
		margin-bottom: 6px;
	}
	.pcs-powered span {
		font-size: 10.22px;
		line-height: 18.74px;
	}
	.pcs-powered img {
		max-width: 52px;
	}
}




.page-id-6742 .content_wrap h2 {
    border-top: 1px solid #373737;
    padding-top: 30px;
	font-size: 30px;
}


.page-id-6742 .content_wrap h3 {
font-size: 22px;
}

.page-id-6742 .content_wrap a {
color: #373737;

font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}