/*Responsive Styles for Design Sys notes*/

/* Laptop L - 1440 */
@media only screen and (max-width : 1441px) {
  input {
    width: 45%;
  }
  .saveBtn, .clearBtn {
    width: 13%;
  }
}

/* Laptop - 1024 */
@media only screen and (max-width : 1025px) {
  input {
    width: 42%;
  }
  .saveBtn:after {
    content: "Save";
  }
  .clearBtn:after {
    content: "New";
  }
  .initiate:after {
    content: "Start";
  }
}

/* Tablet - 768 */
@media only screen and (max-width : 769px) {
  .pause:after {
    content: none;
    padding-left: 0px;
  }
  .start:after {
     content: none;
     padding-left: 5px;
  }
  .initiate {
    height: 100%;
    vertical-align: middle;
  }
  .initiate:after {
    content: "Start";
  }
  .initiate .fa {
    font-size: 22px;
  }
  .saveBtn:after {
    content: none;
  }
  .clearBtn:after {
    content: none;
  }
  .clearBtn, .saveBtn {
    padding: 10px 14px;
    width: auto;
    text-align: center;
    font-size: 22px;
  }
  .fa-floppy-o, .fa-external-link {
    margin-right: 0;
  }
  .saveBtn {
    margin-right: 10px;
  }
}

/* Special Breakpoint for Buttons */
@media only screen and (max-width: 605px) {
  input {
    width: 100%;
  } 
  ul {
    margin-top: 300px;
    padding: 0 20px;
  }
  .header {
    padding: 10px 20px 30px 20px;
    height: 265px;
  }
  .clearBtn, .saveBtn, .addBtn {
    margin-top: 15px;
  }
}

/* Mobile L - 425 */
@media only screen and (max-width : 426px) {
  ul {
    margin-top: 265px;
    padding: 0 20px;
  }
  .header {
    padding: 10px 20px 30px 20px;
    height: 265px;
  }
}

/* Mobile M - 375px */ 
@media only screen and (max-width : 376px) {
  body {
    /*background-color: blue;*/
    /*responsive test*/
  }
  ul {
    padding: 0 15px;
  }
  .header {
    padding: 10px 15px 30px 15px;
  }
}

/* Mobile S - 320 */ 
@media only screen and (max-width : 321px) {
  .clearBtn, .saveBtn {
    padding: 10px;
    width: auto;
    text-align: center;
    font-size: 22px;
  }
  ul {
    padding: 0 10px;
  }
  .header {
    padding: 10px 10px 30px 10px;
  }
}