/* -- Futuro CSS especifico do RPA Admin       -- */
/* ---------------------------------------------- */

@font-face {
    font-family: "nifty-demo-icons";
    font-style: normal;
    font-weight: 400;
    src: url("font/nifty-demo-icons.woff2") format("woff2");
  }
  
  [class^="demo-pli-"],
  [class*=" demo-pli-"],
  [class^="demo-psi-"],
  [class*=" demo-psi-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "nifty-demo-icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    vertical-align: middle;
  }
  
.demo-pli-repeat-2:before {
    content: "\e981";
  }
  
.demo-pli-dot-horizontal:before {
    content: "\ea66";
  }


.et-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
  }


  ul[id^="av"] {
    list-style-type: none;
  }
  
  li[id^="av"] {
    display: inline-block;
  }
  
  input[type="radio"][id^="av"] {
    display: none;
  } 
  
  label[id ^="av"] {
    border: 1px solid #fff;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
  }
  
  label[id ^="av"]:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 18px;
    transition-duration: 0.4s;
    transform: scale(0);
  }
  
  label[id ^="av"] img {
    height: 70px;
    width: 70px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
  }
  
  :checked + label[id ^="av"] {
    border-color: #ddd;
  }
  
  :checked + label[id ^="av"]:before {
    content: "✓";
    background-color: grey;
    transform: scale(1);
  }
  
  :checked + label[id ^="av"] img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #333;
    z-index: -1;
  } 

