.messageSuccess{
	width : 600px;
    font-size: 18px;
	font-weight: bold;
	color : #D8000C;
}

.customAlert{
	
  display: none;
  position: fixed;
  bottom:0;
  right:0;
  margin-right : 10px;
  margin-bottom : 10px;
  width : 65;
  padding: 10px;
  box-sizing: border-box;
  background-color : #FFD2D2;
  color : #D8000C;
  border-radius : 5px;
  border-color : green;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 2px 3px rgba(0,0,0,.2);
  transition: box-shadow 83ms;
  
  @media all and (max-width: 1300px){
    .message{
      font-size: 14px !important;
    }
    input[type='button']{
      height: 15% !important;
    }
  }
  

    
  input[type='button']{
    position: absolute;
    top: 100%;
    left: 50%;
    width: 50%;
    height: 36px;
    margin-top: -45px;
    margin-left: -25%;
    outline: 0;
    border: 0;
    background: #04B486;
    color: white;
    &:hover{
      transition: 0.3s;
      cursor: pointer;
    	background: lighten(#04B486, 5%);  
    }
  } 
}
      
.rab{
  outline: 0;
  border: 0;
  color: white;
  background: darken(#04B486, 5%);
}
      
@keyframes fadeOut{
	from{
  	opacity: 1;
  } 
  to{
    opacity: 0;
  }
}
    
@keyframes fadeIn{
	from{
  	opacity: 0;
  } 
  to{
    opacity: 1;
  }
}

@media screen and (max-width: 800px) {
	.customAlert{
		bottom:80px;
		z-index : 99;
	}
	
.messageSuccess{
	width : 300px;
    font-size: 18px;
	font-weight: bold;
	color : #D8000C;
}
	
}