tbody tr:hover {
  background-color: lightblue;
  color: #666666;
}
.margintop {
  margin-top: 2em;
}
.marginleft {
    margin-left: 25em;
}
.marginlefthalf {
    margin-left: 1em;
}
vtex-store-link-0-x-label--phonecall {
  font-size: 0;
  width: 30px;
  height: 30px;
  padding: 30px;
  background-repeat: no-repeat;
  background-size: 55px;
  background-position: 50%;
  background-image: url(/arquivos/icon-phoneCall.png);
}
.error {
  color: red;
}
.success {
  color: green;
}
@keyframes page-load {
  from {
      background-color: #2856aa;
      width: 0%;
  }
  to {
      background-color: #18e7d6;
      width: 100%;
  }
}
.page-loading::before {
  content:" ";
  display:block;
  position:fixed;
  z-index:10;
  height:4px;
  width:100%;
  top:0;
  left:0;
  background-color:#06D;
  animation: page-load infinite ease-out 1.2s;
  box-shadow:0 2px 2px rgba(0,0,0,.2);
}