/*
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 : 15-mar-2020, 17:03:51
    Author     : adrian
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


body {
    font-family: 'Poppins', sans-serif;
    background: #f5f6f7;
    overflow-x: hidden;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

select.form-control[size]{
    -webkit-appearance: none;
    -moz-appearance: none; 
    position: relative;
}
/* ---------------------------------------------------
    HEADER STYLE
----------------------------------------------------- */

.container-header{
    background-color: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.icon-movile{
    display: none;
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.sidebar-heading {
    font-size: .85rem;
    padding: 16px;
    background-color: #ff2b26;
    color: white;
}

.fa-bars{
    display: none;
}

#mobile{
    display: none;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif !important;
    z-index: 999;
}

/*#sidebar.active {
    margin-left: -250px;
}*/

#sidebar .sidebar-header {
    background: #6d7fcc;
}

#sidebar ul.components {
    list-style: none;
    margin-left: -28px;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 0.9em;
    display: block;
}
#sidebar ul li a:hover {
    color: #ff2b26;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #ff2b26;

}


a[data-toggle="collapse"] {
    position: relative;
}

ul ul a {
    font-size: 0.8em !important;
    padding-left: 30px !important;

}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
}

a.article, a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    min-height: 100vh;
    position: inherit;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 575px) {
    .container-header{
        background-color: #fff;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}
@media (max-width: 768px) {


    #sidebar {
        min-width: 100%;
        background: #fff;
        color: #000;
        font-family: 'Poppins', sans-serif !important;
    }

    .fa-bars{
        display: initial;
    }

    #web{
        display: none;
    }

    #mobile{
        display: block;
    }

    #sidebar{
        display: none;
    }
    
    .icon-web{
        display: none;
    }
    
    .icon-movile{
        display: block;
    }
}
