﻿.popover-enter-active {
  transition: all .3s ease-in-out;
}

.popover-leave-active {
  transition: all .3s ease-in-out;
}

.popover-enter,
.popover-leave-active {
  opacity: 0;
  transform: translateX(10px);
}

.popover-main {
  /*popover container*/
  display: inline-block;
  position: relative;
}

.popover__content {
  /*Style of hidden popover content*/
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
  max-width: 500px;
  position: absolute;
  width: 450px;
  z-index: 999;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  padding: 9px 14px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
  background: #333333;
  color: #ffffff;
  font-weight: bold;
}
.arrow--tl {
  /* Position at the top left corner */
  left: 32px;
  top: 0px;
  /* Border */
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  transform: translate(50%, -50%) rotate(45deg);
}
.popover__text {
  /*Initially shown text*/
}

  .popover__text:hover {
  }
