.customMobileMenu{
    width: 20px;
}

#icon_calculator img{
    width: 15px !important;
}

#leftMenuContainer {
    background: #f8f9fb;
    width: 300px;
    padding: 20px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
    position: relative;
}

#customContainerFlex{
    display: flex;
    height: calc(100vh - 60px);
}

#welcomeSec{
    margin-left: 10px;
}

#welcomeSec h4{
    color: #89898a;
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 400;
}

#welcomeSec h3{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0px;
}

#companyInfoFlex{
    align-content: center;
    align-items: center;
    position: relative;
}

#topNotifyIcon{
    width: 30px;
    height: auto;
   
}

#topNotifySec{
    position: absolute;
    right: 10px;
    cursor: pointer;
}

#topNotifySec *{
    pointer-events: none;
}

#topNotifyAlertSec{
background: var(--theme-color);
    border-radius: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: -12px;
    width: 18px;
    height: 18px;
}

#topNotifyAlert
{
    font-weight: 500;
    color: white;
    font-size: 10px;
}

.desktopMenuIcons{
    width: 20px;
    height: auto;
}

#desktopMenuFlex{
    flex-direction: column;
}

.desktopMenuLink{
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: 0.3s;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.desktopMenuLink p{
    color: var(--theme-grey-color);
    pointer-events: none;
    font-weight: 400;
    padding-left: 30px;
    margin-bottom: 0px;
}

.menuFirstCha{
    font-size: 12px;
    font-weight: 400;
    color: var(--theme-grey-color);
    background: #eff3f5;
    padding: 12px;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
}

.activeMenu{
    background: var(--theme-gradient);
    border-radius: 10px !important;
}

#desktopMenuFlex a{
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 20px;
    font-size: 12px;
    
}

#desktopMenuFlex a:hover{
    background: var(--theme-gradient);
    border-radius: 10px;
    background-position: left;
    transition: .3s ease-out;
}

.activeMenu .menuFirstCha, #desktopMenuFlex a:hover .menuFirstCha{
    color: var(--theme-color) !important;
}

.activeMenu p, #desktopMenuFlex a:hover p{
    color: white !important;
}

#supportContainer{
    background: var(--theme-gradient);
    padding: 20px;
    margin: 20px;
    border-radius: 20px;
    margin-right: 40px;
    position: absolute;
    bottom: -130px;
    transition: 0.3s;
    -webkit-box-shadow: var(--red-shadow);
    box-shadow: var(--red-shadow);
}

#supportContainer:hover{
    position: absolute;
    bottom: 0px;
    transition: 0.3s;
}


#supportContainer h4, #supportContainer p{
    color: white;
}

#supportContainer h4{
    font-size: 15px;
    font-weight: 400;
}

#supportContainer p{
    font-size: 12px;
    font-weight: 400;
}

/* Tablet */
@media only screen and (max-width: 992px) and (min-width: 601px) {
    .dataCol{
        padding-left: 0px !important;
        margin-bottom: 20px;
    }

    #leftMenuContainer{
        width: 268px;
    }

    .siteTitle{
        margin-left: -20px;
    }
    
    .borderLeftLine{
        border-right: none !important;
    }

}

/* Phone */
@media screen and (max-width: 600px) {
    #leftMenuContainer{
        display: none;
    }

    #rightContentContainer{
        width: 100% !important;
    }

    .dataCol{
        padding-left: 0px !important;
        margin-bottom: 20px;
    }

    .borderLeftLine{
        border-right: none !important;
    }

    #flagContainer{
        display: none !important;
    }

    .siteTitle{
        margin-left: -20px;
    }

}