#preload {
  visibility: hidden;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
}

#preload.active {
  opacity: 1;
  visibility: visible;
}

.preload {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #003360;
  background: linear-gradient(180deg, rgba(0,41,77,1) 0%, rgba(0,51,96,1) 100%);
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}


#svg {
  top: 20%;
  margin: auto;
  font-size: 10px;
  position: relative;
  height: 380px;
  width: 380px;
  stroke: white;
  fill-opacity: 0;
  stroke-width: 2px;
  stroke-dasharray: 4500;
  animation: draw 12s ease;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 4500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}



/*---------------------preload checkout*/




/*=============================================
=             MEDIDA 414px                    =
=============================================*/
@media only screen and (max-width:414px) {

  #svg {
    height: 250px;
    width: 250px;
  }


}










