

:root {
    --header-height: 50px;
    --font-color: #33475B;
    --theme-color: #ff5c35;
    --back-color: #f06240;
}

html {
    background-color: #fff;
    color: var(--font-color);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    cursor: pointer;
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

::placeholder,
::-webkit-input-placeholder {
    color: #ccc;
}

input,
textarea,
select {
    outline: none;
}

textarea {
    resize: none;
}

button {
    cursor: pointer;
}

.layout {
    width: 1080px;
    margin: 0 auto;
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    background-color: #fff;
    border-bottom: solid 1px #ececec;
    box-shadow: 0px 1px 6px 0px rgba(51, 45, 42, 0.1);
}

    .header .flex-header {
        height: var(--header-height);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .flex-simple-header {
        height: var(--header-height);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.header-placeholder {
    height: var(--header-height);
}

.header .logo > img {
    width: 120px;
}

.header .nav {
    display: flex;
    align-items: center;
    gap: 60px;
}

    .header .nav a {
        font-size: 16px;
        color: var(--font-color);
        font-weight: 700;
    }

        .header .nav a:hover {
            color: var(--theme-color);
        }

.header .menu {
    display: flex;
    align-items: center;
    gap: 45px;
}

    .header .menu .user {
        display: flex;
        align-items: center;
    }

        .header .menu .user a {
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 500;
            color: var(--font-color);
            vertical-align: bottom;
        }

            .header .menu .user a:hover {
                color: var(--theme-color);
            }

            .header .menu .user a::before {
                margin-right: 5px;
                content: "";
                width: 18px;
                height: 18px;
                background-image: url(/img/icon-user.svg);
                opacity: 0.6;
                background-size: cover;
            }


        .header .menu .user .name {
            color: #6C6C6C;
        }

    .header .menu .locale {
        font-size: 16px;
        color: var(--font-color);
        font-weight: 500;
    }

        .header .menu .locale a {
            display: flex;
            align-items: center;
            font-size: 16px;
            color: var(--font-color);
        }


            .header .menu .locale a::before {
                margin-right: 5px;
                content: "";
                width: 18px;
                height: 18px;
                background-image: url(/img/icon-locale.svg);
                background-size: cover;
                opacity: 0.6;
            }

            .header .menu .locale a:hover {
                color: var(--theme-color);
            }

.container-main {
    background-color: #FEF4EA;
    padding:20px 0;
}

.footer {
    background-color: #2e475d;
}



    .footer .nav-box {
        border-bottom: 1px solid #7691ad;
    }

        .footer .nav-box .flex-nav {
            height: 65px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .footer .nav-box .flex-nav .nav {
                display: flex;
                align-items: center;
                gap: 30px;
            }

                .footer .nav-box .flex-nav .nav li a {
                    font-size: 16px;
                    color: #fff;
                }

                    .footer .nav-box .flex-nav .nav li a:hover {
                        font-size: 16px;
                        color: #ff5c35;
                    }

            .footer .nav-box .flex-nav .copyright {
                font-size: 14px;
                color: #b6c7d6;
            }

    .footer .app-box {
        border-bottom: 1px solid #7691ad;
    }

        .footer .app-box .flex-app {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .footer .app-box .flex-app .app-title {
                font-size: 16px;
                color: #b6c7d6;
            }

            .footer .app-box .flex-app .app-list {
                margin-top: 10px;
                display: flex;
                gap: 25px;
            }

                .footer .app-box .flex-app .app-list img {
                    width: 30px;
                    height: 30px;
                }

            .footer .app-box .flex-app .locale {
                height: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
                border: 1px solid #7691ad;
                padding: 0 10px;
            }

                .footer .app-box .flex-app .locale::before {
                    margin-right: 15px;
                    content: "";
                    width: 24px;
                    height: 24px;
                    background-image: url(/img/locale-language.svg);
                    background-size: cover;
                }

                .footer .app-box .flex-app .locale > a {
                    font-size: 16px;
                    color: #fff;
                    cursor: pointer;
                }

                    .footer .app-box .flex-app .locale > a:hover {
                        color: var(--theme-color);
                    }

    .footer .site {
        padding: 10px 0;
        font-size: 14px;
        color: #b6c7d6;
        text-align: left;
        line-height: 135%;
    }

.cookies {
    padding: 30px 0 20px;
    /*display: flex;*/
    display: none;
    border-top: 1px solid #7691ad;
    position: fixed;
    bottom: 0;
    background-color: #2e475d;
    width: 100%;
}

    .cookies .box {
        display: flex;
        margin: 0 auto;
    }

    .cookies .policy {
        font-size: 16px;
        color: #b6c7d6;
    }

        .cookies .policy a {
            font-size: 16px;
            color: #fff;
            text-decoration: underline;
        }

            .cookies .policy a:hover {
                font-size: 16px;
                color: #ff5c35;
                text-decoration: underline;
            }

    .cookies .btns {
        margin-left: 100px;
        display: flex;
        gap: 30px;
        border: none;
    }

        .cookies .btns .btn-accept {
            width: 140px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ff5c35;
            font-size: 18px;
            color: #fff;
            border: none;
            border-radius: 20px;
        }

        .cookies .btns .btn-reject {
            width: 140px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: none;
            background-color: #fff;
            font-size: 18px;
            color: #192733;
            border-radius: 20px;
        }

.simple-footer {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #b6c7d6;
}

.simple-footer .link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.simple-footer .link li a {
    font-size: 16px;
    color: #fff;
}
    .simple-footer .link li a:hover {
        font-size: 16px;
        color: #ff5c35;
    }

.simple-footer .copyright {
    font-size: 14px;
    color: #b6c7d6;
}



.breadcrumb {
    padding: 10px 0;
}

    .breadcrumb ul {
        display: flex;
        align-items: center;
    }

        .breadcrumb ul li {
            display: flex;
            align-items: center;
            font-size: 15px;
            color: #fff;
        }

            .breadcrumb ul li:nth-child(n+2)::before {
                content: ">";
                margin: 0 10px;
            }

            .breadcrumb ul li a {
                font-size: inherit;
                color: #fff;
            }

                .breadcrumb ul li a:hover {
                    color: var(--font-color);
                }

                .breadcrumb ul li a img{
                    width:16px;
                }


                .banner {
                    padding: 10px 0;
                    display: flex;
                    justify-content: center;
                    color: #fff;
                    background-color: var(--back-color);
                    background-size: cover;
                }

    .banner .title {
        font-size: 32px;
        color: #fff;
        text-align: center;
        padding: 20px 0 10px;
    }

.simple-title {
    font-size: 32px;
    text-align: center;
    padding: 30px 0 5px;
    color: var(--font-color);
    opacity: 0.8;
    font-weight: 700;
}


.lottery-result .list {
    padding: 0 20px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 20px;
}

    .lottery-result .list .item {
        width: 330px;
        padding: 10px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0px 2px 14px 0px rgba(51, 45, 42, 0.1);
        -moz-box-shadow: 0px 2px 14px 0px rgba(51, 45, 42, 0.1);
        -webkit-box-shadow: 0px 2px 14px 0px rgba(51, 45, 42, 0.1);
    }

        .lottery-result .list .item:hover {
            box-shadow: 0 0 0 1px transparent;
            transition-duration: .25s;
            transform: scale(1.02);
        }

        .lottery-result .list .item .item-name {
            padding: 0 0 10px 0;
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--font-color);
        }

            .lottery-result .list .item .item-name a {
                color: var(--font-color);
            }

                .lottery-result .list .item .item-name a:hover {
                    color: var(--theme-color);
                }

        .lottery-result .list .item .item-img {
            margin-top: 15px;
            height: 80px;
        }

            .lottery-result .list .item .item-img img {
                margin: 0 auto;
                max-height: 80px;
                max-width: 200px;
                text-align: center;
                display: block;
                height: auto;
            }

        .lottery-result .list .item .item-title {
            margin-top: 20px;
            font-size: 13px;
            color: #2e475d;
            text-align: center;
        }


        .lottery-result .list .item .numbers {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1px;
        }


            .lottery-result .list .item .numbers span {
                width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                color: var(--theme-color);
                font-weight: bold;
                border-radius: 50%;
                border: solid 2px var(--theme-color);
            }

                .lottery-result .list .item .numbers span.blue {
                    border: solid 2px #1072f7; 
                    color: #1072f7;
                }

        .lottery-result .list .item .ratio {
            margin-top: 5px;
            font-size: 14px;
            font-weight: 500;
            color: var(--font-color);
            text-align: center;
        }

        .lottery-result .list .item .date {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 500;
            color: var(--font-color);
        }

        .lottery-result .list .item .amount {
            font-size: 24px;
            font-weight: 500;
            text-align: center;
            margin-top: 15px;
        }

        .lottery-result .list .item .btns {
            padding: 15px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0 15px;
            margin-top: 15px;
        }

        .lottery-result .list .item .btn-tool {
            padding: 0 25px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #fff;
            background-color: var(--theme-color);
            border: none;
            font-weight: 500;
            border-radius: 20px;
        }

            .lottery-result .list .item .btn-tool:hover {
                background-color: #e04826;
            }

            .lottery-result .list .item .btn-charts {
                padding: 0 25px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                color: var(--theme-color);
                background-color: #fff;
                border: 2px solid var(--theme-color);
                font-weight: 500;
                border-radius: 20px;
            }
                .lottery-result .list .item .btn-charts:hover {
                    background-color: #ffebe6;
                }

                .toast-message {
                    position: fixed;
                    top: 20vh;
                    left: 50%;
                    transform: translateX(-50%);
                    padding: 15px;
                    width: fit-content;
                    display: flex;
                    align-items: flex-start;
                    border-radius: 6px;
                    font-size: 16px;
                    font-weight: 500;
                    color: #333;
                }

    .toast-message::before {
        content: "";
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        margin-right: 10px;
        background-size: cover;
        background-repeat: no-repeat;
    }

.toast-info {
    background-color: #c5e7fc;
}

.toast-error {
    background-color: #fccfcf;
}

.toast-success {
    background-color: #c8f0c7;
}

.toast-info::before {
    background-image: url(/img/icon-info.svg);
}

.toast-error::before {
    background-image: url(/img/icon-error.svg);
}

.toast-success::before {
    background-image: url(/img/icon-success.svg);
}

