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

/*floating action button*/
.adminActions {
  position: fixed;
  bottom: 35px; right: 35px;
}

  .adminButton {
    height: 60px;
    width: 60px;
    background-color: rgba(0,141,175, 0.8);
    border-radius: 50%;
    display: block;
    color: rgb(255,255,255);
    text-align: center;
    position: relative;
    z-index: 1;
  }

    .adminButton i {
      font-size: 22px;
    }

  .adminButtons {
    position: absolute;
    width: 100%;
    bottom: 120%;
    text-align: center;
	float: center;
	color: rgb(255,255,255);
	font-family: roboto, sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 12px;
	text-decoration: none;
  }

    .adminButtons a {
      display: block;
      width: 110px;
      height: 60px;
      border-radius: 4px;
      text-decoration: none;
      margin: 10px auto 0;
      line-height: 1.25;
      opacity: 0;
      visibility: hidden;
      position: relative;
	  color: rgb(255,255,255);
	  font-family: roboto, sans-serif;
      font-weight: 500;
      font-style: normal;
	  font-size: 12px;
      box-shadow: 0 0 5px 1px rgba(0,141,175, 0.5);  
    }

      .adminButtons a:hover {
        transform: scale(1.05);
		box-shadow: 0 0 5px 1px rgba(236,28,36, 0.5);
		color: rgb(236,28,36);
      }

      .adminButtons a:nth-child(1) {background-color: rgb(0,141,175); transition: opacity .2s ease-in-out .3s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(2) {background-color: rgb(0,141,175); transition: opacity .2s ease-in-out .25s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(3) {background-color: rgb(0,141,175); transition: opacity .2s ease-in-out .2s, transform .15s ease-in-out;}
      .adminButtons a:nth-child(4) {background-color: rgb(0,141,175); transition: opacity .2s ease-in-out .15s, transform .15s ease-in-out;}

      .adminActions a i {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
      }

  .adminToggle {
    -webkit-appearance: none;
    position: absolute;
    border-radius: 50%;
    top: 0; left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    transition: box-shadow .2s ease-in-out;
    box-shadow: 0 3px 5px 1px rgba(0,141,175,0.5);
  }

    .adminToggle:hover {
      box-shadow: 0 3px 6px 2px rgba(236,28,36,0.5);
    }

    .adminToggle:checked ~ .adminButtons a {
      opacity: 1;
      visibility: visible;
    }
