:root {
    /*colors*/
    --black: #0c0b0b;
    --white: #ffffff;
    --mb-background: #433b38;
    --mb-websitecolor: #fea500;
    --mb-red: #ff6157;
    --mb-violet: #9474EE;
    --mb-pink: #FB9089;
    --mb-green: #7ADB58;
    --mb-grey: #EAEAEA;
    --mb-lightgrey: #FBFBFB;
    --mb-darkgrey: #9D9797;
    --mb-bordergray: #CFCFCF;

    /*sizes*/
    --container-max: 768px;
    --navbar-height: 60px;

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: unset;
}
a:hover{
    text-decoration: none;
    color: unset;
}
a.link--mb{
    color: var(--mb-websitecolor);
}
.mb--mw{
    max-width: var(--container-max);
}
.mb-100vh{
    height: 100vh;
}
.mb--cont{
    padding-top: calc(var(--navbar-height) + 30px);
}
.mb--navbar{
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px;
    background-color: var(--mb-websitecolor);
    height: var(--navbar-height);
    width: 100%;
    color: #ffffff;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.2);
}
.mb--navbar .inner-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.app-title{
    font-size: 20px;
    font-weight: bold;
}
.btn--mb{
    background-color: var(--mb-websitecolor);
    color: #ffffff;
}
.btn--mb-dark{
    background-color: #b87802;
    color: #ffffff;
}
.hamburgher-menu{
    position: relative;
    width: 30px;
    overflow: hidden;
    z-index: 999;
}
.hamburgher-menu .line{
    height: 3px;
    width: 100%;
    margin-bottom: 5px;
    background-color: #ffffff;
    border-radius: 15px;
    transition: all 0.2s linear;
}
.hamburgher-menu.open .line:nth-child(1){
    -webkit-transform: rotate(45deg) translate(8px, 8px);
    -moz-transform: rotate(45deg) translate(8px, 8px);
    -o-transform: rotate(45deg) translate(8px, 8px);
    transform: rotate(45deg) translate(8px, 8px);
}
.hamburgher-menu.open .line:nth-child(2){
    transform: translateX(-50px);
}
.hamburgher-menu.open .line:nth-child(3){
    -webkit-transform: rotate(-45deg) translate(4px, -3px);
    -moz-transform: rotate(-45deg) translate(4px, -3px);
    -o-transform: rotate(-45deg) translate(4px, -3px);
    transform: rotate(-45deg) translate(4px, -3px);
}

.hamburgher-menu .alert-dot{
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: red;
    position: absolute;
    top: calc(50% - 2px);
    right: 50%;
    transform: translate(50%,-50%);
    border-radius: 50%;
    font-size: 13px;
}
/* Navbar Menu */
.bs--menu .offcanvas-header{
    justify-content: space-between;
    -webkit-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.4);
}
.bs--menu .offcanvas-header .offcanvas-title{
    font-size: 1.75rem;
}
.bs--menu .offcanvas-body .menu-item{
    display: flex;
    align-items: baseline;
}
.bs--menu .offcanvas-body .menu-item .item-icon{
    font-size: 1.7rem;
    color: grey;
    margin-right: 30px;
}
.bs--menu .offcanvas-body .menu-item .item-name{
    width: 100%;
    font-size: 1.3rem;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid var(--mb-bordergray);
}
/* End Navbar Menu */

/* dashboard */
.dashboard-menu-cont{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.mb-icon-container{
    height: 160px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--mb-background);
    border: 1px solid var(--mb-websitecolor);
    margin-bottom: 30px;
    color: var(--mb-websitecolor);
}
.mb-icon-container i{
    margin-bottom: 20px;
    font-size: 3rem;
}
.mb-icon-container p{
    font-size: 1.5rem;
    font-weight: bold;
}
/* END dashboard */

/* Event list */
.col-event-card{
    margin-bottom: 35px;
}
.col-event-card .info-container{
    width: 100%;
    border-bottom: 1px solid var(--mb-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.col-event-card .info-container .date-info-box{
    display: flex;
    flex-direction: column;
    width: 180px;
    padding: 20px;
    margin-left: 5px;
    margin-bottom: 2px;
    background-color: var(--mb-websitecolor);
    color: #ffffff;
    text-align: center;
}
.col-event-card .info-container .date-info-box p{
    margin-bottom: 4px;
}
.col-event-card .info-container .status-info{
    display: flex;
    justify-content: center;
    width: 180px;
    padding: 20px;
    color: #ffffff;
}
.status-info .usr-application-status-circle{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #808080;
    position: relative;
    margin-right: 20px;
}
.status-info .usr-application-status-circle:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #808080;
}
.status-info.primary .usr-application-status-circle:nth-child(3){
    background-color: #4CAF50;
}
.status-info.primary .usr-application-status-circle:nth-child(3):after{
    border-color: #4CAF50;
}
.status-info.secondary .usr-application-status-circle:nth-child(2){
    background-color: #ffe607;
}
.status-info.secondary .usr-application-status-circle:nth-child(2):after{
    border-color: #ffe607;
}
.status-info.secondary .usr-application-status-circle:nth-child(3){
    background-color: #4CAF50;
}
.status-info.secondary .usr-application-status-circle:nth-child(3):after{
    border-color: #4CAF50;
}
.status-info.waiting .usr-application-status-circle:nth-child(2){
    background-color: #ffe607;
}
.status-info.waiting .usr-application-status-circle:nth-child(2):after{
    border-color: #ffe607;
}
.status-info.closed:not(.primary):not(.secondary) .usr-application-status-circle:nth-child(1){
    background-color: #dc3545
}
.status-info.closed:not(.primary):not(.secondary) .usr-application-status-circle:nth-child(1):after{
    border-color: #dc3545;
}
.status-info.closed:not(.primary):not(.secondary) .usr-application-status-circle:nth-child(2),
.status-info.closed:not(.primary):not(.secondary) .usr-application-status-circle:nth-child(3){
    background-color: #808080
}
.status-info.closed:not(.primary):not(.secondary) .usr-application-status-circle:nth-child(2):after,
.status-info.closed:not(.primary):not(.secondary) .usr-application-status-circle:nth-child(3):after{
    border-color: #808080;
}
/* END Event list */

/* User Profile */
.inner-card{
    padding: 20px 25px;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 30px;
}
.mb--form-group{
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-box-shadow: 1px 4px 5px 0px rgb(0 0 0 / 8%);
    box-shadow: 1px 4px 5px 0px rgb(0 0 0 / 8%);
}
.mb--form-group .fg-icon{
    color: var(--mb-websitecolor);
    font-size: 2rem;
    margin-right: 35px;
}
.mb--form-group .fg-input-cont{
    width: 100%;
}

/* END User Profile */

/* Contact page */
.mb--li{
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid var(--mb-bordergray);
}
.mb--li .item-icon{
    font-size: 1.7rem;
    color: var(--mb-websitecolor);
    margin-right: 30px;
}
.mb--li .item-name{
    width: 100%;
    font-size: 1.3rem;
}
/* END Contact page */

@media (max-width: 500px){
    .mb-icon-container p {
        font-size: 1.3rem;
    }
}
@media (max-width: 450px){
    .mb-icon-container p {
        font-size: 1.15rem;
    }
}
.tel-prefix{
    display: flex;
    align-items: center;
    padding: 0.375rem 0.55rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3e444a;
    text-align: center;
    white-space: nowrap;
    background-color: #f0f2f5 !important;
    box-shadow: 0 1px 0 #d4dae3;
    border: 1px solid #d8dde5;
    border-radius: 0.25rem 0 0 0.25rem;
}