@charset "utf-8";
/* CSS Document */

.containerButtonPWPL {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap; wrap;
  border-radius: 5px;
}

.containerButtonPWPL > div {
  background-color: #319b42;
  color: white;
  font-size: 16px;
  font-weight:500;	  
  font-family: sans-serif;
  text-transform: uppercase;
  margin: 0px 2px;
  // padding: 7px;
  border-radius: 5px;
  min-width:300px;
  flex-grow: 2;
}
.containerButtonPWPL a {
  color: white;
  text-decoration: none;
  padding: 7px;
}

.containerButtonPWPL > div :hover {
  background: rgba(0,94,184,1)!important;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
	
.pwplbuttonBlue {
  background-color: #6dcff6;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  margin: 2px;
  cursor: pointer;
  padding: 10x;
  border-radius: 15px;
  min-width:350px;
}

.pwplbuttonBlue:hover {
  background: rgba(209,225,248,1)!important;
  color: white;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
	
@media (max-width: 769px) {
  .flex-item-right, .flex-item-left {
    flex: 100%;
	}
  .containerButtonPWPL {
		flex-direction: column;		
	}
  }