﻿.action-alert-box {
  position: fixed;
  width: 100%;
  bottom: -10%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  text-align: center;
  height: auto;
  cursor: default !important;
  z-index: 99999999;
  left:0px;
}
.action-alert-box.active {
  bottom: 2%;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.action-alert-box .alert-box {
  font-size: 16px !important;
  line-height: 10px;
  width: auto;
  display: inline-block;
  color: #000;
  font-weight: normal;
  padding: 18px;
  padding-left: 50px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /*border: 2px solid #909090;*/
} 
.action-alert-box .alert-box.successfull {
  background: #C5C5C5;
  position: relative;
}
.action-alert-box .alert-box.successfull:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #6b6b6b;
  width: 50px;
  z-index: 1;
}
.action-alert-box .alert-box .rightTick {
  position: absolute;
  left: 0px;
  z-index: 9;
  top: 10px;
}
.action-alert-box .alert-box .rightTick:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 11px;
  display: block;
  width: 13px;
  height: 3px;
  background: #fff;
  transition: 0.3s linear all;
  transition-delay: 0.01s;
  transform: rotate(45deg);
}
.action-alert-box .alert-box .rightTick:after {
  content: '';
  position: absolute;
  top: 11px;
  left: 18px;
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  transition: 0.3s linear all;
  transition-delay: 0.01s;
  transform: rotate(-45deg);
}
.action-alert-box.alert-error-copied .alert-box .rightTick:before {
  content: '';
  position: absolute;
  top: 24px !important;
  left: 24px !important;
  display: block;
  width: 4px !important;
  height: 3px;
  background: #fff;
  transition: 0.3s linear all;
  transition-delay: 0.01s;
  transform: rotate(90deg) !important;
}
.action-alert-box.alert-error-copied .alert-box .rightTick:after {
  content: '';
  position: absolute;
  top: 7px !important;
  left: 16px !important;
  display: block;
  width: 20px !important;
  height: 3px !important;
  background: #fff;
  transition: 0.3s linear all;
  transition-delay: 0.01s;
  transform: rotate(90deg) !important;
}
.action-alert-box .alert-box span,
.action-alert-box .alert-box a {
  font-weight: normal;
  padding-left: 10px;
  font-size: 16px !important;
} 