@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
@import url('https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap&subset=japanese');
body {
    font-family: 'Kosugi Maru', sans-serif;
    background: #ebebeb;
}

p {
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap;
}

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;
}

th {
    font-size: 0.75em;
}

td {
    font-size: 0.75em;
}

label {
    float:left;
    clear:both;
    font-size: 0.9em;
    color:#333;
    margin-bottom:4px;
}

input, textarea, select {
    clear:both;
    float:left;
    margin:0 0 8px;
    background:#efefef;
    border:0;
    padding:6px 6px;
    font-size: 1em;
}

input[type=submit], a.button {
    font-weight:bold;
    background:#3a3a3a;
    color:#fff;
    padding:10px 20px;
    font-size:14px;
    text-transform:uppercase;
}


/* Bootstrap override */
@media (min-width: 3840px) {
    .container-fluid {
        max-width: 3840px;
    }
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    position: fixed;
    width: 230px;
    height: 100%;
    top: 40px;
    left: 0;
    z-index: 999;
    background: #1f272d;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -230px;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #1f272d;
}

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

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #34474e;
    background: #fff;
}

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

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: 0.9em !important;
    padding-left: 30px !important;
    background: #34474e;
}

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: rgb(61, 61, 61);
}

a.article,
a.article:hover {
    background: rgb(61, 61, 61) !important;
    color: #fff !important;
}

.no-color {
    color: black !important;
  }

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

#content {
    margin-left: auto;
    margin-right: 0;
    width: calc(100% - 230px);
    padding-top: 55px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    min-height: calc(100vh - 40px);
    transition: all 0.3s;
    overflow-y: scroll;
}

#content.active {
    width: 100%;
}

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

@media (max-width: 768px) {
    #sidebar {
        margin-left: -230px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 230px);
    }
    #sidebarCollapse span {
        display: none;
    }
}
