/* 
    Created on : 27 avr. 2017
    Author     : Julien Crego
    Author Url : http://dev.juliencrego.com/
*/

$color: #159FC7 ;
$color2: #cccccc ;
$color3: lighten($color, 52%); 



#automatichxmenu {
    
    .button-primary {
        background-color: $color ;
        border-color: $color ;
        box-shadow: none;
        text-shadow: none;
    }
    .button-primary:hover {
        background-color: darken($color,10%) ;
        border-color: darken($color,10%);
    }
    
    margin-right: 20px ;
    
    header {
        border: 1px solid $color2 ;
        border-width: 1px 1px 0 1px ;
        position: relative;
        height: 80px;
        margin-top: 20px ;
        padding-left: 90px;
        line-height:50px;
        border-radius: 5px 5px 0px 0px;
        background: $color url('../img/logo_plugin.png') no-repeat 10px ;

        h1 {
            color: #fff ;
        }
        
        #logo {
            position: absolute;
            right: 30px;
            top: -10px; 
            display: block;
            width: 100px;
            height: 100px;
            background: url('../img/logo.png') no-repeat ;
            box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.7); 
            border-radius: 50px;
        }
    }
    
    
    .ahxm-menu {
        width: 150px;
        float:left ;
        margin: 0px;
        padding: 0px;
        z-index:30 ;
        
        ul, li {
            margin: 0px;
            padding: 0px;
        }
        .ahxm-nav {
            padding: 10px 7px ;
            display: block ;
            border: 1px solid $color2 ;
            border-width: 0px 1px 1px 1px;
            background-color: $color3 ;
            text-decoration: none;
            color: #000;
            font-weight: bold;
        }
        .ahxm-nav:focus {
            box-shadow: none;
        }
        li:first-of-type .ahxm-nav {
            border-width: 1px 1px 1px 1px;
        }
        .ahxm-nav:hover {
            background-color: #eee;
        }
        
        .ahxm-nav-active, 
        .ahxm-nav-active:hover {
            background-color: #ffffff ;
            border-right-color: #ffffff ;
        }
        .ahxm-nav-active {
            color: $color !important ;
        }
    }
    
    .ahxm-donate {
        border: 1px solid $color2 ;
        margin: 30px 0 0 0 ;
        padding-bottom: 10px;
        text-align: center ;
        background-color: #fff ;
    }
    
    .ahxm-tab {
        margin-left: 149px;
        border: 1px solid $color2 ;
        background-color: #ffffff ;
        padding: 10px;
        display:none ;
    }
    
    .ahxm-tab-active {
        display: block;
        z-index:30 ;
    }
    
    h2 {
        margin:0px;
        padding-bottom: 10px;
        border-bottom: 1px dashed $color ;
        color: $color ;
    }
    
    .form-table {
        clear: none;
    }
    
    textarea {
        width: 100%;
        height: 300px;
    }
}