/**
 * chariot-tooltips v1.0.3 - A JavaScript library for creating beautiful in product tutorials
 *
 * https://github.com/zendesk/chariot-tooltips
 *
 * Copyright 2016 Zendesk Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.

 */
.chariot-tooltip {
  position: absolute; }
  .chariot-tooltip .left {
    float: left; }
  .chariot-tooltip .right {
    float: right; }
  .chariot-tooltip .center {
    margin-left: auto;
    margin-right: auto; }
  .chariot-tooltip-arrow {
    position: absolute;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0; }

.animate-appear-top {
  animation: appear-top 0.4s ease-in-out;
  animation-fill-mode: forwards; }

.animate-appear-right {
  animation: appear-right 0.4s ease-in-out;
  animation-fill-mode: forwards; }

.animate-appear-bottom {
  animation: appear-bottom 0.4s ease-in-out;
  animation-fill-mode: forwards; }

.animate-appear-left {
  animation: appear-left 0.4s ease-in-out;
  animation-fill-mode: forwards; }

@keyframes appear-top {
  0% {
    margin-top: -10px;
    opacity: 0; }
  40% {
    margin-top: 2.5px; }
  100% {
    margin-top: 0px;
    opacity: 1; } }

@keyframes appear-right {
  0% {
    margin-left: 10px;
    opacity: 0; }
  40% {
    margin-left: -2.5px; }
  100% {
    margin-left: 0px;
    opacity: 1; } }

@keyframes appear-bottom {
  0% {
    margin-top: 10px;
    opacity: 0; }
  40% {
    margin-top: -2.5px; }
  100% {
    margin-top: 0px;
    opacity: 1; } }

@keyframes appear-left {
  0% {
    margin-left: -10px;
    opacity: 0; }
  40% {
    margin-left: 2.5px; }
  100% {
    margin-left: 0px;
    opacity: 1; } }

.chariot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.chariot-transparent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; }
