﻿* {
    user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
    font-family: IRANSansXFaNum;
    box-sizing: border-box;
}

html {
    background: #f7f7f7 url(/img/png/bg.png) repeat center top;
}

body {
    margin: 0;
    direction: rtl;
}

.container {
    max-width: 600px;
    margin: auto;
}

header {
    background: #007b67;
    border-bottom: 4px solid #faac01;
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    min-height: 60px;
    max-width: 600px;
    align-items: center;
    border-radius: 0px 0px 10px 10px;
}

    header p {
        text-align: center;
        color: #fff;
        padding: 0px;
        margin: 0px;
        margin-top: 12px;
        font-size: 0.9rem;
    }

    header img {
        max-width: 70px;
    }



.description {
    padding: 20px;
    margin: 25px;
    direction: rtl;
    line-height: 1.8rem;
    background-color: #fff;
    border-radius: 20px;
    color: #3f3f3f;
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 40px;
}


.content {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    margin-bottom: 50px;
}



.secZekr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

    .secZekr .zekrBtn {
        display: flex;
        text-decoration: none;
        background-color: #f7f7f7;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
        background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
        background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
        background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
        background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
        color: #a7a7a7;
        margin: 10px;
        width: 144px;
        height: 144px;
        position: relative;
        text-align: center;
        line-height: 144px;
        border-radius: 50%;
        box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
        border: solid 1px transparent;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

        .secZekr .zekrBtn:active {
            outline: none;
            box-shadow: 0px 3px 4px #aaa inset, 0px 2px 3px #fff;
        }

        .secZekr .zekrBtn:before {
            content: "";
            display: block;
            background: #fff;
            border-top: 2px solid #ddd;
            position: absolute;
            top: -18px;
            left: -18px;
            bottom: -18px;
            right: -18px;
            z-index: -1;
            border-radius: 50%;
            box-shadow: inset 0px 8px 48px #ddd;
        }

    .secZekr .title {
        font-size: 1.2rem;
        font-weight: 500;
    }

        .secZekr .title .show {
            font-size: 0.9rem;
            text-decoration: none;
            font-weight: 500;
            color: #2196f3;
        }

    .secZekr .details {
        background-color: #fff;
        border-radius: 8px;
        padding: 8px;
        width: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        font-weight: 600;
        gap: 5px;
    }

        .secZekr .details .num {
            font-size: 1.2rem;
        }

        .secZekr .details .all {
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .secZekr .details .all .livePoint {
                animation: blinker 2s linear infinite;
                padding: 4px;
                display: inline-block;
                border-radius: 5px;
            }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}


.zekr1 {
    color: #703200;
}

    .zekr1 .livePoint {
        background-color: #703200;
    }

.zekr2 {
    color: #23336c;
}

    .zekr2 .livePoint {
        background-color: #23336c;
    }

.zekr3 {
    color: #156b38;
}

    .zekr3 .livePoint {
        background-color: #156b38;
    }

.zekr4 {
    color: #c77806;
}

    .zekr4 .livePoint {
        background-color: #c77806;
    }

.bold {
    font-weight: 600;
}


#statusMessage {
    display: none;
    background-color: #fff;
    position: fixed;
    padding: 5px 10px;
    border-radius: 8px;
    border-bottom-right-radius: 0;
    bottom: 0;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 0 4px 0 #c7c7c7;
}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0003;
        z-index: -1;
    }

    .modal .body {
        position: relative;
        justify-content: center;
        background-color: #fff;
        padding: 30px;
        border-radius: 15px;
        width: 340px;
        max-width: 90%;
    }

        .modal .body .close {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
        }

            .modal .body .close svg {
                width: 12px;
                color: #48555c;
                fill: currentColor;
            }

        .modal .body form {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
            color: #48555c;
        }

            .modal .body form .title {
                font-size: 0.9rem;
                font-weight: 500;
                background-color: #dcfbff;
                padding: 10px;
                border-radius: 8px;
                line-height: 1.7rem;
            }

        .modal .body form .formItem {
            display: flex;
            flex-direction: column;
        }

            .modal .body form .formItem label {
                color: #505050;
                font-weight: 600;
                font-size: 0.88rem;
                margin-bottom: 10px;
            }

            .modal .body form .formItem input {
                border: none;
                outline: 1px solid #e7e8f3;
                color: #5f5f5f;
                font-size: 0.9rem;
                padding: 8px 10px;
                border-radius: 0.25rem;
                background-color: #fbfbfe;
            }

            .modal .body form button {
                border: none;
                border-radius: 7px;
                background-color: #12b0d0;
                color: #fff;
                padding: 7px 12px;
                font-size: 0.9rem;
                display: inline-flex;
                cursor: pointer;
                position: relative;
                gap: 7px;
                text-align: center;
                transition: all 100ms;
                justify-content: center;
            }

.loader {
    border: 3px solid #ffffff2b;
    width: 1em;
    height: 1em;
    min-width: 1em;
    min-height: 1em;
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: RotateAnime 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin: auto;
}
@keyframes RotateAnime {
    0% {
        transform: rotate(45deg);
    }

    50% {
        transform: rotate(405deg);
    }

    100% {
        transform: rotate(765deg);
    }
}