
/************************************************************* toolbar ************************************************************/

.toolbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 610px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid #F1F1F2;
    background: #FAFAFA;
    box-shadow: 0px -1px 1px 0px rgba(217, 217, 217, 0.25);
    box-sizing: border-box;
}

.toolbar .btn {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-sizing: border-box;
    cursor: pointer;
}

.toolbar .btn:hover {
    background: #F4F5F7;
}

.my_profile {
    box-sizing: border-box;
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    border-radius: 99px;
    border: 1px solid #DDDCDB;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main_icon {
    width: 25px !important;
    height: 25px;
    flex-shrink: 0;
    border-radius: 99px;
    background-image: url(https://mopenmarket.speedgabia.com/mimo/icons/mimo_icon.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #FFF;
}

.toolbar .btn p {
    color: #222;
    text-align: center;
    font-family: Pretendard;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 11px */
    letter-spacing: -0.5px;
    margin: 0;
}