:root{
    --main-color: #312738;
    --secondary-color: #ea6540;
    --white-color: #fff;
    --black-color: #000;

    --font-family-Heebo-Light: 'Heebo-Light';
    --font-family-Heebo-Regular: 'Heebo-Regular';
    --font-family-Heebo-Medium: 'Heebo-Medium';
    --font-family-Heebo-SemiBold: 'Heebo-SemiBold';
    --font-family-Heebo-Bold: 'Heebo-Bold';

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width: 100% !important;
    padding: 0 !important;
}
body{
    direction: rtl;
    font-family: var(--font-family-Heebo-Regular);
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    line-height: 26px;
    color: var(--black-color) !important;
}
h1,h2,h3,h4,h4,h5{
    font-family: var(--font-family-Heebo-Bold);
    font-weight: var(--font-weight-bold);
}
ul, ol{
    padding-right: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
p{
    margin-bottom: 0;
}
.global-btn {
    background-color: var(--main-color);
    font-size: 24px;
    line-height: 28px;
    border-radius: 7px;
    font-weight: 400;
    padding: 10px 38px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    position: relative;
    font-family: 'FbReadingHebEng-Light';
}
.global-btn:hover {
    background: none;
    color: var(--main-color);
}
.submit-btn input{
    border: none;
    width: 100%;
    padding: 1.3vh 0.8vw;
    border-radius: 0;
    color: var(--main-color) !important;
    font-family: var(--font-family-Heebo-SemiBold);
    font-weight: var(--font-weight-semibold);
    font-size: 21px;
    font-size: 1.2vw;
    line-height: 2vh;
    background-color: var(--secondary-color);
    border-bottom-right-radius: 1vw !important;
}
.submit-btn input:hover{
    background-color: var(--secondary-color);
    color: var(--main-color) !important;
}
.w-fit-content{
    width: fit-content;
}

/* Accessibility CSS */
#pojo-a11y-toolbar{
    font-size: 0.9vw !important;
}
#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a{
    padding: 0.6vw 1.3vh;
}

/**** Cookie CSS ****/
.cky-notice > .cky-title{
    display: none !important;
}
.cky-notice .cky-notice-group{
    justify-content: center !important;
    gap: 0 2vw !important;
}
.cky-notice .cky-notice-group :where(.cky-notice-des > p, .cky-notice-des a){
    color: #000 !important;
    font-size: 0.9vw;
    line-height: 3vh;
}
.cky-consent-container{
    max-width: 100%;
    right: 0;
}
.cky-consent-container .cky-consent-bar{
    padding: 1vh 1vw !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border: none !important;
    box-shadow: none;
}
.cky-btn{
    font-size: 1vw !important;
    line-height: 2.5vh !important;
    padding: 0.8vh 0.8vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
    background-color: #a4855b !important;
    border-color: #a4855b !important;
    font-family: var(--font-family-Heebo-SemiBold) !important;
    font-weight: var(--font-weight-semibold) !important;
}

/****************
Privacy Modal CSS
*****************/
body.privacy-modal-open .privacy-modal-wrapper{
    height: 100vh;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.privacy-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vw;
    background-color: #59253f;
    height: 100%;
    max-height: 85vh;
    padding: 8vh 5vw 8px 4vw;
    z-index: 9999999;
    overflow: auto;
    scrollbar-width: none;
}
.privacy-wrapper .privacy-content{
    overflow-y: auto;
    height: auto;
}
.privacy-wrapper .privacy-content a{
    color: var(--white-color);
    text-decoration: underline;
}
.privacy-wrapper .privacy-content h2 {
    margin-bottom: 3vh;
    font-size: 1.4vw;
    line-height: 2.6vh;
}
.privacy-wrapper .privacy-content :where(p, li, a){
    margin-bottom: 1.3vh;
    font-size: 0.8vw;
    line-height: 2.4vh;
}
.privacy-close-btn{
    position: absolute;
    top: 2vh;
    right: 1.8vw;
}
.privacy-close-btn > img{
    object-fit: contain;
    object-position: center center;
    width: 2vw;
    height: auto;
}