@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 {
    background: #00000066 !important;
}



.pcs-modal-backdrop{position:fixed;z-index:99998;display:flex;align-items:flex-end;justify-content:center;width: fit-content;height: fit-content;right: 0;bottom: 0; width: 100%; height: 100dvh;}
.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:inherit,-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;}
.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%;
  transform: translateX(26px);
}

input:checked + .pcs-slider {
    background-color: #000;
}
.pcs-pref-necessary input:checked + .pcs-slider:before {
    background-image: url("../assets/lock.svg");
    background-repeat: no-repeat;
    background-position: center;
}

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

.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: 500px;
    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 15px 20px 15px;
	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: inherit;
    font-weight: 700;
    font-size: 16px;
    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: inherit;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin-bottom: 20px;
}
.text_title strong, .text_title b {
    font-weight: 900;
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}
.text_title a {
    font-weight: 700;
    font-size: 16px;
    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: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: right;
	color: #000;
}
.pcs-pref-control {
    position: absolute;
    left: 12px;
    top: 11px;
}
.pcs-pref-item {
    position: relative;
}
.pcs-text-block {
    display: none;
}
.pcs-pref-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-family: 'almoni-dl';
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    background: #F6F6F6;
    color: #000;
    padding: 12px;
    margin-top: 8px;
}
.pcs-pref-item.open-text .pcs-text-block {
    display: block;
}
.pcs-pref-item.open-text .pcs-pref-desc {
    max-height: fit-content;
    opacity: 1;
    position: relative;
    right: -40px;
    width: calc(100% + 26px);
}
.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;
}
.pcs-pos-bottom .pcs-modal {
    width: fit-content;
    max-width: 1440px;
    border-radius: 6px;
    bottom: 30px;
}
.pcs-pos-bottom .pcs-modal .pcs-modal-actions {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
}
.pcs-pos-bottom .pcs-modal .pcs-modal-actions .text_title {
    margin-bottom: 0;
}
.pcs-pos-bottom .pcs-btns button {
    padding: 10px 30px;
    min-width: fit-content;
    border-radius: 4px;
}
.pcs-pos-bottom .close-icon-pcs {
    display: none;
}
.pcs-pos-bottom .pcs-powered {
    position: absolute;
    top: 2px;
    left: 4px;
}
.pcs-modal-backdrop.open-settings {
    align-items: center;
}
.pcs-modal-backdrop.open-settings .pcs-modal {
    width: fit-content;
    max-width: 578px;
}
.pcs-modal-backdrop.open-settings .pcs-modal .pcs-modal-actions {
    flex-wrap: wrap;
}
.pcs-modal-backdrop.open-settings .bottom-line {
    width: 100%;
    height: 36px;
    background: #F8F8F8;
    margin-top: 90px;
}
.pcs-modal-backdrop.open-settings .pcs-powered {
    position: absolute;
    top: unset;
    bottom: -5px;
    left: 14px;
}
.pcs-modal-backdrop.open-settings button.pcs-btn.pcs-btn-prefs {
    position: absolute;
    right: 28px;
    bottom: 58px;
    width: auto;
}
.pcs-modal-backdrop.open-settings button.pcs-btn.pcs-btn-decline {
    position: absolute;
    right: 200px;
    bottom: 58px;
    width: auto;
}
.pcs-modal-backdrop.open-settings .pcs-modal .pcs-prefs-inner {
    padding: 0 28px 36px;
    border-bottom: 1px solid #DFDFDF;
    height: 190px;
    overflow-y: auto;
}
.pcs-modal-backdrop.open-settings .pcs-modal .pcs-prefs-inner::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}
.pcs-modal-backdrop.open-settings .pcs-modal .pcs-prefs-inner::-webkit-scrollbar-thumb {
    background: #E6E6E6;
    border-radius: 6px;
}
.pcs-modal-backdrop.open-settings .pcs-modal-actions {
    padding: 26px 28px 20px 28px;
}
.pcs-modal-backdrop.open-settings .pcs-modal .pcs-pref-item {
    padding: 12px 40px 12px 10px;
    border: 1px solid #DFDFDF;
    border-radius: 0;
    margin-bottom: 0;
}
.pcs-modal-backdrop.open-settings .pcs-modal .pcs-pref-item.open-text {
    padding-bottom: 0;
}
.pcs-modal-backdrop.open-settings .pcs-pref-necessary {
    border-radius: 6px 6px 0 0!important;
    border-bottom: 0!important;
}
.pcs-modal-backdrop.open-settings .pcs-pref-analytics, .pcs-modal-backdrop.open-settings .pcs-pref-marketing {
    border-bottom: 0!important;
}
.pcs-modal-backdrop.open-settings .pcs-pref-functional {
    bborder-radius: 0 0 6px 6px!important;
}
.pcs-modal-backdrop.open-settings .text_title, .pcs-modal-backdrop.open-settings .text_title a {
    font-size: 18px;
}
.pcs-modal-backdrop.open-settings button.pcs-btn {
    font-size: 19px;
}
.pcs-modal-backdrop.open-settings .pcs-pref-name {
    cursor: pointer;
}
.pcs-modal-backdrop .pcs-pref-text {
    position: relative;
}
.pcs-modal-backdrop .pcs-pref-text .plus {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 1px;
    right: -30px;
    background-image: url("../assets/plus.svg");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}
.pcs-modal-backdrop .open-text .pcs-pref-text .plus {
    transform: rotate(45deg);
}
@media(max-width:1440px){
    .pcs-pos-bottom .pcs-modal {
        width: calc(100% - 12px);
        bottom: 9px;
    }
}
@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, .text_title b {
		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;
	}
    .pcs-pos-bottom .pcs-modal .pcs-modal-actions {
        display: block;
    }
    .pcs-pos-bottom .pcs-btns {
        flex-direction: inherit;
    }
    .pcs-pos-bottom .pcs-btns button {
        padding: 0 14px;
        line-height: 33px;
    }
    .pcs-pos-bottom .pcs-modal .pcs-modal-actions .text_title {
        margin-bottom: 10px;
    }
    .pcs-pos-bottom .pcs-powered {
        position: relative;
        top: unset;
        left: unset;
    }
    .pcs-modal-backdrop.open-settings .pcs-modal {
        max-width: calc(100% - 12px);
        border-radius: 4px;
    }
    .pcs-modal-backdrop.open-settings {
        align-items: end;
    }
    .pcs-modal-backdrop.open-settings .pcs-modal-actions {
        padding: 16px 10px 18px 10px;
    }
    .pcs-modal-backdrop.open-settings .pcs-modal .pcs-prefs-inner {
        padding: 0px 10px 36px;
    }
    .text_title strong, .text_title b {
        font-size: 20px;
    }
    .pcs-modal-backdrop.open-settings .text_title, .pcs-modal-backdrop.open-settings .text_title a {
        font-size: 16px;
        line-height: 1.3;
    }
    .pcs-modal-backdrop.open-settings button.pcs-btn {
        width: fit-content;
    }
    .pcs-modal-backdrop.open-settings .bottom-line {
        height: 30px;
        margin-top: 64px;
    }
    .pcs-modal-backdrop.open-settings .pcs-powered {
        bottom: -2px;
        left: 10px;
    }
    .pcs-modal-backdrop.open-settings button.pcs-btn.pcs-btn-prefs {
        right: 10px;
        bottom: 46px;
    }
    .pcs-modal-backdrop.open-settings button.pcs-btn.pcs-btn-decline {
        right: 150px;
        bottom: 46px;
    }
    .pcs-pref-desc {
        font-size: 16px;
        line-height: 1.3;
    }
}




.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;
}