@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200|Rubik:300,300i');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
}
.navbar-pos {
    position: fixed;
    z-index: 9999;
    bottom: 0;
}
.navbar {
    width: 100%;
    height: 60px;
    display: flex;
    border-top: 2px solid rgb(231, 231, 231);
    background: rgba(243, 243, 243, 0.8);
    backdrop-filter: blur(3px);
}
.navbar.navbar-pos {
    margin-bottom: 0!important;
    padding-bottom: 5px!important;
}
.navbar-btn {
    width: 25%;
    height: 100%;
    padding-top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
}
.navbar-btn svg {
    fill: #8d8e9b;
    width: 30px;
    height: 30px;
}
.navbar-btn:hover svg {
    fill: #3E4151;
    color: #3E4151;
}
.navbar-btn:focus svg {
    fill: #3E4151;
    color: #3E4151;
}
.navbar-btn:active svg {
    fill: #3E4151;
    color: #3E4151;
}
.navbar-btn:hover .navbar-name {
    color: #3E4151;
}
.navbar-btn:focus .navbar-name {
    color: #3E4151;
}
.navbar-btn:active .navbar-name {
    color: #3E4151;
}
.navbar-name {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #8d8e9b;
}
.navbar-menu {
    position: fixed;
    top: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background:rgb(231, 231, 231);
    animation: 250ms animate-open;
}
.d-n {
    display: none;
}
@keyframes animate-open {
    from{
        transform:scale(0);
        opacity: 0;
    }
    to{
        transform:scale(1);
        opacity: 1;
    }
}
.navbar-menu-item {
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}
.navbar-menu-item a {
		font-family: 'Roboto', sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid rgb(214, 214, 214);
    color: #333;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.5s ease;
    font-size: 16px;
}
.navbar-menu-item a:hover {
    background: #F0CE30;
    cursor: pointer;
}
.navbar-menu-item a:focus {
    background: #F0CE30;
}
.navbar-menu-item a:active {
    background: #F0CE30;
}
.navbar-profile {
    position: fixed;
    z-index: 9997;
    width: 100%;
    left: 0;
    bottom: 70px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}
.navbar-profile-item {
    height: 40px;
    padding: 0 5px 0 5px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #8d8e9b;
    background: #F5F5F5;
    border: 1px solid rgb(231, 231, 231);
    border-radius: 5px;
}
.navbar-profile-item svg {
    margin-right: 5px;
    fill: #8d8e9b;
    width: 20px;
    height: 20px;
}
.navbar-profile::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.navbar-profile-item:hover svg {
    fill: #3E4151;
}
.navbar-profile-item:focus svg {
    fill: #3E4151;
}
.navbar-profile-item:active svg {
    fill: #3E4151;
}
.navbar-profile-item:hover {
    color: #3E4151;
    background: #F0CE30;
}
.navbar-profile-item:focus {
    color: #3E4151;
    background: #F0CE30;
}
.navbar-profile-item:active {
    color: #3E4151;
    background: #F0CE30;
}
.profile-item-logout {
    background: #f74c47;
    color: #ebebeb;
}
.profile-item-logout svg {
    fill: #ebebeb;
}
.profile-item-logout:hover {
    background: #e03e38;
    color: #ebebeb;
}
.profile-item-logout:focus {
    background: #e03e38;
    color: #ebebeb;
}
.profile-item-logout:active {
    background: #e03e38;
    color: #ebebeb;
}
.profile-item-logout:hover svg {
    fill: #ebebeb;
}
.profile-item-logout:focus svg {
    fill: #ebebeb;
}
.profile-item-logout:active svg {
    fill: #ebebeb;
}
.new-bottom-navbar {
    display: none;
}
@media screen and (max-width: 1200px) {
    .new-bottom-navbar {
        display: none;
    }
    .mobile-element.mobile-menu {
        display: none!important;
    }
    .scroll-up.go {
        display: none!important;
    }
    .__jivoMobileButton {
      visibility: hidden!important;
    }
    .__jivoMobileButton .logoIconCloud_afa8 {
        visibility: hidden!important;
    }
    #jvlabelWrap {
        visibility: hidden!important;
    }
    .notranslate {
        visibility: hidden!important;
    }
}