html {}
body { font-family: Roboto, sans-serif; color: #0f3c4b; background-color: #e5edf1; padding: 5rem 1.25rem; /* 80 20 */ }

.container { width: 100%; max-width: 680px; /* 800 */ text-align: center; margin: 0 auto; }
.container h1
{
  font-size: 42px;
  font-weight: 300;
color: #0f3c4b;
       margin-bottom: 40px;
}
.container h1 a:hover,
  .container h1 a:focus
{
color: #39bfd3;
}

.container nav
{
  margin-bottom: 40px;
}
.container nav a
{
  border-bottom: 2px solid #c8dadf;
display: inline-block;
padding: 4px 8px;
margin: 0 5px;
}
.container nav a.is-selected
{
  font-weight: 700;
color: #39bfd3;
       border-bottom-color: currentColor;
}
.container nav a:not( .is-selected ):hover,
  .container nav a:not( .is-selected ):focus
{
  border-bottom-color: #0f3c4b;
}

.container footer
{
color: #92b0b3;
       margin-top: 40px;
}
.container footer p + p
{
  margin-top: 1em;
}
.container footer a:hover,
  .container footer a:focus
{
color: #39bfd3;
}

.box
{
  font-size: 1.25rem; /* 20 */
  background-color: #c8dadf;
position: relative;
padding: 100px 20px;
}
.box.has-advanced-upload
{
outline: 2px dashed #92b0b3;
         outline-offset: -10px;

         -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
transition: outline-offset .15s ease-in-out, background-color .15s linear;
}
.box.is-dragover
{
  outline-offset: -20px;
  outline-color: #c8dadf;
  background-color: #fff;
}
.box__dragndrop,
  .box__icon
{
display: none;
}
.box.has-advanced-upload .box__dragndrop
{
display: inline;
}
.box.has-advanced-upload .box__icon
{
width: 100%;
height: 80px;
fill: #92b0b3;
display: block;
         margin-bottom: 40px;
}

.box.is-uploading .box__input,
  .box.is-success .box__input,
  .box.is-error .box__input
{
visibility: hidden;
}

.box__uploading,
  .box__success,
  .box__error
{
display: none;
}
.box.is-uploading .box__uploading,
  .box.is-success .box__success,
  .box.is-error .box__error
{
display: block;
position: absolute;
top: 50%;
right: 0;
left: 0;

      -webkit-transform: translateY( -50% );
transform: translateY( -50% );
}
.box__uploading
{
  font-style: italic;
}
.box__success
{
  -webkit-animation: appear-from-inside .25s ease-in-out;
animation: appear-from-inside .25s ease-in-out;
}
@-webkit-keyframes appear-from-inside
{
  from  { -webkit-transform: translateY( -50% ) scale( 0 ); }
  75%   { -webkit-transform: translateY( -50% ) scale( 1.1 ); }
  to    { -webkit-transform: translateY( -50% ) scale( 1 ); }
}
@keyframes appear-from-inside
{
  from  { transform: translateY( -50% ) scale( 0 ); }
  75%   { transform: translateY( -50% ) scale( 1.1 ); }
  to    { transform: translateY( -50% ) scale( 1 ); }
}

.box__restart
{
  font-weight: 700;
}
.box__restart:focus,
  .box__restart:hover
{
color: #39bfd3;
}

.js .box__file
{
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
          z-index: -1;
}
.js .box__file + label
{
  max-width: 80%;
  text-overflow: ellipsis;
  white-space: nowrap;
cursor: pointer;
display: inline-block;
overflow: hidden;
}
.js .box__file + label:hover strong,
  .box__file:focus + label strong,
  .box__file.has-focus + label strong
{
color: #39bfd3;
}
.js .box__file:focus + label,
  .js .box__file.has-focus + label
{
outline: 1px dotted #000;
outline: -webkit-focus-ring-color auto 5px;
}
.js .box__file + label *
{
  /* pointer-events: none; */ /* in case of FastClick lib use */
}

.no-js .box__file + label
{
display: none;
}

.no-js .box__button
{
display: block;
}
.box__button
{
  font-weight: 700;
color: #e5edf1;
       background-color: #39bfd3;
display: none;
padding: 8px 16px;
margin: 40px auto 0;
}
.box__button:hover,
  .box__button:focus
{
  background-color: #0f3c4b;
}

/******* Switch *******/
/* The switch - the box around the slider *
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}

/* Hide default HTML checkbox *
.switch input {display:none;}

/* The slider *
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
        background-color: #c8dadf;
        -webkit-transition: .4s;
transition: .4s;
}

.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
transition: .4s;
}

input:checked + .slider {
        background-color: #92b0b3;
      }

input:focus + .slider {
        box-shadow: 0 0 1px #92b0b3;
      }

input:checked + .slider:before {
        -webkit-transform: translateX(26px);
        -ms-transform: translateX(26px);
transform: translateX(26px);
      }

/* Rounded sliders *
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.label-switch {
  display: inline-block;
  height: 34px;
  line-height: 50%;
  margin: auto 10px;
  vertical-align: middle;
}
*/

.checkboxes-and-radios {
    margin: 40px auto 0;
    width: 420px;
    padding: 30px;
    /* background: #fafafa; */
}

.checkboxes-and-radios input {
    display: none;
}
.checkboxes-and-radios label {
    cursor: pointer;
    padding-right: 35px;
    position: relative;
    display: block;
    font-size: 18px;
    padding: 15px 0;
}
.checkboxes-and-radios input[type="checkbox"],
.checkboxes-and-radios input[type="radio"] {
    position: absolute;
    visibility: hidden !important;
}
.checkboxes-and-radios input[type="checkbox"] + label:before,
.checkboxes-and-radios input[type="radio"] + label:before,
.checkboxes-and-radios input[type="checkbox"] + label:after,
.checkboxes-and-radios input[type="radio"] + label:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -7.5px;
    box-sizing: border-box;
}
.checkboxes-and-radios input[type="checkbox"] + label:before,
.checkboxes-and-radios input[type="radio"] + label:before {
    width: 60px;
    height: 30px;
    right: 0px;
    background: #fff;
    border: 1px solid #e4e3e1;
    border-radius: 15px;
}
.checkboxes-and-radios input[type="checkbox"] + label:after,
.checkboxes-and-radios input[type="radio"] + label:after {
    width: 30px;
    height: 30px;
    right: 30px;
    background: #BDBDBD;
    border-radius: 50%;
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.checkboxes-and-radios input[type="checkbox"]:checked + label:after,
.checkboxes-and-radios input[type="radio"]:checked + label:after {
    right: 0px;
    background: rgb(15, 60, 75); /* #FF9800 */
}

.btn-send {
    background-color: rgb(15, 60, 75);
    color: rgb(255, 255, 255);
}

.container hr {
    border-top: 1px dotted #333;
    margin: .5rem 0;
}
