﻿#App {
    -webkit-backface-visibility: hidden;
}

#App_fraLogin 
{
    width:460px; 
    height:760px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

iframe[seamless]{
    background-color: transparent;
    border: 0px none transparent;
    padding: 0px;
    overflow: hidden;
}

.App_re_msg_generico_inner {
    z-index: 1000000;
    position: absolute;
    /*top: 100px;
    left: 20%;*/

    top: 10%;
    left: 10%;

    max-width: 1000px;
    background-color: rgba(224,223,223,1);
    border: 2px solid rgba(98, 156, 200, 1);
    border-radius: 5px;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    font-family:Helvetica,Arial,sans-serif;
    animation: enter .3s linear forwards;

}

@keyframes enter {
     from{ 
         opacity: 0;
         transform: translateY(-400px);
     }
     to
     {
         opacity: 1;
         transform: translateY(0);
     }
}

@keyframes exit {
     from{ 
         opacity: 1;
         transform: translateY(0);
     }
     to
     {
         opacity: 0;
         transform: translateY(-400px);
     }
}



.App_re_msg_generico {
  z-index: 999999;
  position: absolute;
  top: 0px;
  left: 0px;

  width:100%;
  background-color:rgba(255,255,255,0.5);
}

.App_re_msg_generico_inner h3 {
    color: rgba(24, 90, 134, 1);
    height: 25px;
    border-bottom: 1px solid rgba(24, 90, 134, 1);
}




