/*
Theme Name:   Phoenix Games
Theme URI:    https://www.ytpi.de
Description:  WordPress Theme for Phoenix Games
Author:       YTPI Internetagentur GmbH
Author URI:   https://www.ytpi.de
Template:     Divi
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  phoenix
*/
.tooltip-wrapper {
    position:       relative;
    display:        inline-block;
    vertical-align: middle; /* Ensures alignment with the input field */
}

.tooltip-wrapper .tooltip-icon {
    font-size:      18px; /* Increased font size for the icon for better visibility */
    display:        inline-block;
    margin-left:    5px;
    cursor:         help;
    vertical-align: middle; /* Aligns icon with the text inside the input */
    color:          red;
}

.tooltip-wrapper .tooltip-content {
    font-size:        12px; /* Smaller font size for the tooltip text */
    position:         absolute;
    z-index:          1;
    bottom:           125%;
    left:             50%;
    visibility:       hidden;
    width:            140px;
    margin-left:      -70px;
    padding:          5px;

    /* Positioning */
    transition:       opacity 0.3s;
    text-align:       center;
    opacity:          0;
    color:            black;
    border:           1px solid red; /* Red border around the tooltip */

    /* Fade in */
    border-radius:    6px;
    background-color: white;
}

.tooltip-wrapper:hover .tooltip-content {
    visibility: visible;
    opacity:    1;
}

.woocommerce-checkout .payment_methods label img {
    margin-left: 5px;
}
