/* Mobile */
       @media (max-width: 2560px){
.alert{
  
  padding: 15px 0px;
  overflow: hidden;
 width: 397px;
  position: fixed;
  right: -2%;
  top: 30px;
  border-radius: 4px;
  
}
       }
/* Mobile */
       @media (max-width: 426px){
.alert{
  
  padding: 15px 0px;
  overflow: hidden;
 width: 397px;
  position: fixed;
  right: -11%;
  top: 30px;
  border-radius: 4px;
  
}
       }

/* controla a animação de entrada da msg */
.alert.show{
    animation: show_slide 1s ease forwards;
}

.fas{
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.fa-times:before {
    content: "\f00d";
    /* left: -4px; */
    position: relative;
}


.alert.showAlert{
    opacity: 1;
    pointer-events: auto;
    z-index:2000;
}




@keyframes show_slide{
    0%{
        transform: translateX(100%);
    }
    40%{
        transform: translateX(-10%);
    }
    80%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-10%);
    }
}

.alert.hide{
    animation: hide_slide 1s ease forwards;
}


@keyframes hide_slide{
    0%{
        transform: translateX(-10%);
    }
    40%{
        transform: translateX(0%);
    }
    80%{
        transform: translateX(-10%);
    }
    100%{
        transform: translateX(120%);
    }
}




.alert .fa-exclamation-circle{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
 
    font-size: 30px;
}

.alert .msg{
    padding: 0 52px;
    font-size: 18px;

}

.alert .close-btn{
position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 34px;
    cursor: pointer;
}


span.close-btn {
  left: 327px;;
}
span.msg {
    left: 0px;
    top: 0px;
}

span.fa-times{
    left: 0px;
    top: 0px;

}


.close-btn .fa-times{
  
    font-size: 22px;
    line-height: 40px;
}







/*Mensagems de alerta*/

  
  .alert-heading {
    color: inherit;
  }
  
  .alert-link {
    font-weight: 700;
  }
  
  .alert-dismissible {
    padding-right: 4rem;
  }
  
  .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
  }
  
  .alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
  }
  
  .alert-primary hr {
    border-top-color: #9fcdff;
  }
  
  .alert-primary .alert-link {
    color: #002752;
  }
  
  .alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
  }
  
  .alert-secondary hr {
    border-top-color: #c8cbcf;
  }
  
  .alert-secondary .alert-link {
    color: #202326;
  }
  
  .alert-success {
    color: #155724;
    background-color: #d4edda;
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 200;
    width: 100%;
    max-width: 1064px;
  }
  
  .alert-success hr {
    border-top-color: #b1dfbb;
  }
  
  .alert-success .alert-link {
    color: #0b2e13;
  }
  
  .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
  }
  
  .alert-info hr {
    border-top-color: #abdde5;
  }
  
  .alert-info .alert-link {
    color: #062c33;
  }
  
  .alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
  }
  
  .alert-warning hr {
    border-top-color: #ffe8a1;
  }
  
  .alert-warning .alert-link {
    color: #533f03;
  }
  
  .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }
  
  .alert-danger hr {
    border-top-color: #f1b0b7;
  }
  
  .alert-danger .alert-link {
    color: #491217;
  }
  
  .alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
  }
  
  .alert-light hr {
    border-top-color: #ececf6;
  }
  
  .alert-light .alert-link {
    color: #686868;
  }
  
  .alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
  }
  
  .alert-dark hr {
    border-top-color: #b9bbbe;
  }
  
  .alert-dark .alert-link {
    color: #040505;
  }
  



