﻿/*
    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.4s;
}

.navbar {
    padding: 0px 5px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 2px;
    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;
}

i,
span {
    display: inline-block;
}

/* ---------------------------------------------------
    Refresh Button
----------------------------------------------------- */

.btnRefresh {
    background-color: inherit;
    opacity: 0.5;
    border: none;
    color: blue;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
}

    /* Darker background on mouse-over */
    .btnRefresh:hover {
        background-color: RoyalBlue;
    }

.img-circle {
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.mARef {
    display: block;
    text-align: left;
    background-color: white;
    padding-left: 10px;
    margin-left: 0;
}

a.mARef {
    color: black;
}

    a.mARef:hover {
        color: blue;
    }

    a.mARef i {
        margin-right: 10px;
    }

/* ---------------------------------------------------
    TITLE STYLE
----------------------------------------------------- */
.bg-title {
    /*background: #aed9ea;*/
    background: #89cae4;
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.sidebar-header {
    font-family: '標楷體','Times New Roman','Poppins', sans-serif;
    /* font-style: italic; */
    font-weight: bolder;
}

.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    /*選單字的顏色*/
    background: #c7e8f5;
    /*選單字的顏色*/
    color: #000;
    transition: all 0.3s;
}

    #sidebar.active {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
    }

        #sidebar.active .sidebar-header h3,
        #sidebar.active .CTAs {
            display: none;
        }

        #sidebar.active .sidebar-header strong {
            display: block;
        }

        #sidebar.active ul li a {
            padding: 20px 10px;
            text-align: center;
            font-size: 0.85em;
        }

            #sidebar.active ul li a i {
                margin-right: 0;
                display: block;
                font-size: 1.8em;
                margin-bottom: 5px;
            }

        #sidebar.active ul ul a {
            padding: 10px !important;
        }

        #sidebar.active .dropdown-toggle::after {
            top: auto;
            bottom: 10px;
            right: 50%;
            -webkit-transform: translateX(50%);
            -ms-transform: translateX(50%);
            transform: translateX(50%);
        }

    #sidebar .sidebar-header {
        /*EnvServCentral*/
        padding: 15px;
        background: #2d97b9;
    }

        /*#sidebar .sidebar-logo {
        padding: 50px;
    }*/

        #sidebar .sidebar-header h3 {
            color: aliceblue;
            font-size: 40px;
            font-family: '正黑體', 'Poppins', sans-serif;
            font-weight: bold;
        }

        #sidebar .sidebar-header strong {
            display: none;
            font-size: 1.8em;
        }

    #sidebar ul.components {
        padding: 20px 0;
        border-bottom: 1px solid #47748b;
    }

    #sidebar ul li a {
        padding: 10px;
        /*第一層選單字體*/
        font-size: 1.3em;
        display: block;
        text-align: left;
    }

        #sidebar ul li a:hover {
            /*選單hover到的顏色*/
            color: #111;
            background: #fff;
            font-size: 1.5em;
        }

        #sidebar ul li a i {
            margin-right: 10px;
            color: #3811df;
        }

    #sidebar ul li.active > a,
    a[aria-expanded="true"] {
        color: #fff;
        background: #6d7fcc;
    }

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 1.1em !important;
    padding-left: 30px !important;
    /*下拉sidebar 背景色*/
    background: #32abdb;
    color: #fff;
}

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: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 5px;
    min-height: 91vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important;
    }

    .dropdown-toggle::after {
        top: auto;
        bottom: 10px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }

    #sidebar.active {
        margin-left: 0 !important;
    }

    #sidebar .sidebar-header h3,
    #sidebar .CTAs {
        display: none;
    }

    #sidebar .sidebar-header strong {
        display: block;
    }

    #sidebar ul li a {
        padding: 20px 10px;
    }

        #sidebar ul li a span {
            font-size: 0.85em;
        }

        #sidebar ul li a i {
            margin-right: 0;
            display: block;
        }

    #sidebar ul ul a {
        padding: 10px !important;
    }

    #sidebar ul li a i {
        font-size: 1.3em;
    }

    #sidebar {
        margin-left: 0;
    }

    #sidebarCollapse span {
        display: none;
    }
}

/* ---------------------------------------------------
    FONT AQWSOME STYLE
----------------------------------------------------- */
a > .fa {
    color: #3811df;
}
