/* Add red asterix at required fields */
.required:after
{
    content:" *";
    color: red;
    /*font-size: large;*/
}

/* Allow logo as user profile pic */
.m-topbar .m-topbar__nav.m-nav > .m-nav__item > .m-nav__link .m-topbar__userpic img {
    max-width: 150px !important;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    -ms-border-radius: 0%;
    -o-border-radius: 0%;
    border-radius: 0%;
}

/* Add down-arrow below logo */
.tenant_logo {
    /*content:'';*/
    /*width: 0;*/
    /*height: 0;*/
    /*border-left: 20px solid transparent;*/
    /*border-right: 20px solid transparent;*/
    /*border-top: 20px solid #f00;*/
    /*position:absolute;*/
    /*left:50%;*/
    /*top:0;*/
    /*transform:translatex(-50%); !** making it horizontally center **!*/
    content: "";
    width:0px;
    height:0px;
    border-left:12px solid transparent;
    border-right:12px solid transparent;
    border-top:12px solid #7e55dd;
    position:absolute;
    bottom:3px;
    left: 50%;
    margin-left: -12px;
}

/* Dark borders around input fields */
.form-control {
    border-color: #b4b4b4;
}

/* Fix stacked modals scrolling */
.modal {
    overflow-y:auto;
}