
@media (max-width: 767px) {
    .video-link {
        margin-top: 70px;
    }
}

.slide-jaguar-questions .award-item {
    border: 3px dashed transparent;
    transition: all .3s ease-in;
    margin-top: 0;
    padding: 1.875rem 2.2rem;
    /*background-color: rgba(242,242,242,.65);*/
}
.slide-jaguar-questions .award-item .block-question {
    margin-bottom: 1.5rem;
}
.slide-jaguar-questions .award-item .award-item-date {
    margin-bottom: 0.425rem;
    font-size: .775rem;
    color: #c38439;
    /*text-transform: uppercase;*/
    /*font-weight: 700;*/
}

.slide-jaguar-questions .slide-title-sub-question {
    font-family: RifficFree, sans-serif;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #552f25;
}

.slide-jaguar-questions label {
    position: relative;
    margin: 0.775rem 0rem;
    display: flex;
    width: auto;
    align-items: center;
    cursor: pointer;
    padding-left: 30px;
}

.slide-jaguar-questions label {
    color: #666;
    font-size: 1.025rem;
    line-height: 1.2;
    font-weight: 500;
    transition: all .3s ease-in;
}

.slide-jaguar-questions .check {
    margin-right: 5px;
    width: 1.35rem;
    height: 1.35rem;
    position: absolute;
    left: 0;
}
.slide-jaguar-questions .check #border {
    fill: none;
    stroke: #7a7a8c;
    stroke-width: 3;
    stroke-linecap: round;
}
.slide-jaguar-questions .check #dot {
    /*fill: url(#gradient);*/
    fill: #c38439;
    transform: scale(0);
    transform-origin: 50% 50%;
}

.slide-jaguar-questions input {
    display: none;
}
.slide-jaguar-questions input:checked + label {
    /*background: linear-gradient(180deg, #ff8a00, #da1b60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    font-weight: 800;
}
.slide-jaguar-questions input:checked + label svg #border {
    /*stroke: url(#gradient);*/
    stroke: #c38439;
    stroke-dasharray: 145;
    stroke-dashoffset: 145;
    animation: checked 500ms ease forwards;
}
.slide-jaguar-questions input:checked + label svg #dot {
    transform: scale(1);
    transition: transform 500ms cubic-bezier(0.57, 0.21, 0.69, 3.25);
}

@keyframes checked {
    to {
        stroke-dashoffset: 0;
    }
}

.checked.correct {
    animation: yay 0.8s ease-in-out infinite both;
}
@keyframes yay {
    from {
        transform: scale(1);
        transform-origin: center center;
        animation-timing-function: ease-out;
    }
    50% {
        transform: scale(1.1);
        animation-timing-function: ease-out;
    }
}
.checked.wrong {
    animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
@keyframes shake-horizontal {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70% {
        transform: translateX(-10px);
    }
    20%,
    40%,
    60% {
        transform: translateX(10px);
    }
    80% {
        transform: translateX(8px);
    }
    90% {
        transform: translateX(-8px);
    }
}

.slide-jaguar-questions .award-item.question-success {
    border-color: #5ca595;
    background-color: rgba(0, 255, 0, .15);
    animation: yay 1.5s ease-in-out  both;
}
.slide-jaguar-questions .award-item.question-wrong {
    border-color: red;
    background-color: rgba(255, 0, 0, .15);
    animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)  both;
}
.slide-jaguar-questions .award-item.question-success .block-question,
.slide-jaguar-questions .award-item.question-wrong .block-question {
    pointer-events: none;
}

/********************/
/***** PUZZLE *******/
/********************/
.slide-jaguar-questions .puzzle {
    /*width: 100%;*/
    margin: 0 auto;
}
@media (min-width: 1400px){
    .slide-jaguar-questions .puzzle {
        width: 70%;
    }
}

/*noinspection CssUnusedSymbol*/
.slide-jaguar-questions .animate {
    transition: 0.2s all;
}

/*noinspection CssUnusedSymbol*/
.slide-jaguar-questions .frame {
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    list-style: none;
}

.slide-jaguar-questions .frame li {
    display: inline-block;
    position: relative;
    cursor: pointer;
    animation: zoomIn 0.2s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.1);
    }

    to {
        transform: scale(1);
    }
}

.slide-jaguar-questions .frame div {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid #c38439;
    box-sizing: border-box;
    overflow: hidden;
    pointer-events: none;

    margin: 2px;
    border-radius: 5px;
}

.slide-jaguar-questions .frame div:before {
    content: "";
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    /*border: 1px solid rgba(0,0,0,1);*/
    transition: all 0.2s;
    top: 4px;
    left: 4px;
}

/*noinspection CssUnusedSymbol*/
.slide-jaguar-questions .frame div.highlight {
    z-index: 2;
}

/*noinspection CssUnusedSymbol*/
.slide-jaguar-questions .frame div.highlight:before {
    outline: none;
    border:4px solid rgba(195,132,57,1);
    border-radius: 5px;
}

.slide-jaguar-questions .frame li:before {
    content: "";
    position: absolute;
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    margin: 2px;
    z-index: -1;
    transition: 0.1s all;
    border-radius: 5px;
    top: 0;
    left: 0;
}

/*noinspection CssUnusedSymbol*/
.slide-jaguar-questions .frame li.highlight {
    position: relative;
}

/*noinspection CssUnusedSymbol*/
.slide-jaguar-questions .frame li.highlight:before {
    background: rgba(0,255,0,.5);
    z-index: 2;
}

.slide-jaguar-questions .frame div > img {
    display: block;
    filter: grayscale(1);
    z-index: -1;
    transition: all 0.2s;
}

.slide-jaguar-questions .frame *[data-inplace="true"] img  {
    filter: grayscale(0);
}

.slide-jaguar-questions .no-select {
    position: relative;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/*noinspection CssUnusedSymbol*/
.slide-jaguar-questions .full-img {
    max-width: 100%;
    width: 100% !important; /* Important tags needed to force responsiveness in IE */
    height: auto !important;
    background: rgba(255,255,255,1);
    outline: 2px solid #c38439;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: 0.5s opacity;
    border-radius: 5px;

}

/*noinspection CssUnusedSymbol*/
.slide-jaguar-questions .btn-primary {
    background: #9a371f;
}

.slide-jaguar-questions .no-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}


.slide-jaguar-questions .piece-appear {
    animation: yay2 1.2s ease-in-out both;
}
@keyframes yay2 {
    from {
        transform: scale(1);
        transform-origin: center center;
        animation-timing-function: ease-out;
        opacity: 0;
    }
    50% {
        transform: scale(1.3);
        animation-timing-function: ease-out;
        opacity: 1;
    }
}
@keyframes zoomIn {
     from {
         transform: scale(0.1);
     }

     to {
         transform: scale(1);
     }
 }

.btn-puzzle-reset {
    display: none;
}