html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    overflow: hidden;
    /*-webkit-transform: translate3d(0, 0, 0);*/
    -webkit-transform: none;
    font: normal 300 16px 'Roboto', 'Helvetica', 'Arial', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}


/*
 * Wrapper
*/

.nd--cns-sample-wrapper {
    display: flex;
    min-width: 320px;
    height: 100vh;
    padding-left: 30px;
    padding-right: 30px;
}


/*
 * Container
*/

.nd--cns-sample-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    width: 100%;
    height: 100vh;
}


/*
 * Header
*/

.nd--cns-sample-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    flex: none;
}


/*
 * Logo
*/

.nd--cns-sample-hd-logo {
    position: relative;
    width: 135px;
    height: 35px;
    margin-right: 40px;
}

.nd--cns-sample-hd-logo::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 135px;
    height: 35px;
    background-size: 100%;
    content: "";
}


/*
 * Navigation
*/

.nd--cns-sample-hd-navigation {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}


/*
 * Navigation menu
*/

.nd--cns-sample-menu-wrapper {
    flex: 1;
    display: flex;
}

.nd--cns-sample-menu-wrapper .navigation-entry {
    margin: 0 10px;
}

.nd--cns-sample-menu-wrapper .navigation-entry a {
    text-decoration: none;
    line-height: 22px;
    font-weight: 700;
    font-size: 16px;
}

.nd--cns-sample-menu-wrapper nav ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.nd--cns-sample-menu-wrapper nav ul li a {
    text-decoration: none;
}


/*
 * Logout container
*/

.nd--cns-sample-logout a {
    margin-left: 1em;
    font-size: 0.875rem;
}

.logout i {
    margin-right: 0.25em;
    vertical-align: middle;
    font-size: 1.25rem;
}


/*
 * Social Samples Container
*/

.social-samples-container-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    width: 100%;
    height: calc(100vh - 100px);
}

/*
 * Samples Container
*/

.social-samples-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%;
}

/*
 * Scrollbar
*/

/* ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

 ::-webkit-scrollbar-thumb {
    border-radius: 50px;
}

@-moz-document url-prefix() {
    div {
        scrollbar-width: thin;
    }
} */


/*
 * No selectable
*/

.nd-no-selectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/*
 * Media Queries
*/
@media only screen and (max-width: 640px) {
    /*
    * Wrapper
    */
    .nd--cns-sample-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    /*
    * Header
    */
    .nd--cns-sample-header {
        height: 60px;
    }
    /*
    * Container
    */
    .social-samples-container-wrapper {
        height: calc(100vh - 60px);
    }
}