#success-message,
#success-message1 {
    width: 100%;
}

#success-message-content,
#success-message-content1 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#x-btn,
#x-btn1 {
    cursor: pointer;
}

.alert-purple {
    color: #ffffff;
    background-color: #7c4185ba;
    border-color: #37005380;
    border-radius: 2pc 0px 0pc 2pc;
}

#response-form-text,
#response-form-text1 {
    letter-spacing: 1px;
}

@keyframes up-right {
    0% {
        transform: scale(1);
        opacity: .25
    }

    50% {
        transform: scale (1, 5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .25;
    }
}

.circle {
    background: rgb(19, 35, 78);
    background: linear-gradient(273deg, rgba(19, 35, 78, 1) 0%, rgba(187, 115, 200, 1) 40%, rgba(213, 135, 213, 1) 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    opacity: .25;
}

.background-circle {
    -webkit-animation: up-right 1s infinite;
    -moz-animation: up-right 1s infinite;
    -o-animation: up-right 1s infinite;
    animation: up-right 1s infinite;
}

.circle-1 {
    background: rgb(19, 35, 78);
    background: linear-gradient(273deg, rgba(19, 35, 78, 1) 0%, rgba(187, 115, 200, 1) 40%, rgba(213, 135, 213, 1) 100%);
    border-radius: 50%;
    width: 25px;
    height: 25px;
}

.front-modal-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lds-hourglass {
    display: inline-block;
    position: relative;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 12.5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}