/**
Theme Name: AgentSync
Author: RoxxiStudios Dev Team
Author URI: https://RoxxiStudios.com
Description: AgentSync Real Estate App is a custom child theme specifically designed for Real Estate Agents. Based on Astra, an award winning wordpress theme, AgentSync focuses on app based digital Real Estate Agent Contact Cards. Our custom designed digital business card app makes it easy to connect and share your business details, helpful links, and social profiles even without a wifi connection. So, ditch physical business cards and expensive chip based cards and get your AgentSync Digital Business Card -- get ready to go viral!
Version: 2.0.301
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agentsync
Template: astra
*/



/*** TOOLTIPS ***/


.as_tooltip {
  position: relative;
  display: inline-block;
}

.as_tooltip .as_tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: .5rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -125px;
  opacity: 0;
  transition: opacity 0.3s;
}

.as_tooltip .as_tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.as_tooltip:hover .as_tooltiptext {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 389px) {

  .as_tooltip .as_tooltiptext {
    width: 150px;
    margin-left: -75px;;
  }

  .as_tooltip .as_tooltiptext.left {
    margin-right: -25px;
    margin-left: -125px;
  }

  .as_tooltip .as_tooltiptext.right {
    margin-left: -25px;
  }

  .as_tooltip .as_tooltiptext::after {
    display: none;
  }
  
}

@media (min-width: 390px) and (max-width: 480px) {

  .as_tooltip .as_tooltiptext {
    width: 150px;
    margin-left: -75px;
  }
  
}








/*** EOF ***/