/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 1/set/2017, 11:58:43
    Author     : Milu
*/

body.opened_sidemenu .content_container {
    max-width: 870px;
    /* padding-left: 300px; */
}

body.opened_sidemenu .home_banner_container > div {
    width: 846px;
    padding-left: 300px;
}

.sidemenu_container {
    position: relative;
    width: 0;
    background: #fff;
    overflow: hidden;
    z-index: 1000;
    height: 100%;
    transition: .15s all linear;
}

.sidemenu_container.opened_sidemenu {
    width: 300px;
}


button.header_button.md-icon-button > md-icon {
    color: #fff !important;
}



.sidemenu_items_wrapper {
    padding: 0 24px;
}
.sidemenu_item_logo {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.sidemenu_item_text {
    font-size: 18px;
    color: #007dab;
    /*border-bottom: 1px solid #d00a16;*/
    margin: 0 12px;
    line-height: 24px;
}
.sidemenu_item_alt_logo {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    transition: .15s all linear;
}
.sidemenu_item_alt_logo.sidemenu_item_alt_logo_rotate {
    transform: rotate(0deg);
}
.sidemenu_subitem_text {
    color: #007dab;
    font-size: 14px;
    padding: 0 36px;
    line-height: 20px;
    cursor: pointer;
}
.sidemenu_item_wrapper {
    padding: 16px 0;
    cursor: pointer;
}
.sidemenu_subitem_container {
    max-height: 0px;
    overflow: hidden;
    transition: .15s all linear;
}
.sidemenu_subitem_container.sidemenu_subtitems_showing {
    max-height: 300px;
}