@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

 .ca-container-global{
    display: none;
    position: fixed; 
    bottom: 15px;
    right: 15px;
    z-index: 1000000;
 }

 .ca-container-success {
   display: none;
   position: relative;
   margin: auto;
   overflow: hidden;
   width: 245px;
   height: 250px;
   border-radius: 20px;
   box-shadow: 5px 5px 20px #666;
}
.ca-container-error {
   display: none;
   position: relative;
   margin: auto;
   overflow: hidden;
   width: 245px;
   height: 250px;
   border-radius: 20px;
   box-shadow: 5px 5px 20px #666;
}
 .ca-h1 {
   font-size: 0.9em;
   font-weight: 100;
   letter-spacing: 3px;
   padding-top: 5px;
   color: #fcfcfc;
   padding-bottom: 5px;
   text-transform: uppercase;
   margin: 0px !important;
}
 .ca-green {
   color: #4ec07d;
}
 .ca-red {
   color: #e96075;
}
 .ca-alert {
   font-weight: 700;
   letter-spacing: 5px;
}
 .ca-p {
   margin-top: -5px;
   font-size: 0.5em;
   font-weight: 100;
   color: #5e5e5e;
   letter-spacing: 1px;
}
 .ca-button, .ca-dot {
   cursor: pointer;
}
 #ca-success-box {
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   background: linear-gradient(to bottom right, #b0db7d 40%, #99dbb4 100%);
   border-radius: 20px;
   box-shadow: 5px 5px 20px rgba(203, 205, 211, 10);
   perspective: 40px;
}
 #ca-error-box {
   position: absolute;
   width: 100%;
   height: 100%;
   right: 0;
   background: linear-gradient(to bottom left, #ef8d9c 40%, #ffc39e 100%);
   border-radius: 20px;
   box-shadow: 5px 5px 20px rgba(203, 205, 211, 10);
}
 .ca-dot {
   width: 15px;
   height: 15px;
   background: #fcfcfc;
   border-radius: 50%;
   position: absolute;
   top: 4%;
   right: 6%;
   font-size: 14px;
 }

 .ca-dot span {
    position: absolute;
    top: inherit;
    left: inherit;
    margin: -2px 0px 0 4px;
    font-size: 12px;
 }

 .ca-dot:hover {
   background: #c9c9c9;
}
 .ca-two {
   right: 12%;
   opacity: 0.5;
}
 .ca-face {
   position: absolute;
   width: 22%;
   height: 22%;
   background: #fcfcfc;
   border-radius: 50%;
   border: 1px solid #777;
   top: 21%;
   left: 37.5%;
   z-index: 2;
   animation: bounce 1s ease-in infinite;
}
 .ca-face2 {
   position: absolute;
   width: 22%;
   height: 22%;
   background: #fcfcfc;
   border-radius: 50%;
   border: 1px solid #777;
   top: 21%;
   left: 37.5%;
   z-index: 2;
   animation: roll 3s ease-in-out infinite;
}
 .ca-eye {
   position: absolute;
   width: 5px;
   height: 5px;
   background: #777;
   border-radius: 50%;
   top: 40%;
   left: 20%;
}
 .ca-right {
   left: 68%;
}
 .ca-mouth {
   position: absolute;
   top: 43%;
   left: 41%;
   width: 7px;
   height: 7px;
   border-radius: 50%;
}
 .ca-happy {
   border: 2px solid;
   border-color: transparent #777 #777 transparent;
   transform: rotate(45deg);
}
 .ca-sad {
   top: 49%;
   border: 2px solid;
   border-color: #777 transparent transparent #777;
   transform: rotate(45deg);
}
 .ca-shadow {
   position: absolute;
   width: 21%;
   height: 3%;
   opacity: 0.5;
   background: #777;
   left: 40%;
   top: 43%;
   border-radius: 50%;
   z-index: 1;
}
 .ca-scale {
   animation: scale 1s ease-in infinite;
}
 .ca-move {
   animation: move 3s ease-in-out infinite;
}
 .ca-message {
   position: absolute;
   width: 100%;
   text-align: center;
   height: 40%;
   top: 47%;
}
 .ca-button-box {
   position: absolute;
   background: #fcfcfc;
   width: 50%;
   height: 15%;
   border-radius: 20px;
   top: 73%;
   left: 25%;
   outline: 0;
   border: none;
   box-shadow: 2px 2px 10px rgba(119, 119, 119, .5);
   transition: all 0.5s ease-in-out;
}
 .ca-button-box:hover {
   background: #efefef;
   transform: scale(1.05);
   transition: all 0.3s ease-in-out;
}
 @keyframes bounce {
   50% {
     transform: translateY(-10px);
  }
}
 @keyframes scale {
   50% {
     transform: scale(0.9);
  }
}
 @keyframes roll {
   0% {
     transform: rotate(0deg);
     left: 25%;
  }
   50% {
     left: 60%;
     transform: rotate(168deg);
  }
   100% {
     transform: rotate(0deg);
     left: 25%;
  }
}
 @keyframes move {
   0% {
     left: 25%;
  }
   50% {
     left: 60%;
  }
   100% {
     left: 25%;
  }
}
 .ca-footer {
   position: absolute;
   bottom: 0;
   right: 0;
   text-align: center;
   font-size: 1em;
   text-transform: uppercase;
   padding: 10px;
   font-family: 'Lato', sans-serif;
}
 .ca-footer p {
   color: #ef8d9c;
   letter-spacing: 2px;
}
 .ca-footer a {
   color: #b0db7d;
   text-decoration: none;
}
 .ca-footer a:hover {
   color: #ffc39e;
}
 