/* *********************** survey popup **************************** */
#survey-popup{
 position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    backdrop-filter: blur(3px);
    transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -webkit-transition: opacity .5s ease;
}
#survey-popup .survey-popup-inner{
    position: relative;
    max-width: 90%;
    width: 500px;
    padding: 2rem;
    background: #f2f2f2;
    border: 2px solid #b6138b;
    box-shadow: 0 0 0 5px #fd85db;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
#survey-popup .survey-popup-inner button#survey-popup-close{

position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fd85db;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: none;
}
#survey-popup .survey-popup-inner button svg{
     width: 20px;
    height: 20px;
    fill: white;

}
#survey-popup .survey-popup-inner p{

    margin: 0;
    font-size: 1.1rem;
    line-height: 1.1;
}
#survey-popup .survey-popup-inner .survey-actions{

    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fd85db;
    background: none;
    text-decoration: none !important;
    transform: scale3d(1, 1, 1);
}

#survey-popup .survey-popup-inner .survey-actions button{

    padding: 15px 20px;
    color: black;
    font-size: 1.2rem;
    line-height: 1.1;
    text-align: center;
    text-decoration: none !important;
    border: none;
}
#survey-popup .survey-popup-inner .survey-actions button:hover{
    background: #ccc;
}

/* result page */
.result-wrapper .code-wrapper .text-wrapper p span{
text-transform: uppercase;
font-weight: bold;
}
 