body {font-family: Arial, Helvetica, sans-serif;}      
.modal {
  display: none;
  position: fixed;
  z-index: 2; 
  padding-top: 200px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 50%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}
@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}      
.modal-header {
  padding: 2px 16px;
  background-color: rgb(20,75,116);
  color: white;
}
.modal-body {padding: 2px 16px;}
.modal-footer {
  padding: 2px 16px;
  background-color:  rgb(20,75,116);
  color: white;
}

.modal-load {
display:    none;
position:   fixed;
z-index:    1000;
top:        0;
left:       0;
height:     100%;
width:      100%;
background: rgba( 255, 255, 255, .8 ) 
          /* url('https://media.giphy.com/media/W4RVLr6a5g30qh6g6i/giphy.gif') */ 
           url('https://ahorrarseguros.com.ar/public/image/logoAnimation.gif') 
          50% 50% 
          no-repeat;
background-size: 100px;
}
body.loading {
overflow: hidden;   
}
body.loading .modal-load {
display: block;
}