.tag {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted2);
    padding-bottom: 2px;
    margin-left: 35%;
}

.aiChips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 10px;
}

.logo {
    position: absolute;
    top: 15px;
    width: 160px;
}

.logo-img {
    position: relative;
    top: 10px;
    height: 30px;
    width: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: var(--logo-url);
    display: block;
    z-index: 1;
}

html[data-theme="light"] {
    --logo-url: url("/css/Flexso-AI-Brand-Logo-light.png");
}

html[data-theme="dark"] {
    --logo-url: url("/css/Flexso-AI-Brand-Logo-dark.png");
}

.unsel {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
  supported by Chrome and Opera */
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 999;
}

.modal-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.96);
    width: min(80%, 1920px);
    max-height: 600px;
    background: var(--bg-main, #fff);
    color: var(--text-main, #000000);
    border-radius: 18px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .65);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.modal-content {
    padding: 24px 28px;
    overflow-y: auto;
    scrollbar-width: thin;
    line-height: 20px;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .25);
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.55);
}

/* Active */
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 720px) {
    .tag {
        width: 100%;
        margin-top: 50px;
        margin-left: auto;
        text-align: center;
    }

    nav {
        gap: initial;
    }
}