.gates .user {
    min-height: 125px;
    align-items: center;
    border: thin solid #C10BD2;
    box-shadow: 0 0 6px 0 #FFFFFF24 inset;
    border-radius: 1rem;
    padding: 1rem;
    row-gap: 1rem;
}
.gates .user .image {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) -29.17%, rgba(147, 44, 198, 0.5) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
}
.gates .user .image img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}
.gates .user .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 0.5rem;
    flex-grow: 1;
}
.gates .user .info .name {
    font-size: 22px;
    font-weight: bold;
}
.gates .user .info .gate {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.gates .user .info .gate .gate-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.gates .user .info .gate .gate-info .gate-name {
    font-size: 18px;
}
.gates .user .info .gate .gate-info span {
    font-weight: 550;
}
.gates .user .info .gate .gate-progress {
    background-color: rgba(255, 255, 255, 12%);
    border-radius: 0.5rem;
    margin-top: 0.25rem;
}
.gates .user .info .gate .gate-progress .progress {
    height: 0.75rem;
}
.gates .user .info .gate .gate-progress .progress-bar {
    background:
        linear-gradient(45deg, #FE8907 25%, #FEA440 25%, #FEA440 50%, #FE8907 50%, #FE8907 75%, #FEA440 75%, #FEA440),
        linear-gradient(45deg, #FEA440 25%, #FE8907 25%, #FE8907 50%, #FEA440 50%, #FEA440 75%, #FE8907 75%, #FE8907);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #FFB347;
}
.gates .user .records {
    height: 100%;
    display: flex;
    gap: 1rem;
}
.gates .user .records .item {
    width: 50%;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) -29.17%, rgba(147, 44, 198, 0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.5rem;
}
.gates .challenges-warpper {
    width: 100%;
    overflow: auto;
}
.gates .challenges {
    position: relative;
    width: 1290px;
    height: 670px;
    margin-top: 2rem;
    overflow: hidden;
}
.gates .challenges > * {
    z-index: 2;
}
.gates .challenges .circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border: 3px solid #F0F0F0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
}
.gates .challenges .circle img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.gates .challenges .circle.challenge-1 {
    bottom: 100px;
    right: 100px;
}
.gates .challenges .circle.challenge-2 {
    top: 150px;
    right: 350px;
}
.gates .challenges .circle.challenge-3 {
    top: 300px;
    right: 650px;
}
.gates .challenges .circle.challenge-4 {
    top: 180px;
    left: 200px;
}
.gates .challenges .circle.challenge-5 {
    bottom: 150px;
    left: 350px;
}
.gates .challenges .circle.challenge-6 {
    bottom: 50px;
    left: 50px;
}
.gates .challenges .circle.challenge-7 {
    bottom: 10px;
    right: 554px;
}
.gates .challenges .circle.full {
    border-color: #FE8907;
}
.gates .challenges .circle.active {
    border-color: #F0F0F0 #F0F0F0 #FE8907 #FE8907;
}
.gates .challenges .circle.locked {
    background-color: #CACACA;
    border-color: #F0F0F0;
}
.gates .challenges .circle.full,
.gates .challenges .circle.active {
    cursor: pointer;
}
.gates .challenges .challenge-details-box {
    position: absolute;
    width:300px;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 10;
    text-align: center;
    display: none;
}
.gates .challenges .challenge-details-box.top::after,
.gates .challenges .challenge-details-box.bottom::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
}
.gates .challenges .challenge-details-box.top::after {
    bottom: -16px;
    border-top-color: white;
}
.gates .challenges .challenge-details-box.bottom::after {
    top: -16px;
    border-bottom-color: white;
}
.gates .challenges .challenge-details-box {
    flex-direction: column;
    gap: 15px;
    padding: 1.5rem 1rem;
}
.gates .challenges .challenge-details-box h3 {
    font-size:22px;
    color:#1C0303;
    font-weight: 500;
    margin: 0;
}
.gates .challenges .challenge-details-box .challenge-details__stars {

}
.gates .challenges .challenge-details-box .challenge-details__stars i {
    color: #FFD13D;
    font-size: 16pt;
}
.gates .challenges .challenge-details-box .challenge-details__progress {
    text-align: right;
}
.gates .challenges .challenge-details-box span.title {
    color:#8E8E8E;
    font-size: 14px;
    display: block;
    margin-bottom: 0px;
    text-align: right;
}
.gates .challenges .challenge-details-box .challenge-details__description {

}
.gates .challenges .challenge-details-box .challenge-details__description p {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(176, 21, 205, 0.1);
    border-radius: 12px;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    font-size: 16px;
    color: #000538;
}
.gates .challenges .challenge-details-box .challenge-details__meta ul {
    display: flex;
    align-items: space-between;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    padding: 0px 10px;
}
.gates .challenges .challenge-details-box .challenge-details__meta ul li {
    font-size: 16px;
    color: #8E8E8E;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.gates .challenges .challenge-details-box .challenge-details__meta ul li img {

    position: relative;
    top: -1px;
}
.gates .challenges .challenge-details-box .challenge-details__actions .btn {
    width: 100%;
    font-size: 18px;
    padding: 8px 20px;
}
.challenge-details__progress {
    direction: ltr;
    max-width: 100%;
    position: relative;
}
.challenge-details__progress .progress {
      border-radius: 60px;
}
.challenge-details__progress .progress-bar {
    background: linear-gradient(45deg, #B015CD 25%, #BA31D3 25%, #BA31D3 50%, #B015CD 50%, #B015CD 75%, #BA31D3 75%, #BA31D3), linear-gradient(45deg, #BA31D3 25%, #B015CD 25%, #B015CD 50%, #BA31D3 50%, #BA31D3 75%, #B015CD 75%, #B015CD);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #B015CD;
}
.challenge-details__progress .progress-bar span {
    background: url(../images/progress_background.png);
    background-size: 100% 100%;
    position: absolute;
    top: -26px;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7pt;
}
.challenge {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.challenge__header {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;

}
.challenge_header_container {
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.challenge__header_btn {
    background: #FAECFD;
    border-radius: 24px;
    font-size: 16px;
    color: #000538;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap:5px;
    max-width: 115px;
    line-height: 1;
    justify-content: center;
}
.challenge__header_btn img {
    position: relative;
    top:-2px
}
.challenge__header .challenge__header_user {
    flex:1
}
.challenge__header_user ul {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 0px;
    align-items: center;
}
.challenge__header_user .header__user {
    display: flex;
    gap:10px;
    padding-right:0px;
    cursor: pointer;
}
.challenge__header_user .header__user .header__user_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
}
.challenge__header_user .header__user .header__user_image img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.challenge__header_user .header__user .header__user_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.challenge__header_user .header__user .header__user_info p {
    color: #000538;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.challenge__header_user .header__user .header__user_info span {
    color: #000538;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 3px;


}
.challenge__header_user .header__user .header__user_info span svg {
    width: 15px;
    height: auto;
}
.challenge__header_user .header__package {
    display: flex;
    flex-direction: column;
    padding-left: 0px;

    padding: 0px 20px;
}
.challenge__header_user .header__package .header__package__info {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000538;
}
.challenge__header_user .header__package .header__package__info img {
    height: 25px;
}
.challenge__header_user .header__package .header__package__info span {
    margin-right: auto;
    font-size: 12px;
    font-weight: 500;
}
.challenge__header_user .header__user .header__user_info span b {
    color: #E34F00;
}
.challenge__header_user .header__package .header__package__info p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    margin-left: 0px;
}
.challenge__header_user .header__package .progress {
    background-color: #FAECFD;
    height: 5px;
    border-radius: 4px;
    margin-top: 8px;
}
.challenge__header_user .header__package .progress .progress-bar {
    background:
        linear-gradient(45deg, #FE8907 25%, #FEA440 25%, #FEA440 50%, #FE8907 50%, #FE8907 75%, #FEA440 75%, #FEA440),
        linear-gradient(45deg, #FEA440 25%, #FE8907 25%, #FE8907 50%, #FEA440 50%, #FEA440 75%, #FE8907 75%, #FE8907);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #FFB347;
}
.light-blue-bg {
    background-color: rgba(73,90,254,0.14) !important
}
.light-red-bg {
    background-color: rgba(221, 4, 23, 0.15) !important
}
.light-green-bg {
    background-color: rgba(120, 163, 51, 0.23) !important
}
.challenge__header_user li:last-child {
    flex:1
}
.challenge__footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
}
.challenge_footer_container {
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    margin-top: auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.challenge__footer .challenge_footer__btn {
    flex:1;
        display: flex;
    justify-content: center;
}
.challenge__footer .challenge_footer__timer {
    flex:1;
    display: flex;
    justify-content: center;
}
.custom-challenge-check-btn {
    background: linear-gradient(179deg, #1A9F58 -8.01%, #1A9F58 154.53%);
    box-shadow: 0px 9px 1px 0px #116638;
    font-size: 19px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}
.custom-challenge-check-btn img {
    width: 22px;
    height: auto;
    position: relative;
    top: -2px;
}
.custom-challenge-next-btn {

}
.challenge__footer .challenge_footer__btn button:disabled {
    color:white !important
}
.custom-challenge-next-btn {
    background: linear-gradient(179deg, #071DFD -8.01%, #071DFD 154.53%);
    box-shadow: 0px 9px 1px 0px #0512A2;
    font-size: 19px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}
.custom-challenge-next-btn img {

    height: auto;
    position: relative;
    top: -2px;
}
.challenge__content {
    flex: 1;
    background: url('../images/challenge_bg.png') no-repeat center center;
    background-size: cover;
}
.challenge__question {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    padding: 25px 0px;
}
.light-yellow-bg {
    background-color: rgba(255, 197, 12, 0.20) !important;
}
.challenge__question_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
}
.challenge__question_top p {
    font-size: 18px;
    color: #8E8E8E;
    margin: 0;
}
.challenge__question_top a {
    font-weight: 700;
    font-size: 15px;
}
.challenge__question h3.challenge__question_title {
    font-weight: 600;
    font-size: 21px;
    color: #000538;
    /* text-align: center; */
    margin-bottom: 20px;
    margin-top: 12px;
}
.challenge__question h3.challenge__question_title span {
    display: block;
    color:#B015CD;
    font-weight: 600;
}
.challenge__question .challenge__question_title_images {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    gap: 10px;
}
.challenge__question .challenge__question_title_images a {
    height: 200px;
    flex: 1 1 calc(33.333% - 10px); /* 3 per row */
    max-width: calc(33.333% - 10px);
}
.challenge__question .challenge__question_title_images a:only-child {
    flex: unset;
   max-width: 100%;
   margin: 0 auto; 
   height: 200px;
}
.challenge__question .challenge__question_title_images a:first-child:nth-last-child(2),
.challenge__question .challenge__question_title_images a:first-child:nth-last-child(2) ~ a {
  flex: 1 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
}
.challenge__question .challenge__question_title_images img {
    border-radius: 24px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.challenge__question .challenge__question_answers {
    margin-top: 20px;
}
.challenge__question .challenge__question_answers .answer {
    background: white;
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

}
.challenge__question .challenge__question_answers .answer label {
    color: #000538;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}
.challenge__question .challenge__question_answers .answer input[type="radio"] {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}
.challenge__question .challenge__question_answers .answer input[type="checkbox"] {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}
.challenge__question .challenge__question_answers .answer.active {
    border: 1px solid #B015CD;
    background: rgba(176, 21, 205, 0.12);
}
.challenge__question .challenge__question_answers .answer.active label {
    color: #B015CD;
}
.challenge__question .challenge__question_answers .answer .question-checked {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
    width: 15px;
    height: auto;
}
.challenge__question .challenge__question_answers .answer.active .question-checked {
    display: block;
}
.challenge__question .challenge__question_answers .answer input[type="text"] {
    border:none !important
}
.challenge__question .challenge__question_answers .answer input[type="text"]:active,
.challenge__question .challenge__question_answers .answer input[type="text"]:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}
.drawing-area img  {
    width: 24px;
    height: auto;
    margin-bottom: 15px;
}
.drawing-area {
    width: auto;
    flex: 1;
    max-width: 700px;
    height: 200px;
    position: relative;
    background: #FAEBFC;
    padding: 10px;
    min-width: 300px;
}
.drawing-area-container {
    flex-wrap: wrap;
    justify-content: center;
}
.drawing-area canvas {
/* display: none; */
}
.drawing-area__canvas {
    /* background: white; */
    /* position: absolute; */
    width: 97%;
    height: 100%;
    border-radius: 16px;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}
.drawing-area .add__file {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.canvas-container {
    width: 100% !important;
    height: 100% !important;
}
.drawing-area__image {
    width: 100% !important;
    height: 100% !important;
}
.drawing-area canvas {
    width: 100% !important;
    height: 100% !important;
}
#timer-container {
    position: relative;
    width: 55px; /* Diameter of the circle */
    height: 55px; /* Diameter of the circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

#timer-circle {
    position: relative;
    width: 55px; /* Inner circle size, leave space for border */
    height: 55px;
    border-radius: 50%;
    background-color: #fff; /* White inner circle */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #000538;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    /* No direct border here, the animation will create it */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */

    /* Custom property for the angle */
    --progress-angle: 360deg; /* Initial value for full circle */
}

#timer-circle::before {
    content: '';
    position: absolute;
    /* Adjust top and left by half of the new border thickness */
    top: -5px; /* Was -10px for 10px border */
    left: -5px; /* Was -10px for 10px border */
    /* Adjust width and height by double the new border thickness */
    width: calc(100% + 10px); /* Was calc(100% + 20px) for 10px border (2 * 5px) */
    height: calc(100% + 10px); /* Was calc(100% + 20px) for 10px border (2 * 5px) */
    border-radius: 50%;
    background: conic-gradient(
        #071DFD var(--progress-angle),
        #ddd var(--progress-angle)
    );
    /* Mask to create the border effect from the conic gradient */
    -webkit-mask: radial-gradient(
        farthest-side,
        /* Adjust inner transparent part for the hole (new border thickness) */
        transparent calc(100% - 5px), /* Was 10px */
        /* Adjust solid part for the border itself (new border thickness) */
        #000 calc(100% - 5px + 1px) /* Was 10px */
    );
    mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 5px), /* Was 10px */
        #000 calc(100% - 5px + 1px) /* Was 10px */
    );
    transform: rotate(-90deg);
    transition: background 0.5s linear;
}


/* Adjust colors for different time segments */
#timer-circle.warning::before {
    background: conic-gradient(
        #FFC107 var(--progress-angle),
        #ddd var(--progress-angle)
    );
}

#timer-circle.danger::before {
    background: conic-gradient(
        #F44336 var(--progress-angle),
        #ddd var(--progress-angle)
    );
}

#timer-label {
    z-index: 1; /* Ensure label is above the pseudo-element */
}
.challenge__questions_list .challenge__question {
    display: none;
}
.challenge__questions_list .challenge__question:first-child {
    display: block;
}
.challenge__question .challenge__question_answers .answer label img {
    height: 105px;
    width: auto;
}
.profile-questions-body .bird-container .bird-image img {
    width: 85px;
}
.profile-questions-body .bird-container {
    width: 100%;
    max-width: unset;
}
.profile-questions-body .questions__progress {
    width: 100%;
    max-width: unset;
}
.profile-questions-body .challenge__question {
    padding:0
}
.profile-questions-body .challenge__question h3.challenge__question_title {
    font-size: 17px;
}
.profile-questions-body .challenge__question h3.challenge__question_title {
    margin-bottom: 15px;
    margin-top: 0;
}
.profile-questions-body .challenge__question .challenge__question_answers {
    margin-top: 15px;
}
.profile-questions-body .challenge__question .challenge__question_answers .answer {
    margin-bottom: 10px;
}
.profile-questions-body .challenge__question h3.challenge__question_title {
    text-align: right;
}
.profile-questions-body .bird-container .bird-text {
    width: 100%;
}
.profile-questions-body .challenge__question {
    max-width: 100%;
    width: 100%;
}
.profile-questions-body .challenge__question .challenge__question_answers .answer {
    padding: 0px ;
    /* gap: 0px !important; */
}
.profile-questions-body .challenge__question .challenge__question_answers .answer input[type="text"] {
    padding: 15px 10px;
    padding-right: 40px;
    border-radius: 16px;
}
textarea.form-control:active, textarea.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}
.profile-questions-body textarea.form-control {
   min-height: 70px;
}
.profile-questions-body .challenge__question .challenge__question_answers .answer img.question-label-image {
    position: absolute;
    right: 10px;
}
.profile-questions-body .challenge__question .challenge__question_answers .answer__radio {
      padding: 15px 10px;
}
.profile__content__main__body .profile-questions-body .btn {
    background: transparent !important;
    box-shadow: none !important;
    color: #000538 !important;
    font-weight: 400 !important;
    margin-right: auto;
    padding: 0;
    min-width: unset;
    margin-top: 15px;
}
.profile__content__main__body .profile-questions-body .btn-previous {
    margin-left: auto;
    margin-right: 0;
}
.answer-status-holder {
    padding-top: 50px;
    gap: 10px !important;
}
.answer-status-holder svg {
    position: absolute;
    top: -50px;
}
.answer-status-holder h3 {
    margin: 0;
    font-weight: bold;
}
.answer-status-holder p {
    margin: 0;
    color: #000538;
    font-size: 18px;
}
.answer-status-holder span {
    margin: 0;
    color: #777777;
    font-size: 18px;

}
#correct-answer-modal .modal-body {
    padding-bottom: 0px;
}
#correct-answer-modal .modal-dialog {
    max-width: 400px !important;
}
#wrong-answer-modal .modal-body {
    padding-bottom: 0px;
}
#wrong-answer-modal .modal-dialog {
    max-width: 400px !important;
}
.qs-point {
    background: rgba(255, 222, 104, 16%);
    color: #DFB400;
    border-radius: 8px;
    display: flex
;
    align-items: center;
    gap: 10px;
    max-width: 120px;
    margin: 0px auto;
    padding: 7px 10px;
    font-weight: 500;
    line-height: 1;
}
.qs-point img {
    height: 17px;
    position: relative;
    top: -1px;
}
.line {
    position: absolute;
    height: 200px;
     z-index: -1 !important;
}
.line svg {
    width: auto;
    height: 100%;
}
.line svg path {
    stroke:#610EB3;
}
.line-2 {
    transform: rotate(50deg);
    right: 0;
    bottom: 40%;

}
.line-3 {
        transform: rotate(-25deg);
    right: 30%;
    bottom: 55%;
}
.line-4 {
        transform: rotate(20deg);
    right: 48%;
    bottom: 53%;
}
.challenge-details__stars img {
    max-height: 100px;
}
.line-5 {
        transform: rotate(-120deg);
    right: 68%;
    bottom: 30%;
    height: 150px;
}
.line-6 {
    transform: rotate(-24deg);
    right: 73%;
    bottom: 15%;
    height: 150px;
}
.line-7 {
transform: rotate(365deg);
    right: 47%;
    bottom: 50px;
    height: 265px;
    opacity: 0.5;

}

/* Helper Icon & Contact Bubble Styles for Gates Page */
:root {
    --bubble-bg: rgba(255, 255, 255, 0.95);
    --bubble-color: #6B46C1;
    --bubble-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

.gates .helper-icon {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    top: 15px;
    right: 15px;
}

.gates .helper-icon svg {
    width: 35px;
    height: 35px;
}


.gates .contact-bubble {
    background: var(--bubble-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 20px 25px;
    position: absolute;
    min-width: 250px;
    max-width: 350px;
    width: auto;
    box-shadow: var(--bubble-shadow);
    text-align: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    word-wrap: break-word;
    white-space: normal;
    top: 65px;
    right: 5px;
}

.gates .contact-bubble p {
    color: var(--bubble-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}


.gates .contact-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 85%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--bubble-bg);
}


.gates .helper-icon:hover + .contact-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gates .helper-icon,
.gates .contact-bubble {
    display: block !important;
}


.gates .user {
    position: relative;
}


@media (max-width: 768px) {
    .gates .helper-icon {
        top: 10px;
        right: 10px;
    }

    .gates .helper-icon svg {
        width: 30px;
        height: 30px;
    }

    .gates .contact-bubble {
        min-width: 200px;
        max-width: 280px;
        padding: 15px 20px;
        top: 50px;
        right: 0;
    }

    .gates .contact-bubble p {
        font-size: 16px;
    }
}
.add-more-inputs p {
    color: #8E8E8E;
    padding: 6px 0px;
    padding-right: 0;
    margin: 0;
}
.add-more-inputs {
    width: 100%;
    padding: 10px 40px !important;
}
.challenge .add-more-inputs {
padding: 15px 20px !important;
}
.badge-inputs-count {
    background: rgba(250,16,36,0.10) !important;
    color: #8F030F !important;
    font-size: 14px !important;
    border-radius: 20px !important;
    font-weight: 500 !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
}
.badge-inputs-count svg {
    width: 18px;
    height: auto;
}
.challenge__question_top p {
    display: flex;
    align-items:  center;
}
.challenge__question .challenge-info {
    background: #fff;
    border: 1px solid #FAECFD;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    gap: 15px;
    position: relative;
    margin-top: 50px;
    align-items: start;
    margin-bottom: 20px;
    padding: 25px 10px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.challenge__question .challenge-info p {
    margin: 0;
    color: #000538;
    font-size: 22px;
}
.challenge__question .challenge-info svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    width: 60px;
    height: auto;
}
.fav-toggler {
    cursor: pointer;
    margin-right: auto;
    padding: 0px 15px;
}
.fav-toggler.active svg path {
    fill: #DD0417;
}
.no-answer-alert {
    background: rgba(250,16,36,0.10);
    border: none;
    color: #000538;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    height: 100px;
    margin-top: 15px;
}
.challenge__question_ai_rate {
    background: #FAECFD;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border: 1px solid #001093;
    padding: 15px;
    gap: 10px;
    margin-bottom: 15px;
}
.challenge__question_ai_rate_points {
    display: flex;
    align-items: center;
    gap: 5px;
}
.challenge__question_ai_rate_points .future-talk-points {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
        padding: 8px 15px;
}
.challenge__question_ai_rate_points .future-talk-points img {
    width: 17px;
}
.challenge__question_ai_rate_points p {
    margin: 0;
    font-weight: 600;
    color: #000538;
    font-size: 16px;
    line-height: 1;
}
.challenge__question_ai_rate_recommendations {
    display: flex;
    align-items: start;
    gap: 5px;
}
.challenge__question_ai_rate_recommendations p {
        margin: 0;
    font-weight: 600;
    color: #000538;
    font-size: 18px;
    line-height: 1;
}
.challenge__question_ai_rate_recommendations_list {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.challenge__question_ai_rate_recommendations_list span {
    font-size: 18px;
    font-weight: 400;
    color: #000538;
    line-height: 1;
}
.recommendation-dropdown {
    display: none;
    transition: all 0.3s ease;
    flex-direction: column;
}
.recommendation-dropdown.open {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}
.recommendation-dropdown-toggler {
    position: relative;
}
.recommendation-dropdown-toggler .recommendation-dropdown-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    cursor: pointer;
}
.recommendation-dropdown-toggler .recommendation-dropdown-arrow svg {
    width: 30px;
    height: auto;
}
.recommendation-dropdown-toggler .recommendation-dropdown-arrow svg.rotated {
    transform: rotate(180deg);
}