/**{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2196f3;
  min-height:100vh;
}*/

.tab-bar {
    position: fixed;
    height: 80px;
    z-index: 1;
    user-select: none;
    bottom: 10px;
    width: 98%;
    left: 1%;
    right: 1%;
    display: none;
}

    .tab-bar .menuToggle {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        background: #ff3b7c;
        z-index: 1;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: normal;
        color: #fff;
        font-size: 2.5em;
        font-weight: 100;
        transition: 1s ease-in-out;
    }

    .tab-bar.active .menuToggle {
        transform: translateX(-50%) rotate(225deg);
    }

    .tab-bar .circular,
    .tab-bar .circularbg1,
    .tab-bar .circularbg2 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
        height: 80px;
        background: #e8e1e1f0;
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 80px;
        z-index: 0;
        transform-origin: top center;
        transition: 1s ease-in-out;
    }

    .tab-bar .circularbg1 {
        background: #8bc34a;
        transition: 0.6s ease-in-out;
        transition-delay: 0.4s;
    }

    .tab-bar .circularbg2 {
        background: #ffeb3b;
        transition: 0.8s ease-in-out;
        transition-delay: 0.2s;
    }

    .tab-bar.active .circular,
    .tab-bar.active .circularbg1,
    .tab-bar.active .circularbg2 {
        transform: translateX(-50%) rotate(180deg);
    }

    .tab-bar.active .circularbg1,
    .tab-bar.active .circularbg2 {
        transition-delay: 0s;
    }

    .tab-bar ul.circle {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        inset: 0;
    }

        .tab-bar ul.circle li {
            list-style: none;
            display: flex;
            position: absolute;
            cursor: pointer;
        }

            .tab-bar ul.circle li:nth-child(1) {
                transform: translate(50px, -15px);
            }

            .tab-bar ul.circle li:nth-child(2) {
                transform: translate(0px, 15px);
            }

            .tab-bar ul.circle li:nth-child(3) {
                transform: translate(-50px, -15px);
            }

            .tab-bar ul.circle li ion-icon {
                transform: rotate(180deg);
                font-size: 1.25em;
                color: #bbb;
                pointer-events: none;
            }

            .tab-bar ul.circle li:hover ion-icon {
                color: #ff3b7e;
            }

    .tab-bar a, .tab-bar svg {
        font-size: 1.5rem;
        color: #040b45;
    }

    .tab-bar ul.menu {
        position: absolute;
        inset: 0;
        background: #dad8e5;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 55px;
        box-shadow: 0 -15px 25px rgba(0,0,0,0.1);
        border: solid 1px #2f2f3582;
        box-shadow: 0px 0px 5px #7160605c;
    }

        .tab-bar ul.menu li {
            list-style: none;
        }

            .tab-bar ul.menu li ion-icon {
                font-size: 1.5em;
                color: #bbb;
                pointer-events: none;
            }

            .tab-bar ul.menu li:hover ion-icon {
                color: #2196f3;
            }


@media (max-width: 768px) {
    .tab-bar {
        display: unset !important;
    }
}
