/**
 * chariot-tooltips v1.0.1 - 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; }

 .chariot-tooltip {
    background-color: #fff;
    padding: 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 0 5px 0 rgba(31, 28, 28, 0.3);
    border: 1px solid #ddd;
    color: #999;
  }

  .chariot-tooltip .chariot-tooltip-icon {
    width: 52px;
    height: 52px;
    margin: auto;
  }

  .chariot-tooltip .chariot-tooltip-icon img {
    width: 52px;
    height: 52px;
  }

  .chariot-tooltip .chariot-tooltip-header {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: #555;
    padding: 5px 0;
  }

  .chariot-tooltip .chariot-tooltip-content { padding: 5px 0; }

  .chariot-tooltip .chariot-tooltip-content p {
    font-size: 14px;
    font-weight: 300;
    color: #999;
    padding-bottom: 15px;
  }

  .chariot-tooltip .chariot-btn-row { padding-top: 5px; }

  .chariot-tooltip .chariot-btn-row .btn {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    background-color: #78A300;
    border-radius: 3px;
    height: 36px;
    padding: 0 20px;
    border: none;
  }

  .chariot-tooltip .chariot-btn-row .btn:hover { background-color: #78A300; }

  .chariot-tooltip .chariot-btn-row .chariot-tooltip-subtext {
    float: left;
    color: #ddd;
    font-size: 13px;
    padding-top: 10px;
  }

  .chariot-tooltip-arrow { background: #fff; }

  .chariot-tooltip-arrow-left {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-shadow: -2px 2px 2px 0 rgba(31, 28, 28, 0.1);
  }

  .chariot-tooltip-arrow-right {
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    box-shadow: 2px -2px 2px 0 rgba(31, 28, 28, 0.1);
  }

  .chariot-tooltip-arrow-top {
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    box-shadow: -2px -2px 4px 0 rgba(31, 28, 28, 0.1);
  }

  .chariot-tooltip-arrow-bottom {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-shadow: 2px 2px 4px 0 rgba(31, 28, 28, 0.1);
  }