* {
    padding: 0;
    /*margin: 0;*/
    box-sizing: border-box;
}

body.cat-quiz-popup {
    font-family: din-2014, sans-serif !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.quiz-container {
    display: none;
    background: linear-gradient(180deg, #017DDE 0%, #A2E0EF 60%);
    width: 100%;
    min-height: 100vh;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 9999;
}
.quiz-container.open {
    display: block;
}
.cat-quiz-popup header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 16px;
    margin-bottom: -12px;
}
.cat-quiz-popup header img {
    height: 40px;
}
.cat-quiz-popup header .close-btn {
    border-radius: 8px;
    border-top: 1px solid #C0C0C0;
    border-right: 1px solid #C0C0C0;
    border-left: 1px solid #C0C0C0;
    background: linear-gradient(80deg, #7C7C7C 0%, #999 50%, #BFBFBF 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 7px 28px;
    text-decoration: none;
}
.cat-quiz-popup .logo {
    text-align: center;
}
.cat-quiz-popup .logo img.default-size {
    max-width: 100px;
    display: block;
    margin: 15px 30px 76px auto;
}
.cat-quiz-popup .logo img {
    max-width: 72px;
}
.cat-quiz-popup .mic-cat-container {
    position: relative;
    width: 440px;
    margin: 0 auto;
    z-index: 2;
}
.cat-quiz-popup .microphone {
    position: absolute;
    top: -2300px;
    left: 20px;
    animation: microphoneAnimation 0.7s ease-in-out forwards;
    animation-delay: 0.5s;
}
@keyframes microphoneAnimation {
    from {
        top: -2300px;
    }
    to {
        top: calc(100vh - 2880px);
    }
}
.cat-quiz-popup .microphone img {
    width: 72px;
    height: 2000px;
    object-fit: cover;
    object-position: bottom;
}
.cat-quiz-popup .cat-bin {
    width: 100%;
    text-align: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: catBinAnimation .8s ease-in forwards;
}
@keyframes catBinAnimation {
    from {
        top: 1480px;
    }
    to {
        top: -20px;
    }
}
  
.cat-quiz-popup .cat-mouth {
    display: block;
    width: 50px;
    position: absolute;
    top: 173px;
    left: 152px;
    animation: mouthAnimation 0.6s ease-in-out;
    animation-iteration-count: 3;
    animation-delay: 2s;
    opacity: 0;
}
@keyframes mouthAnimation {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.cat-quiz-popup .card {
    background-color: #fff;
    width: 430px;
    height: 230px;
    padding: 24px;
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    animation: cardAnimation 4s ease-out forwards;
    animation-delay: 1s;
    z-index: 3;
}
@keyframes cardAnimation {
    0% {
      bottom: -250px;
      opacity: 0;
    }
    10% {
      bottom: 110px;
      opacity: 1;
    }
    90% {
      bottom: 110px;
      opacity: 1;
    }
    100% {
      bottom: -250px;
      opacity: 0;
    }
}
.cat-quiz-popup .card .icon img {
    position: absolute;
    top: 24px;
    right: 24px;
}
.cat-quiz-popup .card h1 {
    color: #2D752C;
    font-family: scriptorama-markdown-jf, sans-serif !important;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
}
.cat-quiz-popup .card p {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 0;
}
.cat-quiz-popup .paw {
    position: absolute;
    bottom: -330px;
    right: -110px;
}
.cat-quiz-popup .paw img {
    width: 224px;
}
.cat-quiz-popup .start-btn {
    position: absolute;
    bottom: 160px;
    left: 50%;
    animation: startBtnExpand 0.8s ease-in forwards, startBtnLoop 4s ease-in-out infinite;
    animation-delay: 4.5s, 5.3s;
    transform-origin: left;
    transform: scaleX(0);
    z-index: 3;
    white-space: nowrap;
}

@keyframes startBtnExpand {
    from {
        transform: scale(0) translateX(-50%);
        opacity: 0;
    }
    to {
        transform: scale(1) translateX(-50%);
        opacity: 1;
    }
}

@keyframes startBtnLoop {
    0%, 90% {
        transform: scale(1) translateX(-50%);
        opacity: 1;
    }
    95% {
        transform: scale(0) translateX(-50%);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateX(-50%);
        opacity: 1;
    }
}

.cat-quiz-popup .orange-btn {
    border-radius: 12px;
    background: linear-gradient(180deg, #FFF 0%, #E06A03 35.97%);
    display: inline-flex;
    padding: 3px 5px 0px 5px;
    text-decoration: none;
}
.cat-quiz-popup .orange-btn span {
    border-radius: 12px;
    border-bottom: 3px solid #E67C00;
    background: linear-gradient(180deg, #F6BB6E 0%, #E06902 40%, #E06902 70%, #F4B364 100%);
    display: flex;
    justify-content: center;
    padding: 10px 30px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 71.429% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    @media (min-width: 992px) {
        padding: 16px 48px;
        min-width: 245px;
        font-size: 28px;
    }
}
.cat-quiz-popup .orange-btn:hover span {
    border-radius: 12px;
    border-bottom: 3px solid #E67C00;
    background: linear-gradient(180deg, #F6BB6E 0%, #E06902 40%, #E06902 100%);
}
.cat-quiz-popup .green-btn {
    border-radius: 12px;
    background: linear-gradient(180deg, #E6F5C3 0%, #8ECE00 35.97%);
    display: inline-flex;
    padding: 3px 5px 0px 5px;
    text-decoration: none;
}
.cat-quiz-popup .green-btn span {
    border-radius: 12px;
    border-bottom: 3px solid #D0E39A;
    background: linear-gradient(180deg, #B5E232 0%, #49650C 36%, #49650C 70%, #B5E232 100%);
    display: flex;
    justify-content: center;
    padding: 10px 30px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 71.429% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    @media (min-width: 992px) {
        padding: 16px 48px;
        min-width: 245px;
        font-size: 28px;
    }
}
.cat-quiz-popup .green-btn:hover span {
    border-bottom: 3px solid #D0E39A;
    background: linear-gradient(180deg, #B5E232 0%, #49650C 36%, #49650C 100%);
}

.cat-quiz-popup .hedge {
    background-image: url('../images/hedge.png');
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 1;
}
.cat-quiz-popup .hedge.custom-height {
    height: 430px;
    z-index: 3;
}
.cat-quiz-popup .fence {
    background-image: url('../images/fence.png');
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 388px;
    z-index: 1;
}
.cat-quiz-popup .fence.custom-height {
    height: 480px;
}
.cat-quiz-popup .flowers {
    background-image: url('../images/flowers_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 262px;
    z-index: 1;
    opacity: 0;
}
.cat-quiz-popup footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.04) 8%, rgba(0, 0, 0, 0.12) 20%, #000 100%);
    padding: 32px 10px 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.cat-quiz-popup footer p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.556px;
}

.cat-quiz-popup .step {
    padding-top: 50px;
}


/* Step 1 inactive */
.cat-quiz-popup .step-1.reverse .logo {
    position: relative;
    animation: logoShrink .25s ease-in forwards;
    animation-delay: 1.5s;
}
  
.cat-quiz-popup .step-1.reverse .microphone {
    top: calc(100vh - 2880px);
    animation: microphoneReverse .25s ease-in forwards;
    animation-delay: 1s;
}

.cat-quiz-popup .step-1.reverse .cat-bin {
    animation: catBinReverse .25s ease-in forwards;
    animation-delay: 0.5s;
}

.cat-quiz-popup .step-1.reverse .start-btn {
    animation: startBtnShrink .5s ease-in-out forwards;
}

.cat-quiz-popup .back-btn, .cat-quiz-popup .next-btn {
    opacity: 0;
}

@keyframes logoShrink {
    from { top: 0; }
    to { top: -1000px; }
}

@keyframes microphoneReverse {
    from { top: calc(100vh - 2880px); }
    to { top: -2300px; }
}

@keyframes catBinReverse {
    from { top: -20px; }
    to { top: 1000px; }
}

@keyframes startBtnShrink {
    from {
        transform: scale(1) translateX(-50%);
        opacity: 1;
    }
    to {
        transform: scale(0) translateX(-50%);
        opacity: 0;
    }
}

@keyframes buttonExpand {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes buttonShrink {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0);
        opacity: 0;
    }
}

.cat-quiz-popup .step.final-step {
    padding-top: 50px;
}

.cat-quiz-popup .button-appear {
    animation: buttonExpand 0.8s ease-in forwards;
}

.cat-quiz-popup .button-disappear {
    animation: buttonShrink 0.5s ease-in-out forwards;
}

/* Step 2 */
.cat-quiz-popup .inactive {
    display: none;
}

.cat-quiz-popup .step-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 24px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px; /* 138.889% */
    position: relative;
    opacity: 0;
    animation: stepCounterSlideIn 0.25s ease-out forwards;
    animation-delay: 0.25s;
}
.cat-quiz-popup .step-counter li {
    list-style: none;
}

@keyframes stepCounterSlideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
}

.cat-quiz-popup .question {
    color: #FFF;
    font-family: din-2014, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
    text-align: center;
    margin: 32px 0 48px;
    padding: 0 24px;
    animation: titleSlideIn 0.25s ease-out forwards;
    animation-delay: 0.50s;
    opacity: 0;
}
@keyframes titleSlideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
}

.cat-quiz-popup .answers-container {
    position: relative;
    max-width: 724px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 3;
}
.cat-quiz-popup .answers-container li {
    display: block;
    list-style: none;
    margin-bottom: 32px;
    opacity: 0;
    animation: answerSlideIn 0.5s ease-out forwards;
}

.cat-quiz-popup .answers-container li:nth-child(1) { animation-delay: 0.75s; }
.cat-quiz-popup .answers-container li:nth-child(2) { animation-delay: 1s; }
.cat-quiz-popup .answers-container li:nth-child(3) { animation-delay: 1.25s; }
.cat-quiz-popup .answers-container li:nth-child(4) { animation-delay: 1.5s; }
@keyframes answerSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.cat-quiz-popup .answers-container li a {
    border-radius: 12px;
    border: 2px solid #FFF;
    background: #2D752C;
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 117.647% */
    display: block;
    width: 100%;
    padding: 24px 15px 16px 15px;
    text-decoration: none;
    position: relative;
}

.cat-quiz-popup .answers-container li .answer-indicator {
    border-radius: 24px;
    background: linear-gradient(180deg, #F6BB6E 0%, #E06902 40%, #E06902 70%, #F4B364 100%);
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 25px;
    height: 25px;
}


.cat-quiz-popup .top-tip .back-btn {
    display: none !important;
}
.cat-quiz-popup .top-tip-container {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
	z-index: 2;
}
.cat-quiz-popup .cat-image {
    position: absolute;
    right: -170px;
    opacity: 0;
}
.cat-quiz-popup .bubble-speech {
    background: url('../images/bubble_1.svg') no-repeat;
    background-size: contain;
    padding: 33px;
    width: 400px;
    opacity: 0;
}
.cat-quiz-popup .bubble-speech:after {
    content: "";
    background: url('../images/bubble_hook.svg') no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -50px;
    left: 40px;
    display: block;
    width: 56px;
    height: 90px;
    z-index: 1;
}

.cat-quiz-popup .bubble-speech .bubble-text {
    position: relative;
    z-index: 2;
}

.cat-quiz-popup .bubble-speech h2 {
    color: #388D43;
    font-family: scriptorama-markdown-jf, sans-serif !important;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    margin-bottom: 5px;
}
.cat-quiz-popup .bubble-speech p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}

.cat-quiz-popup .top-tip-2 {
    position: relative;
    z-index: 2;
}
.cat-quiz-popup .top-tip-2 .top-tip-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    width: 280px;
}
.cat-quiz-popup .bubble-speech-2 {
    background: url('../images/bubble_2.svg') no-repeat;
    background-size: contain;
    padding: 40px;
    width: 340px; 
    position: absolute;
    left: 0;
    bottom: 355px;
    z-index: 2;
}
.cat-quiz-popup .bubble-speech-2:after {
    content: "";
    background: url('../images/bubble_hook.svg') no-repeat;
    background-size: contain;
    position: absolute;
    top: -50px;
    left: 100px;
    display: block;
    width: 56px;
    height: 90px;
    transform: rotate(-195deg);
}
.cat-quiz-popup .bubble-speech-2 h2 {
    color: #388D43;
    font-family: scriptorama-markdown-jf, sans-serif !important;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    margin-bottom: 5px;
}
.cat-quiz-popup .bubble-speech-2 p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}
.cat-quiz-popup .top-tip-1 .bubble-speech p {
    font-size: 18px;
    line-height: 24px;
}
.cat-quiz-popup .top-tip-3 .bubble-speech p {
    font-size: 18px;
    line-height: 23px;
}
.cat-quiz-popup .top-tip-3 .bubble-speech {
    width: 415px;
    margin-top: -65px;
}
.cat-quiz-popup .cat-image.cat-image-1 {
    position: absolute;
    left: -20px;
    bottom: 600px;
    z-index: 1;
}
.cat-quiz-popup .cat-image.cat-image-2 {
    position: absolute;
    right: -150px;
    bottom: 550px;
}
.cat-quiz-popup .cat-image.cat-image-body {
    position: absolute;
    right: -100px;
    bottom: 587px;
}
.cat-quiz-popup .cat-image.cat-image-paw {
    position: absolute;
    right: -20px;
    bottom: 592px;
}
.cat-quiz-popup .cat-image.cat-image-paw.pawAnimation {
    animation: pawWave 1s ease-in-out 0.25s 2;
    opacity: 1;
}
@keyframes pawWave {
    0%, 100% {
        transform: rotate(0deg) translateY(0%);
    }
    50% {
        transform: rotate(-20deg) translateY(0%);
    }
}
.cat-quiz-popup .cat-image.cat-image-3 {
    right: -70px;
}

.cat-quiz-popup .step-12 .top-tip-container {
    top: 250px;
    z-index: 1;
}

.cat-quiz-popup .thankyou .bubble-speech {
    padding: 50px 60px;
    width: 390px;
    margin-top: -20px;
}

/* Congratulation */
.quiz-container.congratulations {
    background: linear-gradient(180deg, rgba(125, 161, 24, 1) 10%, #AEC15B 30%, #90AA1F 60%, rgba(125, 161, 24, 1) 80%);
    overflow: auto;
    height: 100%;
}
.quiz-container.congratulations .hedge,
.quiz-container.congratulations .fence,
.quiz-container.congratulations .flowers {
    display: none;
}
.quiz-container.congratulations footer {
    position: relative;
    opacity: 0;
}
.cat-quiz-popup .congratulation-container {
    margin: 0 auto;
    max-width: 424px;
}
.cat-quiz-popup .congratulation-icon {
    display: block;
    margin: 30px auto -65px;
}
.cat-quiz-popup .congratulation-title {
    color: #FFF;
    font-family: scriptorama-markdown-jf, sans-serif !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
.cat-quiz-popup .congratulation-content-container {
    border-radius: 12px;
    border: 2px solid #E2E2E2;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
    padding: 16px 24px 24px 24px;
}
.cat-quiz-popup .congratulation-content-container h3 {
    color: #79A01B;
    font-family: scriptorama-markdown-jf, sans-serif !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    margin-top: 56px;
    margin-bottom: 24px;
}
.cat-quiz-popup .congratulation-content-container h3 span {
    color: #2D752C;
}
.cat-quiz-popup .congratulation-content-container p {
    color: #515151;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 12px 0;
}
.cat-quiz-popup .congratulation-actions-container {
    margin: 40px auto 120px;
    max-width: 424px;
    text-align: center;
}
.cat-quiz-popup .congratulation-actions-container .orange-btn,
.cat-quiz-popup .congratulation-actions-container .green-btn {
    display: block;
    margin: 0 auto;
    max-width: 90%;
}
.cat-quiz-popup .congratulation-actions-container .orange-btn span,
.cat-quiz-popup .congratulation-actions-container .green-btn span {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.18px;
}
.cat-quiz-popup .congratulation-actions-container h4 {
    color: #FFF;
    font-family: din-2014, sans-serif !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    margin: 32px 0 0;
}
.cat-quiz-popup .congratulation-actions-container ul {
    display: flex;
    justify-content: center;
    gap: 0 45px;
    margin: 16px auto 35px;
}
.cat-quiz-popup .congratulation-actions-container li {
    list-style: none;
}

.cat-quiz-popup .controls-container {
    display: none;
    gap: 15px;
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    justify-content: center;
    width: 100%;
}
.cat-quiz-popup .controls-container li {
    display: block;
    margin-bottom: 20px;
    list-style: none;
}

@keyframes disappearToBottom {
    to {
        transform: translateY(100%);
    }
}

@keyframes appearFromBottom {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cat-quiz-popup .disappear-bottom {
    animation: disappearToBottom 0.25s ease-out forwards;
}

.cat-quiz-popup .appear-bottom {
    animation: appearFromBottom 0.25s ease-out forwards;
}

@keyframes catAppearFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cat-quiz-popup .cat-appear {
    animation: catAppearFromBottom 0.25s ease-out forwards;
}

@keyframes appearFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cat-quiz-popup .appear-from-top {
    animation: appearFromTop 0.6s ease-out forwards;
}

@keyframes disappearToTop {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.cat-quiz-popup .disappear-to-top {
    animation: disappearToTop 0.25s ease-out forwards;
}

@keyframes disappearToBottom {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cat-quiz-popup .disappear-to-bottom {
    animation: disappearToBottom 0.25s ease-out forwards;
}

/* Responsive */
@media screen and (min-height: 1020px) {
    .cat-quiz-popup .mic-cat-container {
        height: calc(100vh - 280px);
    }
    .cat-quiz-popup .cat-bin {
        width: 100%;
        text-align: center;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: catBinAnimation .8s ease-in forwards;
    }
    @keyframes catBinAnimation {
        from {
            bottom: -1500px;
        }
        to {
            bottom: 0;
        }
    }

    @keyframes catBinReverse {
        from { bottom: 0; }
        to { bottom: -1000px; }
    }

    .cat-quiz-popup .step-5 .top-tip-container {
        top: auto;
        bottom: 750px;
    }
    .cat-quiz-popup .step-12 .top-tip-container {
        top: auto;
        bottom: 500px;
    }
}
@media screen and (min-height: 1550px) {
    .cat-quiz-popup .step-15 .top-tip-container {
        top: auto;
        bottom: 1200px;
    }
    .quiz-container.congratulations footer {
        position: fixed;
    }
}
@media screen and (min-width: 768px) {
    .cat-quiz-popup .top-tip-2 .top-tip-container {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 100vh;
    }

    .cat-quiz-popup .cat-image.cat-image-2 {
        position: absolute;
        right: -150px;
        bottom: 0;
    }
    .cat-quiz-popup .hedge.height-500 {
        height: 500px;
    }
}
@media screen and (min-width: 768px) and (max-height: 900px) {
    .cat-quiz-popup .step-12 .top-tip-container {
        top: 5%;
    }
    .cat-quiz-popup .thankyou .top-tip-container {
        top: 10px;
    }
}
@media screen and (min-width: 768px) and (max-height: 800px) {
    .cat-quiz-popup .hedge {
        height: calc(53vh - 100px);
    }
    .cat-quiz-popup .fence {
        height: calc(45vh - 100px);
    }
}
@media screen and (min-height: 800px) and (max-height: 1000px) {
    .cat-quiz-popup .hedge.mobile-height-hedge {
        height: 45vh;
    }
    .cat-quiz-popup .fence {
        height: 38vh;
    }
}
@media screen and (max-width: 767px) {
    .quiz-container.quiz-auto-height {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .cat-quiz-popup header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .cat-quiz-popup .step {
        height: 100%;
    }
    .cat-quiz-popup .step.final-step {
        height: auto;
    }
    .cat-quiz-popup .answers-container {
        padding: 0 24px 50px;
    }
    .cat-quiz-popup .hedge,
    .cat-quiz-popup .fence,
    .cat-quiz-popup .flowers {
        position: fixed;
    }
    .cat-quiz-popup .quiz-container.quiz-auto-height .controls-container {
        bottom: 100px;
    }
    .cat-quiz-popup .quiz-container.quiz-auto-height footer {
        /* position: relative; */
    }
}
@media screen and (max-width: 440px) {
    @keyframes microphoneAnimation {
        from {
            top: -2300px;
        }
        to {
            top: calc(100vh - 2770px);
        }
    }
    .cat-quiz-popup .step-1.reverse .microphone {
        top: calc(100vh - 2770px);
    }
    .cat-quiz-popup .cat-bin {
        left: 47%;
    }
    /* .cat-bin img { 
        width: 90vw;
    } */
    .cat-quiz-popup .card {
        padding: 18px;
    }
    .cat-quiz-popup .card .icon img {
        width: 38px;
        top: 13px;
        right: 13px;
    } 
    .cat-quiz-popup .card {
        width: 300px;
    }
    .cat-quiz-popup .card h1 {
        font-size: 34px;
        font-weight: 400;
        line-height: 38px;
    }
    .cat-quiz-popup .card p {
        font-size: 18px;
    }
    .cat-quiz-popup .paw {
        bottom: -130px;
        right: -70px;
        transform: rotate(-17deg);
    }
    .cat-quiz-popup .paw img {
        width: 124px;
    }
    .cat-quiz-popup .top-tip-2 .top-tip-container {
        /* top: 200px; */
        top: 50px;
    }
    .cat-quiz-popup .congratulation-actions-container .orange-btn,
    .cat-quiz-popup .congratulation-actions-container .green-btn {
        max-width: 100%;
    }
    .cat-quiz-popup .step-12 .top-tip-container {
        top: 100px;
    }
    .cat-quiz-popup .flowers {
        background-position: -60px 0px;
        /* height: 100px; */
    }
    .cat-quiz-popup .hedge {
        height: 180px;
    }
    .cat-quiz-popup .hedge.height-500{
        /* height: 360px; */
        height: 500px;
    }
    .cat-quiz-popup .hedge.mobile-height-hedge {
        height: 40vh;
    }
    .cat-quiz-popup .fence {
        height: 120px;
    }
    .cat-quiz-popup .hedge.custom-height {
        height: 320px;
    }
    .cat-quiz-popup .fence.custom-height {
        height: 360px;
    }
    .cat-quiz-popup .cat-image.cat-image-3 {
        top: 220px;
    }
    .cat-quiz-popup .congratulation-content-container {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    .cat-quiz-popup .congratulation-actions-container {
        width: calc(100% - 40px);
    }
    .cat-quiz-popup footer {
        background: linear-gradient(178deg, rgba(0, 0, 0, 0.00) 3.94%, rgba(0, 0, 0, 0) 20.46%, #000 78.98%);
        padding-top: 60px;
        position: fixed;
    }
    .cat-quiz-popup .congratulations footer {
        padding-top: 65px;
    }
}

@media screen and (max-width: 380px) {
    .cat-quiz-popup .top-tip-2 .top-tip-container {
        top: 160px;
    }
    .cat-quiz-popup .hedge.height-500 {
        height: 390px;
    }
    .cat-quiz-popup .flowers {
        height: 100px;
    }
}
