.p-1{
    padding:1rem;
}

.pe-1{
    padding-right:1rem;
}

.ps-1 {
    padding-left: 1rem;
}



.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

    .mobile-menu-overlay.show {
        display: block;
    }

.mobile-menu-drawer {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    /*padding: 20px 0;*/
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: bottom 0.3s ease;
    z-index: 100;
}

    .mobile-menu-drawer.open {
        bottom: env(safe-area-inset-bottom, 0px);
    }

.mobile-menu-item {
    color: black;
    font-size: 18px;
     font-weight: 500; 
    text-decoration: none;
    padding: 10px 30px;
    width: 100%;
    text-align: end;
    border-bottom: 1px solid rgba(189, 189, 189, 1);
}

    .mobile-menu-item:last-child {
        border-bottom: none;
    }



.mobile-module-name {
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #696969;
    margin-left: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*    .mobile-module-name:hover {
        color: #fff;
    }*/



.circle-mobile {
    background: #008181;
    border-radius: 100%;
    width: calc(260px * var(--scale));
    overflow: hidden;
    position:relative;
}

    .circle-mobile:after {
        padding-top: 100%;
        content: '';
        display: block;
    }
    .circle-mobile .logo-container-mobile {
        padding: 0 calc(15px * var(--scale));
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
    }

.logo-container-mobile img {
    width: 100%;
    height: auto;
    display: block;
}



.input-string-mobile {
    background-color: white;
    border-radius: 3px;
    width: 100%;
    height: 25px;
    text-align: right;
    padding: 0 4px;
}

.checkbox-size-mobile {
    width: calc(24px * var(--scale)) !important;
    height: calc(24px * var(--scale)) !important;
}
