
body {
    background: #f5f5f5;
    color: rgb(73, 80, 87);
}
    ul,li,ol {
    margin:0px;
    padding:0px;
}

h1 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}
h2 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;;
  
}

a, a:visited {
    color: #6a71d0;
    xcolor: rgb(73, 80, 87);
}

a:hover {
    color: #272D7C; 
    color: #86DDB9;
    text-decoration: none;
}

a.skill-edit-link {
    font-size: 11px;
    margin-left: 10px;
    
}

div.crumbs {
    font-size: 13px;
}
div.crumbs a {
    color: rgb(50,50,50);
}

/* width */
::-webkit-scrollbar {
    width: 7px;
    scrollbar-color: light; 
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 3px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(200,200,200);
    border-radius: 3px;
  }




.sidebar {
    height: 100%; width: 250px; background: white;  position: fixed; left: 0; top: 0;
}
  

.sidebar-logo {
    height: 60px;
    text-align: left;
    padding-left: 20px;
    font-size: 24px;
    font-weight: 700;;
    
}

.sidebar-nav {
    height: calc(100% - 60px);
    border-top: 1px solid rgb(220,220,220);
    overflow: hidden scroll;
    scrollbar-color: light;
    padding-top: 20px;
}
.sidebar ul li {
    list-style-type: none;
    padding: 0px;
    margin:0px;
}
.sidebar-nav ul li a {
    display: block;
    color: rgb(30,30,30);
    padding-top: 12px;
    padding-bottom: 12px;;
    padding-left: 25px;
    font-size: 14px;
    border-left: 5px solid transparent;
}
.sidebar-nav ul li a:hover {
    color: black;
    text-decoration: none;
    border-left: 5px solid #62F982;
}
.sidebar-nav ul li a.chosen {
    border-left: 5px solid #4EF973;
}

.mainscreen {
    width: calc(100% - 250px); margin-left: 250px; background:white;
    height: 100%;   position: fixed; right: 0; top: 0;
}
.mainscreen-top {
    height: 60px;

}
.mainscreen-view {
    background: #f5f5f5;
    height: calc(100% - 60px);
    border-top: 1px solid rgb(220,220,220);
    overflow: hidden scroll;
}

@media (min-width: 1200px) {
    .container {
        
        
    }
    }
    
    .container {
        width: 100%;;
        padding: 20px 40px 20px 40px;
        
    }

.container table {
    border: 0px solid rgb(220,220,220);
}
.container table tr td {
    padding: 8px 10px 8px 10px;
    border-bottom: 1px solid rgb(220,220,220);
    
}

.box-nice {
    border: 1px solid rgb(240,240,240);
    border-radius: 0px;
    padding: 20px 20px 20px 20px;
    
    background: white;
    box-shadow: 0px 0px 25px 9px rgba(215,215,215,0.1);
    box-shadow: rgba(183, 192, 206, 0.2) 0px 0px 10px 0px;
}

.box-nice-narrow {
   max-width: 900px;
}

.recipe-container {
    padding: 15px;
}
.recipe-container h2 {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;;
    margin-top: 0px;
}



.recipe-container input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 5px;;
  }

  .fake-cb {
      margin-right: 5px;;
  }

  .recipe-container ul ul {
    padding-left: 50px;
}
.recipe-container ul ul ul {
    padding-left: 40px;
}

.recipe-container ul {
    padding-left: 0px;
    list-style-position: inside;;
}

  .recipe-container ul {
    font-size: 15px;
}

  .recipe-container ul li {
    padding-top: 2px;
    padding-bottom: 2px;;
    
    line-height: 18px;
    vertical-align: middle;
    padding-left: 10px;
    border-left: 1px dashed rgb(180,180,180);
}

  .recipe-container > ul ul  {
    padding-top: 10px;
  }
  .recipe-container > ul > li  {
      margin-bottom: 5px;
      list-style-type: "⊣ " ;
  }

  .recipe-container > ul > li > ul > li  {
    margin-bottom: 4px;
    list-style-type: square;
    list-style-type: none;
}
.recipe-container > ul > li > ul {
    margin-bottom: 5px;
}

.recipe-container > ul > li > ul > li ul li {
    font-size: 14px;
    list-style-type: none;
    padding-top: 0px;
    padding-bottom: 2px;
}

.recipe-container a {
    color: #6a71d0; 
}

.recipe-container a:hover {
    color: #272D7C; 
}


/* The container */
.cb-container {
    display: inline;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  
  }
  
  /* Hide the browser's default checkbox */
  .cb-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    text-align: center;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .cb-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .cb-container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
 
  table.recipes .tag {
      font-size: 12px;
  }
  
  /* Show the checkmark when checked */
  .cb-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .cb-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .submenu {
      margin-bottom: 20px;
  }
.submenu ul li {
    list-style-type: none;
    display: inline-block;
    
}

.submenu ul {
    padding-left: 0px;
}

.submenu ul li a {
    background: white;
    display: inline-block;
    padding: 5px 10px 5px 10px;
    border: 1px solid rgb(200,200,200);
    border-radius: 3px;;
    font-size: 13px;

}

.submenu ul li a:hover {
    text-decoration: none;
    background: #C4FDD0;
    background: #86DDB9;
    color: black;
}
.form-element label {
    display: block;
}
.form-element {
    margin-bottom: 20px;
}
.form-element input[type="text"], .form-element input[type="password"] {
    width: 100%;
    font-size: 18px;
    padding: 5px;
    border: 1px solid rgb(220,220,220);
}

input[type="submit"] {
    padding: 8px 14px 8px 14px;
    color: white;
    font-weight: 700;
    background: #6a71d0; 
    border: 1px solid rgb(220,220,220);
    transition: 1s all ease 0s;
}

input[type="submit"]:hover {

    background: #2c3396;
    
}

.form-element select {
    
    font-size: 15px;
    padding: 5px;
    border: 1px solid rgb(220,220,220);
}

.rich {
    height: 600px;
}

li.add {
    list-style-type: none !important;
}


.multi-select-container {
    display: inline-block;
    position: relative;
}

.multi-select-menu {
    position: absolute;
    left: 0;
    top: 0.8em;
    z-index: 1;
    float: left;
    min-width: 100%;
    background: #fff;
    margin: 1em 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: none;
}

.multi-select-menuitem {
    display: block;
    font-size: 0.875em;
    padding: 0.6em 1em 0.6em 30px;
    white-space: nowrap;
}

.multi-select-menuitem--titled:before {
    display: block;
    font-weight: bold;
    content: attr(data-group-title);
    margin: 0 0 0.25em -20px;
}

.multi-select-menuitem--titledsr:before {
    display: block;
    font-weight: bold;
    content: attr(data-group-title);
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.multi-select-menuitem + .multi-select-menuitem {
    padding-top: 0;
}

.multi-select-presets {
    border-bottom: 1px solid #ddd;
}

.multi-select-menuitem input {
    position: absolute;
    margin-top: 0.25em;
    margin-left: -20px;
}

.multi-select-button {
    display: inline-block;
    font-size: 0.875em;
    padding: 0.2em 0.6em;
    max-width: 16em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: -0.5em;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.multi-select-button:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4em 0.4em 0 0.4em;
    border-color: #999 transparent transparent transparent;
    margin-left: 0.4em;
    vertical-align: 0.1em;
}

.multi-select-container--open .multi-select-menu {
    display: block;
}

.multi-select-container--open .multi-select-button:after {
    border-width: 0 0.4em 0.4em 0.4em;
    border-color: transparent transparent #999 transparent;
}

.multi-select-container--positioned .multi-select-menu {
    /* Avoid border/padding on menu messing with JavaScript width calculation */
    box-sizing: border-box;
}

.multi-select-container--positioned .multi-select-menu label {
    /* Allow labels to line wrap when menu is artificially narrowed */
    white-space: normal;
}

.mrg20 {
    margin-bottom: 20px;
}

.doer-label {
    display: inline-block;
    font-size: 11px;
    background: rgb(220,220,220);
    margin-left: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.doer-me {
    font-weight: 700;
    background: #efff15;
    
}

.skill-document {
    padding: 10px 20px 10px 20px;
    line-height: 1.4em;
    font-size: 16px;
    line-height: 24px;
    color: black;

}
.skill-document > ul,.skill-document > ol  {
    margin-bottom: 10px; 
}

.skill-document ul {
    
    padding-bottom: 10px;
    
}

.skill-document ul ul {
    padding-top: 10px;
}

.skill-document ul > li {
    padding-left: 10px;
    list-style-position: inside;
}


.skill-document li ul li {
    padding-left: 35px;
    
}
.skill-document p {
    margin-bottom: 15px;;
}

.progbar-cont {
    width: 100px;
    border: 1px solid rgb(200,200,200);
    padding:0px;
   
    display: block;;
}

.progbar {
    background: #80d4ff;
    height: 10px;
    margin-left: -1px;
    margin-top: 0px;
    border:0px;
    display: block;;
}

ul.skillstocreate {
    font-size: 16px;
    list-style-type: "→ " ;
    
}

ul.skillstocreate > li ul {
    font-size: 14px;
    color: rgb(150,150,150);
    padding-top: 5px;
}

ul.skillstocreate > li ul >li {
    list-style-type: disc;
}

ul.skillstocreate li {
    padding-left: 20px;
    list-style-position: inside;
}
ul.skillstocreate > li {
    margin-bottom: 20px;;
}

.avatar-gen {
    border-radius: 10px;
    background: darkblue;
    color: white;
    display: inline;
    padding: 3px;
    font-size: 11px;
    text-align: center;
    
    line-height: 20px;
    margin-right: 5px;
    border: 2px dashed lightgreen;
}

.updated-at {
    font-size: 9px;
    color: rgb(150,150,150);
    margin-left:10px;
    display: inline-block;;
}

.mentors {
    margin-bottom: 15px;
    
    font-size: 12px;
    margin-bottom: 10px;
}

ul.notifications li {
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

ul.notifications li .date {
    font-size: 11px;
    padding-right: 5px;
}
ul.notifications li a:hover {
    text-decoration: underline;;
}
ul.notifications li a, ul.notifications li a:visited {
    color:rgb(5, 77, 150);
}
ul.notifications li a.skill, ul.notifications li a.skill:visited {
    color:rgb(29, 113, 197);
}
ul.notifications li a.recipe {
    
}

.files-box {
    font-size: 14px;
    padding: 10px 20px 10px 20px;
    border: 1px solid rgb(240,240,240);
}
.files-box h4 {
    font-size: 16px;
    font-weight: 700;
}
.files-box a {
    color: rgb(29, 113, 197);
}

.files-box ul li {
    list-style-type: "🖇 " ;
}

.find-small-recipe {
    font-size: 12px;
}

#search { 
    border: 1px solid rgb(200,200,200);
    font-size: 15px;
    width: 300px;
    color: rgb(100,100,100);
    border-right: 0px;
    border-left: 0px;
    border-top: 0px;
}

.search-skill-parent {
    color: rgb(200,200,200);
   
}
.hidden {
    display: none;
}
.skill-label {
    
}

.single-skill {
    display: inline-block;
    padding-bottom: 5px;;
}

.fav-cont {
    visibility: hidden;
}

.single-skill:hover .fav-cont {
    visibility: visible !important;
} 

.favbut {
    font-size: 12px;
    background: (220,220,220);
    color: black;
    border-radius: 4px;
    display: inline-block;
    
}
.fav-cont {
    padding-left: 20px;
}
.addfav {
    color: rgb(7, 188, 43) !important; 
}

.remfav {
    color: rgb(120,120,120) !important;
    background: rgb(230,230,230) !important;;
}

.favorites li {
    padding-bottom: 4px;;
    list-style: none;
}