/* @import "bootstrap/css/bootstrap.min.css"; */

.gf-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-modal-content {
    display: flex;
    flex-direction: column;
    -webkit-animation-name: gscale-in-ver-center;
    -webkit-animation-duration: 0.4s;
    animation-name: gscale-in-ver-center;
    animation-duration: 0.4s;
}

.gf-iframe {
    border: none;
    /*similar to LumoUtility.BorderRadius.LARGE */
    border-radius: 9px;
    margin: 10px;
}

.gf-widget {
    display: flex;
    padding: 20px;
    justify-content: space-around;
}

.gf-footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.gf-close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 32px;
    height: 32px;
    opacity: 0.4;
    background-color: lightgray;
    border-radius: 20px;
}

.gf-close:hover {
    opacity: 1;
    cursor: pointer;
  }

.gf-close:before,
.gf-close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 20px;
    margin-top: 6px;
    width: 2px;
    background-color: #333;
}

.gf-close:before {
    transform: rotate(45deg);
}

.gf-close:after {
    transform: rotate(-45deg);
}

@-webkit-keyframes gscale-in-ver-center {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes gscale-in-ver-center {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        opacity: 1;
    }
}

.gf-tooltip {
    position: relative;
    display: inline-block;
    margin: 10px;
    border-bottom: 1px dotted gainsboro;
}

/* tooltip baalon */
.gf-tooltip .gf-tooltiptext {
    visibility: hidden;
    width: 310px;
    background-color: white;
    color: black;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 0%;
}

/* Arrow of the tooltip */
.gf-tooltip .gf-tooltiptext::after {
    content: " ";
    position: absolute;
    /* At the bottom of the tooltip */
    top: 100%;
    /* to compensate the center error in baalon*/
    left: 20%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.gf-tooltip:hover .gf-tooltiptext {
    visibility: visible;
}