: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;

}

.home.active {

    color: var(--accent-color);

}

.home-style {

    --app-content-background-color: #c0d8ec;

}

.products.active {

    --outset-shadow: rgba(247, 167, 103, 0.45);

    --inset-shadow: rgba(149, 62, 8, 0.45);

    --clay-box-shadow: rgba(211, 69, 20, 0.4);

    --clay-background-color: #d34514;

    --clay-fg-color: #f1f2f3;

    color: #690c0c;

}

.products-style {

    --app-content-background-color: #d36e5a;

}

.services.active {

    --outset-shadow: rgba(255, 159, 40, 0.45);

    --inset-shadow: rgba(88, 54, 13, 0.45);

    --clay-box-shadow: rgba(88, 54, 13, 0.4);

    --clay-background-color: #ed9426;

    --clay-fg-color: #f1f2f3;

    color: #cf5c0f;

}

.services-style {

    --app-content-background-color: #ed9426;

}

.about.active {

    --outset-shadow: rgba(93, 255, 85, 0.45);

    --inset-shadow: rgba(28, 78, 26, 0.45);

    --clay-box-shadow: rgba(28, 78, 26, 0.4);

    --clay-background-color: #4dd146;

    --clay-fg-color: #f1f2f3;

    color: #4dd146;

}

.about-style {

    --app-content-background-color: #4dd146;

}

.help.active {

    --outset-shadow: rgba(230, 230, 230, 0.45);

    --inset-shadow: rgba(81, 81, 81, 0.45);

    --clay-box-shadow: rgba(81, 81, 81, 0.4);

    --clay-background-color: #a3a3a3;

    --clay-fg-color: #f1f2f3;

    color: #783896;

}

.help-style {

    --app-content-background-color: #a3a3a3;

}

.tabbar {


    border-top-left-radius: 1rem;

    border-top-right-radius: 1rem;

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

    height: 50px;

    display: flex;

    flex-direction: column;

    box-sizing: content-box;

    position: relative;

    transition: background-color 0.4s;

}

.tabbar ul,
.tabbar li {

    list-style-type: none;

    margin: 0;

    padding: 0;

}

.tabbar li {

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 1rem;

    margin-right: 5px;

    transition: all 0.4s;

    background-color: transparent;

    width: 60px;

    height: 60px;

    position: relative;

    color: #888;

    cursor: pointer;

}

.tabbar li:last-child {

    margin-right: 0;

}
.tab-style1 li {

    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;
}


.tab-style1 .active {
    width: 60px;
    height: 60px;
    top: -1.3rem;
    border-radius: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 10px 18px 0 rgba(0, 0, 0, 0.2);
    -webkit-animation: tilt-in-fwd-bl 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: tilt-in-fwd-bl 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    background-color: #f9f8fa;
    z-index: -1;
}

@-webkit-keyframes tilt-in-fwd-bl {
    0% {
        -webkit-transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
        transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
        opacity: 0;
        z-index: -1;
        filter: blur(0px);
    }
    40% {
        filter: blur(3px);
    }
    100% {
        -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
        transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
        opacity: 1;
        z-index: 1;
        filter: blur(0);
    }
}
@keyframes tilt-in-fwd-bl {
    0% {
        -webkit-transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
        transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
        opacity: 0;
        z-index: -1;
        filter: blur(0px);
    }
    40% {
        filter: blur(3px);
    }
    100% {
        -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
        transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
        transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
        opacity: 1;
        z-index: 1;
         filter: blur(0);
    }
}

#bottom-ul {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-around;
}

#bottom-ul::before {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: url(bottom_nav.png);
    background-repeat: repeat-x;
    align-self: flex-end;
    height: 50px;
    transition: background-position 0.6s ease-in-out;
    list-style-type: none;
    content: "";
}