﻿@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons+Outlined");

:root {
    --accent-color: #1fa8f5;
    --accent-color-fg: #fefefe;
    --backdrop-color: #89d4fe;
    --app-content-background-color: #c0d8ec;
    --inset-shadow: rgba(7, 43, 74, 0.3);
    --outset-shadow: rgba(223, 240, 255, 0.25);
    --clay-box-shadow: rgba(7, 43, 74, 0.3);
    --clay-background-color: #c0d8ec;
    --clay-fg-color: #444;
}

body {
    padding-bottom: 40px;
}

.mobileMenu {
    display: none;
}

    .mobileMenu .bottomMenubar li a {
        color: #888 !important;
    }

@media only screen and (max-width: 860px) {
    .mobileMenu {
        display: block;
    }

    .topMenu {
        display: none;
    }

    .announcement {
        display: none;
    }
}



.flex-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
}


.home.active {
    color: var(--accent-color);
}

.tabbar {
    box-sizing: content-box;
    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
}

    .tabbar ul,
    .tabbar li {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .tabbar ul {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: #fff;
        align-self: flex-end;
        height: 60px;
        display: flex;
        justify-content: space-around;
        border-radius: 20px 20px 0 0;
        box-shadow: 0px 0px 2px #222222a6;
    }

    .tabbar li {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        margin-right: 5px;
        transition: all 0.4s;
        background-color: #fff;
        width: 60px;
        height: 60px;
        position: relative;
        color: #888;
        cursor: pointer;
        flex-direction: column;
        font-family: tahoma;
        font-size: 12px;
        border-radius:20px;
    }

        .tabbar li a {
            display: flex;
            flex-direction: column;
        }

        .tabbar li:last-child {
            margin-right: 0;
        }


.tab-style1 li a {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 1px;
    left: 0;
    width: 60px;
    height: 50px;
    transition: top 0.2s ease-out, width 0.4s, border-radius 0.4s, box-shadow 0.4s;
    color: #888;
}

    .tab-style1 li a.activeLink {
        color: #0ea960;
        border-bottom: none;
    }

.tab-style1 .follow {
    position: absolute;
    z-index: -13;
    border-radius: 100%;
    content: " ";
    width: 60px;
    height: 60px;
    border: 10px solid var(--app-content-background-color);
    background-color: var(--app-content-background-color);
    top: -11px;
    transition: left 0.4s ease-in, background-color 0.4s, border-color 0.4s;
}

    .tab-style1 .follow:before, .tab-style1 .follow:after {
        content: " ";
        position: absolute;
        top: 27px;
        right: -27px;
        border-top: 11px solid var(--app-content-background-color);
        background-color: #eee;
        width: 20px;
        height: 20px;
        box-sizing: border-box;
        transition: border-color 0.4s;
    }

    .tab-style1 .follow::after {
        border-top-left-radius: 100%;
    }

    .tab-style1 .follow:before {
        left: -27px;
        right: unset;
        border-top-right-radius: 100%;
    }

.tab-style1 .active {
    z-index: 100;
    width: 60px;
    height: 60px;
    top: -2rem;
    border-radius: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    font-size: 10px;
}

.homeBtn {
    background-color: #f9f8fa;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* install App*/
.installApp {
    width: 100%;
    height: 60px;
    background-color: #fff;
    position: fixed;
    bottom: 60px;
    border: 1px solid #22222226;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 99;
}

    .installApp a {
        display: flex;
        align-items: center;
    }


@keyframes hideApp {
    from {
        left: 0;
    }

    to {
        left: -1500px;
    }
}

.installApp.hideinstallapp {
    animation-name: hideApp;
    animation-duration: 2s;
    left: -1500px;
}

.closeBtn {
    cursor: pointer;
}


/*Top Menubar*/
.topMenubar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #40e389;
    z-index: 101;
    min-height: 50px;
    display: flex;
}

.topMenuItem {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    width:100%
}

    .topMenuItem .logoSite {
        display: flex;
        align-items: center;
    }

        .topMenuItem .logoSite h1 {
            font-size: 20px;
            margin: 0;
            color: #fff;
            margin-right: 12px;
        }

        .topMenuItem .logoSite img {
            width: 36px;
        }

.navBarItems {
    display: flex;
    padding: 5px 10px 0 10px;
    justify-content: space-between;
    flex-direction: row-reverse;
}

    .navBarItems .user,
    .navBarItems .FAQ {
        /*margin: 0 10px;*/
        position: relative;
        cursor: pointer;
        padding: 10px 0
    }

        .navBarItems .user span,
        .navBarItems .FAQ span {
            color: #fff;
        }

        .navBarItems .user:hover .dropDownUserMenu {
            display: block;
        }

.dropDownUserMenu {
    background-color: #fff;
    position: absolute;
    left: -56px;
    width: 150px;
    margin-top: 10px;
    /*  padding: 10px;*/
    border: 1px solid #11111117;
    border-top: none;
    display: none;
}

    .dropDownUserMenu .userAcountItem {
        margin-top: 0;
        margin-bottom: 0;
    }

        .dropDownUserMenu .userAcountItem li {
            /*margin-bottom: 10px;*/
            padding: 10px
        }

    .dropDownUserMenu .arrowMenuUser {
        width: 10px;
        height: 10px;
        position: absolute;
        top: -10px;
        left: 57px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid white;
    }

    .dropDownUserMenu .userAcountItem li:hover {
        background-color: #efefef;
    }

    .dropDownUserMenu .userAcountItem li a {
        display: flex;
        color: #888;
    }

        .dropDownUserMenu .userAcountItem li a span {
            margin: 0 5px;
            color: #888;
        }
