body.modal-is-open{
    overflow: hidden;
}
.slide-wheel-parent{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, rgb(46 46 46 / 77%), #3d1c19);
    z-index: 1000000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow:hidden;
    display: none;
}
.slide-wheel-parent.slide-open{
    display: flex;
}
.captcha-close-button{
    padding: 8px;
    position: absolute !important;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background: #000;

}
.captcha-info{
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
}
.captcha-info-img{
    width: 100%;
    padding-top: 50%;
    background-size: contain;
    z-index: 2;
    position: relative;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.chaptcha-info-text{
    color: #fff;
    z-index: 3;
    position: relative;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}
.captcha-heading{
    font-size: 24px;
    margin-bottom: 0px;
    color: #ffffff;
    z-index: 3;
    position: relative;
}
.captcha-close-button svg{
    width: 20px;
    height: 20px;
}
.wheel-wrapper{
    background: #000;
    max-width: 500px;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;

}

.wheel-wrapper .title{
    font-weight: 400;
    color: #fff;
    font-size: 18px;
}

.wheel-wrapper *{
    z-index: 2;
}



.are-you-human-slide-wrapper {
    width: 100%;
    margin: auto;
    margin-top: 0px;
    padding: 0px 0;
}

.are-you-human-slide-wrapper #validated {
    opacity: 0;
    display: block;
    text-align: center;
    transition: all 1s;
    margin-top: 20px;
    font-size: 20px;
    color: rgb(12, 94, 32);
}

.are-you-human-slide-wrapper #validated.true {
    opacity: 1;
}

.are-you-human-slide-wrapper label {
    position: relative;
    width: 100%;
    height: 20px;
    display: block;
    margin: auto;
}

.are-you-human-slide-wrapper #result {
    display: block;
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    color: white;
    position: absolute;
    right: 0;
    top: -12px;
}




.change-captcha-button{
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}
.change-captcha-button svg{
    margin-left: 10px;
}

/* css */
.are-you-human-wrapper{
    color: #fff;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.are-you-human-wrapper .dcontent{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px 10px 60px !important;
    /* border: 1px solid rgba(255, 255, 255, 0.4); */
    width: 100%;
    background: #fffbe6;
    color: #000;
}
.are-you-human-wrapper label{
    color: #000;
    margin-bottom: 0px;
}
.are-you-human-wrapper .are-you-human-button{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.1);
    margin-left: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: none;
}
.are-you-human-wrapper .are-you-human-button.checked{
    border: 1px solid rgb(25, 163, 32);
}

.are-you-human-wrapper .are-you-human-button .are-you-human-result{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#b5ecb8;
    display: none;
}
.are-you-human-wrapper .are-you-human-button.checked .are-you-human-result{
    display: flex;
}

.are-you-human-wrapper .are-you-human-button .are-you-human-result img{
    width: 60%;
}
.are-you-human-message{
    text-align: center;
    display: none;
    background:rgb(167, 50, 50);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.are-you-human-message.show{
    display: block;
}

.wheel-wrapper .change-captcha-button{
    color: #fff;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.wheel-wrapper .change-captcha-button svg{
    stroke: #fff;
    width: 18px;
    height: 18px;
    margin-left: 8px;
}

.captcha-is-wrong-modal-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(157 157 157 / 77%);
    z-index: 1000000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow:hidden;
}

.captcha-is-wrong-modal-wrapper.close{
    display: none;
}

.captcha-is-wrong-modal{
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: #2a2626;
    border-radius: 20px;
    color: #fff;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 100000;
    text-align: center;
}

.captcha-is-wrong-modal-ok{
    padding: 6px 20px;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #ffffff;
    text-align: center;
    display: block;
    margin-top: 10px;
    cursor: pointer;
}


/************** Nick Code ******************/

.are-you-human-slide-wrapper h5{
    line-height: 30px;
}
.are-you-human-slide-wrapper .spacer{
    max-width: 50px;
    margin-left: auto;
    margin-right: auto;
}
#contenedorPuzzle {
    margin: 10px auto;
    width: 100%;
    background: #fff;
    color: #ccc;
    padding: 4px;
    overflow: hidden;

}


/* Puzzle */
#contenedorPiezas{
    background: #292929;
    width: calc(50% - 2px);
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    float: left;
    grid-gap: 5px;
    padding: 5px;
}


#puzzle {
    background: linear-gradient(35deg, #000, rgb(49, 48, 48));
    width: calc(50% - 2px);
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    float: right;
    position: relative;
    grid-gap: 5px;
    padding: 5px;
}
#puzzle::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}
#puzzle::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}
.contenedorPieza {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

#contenedorPuzzle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/******************************************/
#message-after-email {

    width: 100%;
    position: fixed;
    top: 50%;
    z-index: 10000;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    color: #fff;
    background: rgb(201, 7, 7);
    border-radius: 20px;
    overflow: hidden;
}
#message-after-email #image-captcha-success-result-message {
    background: #2196F3;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #fff;

}
#message-after-email .tcm-close {
    position: absolute;
    top: 10px;
    right: 10px;
}
#message-after-email #image-captcha-success-result-message p{
    color: #fff;
}
@media only screen and (max-width: 900px) {
    .wheel-wrapper{
        width: calc(100% - 40px);
        max-width: 340px;
    }
    .are-you-human-slide-wrapper h5{
        font-size: 18px !important;
        line-height: 22px;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 30px;
    }

    .are-you-human-slide-wrapper .spacer{
        max-width: 30px;
    }

    .captcha-heading{
        font-size: 20px;
        line-height: 24px;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    #contenedorPiezas{
        width: calc(50% - 5px);

    }


    #puzzle {
        width: calc(50% - 5px);
    }

}