/*//////////////////////////////////////////////////////////////////
[ FONT ]*/


@font-face {
    font-family: Lato-Regular;
    src: url('../fonts/Lato/Lato-Regular.ttf'); 
  }
  
  @font-face {
    font-family: Lato-Bold;
    src: url('../fonts/Lato/Lato-Bold.ttf'); 
  }
  
  /*//////////////////////////////////////////////////////////////////
  [ RESTYLE TAG ]*/
  * {
      margin: 0px; 
      padding: 0px; 
      box-sizing: border-box;
  }
  
  body, html {
      height: 100%;
      font-family: sans-serif;
  }
  
  .wrapper {
      width: 1024px;
      max-width: 90%;
      margin: 0 auto;
  }


#underlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #333;
    opacity: .2;
    z-index: 1;
}


.column {
    width: 50%;
    float: left;
}


label {
    display: block;
}
label span {
    display: block;
}


/*//////////////////////////////////////////////////////////////////
[ Instrucotrs Popup ]*/

#instructorList {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #FFF;
    border-left: 2px solid #333;

    transition: .5s;
    z-index: 1;
}

/* #instructorList .checkboxInstructor {
    width: 15px;
    height: 15px;
    background-color: #FFF;
    border: 2px solid #333;
    display: inline-block;
    margin: 0px 6px -2px 12px;
} */

.addInstructorBtn .checkboxInstructor {
    width: 20px;
    height: 20px;
    margin: 7px 10px;
    border: 3px solid #000;
    color: #000;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    line-height: 8px;
    padding-left: 2px;
    display: inline-block;
    cursor: pointer;
}
.addInstructorBtn .checkboxInstructor.checkboxChecked {
    background: hsla(32, 87%, 68%, 1);
    background: linear-gradient(135deg, hsla(32, 87%, 68%, 1) 0%, hsla(40, 97%, 71%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(32, 87%, 68%, 1) 0%, hsla(40, 97%, 71%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(32, 87%, 68%, 1) 0%, hsla(40, 97%, 71%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F4B266", endColorstr="#FDCE6E", GradientType=1 );
}




#instructorHTML {
    list-style: none;
}

#instructorHTML .addInstructorBtn {
    border-top: 2px solid #333;
    cursor: pointer;
}

#instructorHTML .addInstructorBtn span {
    line-height: 45px;
    font-weight: 600;
    font-size: 18px;
}
#instructorHTML .addInstructorBtn span:last-child {
    margin-left: 10px;
    font-weight: 400;
    font-size: 16px;
}







#assignInstructor {
    width: 200px;
    text-align: center;
    background-color: blue;
    color: #FFF;
    border-radius: 6px;
    padding: 10px 0;
    cursor: pointer;
}