.main-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: sandybrown;
    line-height: 3.5rem;
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    align-items: stretch;
}

.logo {
    max-height: 3.5rem;
}

.sidebar-header {
    flex: 0 0 14rem;
}

.body-header {
    background-color: #FFFFFF;
    width: calc(100% - 14rem);
}

.search-area {
    background-color: #dcdcdc;
    padding: .3rem .6rem;
    border-radius: 2rem;
}

.search-input {
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    border: none;
}

.search-input .btn-search {
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #fff;
    border-radius: 5px;
}

.search-input .btn-search i {
    font-size: 16px;
}

.header-notifictation {
    position: absolute;
    left: 0;
    margin-top: .2rem;
    width: 16rem;
    background-color: white;
    color: #000000;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, 0.08);
    display: none;
}

.notification-img {
    width: 3rem;
    border-radius: .1rem;
}

.notification-user {
    font-size: .8rem;
    font-weight: bold;
    margin-top: .3rem;
}

.notification-text {
    font-size: .7rem;
    line-height: .7rem;
}

.notification-time {
    font-size: .6rem;
    line-height: .6rem;
    color: #919aa3;
}

.header-comment {
    position: absolute;
    height: calc(100vh - 3.5rem);
    width: 18rem;
    background-color: #FFFFFF;
    color: black;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.125);
    display: none;
}

.header-comment-wrapper {
    height: calc(100% - 6rem);
    overflow: auto;
}

.header-comment-wrapper::-webkit-scrollbar {
    display: none;
}

.comment-user {
    font-size: .75rem;
    font-weight: bold;
    margin-top: .8rem;
}

.comment-user-status {
    font-size: .4rem;
}

.header-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: .3rem;
    margin: .2rem;
}

.header-username {
    color: #333333;
    font-size: .8rem;
}

.header-profile {
    position: absolute;
    margin-top: .2rem;
    left: 0;
    z-index: 1000;
    height: auto;
    width: 13rem;
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, 0.08);
    display: none;
}

.header-profile-link {
    padding: .4rem;
    font-size: .8rem;
    line-height: 1.4rem;
}

.header-profile-link>i {
    width: 2rem;
    text-align: center;
}

@media only screen and (max-width: 767.98px) {
    .main-header {
        display: block;
    }

    .sidebar-header {
        width: 100%;
    }

    .body-header {
        display: none;
        width: 100%;
    }
}

.body-container {
    margin-top: 3.5rem;
    z-index: 100000;
    display: flex;
}

.sidebar {
    flex: 0 0 14rem;
    background-color: #404E67;
    color: #dcdcdc;
}

.sidebar-container {
    height: calc(100vh - 3.5rem);
    position: fixed;
    right: 0;
    top: 3.5rem;
    z-index: 1;
    width: 14rem;
}

.sidebar-wrapper {
    padding: 1rem 0;
    overflow: auto;
    height: 100%;
}

.sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

.sidebar-part-title {
    font-size: .9rem;
    padding: 0 1rem;
    margin-top: 1rem;
    color: #999999;
}

.sidebar-link {
    font-size: .8rem;
    margin-top: 1rem;
    padding: .4rem 1rem;
    display: block;
    text-decoration: none;
    outline: none;
    border: none;
    color: #dcdcdc;
    transition: all .3s;
}

.sidebar-link:hover {
    text-decoration: none;
    color: #FE8A7D;
}

.sidebar-link>i {
    width: 2rem;
    text-align: center;
}

.sidebar-group-link {
    font-size: .8rem;
    margin-top: 1rem;
    padding: .4rem 0;
    color: #dcdcdc;
}

.sidebar-group-link-active {
    border-right: #FE8A7D 3px solid;
}

.sidebar-group-link>.sidebar-dropdown {
    display: none;
    height: 0;
}

.sidebar-group-link-active>.sidebar-dropdown {
    height: auto !important;
    display: block !important;
}

.sidebar-dropdown-toggle {
    cursor: pointer;
    padding: .2rem 1rem;
    transition: all .3s;
}

.sidebar-dropdown-toggle:hover span {
    color: #F7F7F7;
}

.sidebar-dropdown-toggle .icon {
    width: 2rem;
    text-align: center;
}

.sidebar-dropdown-toggle .angle {
    float: left;
    padding: .4rem 0;
}

.sidebar-dropdown a,
button {
    padding: .2rem 1rem;
    display: block;
    text-decoration: none;
    background-color: inherit;
    outline: none;
    border: none;
    color: #dcdcdc;
    transition: all .3s;
}

.sidebar-dropdown a::before,
.sidebar-dropdown button::before {
    content: '»';
    margin: .8rem;
}

.sidebar-dropdown a:hover,
button:hover {
    color: #FE8A7D;
}

.main-body {
    width: calc(100% - 14rem);
    padding: 1rem;
    min-height: calc(100vh - 3.5rem);
    background-color: #f3f3f3;
}

@media only screen and (max-width: 767.98px) {
    .sidebar {
        display: none;
        width: 320px;
        z-index: 9;
        height: calc(100% - 3.5rem);
        position: fixed;
        top: 3.5rem;
        right: 0;
    }

    .sidebar-container {
        position: relative;
        width: 320px;
        height: 100%;
        top: 0;
    }

    .main-body {
        width: 100%;
        z-index: 1;
    }
}

.info-box-body h5 {
    font-size: .9rem;
    line-height: 1rem;
}

.info-box-body p {
    font-size: .7rem;
    line-height: 1rem;
}

.info-box-icon i {
    font-size: 2rem;
}

.weather .info-box-icon i {
    font-size: 7rem;
}

.info-box-footer {
    font-size: .6rem;
}

.main-body-container {
    background-color: #ffffff;
    margin: 1rem 0;
    border-radius: .25rem;
    padding: 1rem;
}

.main-body-container-header h5 {
    font-size: 1rem;
    font-weight: bold;
}

.main-body-container-header p {
    font-size: .8rem;
    color: #777;
}

.body-content p {
    font-size: .8rem;
}


#home-setting-manager .item {
    border: 1px solid #dcdcdc;
}

#home-setting-manager .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px 0;
    transition: all .1s ease-in-out;
}

#home-setting-manager .item a:hover,
#home-setting-manager .item.active a {
    background-color: #404E67;
    color: #fff;
}

#home-setting-manager .media {
    position: relative;
}

#home-setting-manager .media .remove-btn {
    top: 2px;
    left: 1px;
    position: absolute;
}

#home-setting-manager .media .remove-btn i {
    padding: 7px;
    background-color: #fff;
    color: #FE8A7D;
    font-size: 13px;
    border-radius: 0 5px 0 5px;
}

#home-setting-manager .media .remove-btn i {
    padding: 7px;
    background-color: #fff;
    color: #FE8A7D;
    font-size: 13px;
    border-radius: 0 5px 0 5px;
}

#home-setting-manager .media .attributes {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px;
    color: #686868;
    background-color: rgba(214, 214, 214, 0.877);
    border-radius: 5px;
}










/* Simple body */
.body-container.simple {
    margin: 0;
}

.body-container.simple .main-body {
    padding: 0;
    width: 100%;
    height: 100vh;
    background: url('../../customer-assets/images/background-3.jpg') center no-repeat;
    background-size: cover;
}

.body-container.simple .main-body .content-box {
    backdrop-filter: blur(5px) brightness(.7);
    height: 100vh;
}

.body-container.simple .main-body .content-box .auth {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-container.simple .main-body .content-box .auth form {
    position: relative;
    background-color: #ffffffd0;
    padding: 25px;
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 0 15px #ffffff;
    backdrop-filter: blur(2px);
}

.body-container.simple .main-body .content-box .auth form .back-button {
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 25px;
}

.body-container.simple .main-body .content-box .auth form .back-button a {
    color: #575757;
}

.body-container.simple .main-body .content-box .auth form input {
    background-color: #ffffff80;
}

.body-container.simple .main-body .content-box .auth form input:focus {
    background-color: #fff;
}

.website-guide .body-content div{
    margin-top: 10px;
}
