/* All Function  */
.ccf-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-orient: vertical!important;
  -webkit-box-direction: normal!important;
  -ms-flex-direction: column!important;
  flex-direction: column!important;
}
.ccf-circle {
  margin-top: 0px;
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  position: relative;
}
.ccf-circle.active {
  margin-top: 10px;
  width: 55px;
  height: 55px;
  position: relative;
  opacity: 1;
  transform: translate(0px, 0px);
}
.ccf-circle img {
  width: 0px;
  height: 0px;
  opacity: 0;
  transition: 0.4s;
  position: absolute;
  -ms-transform: rotate(-360deg); /* IE 9 */
  -webkit-transform: rotate(-360deg); /* Safari */
  transform: rotate(-360deg);
}
.ccf-circle.active img {
  width: 30px;
  height: 30px;
  opacity: 1;
  position: relative;
  -ms-transform: rotate(360deg); /* IE 9 */
  -webkit-transform: rotate(360deg); /* Safari */
  transform: rotate(360deg);
}

/* Main Function */
.ccf-circle.main {
  width: 55px;
  height: 55px;
  opacity: 1;
  position: relative !important;
  background-color: #FF6D00 !important;
  cursor: pointer;
}

.ccf-circle.main.active {
  background-color: #FFF !important;
}

img.ccf-img-first.active {
  width: 30px;
  height: 30px;
  opacity: 1;
  transition: 0.4s;
  position: relative !important;
  -ms-transform: rotate(-360deg); /* IE 9 */
  -webkit-transform: rotate(-360deg); /* Safari */
  transform: rotate(-360deg);
}
img.ccf-img-first {
  width: 0px;
  height: 0px;
  opacity: 0;
  position: absolute !important;
  -ms-transform: rotate(360deg); /* IE 9 */
  -webkit-transform: rotate(360deg); /* Safari */
  transform: rotate(360deg);
}

/* Child Function */
.ccf-circle.messenger,
.ccf-circle.line,
.ccf-circle.call {
  z-index: -1;
  transition: 0.4s;
  transform: translate( 0px, 65px );
}

.ccf-circle.messenger.active,
.ccf-circle.line.active,
.ccf-circle.call.active {
  transform: translate( 0px, 0px );
}
.ccf-circle.messenger { background-color: #0084ff !important; }
.ccf-circle.line { background-color: #00C300 !important; }
.ccf-circle.call { background-color: #FF6D00 !important; }
