/* Add to w3.css */
.w3-margin-tiny{margin:2px 4px!important}
.w3-margin-small{margin:4px 8px!important}
.w3-margin-medium{margin:8px 16px!important}
.w3-margin-large{margin:12px 24px!important}
.w3-margin-xlarge{margin:16px 32px!important}
.w3-margin-xxlarge{margin:24px 48px!important}
.w3-input-datalist{padding:8px;display:inline;border:none;border-bottom:1px solid #808080;width:90%}


    /* ****************************************************************************************** */
    /* Toggle Switch - https://www.w3schools.com/howto/howto_css_switch.asp */
    .switch {
      position: relative;
      display: inline-block;
      width: 30px;
      height: 17px;
    }
    
    .switch input { 
      opacity: 0;
      width: 0;
      height: 0;
    }
    
    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      -webkit-transition: .4s;
      transition: .4s;
    }
    
    .slider:before {
      position: absolute;
      content: "";
      height: 13px;
      width: 13px;
      left: 2px;
      bottom: 2px;
      background-color: white;
      -webkit-transition: .4s;
      transition: .4s;
    }
    
    input:checked + .slider {
      background-color: #2196F3;
    }
    
    input:focus + .slider {
      box-shadow: 0 0 1px #2196F3;
    }
    
    input:checked + .slider:before {
      -webkit-transform: translateX(13px);
      -ms-transform: translateX(13px);
      transform: translateX(13px);
    }
    
    /* Rounded sliders */
    .slider.round {
      border-radius: 17px;
    }
    
    .slider.round:before {
      border-radius: 50%;
    }
    /* ****************************************************************************************** */

/* End add to w3.css */
