/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2015-08-19, 15:18:18
    Author     : Piotr Maciorowski
*/
.cd-top {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 99;
  display: inline-block;
  vertical-align: middle;
  color: #42ac28;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 300ms all ease-in-out;
}

.cd-top span {
  display: table-cell;
  vertical-align: middle;
  width: 3.2rem;
  height: 3.2rem;
  margin-left: 1rem;
  padding-bottom: 0.1rem;
  border-radius: 0.2rem;
  text-align: center;
  transition: 300ms all ease-in-out;
}

.cd-top.cd-is-visible {
  opacity: 1;
  visibility: visible;
}

.cd-top:hover {
  transition: 300ms all ease-in-out;
}

.cd-top:hover span {
  transition: 300ms all ease-in-out;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
  transition: 300ms all ease-in-out;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 10px;
    bottom: 10px;
  }
}
