/* YOUR CUSTOM STYLES */
/*Designed by Digvijay*/

.select-dropdown-custom {
    font-size: smaller;
    height: 2.0rem;
    border: 1px solid #c1c1c1;
    color: #495057;
}

    .select-dropdown-custom option {
        font-size: small;
        color: #757575;
    }

.span-custom-1 {
    color: #757575;
    font-size: 1rem;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #106788;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/*
    DEMO STYLE
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

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;
    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;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
    display: flex;
    /*align-items: stretch;
    perspective: 1500px;*/
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    height: auto;
    background: #7386D5;
    color: #fff;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left;
}

    #sidebar.active {
        margin-left: -250px;
        transform: rotateY(100deg);
    }

    #sidebar .sidebar-header {
        padding: 20px;
        background: #2977bd;
    }

    #sidebar ul.components {
        padding: 20px 0;
        border-bottom: 1px solid #47748b;
    }

    #sidebar ul p {
        color: #fff;
        padding: 10px;
    }

    #sidebar ul li a {
        padding: 10px;
        font-size: medium;
        display: block;
    }

        #sidebar ul li a:hover {
            color: #7386D5;
            background: #fff;
        }

    #sidebar ul li.active > a, a[aria-expanded="true"] {
        color: #fff;
        background: #2977bd;
    }

.sideBarActive{
    color: #2977bd;
    background: #fff;
}


a[data-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}

a[aria-expanded="true"]::before {
    content: '\e260';
}


ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #2977bd;
}

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;
    color: #7386D5;
}

a.article, a.article:hover {
    background: #2977bd !important;
    color: #fff !important;
}



/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
}

    #sidebarCollapse span {
        width: 80%;
        height: 2px;
        margin: 0 auto;
        display: block;
        background: #555;
        transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
        transition-delay: 0.2s;
    }

        #sidebarCollapse span:first-of-type {
            transform: rotate(45deg) translate(2px, 2px);
        }

        #sidebarCollapse span:nth-of-type(2) {
            opacity: 0;
        }

        #sidebarCollapse span:last-of-type {
            transform: rotate(-45deg) translate(1px, -1px);
        }


    #sidebarCollapse.active span {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }


/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
/*@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        transform: rotateY(90deg);
    }

        #sidebar.active {
            margin-left: 0;
            transform: none;
        }

    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }

    #sidebarCollapse.active span {
        margin: 0 auto;
    }

        #sidebarCollapse.active span:first-of-type {
            transform: rotate(45deg) translate(2px, 2px);
        }

        #sidebarCollapse.active span:nth-of-type(2) {
            opacity: 0;
        }

        #sidebarCollapse.active span:last-of-type {
            transform: rotate(-45deg) translate(1px, -1px);
        }
}*/


.resposive-table {
    display: table;
    text-align: center;
    width: 100%;
    border-collapse: separate;
    font-weight: 400;
    text-align:left;
}

.resposive-table_row {
    display: table-row;
}

.theader {
    display: table-row;
}

.resposive-table_header {
    display: table-cell;
    border-bottom: #ccc 1px solid;
    border-top: #ccc 1px solid;
    background: #cfd8dc;
    color: #000000;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    font-weight: 700;
}

    .resposive-table_header:first-child {
        border-left: #ccc 1px solid;
        border-top-left-radius: 5px;
    }

    .resposive-table_header:last-child {
        border-right: #ccc 1px solid;
        border-top-right-radius: 5px;
    }

.resposive-table_small {
    display: table-cell;
}

.resposive-table_row > .resposive-table_small > .resposive-table_cell:nth-child(odd) {
    display: none;
    background: #cfd8dc;
    color: #000000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.resposive-table_row > .resposive-table_small > .resposive-table_cell {
    color: #5b5b5b;
    margin:10px
}


.resposive-table_row:last-child > .resposive-table_small:last-child > .resposive-table_cell:last-child {
    border-bottom-right-radius: 5px;
}

.resposive-table_row:last-child > .resposive-table_small:first-child > .resposive-table_cell:last-child {
    border-bottom-left-radius: 5px;
}

.resposive-table_row:nth-child(2n+3) {
    background: #e9ecef;
}


@media screen and (max-width: 1000px) {
    .resposive-table {
        display: block;
        text-align: left;
    }

    .resposive-table_row:nth-child(2n+3) {
        background: none;
    }

    .theader {
        display: none;
    }

    .resposive-table_row > .resposive-table_small > .resposive-table_cell:nth-child(odd) {
        display: table-cell;
        width: 20%;
    }

    .resposive-table_cell {
        display: table-cell;
        width: 50%;
    }

    .resposive-table_row {
        display: table;
        width: 100%;
        border-collapse: separate;
        padding-bottom: 20px;
        margin: 5% auto 0;
        text-align: left;
    }

    .resposive-table_small {
        display: table-row;
    }

    .resposive-table_row > .resposive-table_small:first-child > .resposive-table_cell:last-child {
        border-left: none;
        padding: 5px;
        border-bottom: #bdbdbd solid 1px;
    }

    .resposive-table_row > .resposive-table_small > .resposive-table_cell:first-child {
        border-left: #ccc 1px solid;
        padding: 5px;
        border-bottom: #bdbdbd solid 1px;
    }

    .resposive-table_row > .resposive-table_small:first-child > .resposive-table_cell:first-child {
        border-top-left-radius: 5px;
        border-top: #ccc 1px solid;
        margin: 5px;
        border-bottom: #bdbdbd solid 1px;
    }

    .resposive-table_row > .resposive-table_small:first-child > .resposive-table_cell:last-child {
        border-top-right-radius: 5px;
        border-top: #ccc 1px solid;
        padding: 5px;
        border-bottom: #bdbdbd solid 1px;
    }

    .resposive-table_row > .resposive-table_small:last-child > .resposive-table_cell:first-child {
        border-right: none;
        padding: 5px;
        border-bottom: #bdbdbd solid 1px;
    }

    .resposive-table_row > .resposive-table_small > .resposive-table_cell:last-child {
        border-right: #ccc 1px solid;
        padding: 5px;
        border-bottom: #bdbdbd solid 1px;
    }

    .resposive-table_row > .resposive-table_small:last-child > .resposive-table_cell:first-child {
        border-bottom-left-radius: 5px;
        padding: 5px;
        border-bottom: #bdbdbd solid 1px;
    }

    .resposive-table_row > .resposive-table_small:last-child > .resposive-table_cell:last-child {
        border-bottom-right-radius: 5px;
        padding: 5px;
        border-bottom: #bdbdbd solid 1px;
    }
}