/* Default: popup hidden */
#popup-gtt-overlay {
    display: none;
}

/* Show popup ONLY if not accepted */
html:not(.popup-gtt-accepted) #popup-gtt-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Actual popup */
.popup-gtt-box {
    background: #1b1a1a;
    max-width: 550px;
    width: 90%;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.popup-gtt-box p{
    color: #fff;
  font-size: 25px;
}

.popup-gtt-logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

.popup-gtt-content {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

#popup-gtt-continue {
  color: #fff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 36px;
  background-color: var( --e-global-color-4304e01 );
  font-size: 17px;
  margin-bottom: 50px;
}

#popup-gtt-continue:hover {
    opacity: 0.9;
}
