/* Mobile Menu Visibility Fix */
#ltn__utilize-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 4px 32px rgba(227, 6, 19, 0.15);
}
#ltn__utilize-mobile-menu.ltn__utilize-open {
  display: block;
  animation: slideDownMenu 0.3s ease;
}
@keyframes slideDownMenu {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.ltn__utilize-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2,2,2,0.7);
  z-index: 9998;
}
.ltn__utilize-open .ltn__utilize-overlay {
  display: block;
}
/* Popup CSS Styling */
.policy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 2, 2, .7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.policy-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 90%;
    width: 100%;
    position: relative;
    padding: 24px 16px 16px 16px;
    box-shadow: 0 4px 32px rgba(227, 6, 19, 0.15);
    display: flex;
    flex-direction: column;
}

.policy-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #e30613;
    cursor: pointer;
    transition: color 0.2s;
}

.policy-modal-close:hover {
    color: #222;
}

.policy-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.policy-modal-header h2 {
    flex: 1;
    margin: 0;
    color: #e30613;
}

.policy-modal-arabic {
    margin-left: 12px;
    margin-right: 50px;
    padding: 6px 14px;
    background: #e30613;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.95em;
    cursor: pointer;
    transition: background 0.2s;
}

.policy-modal-arabic:hover {
    background: #222;
}

.policy-modal-iframe {
    border: none;
    width: 100%;
    height: 60vh;
    min-height: 320px;
    max-height: 800px;
    background: #fafafa;
    border-radius: 8px;
}

@media (max-width: 700px) {
    .policy-modal-content {
        max-width: 95vw;
        padding: 10px 2vw 10px 2vw;
    }

    .policy-modal-iframe {
        height: 45vh;
        min-height: 180px;
    }

    .policy-modal-close {
        position: absolute;
        top: 0px;
    }
    .section-subtitle, .ltn__secondary-color {
        margin-top: 50px;
    }
}
/* End */
.cmp-revoke-consent {
    padding: 10px;
    font-size: 12px !important;
    background-color: #072327;
    color: #c7c7c7;
    cursor: pointer;
}
.cmp-revoke-consent {
    bottom: 10px;
    left: 10px;
    position: absolute;
    padding: 10px;
}
button {
    outline: none;
    border: none;
    cursor: pointer;
}
button.cmp-revoke-consent:hover {
    background: red;
    color: #fff;
}