.animated {
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.animated.bounceIn {
  animation-duration: 0.7s;
}
.animated.bounceOut {
  animation-duration: 0.5s;
}
.animated.bounceIn {
  animation-name: bounceIn;
}
.animated.bounceOut {
  animation-name: bounceOut;
}
.animated.fadeIn {
  animation-duration: 0.7s;
  animation-name: fadeIn;
}
.animated.fadeOut {
  animation-duration: 0.3s;
  animation-name: fadeOut;
}
.animated.bounceInDown {
  animation-name: bounceInDown;
}
.animated.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: perspective(1px) scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: perspective(1px) scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: perspective(1px) scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: perspective(1px) scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: perspective(1px) scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: perspective(1px) scaleX(1);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.rrt-confirm-holder {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999999;
}
.rrt-confirm-holder .shadow {
  background-color: #323a44cc;
  height: 100%;
  width: 100%;
}
.rrt-confirm-holder .rrt-confirm {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 3px 3px 20px #333;
  left: 50%;
  margin-left: -160px;
  overflow: hidden;
  position: absolute;
  top: 20%;
  width: 320px;
  z-index: 9;
}
.rrt-confirm-holder .rrt-confirm .rrt-message {
  background-color: #fff;
  clear: both;
  font-family: open-sanscondensed-light, sans-serif;
  font-size: 1em;
  min-height: 50px;
  padding: 5%;
  text-align: center;
  width: 100%;
}
.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder {
  display: flex;
}
.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder .rrt-button {
  background-color: #0000;
  border: none;
  border-top: 1px solid #f0f0f0;
  cursor: pointer;
  flex-grow: 1;
  float: left;
  font-size: 14px;
  height: 50px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-transform: capitalize;
}
.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder .rrt-button:hover {
  background-color: #f5f5f5;
}
.rrt-confirm-holder
  .rrt-confirm
  .rrt-buttons-holder
  .rrt-button.rrt-ok-btn:active {
  background-color: #60bb71;
  color: #fff;
}
.rrt-confirm-holder
  .rrt-confirm
  .rrt-buttons-holder
  .rrt-button.rrt-cancel-btn:active {
  background-color: #db6a64;
  color: #fff;
}
.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder .rrt-button:focus {
  outline: none;
}
body.toastr-confirm-active {
  overflow: hidden;
}
.redux-toastr *,
.redux-toastr :after,
.redux-toastr :before {
  box-sizing: border-box;
}
.redux-toastr .bottom-center,
.redux-toastr .bottom-left,
.redux-toastr .bottom-right,
.redux-toastr .top-center,
.redux-toastr .top-left,
.redux-toastr .top-right {
  padding: 0 10px;
  position: fixed;
  width: 350px;
  z-index: 99999999;
}
.redux-toastr .top-center,
.redux-toastr .top-left,
.redux-toastr .top-right {
  top: 0;
}
.redux-toastr .bottom-right,
.redux-toastr .top-right {
  right: 0;
}
.redux-toastr .bottom-center,
.redux-toastr .bottom-left,
.redux-toastr .bottom-right {
  bottom: 0;
}
.redux-toastr .bottom-left,
.redux-toastr .top-left {
  left: 0;
}
.redux-toastr .bottom-center,
.redux-toastr .top-center {
  left: 50%;
  margin-left: -175px;
}
@media (max-width: 320px) {
  .redux-toastr .bottom-center,
  .redux-toastr .bottom-left,
  .redux-toastr .bottom-right,
  .redux-toastr .top-center,
  .redux-toastr .top-left,
  .redux-toastr .top-right {
    width: 320px;
  }
  .redux-toastr .bottom-center,
  .redux-toastr .top-center {
    margin-left: -160px;
  }
}
.redux-toastr .toastr {
  background-color: #fcfcfc;
  border-radius: 4px;
  box-shadow: 2px 2px 10px #0006;
  color: #333;
  margin: 10px 0;
  min-height: 70px;
  opacity: 0.94;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
}
.redux-toastr .toastr:hover:not(.rrt-message) {
  box-shadow: 0 0 10px #0009;
  opacity: 1;
}
.redux-toastr .toastr .toastr-status {
  height: 5px;
  width: 100%;
}
.redux-toastr .toastr .toastr-status.success {
  background-color: #60bb71;
}
.redux-toastr .toastr .toastr-status.warning {
  background-color: #f7a336;
}
.redux-toastr .toastr .toastr-status.info {
  background-color: #58abc3;
}
.redux-toastr .toastr .toastr-status.error {
  background-color: #db6a64;
}
.redux-toastr .toastr .rrt-left-container,
.redux-toastr .toastr .rrt-right-container {
  float: left;
  overflow: hidden;
  text-align: center;
}
.redux-toastr .toastr .rrt-left-container {
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 80px;
}
.redux-toastr .toastr .rrt-left-container .rrt-holder {
  height: 70px;
  left: 5px;
  line-height: 60px;
  margin-top: -35px;
  position: absolute;
  top: 50%;
  width: 70px;
}
.redux-toastr .toastr .rrt-left-container .toastr-icon {
  fill: #fff;
  margin-top: 5px;
  vertical-align: middle;
}
.redux-toastr .toastr .rrt-middle-container {
  float: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  margin-left: 80px;
  padding: 10px 5px;
  position: relative;
  text-align: left;
  width: 65%;
}
.redux-toastr .toastr .rrt-middle-container .rrt-title {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 5px;
}
.redux-toastr .toastr .rrt-right-container {
  width: 10%;
}
.redux-toastr .toastr .close-toastr {
  background-color: #0000;
  border: none;
  color: #000;
  cursor: pointer;
  font-family: Helvetica Neue, Helvetica, Arial sans-serif;
  font-size: 22px;
  height: 100%;
  opacity: 0.5;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 10%;
}
.redux-toastr .toastr .close-toastr:hover {
  opacity: 1;
}
.redux-toastr .toastr .close-toastr:focus {
  outline: none;
}
.redux-toastr .toastr .close-toastr span {
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.redux-toastr .toastr.rrt-error,
.redux-toastr .toastr.rrt-info,
.redux-toastr .toastr.rrt-success,
.redux-toastr .toastr.rrt-warning {
  color: #fff;
}
.redux-toastr .toastr.rrt-info {
  background-color: #58abc3;
}
.redux-toastr .toastr.rrt-info .rrt-progressbar {
  background-color: #378298;
}
.redux-toastr .toastr.rrt-success {
  background-color: #60bb71;
}
.redux-toastr .toastr.rrt-success .rrt-progressbar {
  background-color: #3e914d;
}
.redux-toastr .toastr.rrt-warning {
  background-color: #f7a336;
}
.redux-toastr .toastr.rrt-warning .rrt-progressbar {
  background-color: #d87e09;
}
.redux-toastr .toastr.rrt-error {
  background-color: #db6a64;
}
.redux-toastr .toastr.rrt-error .rrt-progressbar {
  background-color: #c5352e;
}
.redux-toastr .toastr.rrt-light .rrt-progressbar {
  background-color: #ccc;
}
.redux-toastr .toastr.rrt-light .toastr-icon {
  fill: #333 !important;
}
.redux-toastr .toastr.rrt-message {
  border: 1px solid #dbdbdb;
  opacity: 1;
}
.redux-toastr .toastr.rrt-message .rrt-title {
  font-size: 1.2em;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 90%;
}
.redux-toastr .toastr.rrt-message .rrt-text {
  background-color: #fff;
  border-bottom: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  font-size: 1.1em;
  margin-bottom: 20px;
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
  padding: 15px;
  width: 100%;
}
.redux-toastr .toastr.rrt-message .rrt-text img {
  display: block;
  margin: 10px auto;
  max-width: 100%;
}
.redux-toastr .toastr.rrt-message .close-toastr {
  height: 50px;
}
.redux-toastr .toastr .rrt-progress-container {
  bottom: 20px;
  height: 5px;
  margin: 0 -20px -20px -60px;
  position: absolute;
  width: 100%;
}
.redux-toastr .toastr .rrt-progress-container .rrt-progressbar {
  border-radius: 0 0 0 4px;
  height: 100%;
}
.redux-toastr .toastr-attention {
  background-color: #0006;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
