/*
Theme Name: Counter Senati
Theme URI: #
Author: You
Author URI: https://wordpress.org/
Description: Mi first theme for WordPress.
Version: 2.4
Requires at least: 4.7
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
Tags: mytheme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
[data-tooltip] {
  position: relative;
  z-index: 10;
}

[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  bottom: calc(100% + 5px);
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  will-change: transform;
}

[data-tooltip]:before {
  content: attr(data-tooltip);
  padding: 10px 18px;
  min-width: 50px;
  max-width: 300px;
  width: -webkit-max-content;
  width: max-content;
  width: -moz-max-content;
  border-radius: 6px;
  font-size: 14px;
  background-color: rgba(59, 72, 80, 0.9);
  background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
  -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  white-space: pre-wrap;
  -webkit-transform: translate(-50%, -5px) scale(0.5);
          transform: translate(-50%, -5px) scale(0.5);
}

[data-tooltip]:after {
  content: "";
  border-style: solid;
  border-width: 5px 5px 0px 5px;
  border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}

[data-tooltip]:hover:before {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transform: translate(-50%, -5px) scale(1);
          transform: translate(-50%, -5px) scale(1);
}

[data-tooltip]:hover:after {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transform: translateX(-50%) scaleY(1);
          transform: translateX(-50%) scaleY(1);
}

/* LEFT */
/* Tooltip + arrow */
[data-tooltip-location=left]:before,
[data-tooltip-location=left]:after {
  left: auto;
  right: calc(100% + 5px);
  bottom: 50%;
}

/* Tooltip */
[data-tooltip-location=left]:before {
  -webkit-transform: translate(-5px, 50%) scale(0.5);
          transform: translate(-5px, 50%) scale(0.5);
}

[data-tooltip-location=left]:hover:before {
  -webkit-transform: translate(-5px, 50%) scale(1);
          transform: translate(-5px, 50%) scale(1);
}

/* Arrow */
[data-tooltip-location=left]:after {
  border-width: 5px 0px 5px 5px;
  border-color: transparent transparent transparent rgba(55, 64, 70, 0.9);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: translateY(50%) scaleX(0);
          transform: translateY(50%) scaleX(0);
}

[data-tooltip-location=left]:hover:after {
  -webkit-transform: translateY(50%) scaleX(1);
          transform: translateY(50%) scaleX(1);
}

/* RIGHT */
[data-tooltip-location=right]:before,
[data-tooltip-location=right]:after {
  left: calc(100% + 5px);
  bottom: 50%;
}

[data-tooltip-location=right]:before {
  -webkit-transform: translate(5px, 50%) scale(0.5);
          transform: translate(5px, 50%) scale(0.5);
}

[data-tooltip-location=right]:hover:before {
  -webkit-transform: translate(5px, 50%) scale(1);
          transform: translate(5px, 50%) scale(1);
}

[data-tooltip-location=right]:after {
  border-width: 5px 5px 5px 0px;
  border-color: transparent rgba(55, 64, 70, 0.9) transparent transparent;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: translateY(50%) scaleX(0);
          transform: translateY(50%) scaleX(0);
}

[data-tooltip-location=right]:hover:after {
  -webkit-transform: translateY(50%) scaleX(1);
          transform: translateY(50%) scaleX(1);
}

/* BOTTOM */
[data-tooltip-location=bottom]:before,
[data-tooltip-location=bottom]:after {
  top: calc(100% + 5px);
  bottom: auto;
}

[data-tooltip-location=bottom]:before {
  -webkit-transform: translate(-50%, 5px) scale(0.5);
          transform: translate(-50%, 5px) scale(0.5);
}

[data-tooltip-location=bottom]:hover:before {
  -webkit-transform: translate(-50%, 5px) scale(1);
          transform: translate(-50%, 5px) scale(1);
}

[data-tooltip-location=bottom]:after {
  border-width: 0px 5px 5px 5px;
  border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
.form__login .video video{
      transform: translateY(-20px);
}