* {
    margin: 0;
    padding: 0;
    z-index: 0;
    font-family: "Roboto", "arial" ,"helvetica neue", sans-serif;
}

body{
    background-image: url("../img/background_logos.png");
    background-color: #030303;
}

header{
    width: 100%;
    height: 50px;
    background-color: #fed001;
    position: fixed;
    top: 0;
    z-index: 1;
}

header .logo-ctn{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 5px;
}

header .logo-ctn img{
    width: 50px;
    height: auto;
    top:0;
    left: 0;
    position: absolute;
}

.compact-menu-btn{
    width: 50px;
    height: 50px;
    top: 0;
    right: 0;
    position: fixed;
    z-index: 3;

    transition: all .15s ease-out;
    /*especifico a navegadores:*/
    -webkit-transition: all .15s ease-out; /*Google*/
    -o-transition: all .15s ease-out;      /*Opera*/
    -moz-transition: all .15s ease-out;    /*Mozilla*/
    -ms-transition: all .15s ease-out;
}

.compact-menu-btn:hover{
    background-color: #000000;
}

.compact-menu-btn .navbar-btn{
    width: 60%;
    height: 10%;
    left: 20%;
    background-color: #000000;
    position: absolute;
    border-radius: 25px;
    
    transition: all .15s ease-out;
    /*especifico a navegadores:*/
    -webkit-transition: all .15s ease-out; /*Google*/
    -o-transition: all .15s ease-out;      /*Opera*/
    -moz-transition: all .15s ease-out;    /*Mozilla*/
    -ms-transition: all .15s ease-out;      
}

.compact-menu-btn:hover .navbar-btn{
    background-color: #fed001;
}

.compact-menu-btn .navbar-btn-position1{
    top:25%;
}

.compact-menu-btn .navbar-btn-position2{
    top:45%;
}

.compact-menu-btn .navbar-btn-position3{
    top:65%;
}

.navbar-menu{
    width: 350px;
    height: inherit;
    position: fixed;
    right: 5px;
    top: 25px;
    opacity: 0;
    z-index: 1;
    transition: all .15s ease-out;
    /*especifico a navegadores:*/
    -webkit-transition: all .15s ease-out; /*Google*/
    -o-transition: all .15s ease-out;   /*Opera*/
    -moz-transition: all .15s ease-out; /*Mozilla*/
    -ms-transition: all .15s ease-out;

}

.navbar-menu .ctn-information{
    margin-top: 15px;
    background-color: rgba(250,250,250,0.98);
    box-shadow: 0px 2px 1.5px rgba(0,0,0,0.2);
}

.navbar-menu .ctn-information p{
    font-size: 14px;
    font-weight: bold;
    margin-left: 8px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 28px;
    color: #030303;
}

.navbar-menu .ctn-information .navbar-options{
    position: absolute;
    bottom: 0;    
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #9a9a9a;    
}

.navbar-menu .ctn-information .left_info:hover{
    color: #ffa200;
}

.navbar-menu .ctn-information .left_info{
    left: 0;
    margin-left: 8px;
}

.navbar-menu .ctn-information .right_info:hover{
    color: #ffa200;
}

.navbar-menu .ctn-information .right_info{
    right: 0;
    margin-right: 8px;
}

.triangle-form {
    position: absolute;
    top: 0;
    right: 8px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 15px solid rgba(250,250,250,0.98);
    
    transition: all .15s ease-out;
    /*especifico a navegadores:*/
    -webkit-transition: all .15s ease-out; /*Google*/
    -o-transition: all .15s ease-out;   /*Opera*/
    -moz-transition: all .15s ease-out; /*Mozilla*/
    -ms-transition: all .15s ease-out;
}

.navbar-menu-transition{
    top: 60px;    
    opacity: 1;
}



