.button {
   background-color: #0F2B40; /* #660000; */
   border: none;
   color: white;
   padding: 10px 25px;
   text-align: center;
   display: inline-block;
   font-size: 16px;
   margin: 4px 2px;
   cursor: pointer;
   -webkit-transition-duration: 0.4s; /* Safari */
   transition-duration: 0.4s;
}

.button1 {
   box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.button2:hover {
   text-align: middle;
   box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
   background-color: #0F2B40; 
}

.redondo {
   padding: 20px 20px; /* Dimens�es iguais fazem o bot�o redondo */
   border-radius: 50%;
   background: #0F2B40; 
   box-shadow: 0 0 3px gray; 
   border:2px solid #cfdcec;
   outline: none; /*to remove the square border on click*/
}

p.pcorner25 {
   width: 100%;
   padding: 0px 25%; /* vertical horizontal */
}

p.pcorner25 span {
   color: #ffffff; /* Text color */
   background-color: DarkSlateGray;
   border-radius: 10px;
   border: 1px solid black;
   padding: 5px 15px 5px 15px;
   display: inline-block;
   /* float: center; // css property ignored due to display */
   /* margin: 4px -15px 4px 0px; */
}

#div_round_corner {
   width: 70px;
   border: 2px solid red;
   padding: 10px;
   border-radius: 25px;
}

#div_curve_corner {
  border: 2px solid red;
  padding: 10px;
  border-radius: 50px 20px;
}

#div_cestinha {
   width: 200px;
   border: 2px solid black;
   padding: 5px;
   border-radius: 15px;
}

#div_produto {
   width: 100%;
   border: 2px solid Gainsboro;
   box-shadow: 6px 6px 3px Gainsboro;
   padding: 5px;
   border-radius: 10px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {  /*safari and chrome*/
    select {
      width: 75%;
      height:30px;
      line-height:30px;
      background:#f4f4f4;
    } 
}
select::-moz-focus-inner { /*Remove button padding in FF*/ 
    border: 0;
    padding: 0;
}
@-moz-document url-prefix() { /* targets Firefox only */
    select {
        padding: 15px 0!important;
    }
}        
@media screen\0 { /* IE Hacks: targets IE 8, 9 and 10 */        
    select {
        height:30px;
        line-height:30px;
    }     
}
