#container-thanks {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 115;
}

.thank-you-icon {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

@media (min-width:769px) {

    #container-thanks {
         width: 500px; 
        
    }
}

@media (min-width:1000px) and (max-width:1200px) {

   
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity as needed */
    z-index: 114;
}
