.navbar-brand img{
  width: auto !important;
}
li {
    list-style-type: none;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
  }
  li input[type="checkbox"] {
    margin-right: 10px;
  }
  li input[type="checkbox"]:checked + label {
    text-decoration: line-through;
    color: #aaa;
  }

  input[type=checkbox] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
    font-family: 'Arial'
  }
  
  input[type=checkbox] {
    display: none;
  }
  
  input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #fff;
    border-radius: 0.2em;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
  }
  
  input[type=checkbox] + label:active:before {
    transform: scale(0);
  }
  
  input[type=checkbox]:checked + label:before {
    background-color: #0059F7;
    border-color: #0059F7;
    color: #fff;
  }

  #form-iframe{
    width:500px; 
    height:300px;
  }

  #loader{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
  }

  @media (min-width:1080px) {
    .dashboard_img{
      max-width: 900px;
      text-align: center;
    }
  }

  @media (max-width:667px) {
    #form-iframe{
      width:300px; 
      height:300px;
    } 
  }