/**------------------------- ZAMMAD CHAT ------------------------------------------**/
:root {
    --zammad-chat-width: 33em;
    --zammad-chat-height-closed: 3.5em;
    --zammad-chat-height-open: 30em;
    --zammad-chat-radius: 5px;
    --zammad-chat-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    --zammad-color-header-bg: #d0f2cc;
    --zammad-color-header-text: #414141;
    --zammad-color-primary: hsl(203deg 67% 53%);
    --zammad-color-border-subtle: hsl(0deg 0% 93%);
    --zammad-color-text-muted: hsl(0deg 0% 60%)
   }
   /* Root container */
   .zammad-chat {
    position: fixed;
    right: 30px;
    bottom: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    width: var(--zammad-chat-width);
    height: var(--zammad-chat-height-closed);
    font-size: 12px;
    color: black;
    background: #fff;
    border-radius: var(--zammad-chat-radius) var(--zammad-chat-radius) 0 0;
    box-shadow: var(--zammad-chat-shadow);
    will-change: bottom
   }
   @media (max-width: 768px) {
    .zammad-chat {
    right: 0;
    width: 100%;
    border-radius: 0;
    font-size: 16px
    }
   }
   .zammad-chat--animate {
    transition: transform 500ms, opacity 500ms
   }
   .zammad-chat.zammad-chat-is-loaded {
    display: flex;
    opacity: 0
   }
   .zammad-chat.zammad-chat-is-shown {
    opacity: 1
   }
   .zammad-chat.zammad-chat-is-open {
    height: var(--zammad-chat-height-open)
   }
   @media (max-width: 768px) {
    .zammad-chat.zammad-chat-is-open {
    height: 100%
    }
   }
   /* Header */
   .zammad-chat-header {
    position: relative;
    display: block;
    height: var(--zammad-chat-height-closed);
    padding: 0.5em 2.5em 0.5em 1em;
    background: var(--zammad-color-header-bg);
    color: var(--zammad-color-header-text);
    line-height: 2.5em;
    border-radius: var(--zammad-chat-radius) var(--zammad-chat-radius) 0 0;
    box-shadow:
    0 -1px rgba(0, 0, 0, 0.1),
    0 1px rgba(255, 255, 255, 0.3) inset,
    0 -1px rgba(0, 0, 0, 0.1) inset,
    0 1px 1px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    cursor: pointer
   }
   @media (max-width: 768px) {
    .zammad-chat-header {
    border-radius: 0
    }
   }
   .zammad-chat.zammad-chat-is-open .zammad-chat-header {
    cursor: default
   }
   .zammad-chat-icon {
    width: 2em;
    height: 2em;
    margin-right: 5px;
    margin-top: 4px;
    vertical-align: top;
    fill: currentColor
   }
   .zammad-chat-welcome-text {
    font-size: 1.2em
   }
   /* Header right icon (open/close) */
   .zammad-chat-header-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 3.4em;
    height: 100%;
    text-align: center;
    line-height: 3.4em;
    cursor: pointer
   }
   .zammad-chat-header-icon::before {
    content: "";
    display: inline-block
   }
   .zammad-chat-header-icon-open,
   .zammad-chat-header-icon-close {
    width: 1.6em;
    height: auto;
    vertical-align: middle;
    fill: currentColor
   }
   .zammad-chat-header-icon-close {
    width: 1.3em
   }
   .zammad-chat-header-icon-close,
   .zammad-chat.zammad-chat-is-open .zammad-chat-header-icon-open {
    display: none
   }
   .zammad-chat.zammad-chat-is-open .zammad-chat-header-icon-close {
    display: inline
   }
   /* Agent info */
   .zammad-chat-agent {
    float: left
   }
   .zammad-chat-header-controls {
    float: right
   }
   .zammad-chat-agent-avatar {
    float: left;
    width: 2.5em;
    margin-right: 0.6em;
    border-radius: 50%
   }
   .zammad-chat-agent-name {
    font-weight: bold
   }
   .zammad-chat-agent-status {
    display: inline-block;
    margin: 0.25em 1em;
    padding: 0 0.7em;
    line-height: 2em;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1em;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04) inset
   }
   .zammad-chat-agent-status::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    margin-right: 0.3em;
    vertical-align: middle;
    border-radius: 50%;
    background: hsl(19deg 90% 51%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04) inset
   }
   .zammad-chat-agent-status[data-status="online"]::before {
    background: hsl(145deg 51% 55%)
   }
   .zammad-chat-agent-status[data-status="connecting"]::before {
    background: hsl(41deg 100% 49%);
    animation: connect-fade 600ms linear infinite alternate
   }
   /* Modal (pre-chat, GDPR, etc.) */
   .zammad-chat-modal {
    position: absolute;
    inset: 3.5em 0 0 0;
    margin-top: 1px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    text-align: center;
    color: var(--zammad-color-header-text)
   }
   .zammad-chat-modal:empty {
    display: none
   }
   .zammad-chat-modal-text {
    font-size: 1.3em;
    line-height: 1.45
   }
   .zammad-chat-modal-text .zammad-chat-loading-animation {
    font-size: 0.7em
   }
   .zammad-chat-modal-text .zammad-chat-button {
    margin-top: 1em;
    font-size: 0.8em
   }
   .zammad-chat-modal .zammad-chat-loading-animation {
    margin-right: 8px;
    vertical-align: middle
   }
   /* Scroll hint */
   .zammad-scroll-hint {
    display: flex;
    align-items: center;
    padding: 7px 10px 6px;
    background: hsl(210deg 8% 98%);
    border-bottom: 1px solid var(--zammad-color-border-subtle);
    color: var(--zammad-color-text-muted);
    cursor: pointer
   }
   .zammad-scroll-hint.is-hidden {
    display: none
   }
   .zammad-scroll-hint-icon {
    margin-right: 8px;
    fill: hsl(210deg 5% 78%)
   }
   /* Body */
   .zammad-chat-body {
    flex: 1;
    display: none;
    padding: 0.5em 1em;
    overflow: auto;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain
   }
   @media (max-width: 768px) {
    .zammad-chat-body {
    height: auto
    }
   }
   .zammad-chat-is-open .zammad-chat-body {
    display: block
   }
   /* Messages */
   .zammad-chat-timestamp {
    margin: 1em 0;
    text-align: center;
    color: var(--zammad-color-text-muted);
    font-size: 0.9em
   }
   .zammad-chat-status {
    margin: 1em 0;
    text-align: center
   }
   .zammad-chat-message {
    margin: 0.5em 0
   }
   .zammad-chat-message-body {
    display: inline-block;
    max-width: 70%;
    padding: 0.5em 1em;
    white-space: pre-line;
    word-wrap: break-word;
    line-height: 1.4;
    border-radius: 1em;
    background: hsl(0deg 0% 93%);
    box-shadow:
    0 2px rgba(255, 255, 255, 0.15) inset,
    0 0 0 1px rgba(0, 0, 0, 0.08) inset,
    0 1px rgba(0, 0, 0, 0.02)
   }
   .zammad-chat-status-inner {
    display: inline-block;
    padding: 0.5em 1em;
    line-height: 1.4;
    border-radius: 0.5em;
    background: #eee;
    box-shadow:
    0 2px rgba(255, 255, 255, 0.15) inset,
    0 0 0 1px rgba(0, 0, 0, 0.08) inset,
    0 1px rgba(0, 0, 0, 0.02)
   }
   .zammad-chat-message--customer {
    text-align: right
   }
   .zammad-chat-message--customer + .zammad-chat-message--agent,
   .zammad-chat-message--agent + .zammad-chat-message--customer {
    margin-top: 1em
   }
   .zammad-chat-message--customer .zammad-chat-message-body {
    background: var(--zammad-color-primary);
    color: #fff
   }
   .zammad-chat-message--unread {
    font-weight: bold
   }
   .zammad-chat-message--typing .zammad-chat-message-body {
    white-space: normal
   }
   /* Typing dots */
   .zammad-chat-loading-animation {
    display: inline-block
   }
   .zammad-chat-loading-circle {
    display: inline-block;
    width: 0.55em;
    height: 0.55em;
    border-radius: 50%;
    background: hsl(0deg 0% 85%);
    animation: load-fade 600ms ease-in-out infinite alternate
   }
   .zammad-chat-loading-circle + .zammad-chat-loading-circle {
    animation-delay: 0.13s
   }
   .zammad-chat-loading-circle + .zammad-chat-loading-circle + .zammad-chat-loading-circle {
    animation-delay: 0.26s
   }
   /* Controls (input + send button) */
   .zammad-chat-controls {
    position: relative;
    display: none;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    line-height: 1.4em;
    background: #fff;
    border-top: 1px solid var(--zammad-color-border-subtle);
    box-shadow:
    0 1px rgba(0, 0, 0, 0.01),
    0 -1px rgba(0, 0, 0, 0.02);
    overflow: hidden
   }
   .zammad-chat-is-open .zammad-chat-controls {
    display: flex
   }
   .zammad-chat-input {
    flex: 1;
    max-height: 6em;
    min-height: 1.4em;
    margin: 0;
    padding: 1em 2em;
    border: none;
    background: none;
    outline: none;
    overflow: auto;
    font: inherit;
    line-height: 1.4em;
    appearance: none;
    box-shadow: none;
    box-sizing: content-box
   }
   .zammad-chat-input::placeholder {
    color: hsl(0deg 0% 85%)
   }
   .zammad-chat-button {
    display: inline-block;
    margin: 0.63em 1em;
    padding: 0.5em 1.2em;
    border: none;
    border-radius: 1.5em;
    outline: none;
    font: inherit;
    line-height: initial;
    color: #fff;
    background: var(--zammad-color-primary);
    cursor: pointer;
    appearance: none;
    box-shadow:
    0 2px rgba(255, 255, 255, 0.25) inset,
    0 0 0 1px rgba(0, 0, 0, 0.1) inset,
    0 1px rgba(0, 0, 0, 0.1)
   }
   .zammad-chat-send {
    float: right
   }
   .zammad-chat-button:disabled,
   .zammad-chat-input:disabled {
    cursor: not-allowed;
    opacity: 0.3
   }
   .zammad-chat-is-hidden {
    display: none
   }
   /* Flat design variant */
   .zammad-chat--flat .zammad-chat-header,
   .zammad-chat--flat .zammad-chat-body {
    border: none
   }
   .zammad-chat--flat .zammad-chat-header,
   .zammad-chat--flat .zammad-chat-message-body,
   .zammad-chat--flat .zammad-chat-agent-status,
   .zammad-chat--flat .zammad-chat-button,
   .zammad-chat--flat .zammad-chat-status {
    box-shadow: none
   }
   /* Animations */
   @keyframes connect-fade {
    from {
    opacity: 0.5;
    transform: scale(0.6)
    }
    to {
    opacity: 1;
    transform: scale(1)
    }
   }
   @keyframes load-fade {
    0% {
    opacity: 0.5;
    transform: scale(0.6)
    }
    67% {
    opacity: 1;
    transform: scale(1)
    }
   }
   /* Notion callout tweak */
   .notion-callout .notion-callout__content .notion-semantic-string em span .notion-link {
    padding-top: unset !important
   }
   /* Yellow container with SVG link hover effect */
   .bg-yellow .notion-image a:has(img[src*="svg"]):hover {
    --edge-size: 0.8em;
    background: #fdfdfd;
    transform: scale(1.1);
    box-shadow: 0 0 10px #000;
    transition: all 200ms ease-in;
    clip-path: polygon(
    var(--edge-size) 0%,
    100% 0,
    100% 100%,
    100% 100%,
    0 100%,
    0% var(--edge-size)
    )
   }
   /* ZAMMAD CHAT – END */
   /* brown background centers */
   .notion-brown_background {
    background: transparent;
    display: flex;
    justify-content: center
   }
   .notion-h.notion-brown_background{
    width:100%
   }
   /* hides Heading 6 */
   h6{display:none !important}
   /*collection card 1x1 image size fix*/
   .notion-collection-card-cover:has(img[src*="1x1"]){
    position: absolute;
    visibility: hidden
   }
   /* Bulky collection cards */
   .notion-collection-card-property {
    padding: 11px 7px
   }


   /* MAIN MENU 2 ROWS ON HOVER */
@media (min-width: 600px) {
    /* ==== Cloud PBX dropdown – 2 columns ==== */
    .navbar-item.has-dropdown.is-hoverable:has(
    > .navbar-dropdown > a.nav-drop-item-container[href$="/cloudpbx/"]
    ) > .navbar-dropdown {
        padding: 20px 28px;
        min-width: 620px;
    /* 2-column layout */
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 32px;
    column-gap: 32px
    }
    /* Items inside ONLY that Cloud PBX dropdown */
    .navbar-item.has-dropdown.is-hoverable:has(
    > .navbar-dropdown > a.nav-drop-item-container[href$="/cloudpbx/"]
    ) > .navbar-dropdown .nav-drop-item-container {
    display: flex; /* keep your current layout */
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    padding: 7px 0
    }
    /* Start "Integrations" in the 2nd column (6th item) */
    .navbar-item.has-dropdown.is-hoverable:has(
    > .navbar-dropdown > a.nav-drop-item-container[href$="/cloudpbx/"]
    ) > .navbar-dropdown .nav-drop-item-container:nth-child(6) {
    -webkit-column-break-before: always;
    break-before: column
    }
    /* ==== Internet dropdown – 2 columns + shift left ==== */
    .navbar-item.has-dropdown.is-hoverable:has(
    > .navbar-dropdown > a.nav-drop-item-container[href$="/internet/"]
    ) > .navbar-dropdown {
        padding: 20px 28px;
        min-width: 620px;
    /* 2 columns */
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 32px;
    column-gap: 32px;
    /* move entire menu 35px to the left */
    transform: translateX(-35px)
    }
    /* Items inside ONLY that Internet dropdown */
    .navbar-item.has-dropdown.is-hoverable:has(
    > .navbar-dropdown > a.nav-drop-item-container[href$="/internet/"]
    ) > .navbar-dropdown .nav-drop-item-container {
    display: flex;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    padding: 6px 0
    }
    /* Start the 2nd column at item #7 (Internet add-ons) */
    .navbar-item.has-dropdown.is-hoverable:has(
    > .navbar-dropdown > a.nav-drop-item-container[href$="/internet/"]
    ) > .navbar-dropdown .nav-drop-item-container:nth-child(7) {
    -webkit-column-break-before: always;
    break-before: column
    }
    }
    /* MAIN MENU 2 ROWS ON HOVER - END- */
    /* artricle created by hover*/
    .notion-custom-code:has(.article-prop):first-child:hover, .notion-sync-block.notion-custom-code:has(.article-prop):hover, .notion-sync-block:has(.notion-custom-code .article-prop):first-child:hover {
    border-top:none !important;
    border-left: 9px solid #16bc00 !important
    }
    .notion-sync-block .notion-custom-code:first-child:hover{
    border-left: none !important
    }
 /* artricle created by hover END*/
/* COLUMNS design hover */
 .notion-column:has(.notion-callout-text)>:first-child:hover {
    border-top: 5px solid #16bc00 !important
   }
   a.notion-collection-card.search-title.notion-collection-card-size-medium:hover:before {
    border-bottom: 4px solid #16bc00;
    content: '';
    display: block;
    margin: -2px 0 0 0
   }
   .notion-collection-card:hover {
    background: #f9f9f9
   }
   /* COLUMNS design -END- */
/* FAQ Slight hover effect */
   .mixpbx-faq-item:hover {
    background-color: #f3f4f6
   }
/* navbar hover */
.mixvoip-navbar center a:hover {
    color: #16bc00
    }
/* scrollable logos*/
.image-hyperlink:hover::before {
    background: rgba(0, 0, 0, .03);
    border-top: 3px solid gray
   }
/*========================================= buttons with openModal ==================================================*/
button[onclick^="openModal"] {
    background: linear-gradient(to bottom, #f6d768, #e1b93c);
    color: #2d2d2d;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 999px; /* pill shape */
    border: 1px solid #c9a23b;
    cursor: pointer;
    font-size: 16px;
    box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    0 1px 2px rgba(0,0,0,0.15);
    transition: background 0.15s ease, box-shadow 0.15s ease
   }
   button[onclick^="openModal"]:hover {
    background: linear-gradient(to bottom, #ffe07b, #e7c04a)
   }
   button[onclick^="openModal"]:active {
    background: linear-gradient(to bottom, #d8b753, #c49d31);
    box-shadow:
    inset 0 2px 3px rgba(0,0,0,0.25)
   }
   /*========================================= buttons with openModal ================================================== -END- */
   /* social icons hover*/
  
.view-social-icons .notion-collection-card:hover {
    transform: scale(1.15); /* scales container AND image */
   }
   .view-social-icons .notion-collection-card:hover img {
    opacity: 0.8; 
   }
.notion-link, .footer-social-icon {
    opacity: 1;
    transition: transform 0.1s ease, filter 0.1s ease
   }
   .notion-link:hover{
   transform: scale(1.03);
   filter: brightness(1.03)
   }
   .footer-social-icon:hover{
    transform: scale(1.03);
    filter: brightness(1.03);
   color: green
   }
   /** social icons hover -END- **/
 /*Article created by*/  
   .notion-custom-code:has(.article-prop):first-child:hover, .notion-sync-block.notion-custom-code:has(.article-prop):hover, .notion-sync-block:has(.notion-custom-code .article-prop):first-child:hover {
    border-top:none !important;
    border-left: 9px solid #16bc00 !important
   }
   .notion-sync-block .notion-custom-code:first-child:hover{
   border-left: none !important
   }
/* Article created by END*/
/*navigation dropdown */
   .navbar-dropdown {
    min-width: 21rem;
}
.navbar-item.is-hoverable:hover .navbar-dropdown {
    border-left: 5px solid #16bc00;
}
