/*************************************************************************
* ADOBE CONFIDENTIAL
* ___________________
*
* Copyright 2014 Adobe
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of Adobe and its suppliers, if any. The intellectual
* and technical concepts contained herein are proprietary to Adobe
* and its suppliers and are protected by all applicable intellectual
* property laws, including trade secret and copyright laws.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe.
**************************************************************************/
.quickaction-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.quickaction-bar {
  height: 28px;
  margin: 0;
  padding: 0;
  text-align: center;
  opacity: 0;
  transition: opacity .3s;
}
.quickaction-fadein {
  opacity: 1;
  transition-delay: opacity .3s;
}
.quickaction-circle {
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
}
.quickaction-bar li {
  display: inline-block;
  vertical-align: top;
  list-style-type: none;
  padding: 0;
  margin: 0 2px;
}
.quickaction-circle > a,
.quickaction-circle > button,
.quickaction-bar li > a,
.quickaction-bar li > button {
  box-sizing: content-box;
  display: inline-block;
  cursor: pointer;
  border: none;
  padding: 0;
  background: rgba(51, 51, 51, 0.75);
  border-radius: 42px 42px 42px 42px;
  box-shadow: 1px 1px 2px rgba(51, 51, 51, 0.5);
  text-decoration: none;
  color: #CCCCCC;
  opacity: 1;
}
.quickaction-circle > a:hover,
.quickaction-circle > button:hover,
.quickaction-bar li > a:hover,
.quickaction-bar li > button:hover {
  color: #FFFFFF;
}
.quickaction-circle > a:active,
.quickaction-circle > button:active,
.quickaction-bar li > a:active,
.quickaction-bar li > button:active {
  color: #3491E7;
}
.quickaction-circle > a,
.quickaction-circle > button {
  line-height: 42px;
  width: 42px;
  height: 42px;
}
.quickaction-bar li > a,
.quickaction-bar li > button {
  line-height: 28px;
  width: 28px;
  height: 28px;
}
