﻿input::-ms-reveal,
input::-ms-clear {
    display: none;
}

:focus-visible {
    outline: none !important;
}

body {
    overflow: hidden;
}

#app {
    background-color: var(--system-white);
    display: flex;
    width: 100vw;
    width: 100dvw;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
}

button.vq-primary-button[disabled], input[type="button"].vq-primary-button[disabled] {
    opacity: 0.5;
    cursor: initial;
}

button.vq-primary-button, input[type="button"].vq-primary-button {
    cursor: pointer;
    padding: 0.833rem 2.5rem;
    font-size: 1.333rem;
    border-radius: 100px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--primary-text);
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

    button.vq-primary-button i, input[type="button"].vq-primary-button i {
        color: var(--primary-text);
        font-size: 1.167rem;
        padding-right: 0.7rem;
    }

hr {
    caret-color: transparent;
}

i {
    caret-color: transparent;
}

.tooltip-arialabel[aria-label] {
    position: relative;
}

    .tooltip-arialabel[aria-label]:after {
        font-family: var(--font-family);
        font-size: 1rem;
        content: attr(aria-label);
        position: absolute;
        top: 100%;
        left: 50%;
        color: #fff;
        background-color: #000000af;
        padding: 8px 10px;
        pointer-events: none;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        display: none;
        transform: translateX(-50%);
        z-index: 99999;
        line-height: 1.5;
        text-decoration: none;
        text-indent: 0;
        -webkit-box-shadow: 1px 2px 6px rgba(0,0,0,0.3);
        box-shadow: 1px 2px 6px rgba(0,0,0,0.3);
        text-transform: none;
        width: max-content;
        max-width: 15rem;
    }


    .tooltip-arialabel[aria-label]:hover:after {
        display: block;
    }



.select-none {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.link-secondary {
    color: var(--primary-dark);
    font-size: 1.167rem;
    letter-spacing: 0.25px;
    display: flex;
    text-decoration: none;
    cursor: pointer;
    width: min-content;
    white-space: nowrap;
}

mb-1 {
    margin-bottom: 1rem;
}

input[type=file],
input[type=file]::-webkit-file-upload-button {
    cursor: pointer;
}

.p-1 {
    padding: 1rem;
}

@media (max-width: 1100px) {
    .hidde-on-mobile {
        display: none !important;
    }

    footer .black-screen-mobile {
        height: calc(100% - 4rem) !important;
    }

    .black-screen-mobile {
        display: flex;
        background-color: var(--black-screen);
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        overflow: hidden;
        position: fixed;
        z-index: 998;
        top: 0;
        left: 0;
    }
}

@media (min-width: 1101px) {
    .hidde-on-desktop {
        display: none !important;
    }

    .black-screen-mobile {
        display: none;
    }
}

.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    opacity: 0.6;
    border-radius: 5px;
    background-color: var(--primary-text);
    color: var(--primary-background-contrast);
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}

    .dot-flashing::before, .dot-flashing::after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 0;
        opacity: 0.6;
    }

    .dot-flashing::before {
        left: -15px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: var(--primary-text);
        color: var(--primary-text);
        animation: dot-flashing 1s infinite alternate;
        animation-delay: 0s;
    }

    .dot-flashing::after {
        left: 15px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: var(--primary-text);
        color: var(--primary-text);
        animation: dot-flashing 1s infinite alternate;
        animation-delay: 1s;
    }

@keyframes dot-flashing {
    0% {
        background-color: var(--primary-text);
    }

    50%, 100% {
        background-color: var(--primary-background-contrast);
    }
}
