/* Toolbar */
.toolbar{
    position: fixed;
    width:100%;
    left:0;
    top:0;
    padding: 0 20px;
    z-index: 1000;
    color:#fff;
    background:#f44336;
    min-height: 60px !important;
    height: 60px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,.3);
    white-space: nowrap;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.toolbar-spacer{
    display: flex;
    flex:1 1 0;
}
.toolbar-menu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: stretch;
    align-items: center;
}
.nav-toolbar-menu{
    display: flex;
    align-items: stretch;
    align-self: stretch;
}
.nav-toolbar-menu .menu{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.nav-toolbar-menu .menu li{
    display: flex;
    align-items: stretch;
}
.nav-toolbar-menu .menu li a{
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    padding: 0 15px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-toolbar-menu .menu li a i{
    margin-right: 7px;
    font-size: 31px;
    display:none;
}
.nav-toolbar-menu .menu li a span{
    display:inline-block;
}
.nav-toolbar-menu .menu .current-menu-item a{
    border-bottom-color: #fff;
}
.toolbar-logo{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex:1;
    color:rgba(0,0,0,0.4);
}
.toolbar-logo a{
    display: flex;
    align-items: center;
    color:rgba(0,0,0,0.4) !important;
    text-decoration: none;
}
.toolbar-logo span{
    display:inline-block;
    margin-right:15px;
    margin-top: -5px;
    font-size: 14px;
}
.toolbar-logo .rm_logo{
    height:30px;
}

.toolbar-login{
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    margin-left: 10px;
}

.mat-btn{
    border:0;
    background:transparent;
    outline: 0;
    text-align: center;
    margin: 0 10px;
    min-width: 88px;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 2px;
    cursor: pointer;
    color:#fff;
    font-size:14px;
    transition: all .1s;
}
.mat-btn:hover{
    background-color: rgba(0,0,0,.12);
}
.mat-btn:focus{
    background-color: rgba(0,0,0,.3);
}

.more-icon{
    font-size:31px;
}
rm-login {
	justify-content: center;
	align-items: center;
	display: flex;
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: 0;
	margin: 0;
}
rm-login #rmloginblur {
	opacity: .48;
	background: rgba(0,0,0,.6);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-tap-highlight-color: transparent;
	-webkit-transition: opacity .4s cubic-bezier(.25,.8,.25,1);
	transition: opacity .4s cubic-bezier(.25,.8,.25,1);
	position: absolute;
	pointer-events: auto;
	z-index: 1010;
}
rm-login #rmloginoutbox {
	box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
	display: block;
	background-color: white;
	padding: 24px;
	border-radius: 2px;
	box-sizing: border-box;
	overflow: auto;
	outline: 0;
    max-width:448px;
    max-height:548px;
    z-index: 1020;

	justify-content: center;
	align-items: center;
}
rm-login #rmloginbox {
	display: block;
	position: relative;
	background: #d23b2c;
	max-width: 400px;
	max-height: 500px;
	height: 100vh;
}
rm-login #rmloginclose{
    position: absolute;
    top:10px;
    right:10px;
    color:#fff;
    cursor:pointer;
}
rm-login #rmloginbox iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 599px){
    rm-login #rmloginbox {
        margin: -25px;
    }
}