/* ?????? ?????? - ???? ?? ??? ???? ?? ??? ???? */
/* ???? 20% ?????? (150px) ? ???? ?? ??? */

body.welcome-page {
    margin: 0 !important;
    padding: 0 !important;
    background: #ffdbde !important;
    overflow: hidden !important;
    width: 100vw !important;
    height: 100vh !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

/* ???? ???? ??? ????? React */
body.welcome-page > * {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ????? div ??? ???? ?? ?? JavaScript ????? ?????? */
body.welcome-page #copyright-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ???? - ??????? ?? ::before - 20% ?????? (150px) */
body.welcome-page::before {
    content: '' !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 150px !important;
    height: 150px !important;
    background-image: url('../images/delaram.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: fixed !important;
    top: calc(50% - 80px) !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 999999 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}

/* ??? ???? - ??????? ?? ::after - ?? ??? ????? */
body.welcome-page::after {
    content: '??? ???? ????? ?? ???? ???????? ??? ???? ?? ????' !important;
    white-space: pre-line !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: calc(50% + 60px) !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 999999 !important;
    text-align: center !important;
    font-family: 'Vazirmatn', Arial, sans-serif !important;
    font-size: 12px !important;
    color: #666 !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}

/* ?????? ???? ?? ??? ???? */
body.welcome-page #copyright-text a {
    color: #0066CC !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}

body.welcome-page #copyright-text a:hover {
    color: #0052B3 !important;
}

/* ??? ??????? ?? content: url() ???? ???? - ??? background-image ??? ???? */
@supports not (background-image: url('../images/delaram.png')) {
    body.welcome-page::before {
        content: url('../images/delaram.png') !important;
        width: 150px !important;
        height: auto !important;
        max-width: 150px !important;
        background-image: none !important;
    }
}
