/* Stili gumbov */
.button {
  display: inline-flex;
  height: 40px;
  width: 150px;
  border: 2px solid #BFC0C0;
  margin: 20px 20px 20px 20px;
  color: #BFC0C0;
  text-transform: uppercase;
  text-decoration: none;
  font-size: .8em;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.backupBTN {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  box-shadow: none !important;
}

.backupA {
  color: #000000;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Pokazi  gumb*/

#prikaziGumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#prikaziGumb button {
  position: relative;
  transition: all .35s ease-Out;
}

#slide1 {
  width: 100%;
  height: 100%;
  left: -200px;
  background: #BFC0C0;
  position: absolute;
  transition: all .35s ease-Out;
  bottom: 0;
}

#prikaziGumb:hover #slide1 {
  left: 0;
}

#prikaziGumb:hover button {
  color: #2D3142;
}
/* Skrij gumb*/

#skrijGumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#skrijGumb button{
  position: relative;
  transition: all .35s ease-Out;
}

#slide2 {
  width: 100%;
  height: 100%;
  left: 200px;
  background: #BFC0C0;
  position: absolute;
  transition: all .35s ease-Out;
  bottom: 0;
}

#skrijGumb:hover #slide2 {
  left: 0;
}

#skrijGumb:hover a {
  color: #2D3142;
}


/* Shrani gumb */

#shraniGumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#shraniGumb button {
  position: relative;
  transition: all .45s ease-Out;
}

#circle {
  width: 0%;
  height: 0%;
  opacity: 0;
  line-height: 40px;
  border-radius: 50%;
  background: #BFC0C0;
  position: absolute;
  transition: all .5s ease-Out;
  top: 20px;
  left: 70px;
}

#shraniGumb:hover #circle {
  width: 200%;
  height: 500%;
  opacity: 1;
  top: -70px;
  left: -70px;
}

#shraniGumb:hover button {
  color: #2D3142;
}
/* <div class="button" id="shraniGumb">
  <div id="circle"></div>
  <a href="#">Let's a Go!</a>
</div> */
