@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Paytone+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap");

:root {
    /* color */
    --orange: #f7941e;
    --orange2: #fe9c0a;
    --white: #fff;
    --black: #000;
    --yellow: #ffd754;
    --yellow2: #fdea7c;
    --gray: #babcc3;
    --gray2: #e5e0e0;
    --orange3: #ffaf6a;
    --orange3_70: #f7b37cb3;
    --blumine: #1e5772;
    --dark: #1a1a1a;
    --dark80: #1a1a1acc;
    --cream: #fcf7ee;
    --mustard: #6e5b0f;
    --olivetone: #806a12;
    --blue: #383d5c;
    --blueLight: #4d547e;
    --brown: #754e2b;
    --brownLight: #9e6737;
    --sliver: #a2a2a2;
    --blueGray: #4d547e;
    --cream: #fcf7ee;

    /*Fonts*/
    --nunito: "Nunito", sans-serif;
    --paytone: "Paytone One", sans-serif;
    --poetsen: "Poetsen One", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    list-style: none;
    box-sizing: border-box;
}

html {
    width: 100%;
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--nunito);
    background: var(--cream);
    overflow-x: hidden;
    height: auto;
}

/* Header */
header#header {
    padding: 12px 0;
    background-color: var(--orange);
    z-index: 11;
    /* position: sticky; */
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: all ease-in-out 250ms;
    -moz-transition: all ease-in-out 250ms;
    -o-transition: all ease-in-out 250ms;
    -ms-transition: all ease-in-out 250ms;
    transition: all ease-in-out 250ms;
}

header#header.fixed {
    position: fixed;
    padding: 8px 0;
}

.custom-logo {
    width: 95px;
    height: auto;
    -webkit-transition: all ease-in-out 250ms;
    -moz-transition: all ease-in-out 250ms;
    -o-transition: all ease-in-out 250ms;
    -ms-transition: all ease-in-out 250ms;
    transition: all ease-in-out 250ms;
}

header#header.fixed .custom-logo {
    width: 75px;
}

.header-navbar ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 40px;
}

.header-navbar ul li a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0 !important;
}

.header-navbar ul li a.nav-link:hover,
.header-navbar ul li a.nav-link.active {
    color: var(--white);
    background: url("../images/wave.svg") repeat-x bottom;
}

.header-navbar ul li.yp-menu-btn a.nav-link:hover {
    color: var(--white);
}

nav.header-navbar {
    justify-content: space-between;
}

.navbar-expand-md {
    justify-content: flex-start;
    display: flex;
    justify-content: space-between;
}

.yp-hm-video-panel {
    background-color: var(--orange);
    max-height: calc(100vh - 90px);
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* Aspect ratio */
    position: relative;
    background: var(--orange);
}

.video-bg iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yp-pp-quiz-wrapper {
    background-color: var(--orange);
    position: relative;
    z-index: 3;
    display: table;
    width: 100%;
}

.yp-pp-quiz {
    /* background-image: url("../images/yippee-cloudy-orange-bg.png"); */
    /* background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; */
    min-height: 500px;
    padding-top: 1.5%;
    background-color: #fcf7ee;
    margin-top: -12.5%;
}

#return-to-top {
    width: 40px;
    height: 96px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    animation: rocketLounch infinite 1.5s alternate;
}

@keyframes rocketLounch {
    0% {
        transform: translate(0px, 0px);
    }

    25% {
        transform: translate(0px, -35px);
    }

    50% {
        transform: translate(0px, 0px);
    }

    75% {
        transform: translate(0px, 35px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.imgae-heading-title h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.star-quiz-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px 0;
}

.star-quiz-list .star-li {
    background: url("../images/star.png") no-repeat center;
    background-size: 100%;
    color: var(--blumine);
    display: inline-flex;
    padding: 25px;
    width: 200px;
    height: 200px;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: var(--paytone);
    font-weight: 400;
    font-style: normal;
    text-shadow: 0 4px 4px rgba(255, 255, 255, 0.16),
        0 4px 4px rgba(0, 0, 0, 0.16);
}

.star-quiz-list .star-li.big {
    width: 260px;
    height: 260px;
    font-size: 1.75rem;
    line-height: 1.2;
}

.yp-quiz-portraits {
    overflow: hidden;
    margin-top: -27%;
}

.left-portrait img {
    max-width: 90%;
    max-height: 580px;
}

.right-portrait img {
    max-width: 75%;
    float: right;
    max-height: 580px;
}

@media (min-width: 1200px) {
    .left-portrait img {
        max-width: 400px;
    }

    .right-portrait img {
        max-width: 325px;
    }

    .yp-quiz-portraits {
        margin-top: -24%;
    }
}

@media (min-width: 1440px) {
    .left-portrait img {
        max-width: 450px;
    }

    .right-portrait img {
        max-width: 380px;
    }

    .yp-quiz-portraits {
        margin-top: -22%;
    }
}

.yp-btn,
.yp-menu-btn,
.yp-btn:hover,
.yp-menu-btn:hover,
.yp-btn:focus,
.yp-menu-btn:focus {
    padding: 2px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background: linear-gradient(
        to right,
        #ff671f,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #ff671f
    );
    border: 3px solid #e6e7e8;
    width: auto !important;
}

.yp-btn-in {
    /* background-image: linear-gradient(to right, #ff671f, #fe9c0a 12%, #fe9c0a 83%, #ff671f 100%); */
    background: linear-gradient(
        to bottom,
        #ffffff,
        #ffffffb8,
        #ffffff5e,
        #00000000,
        #00000000,
        #00000000
    );
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-family: var(--paytone);
    font-size: 36px;
    line-height: 1.5;
    min-width: 282px;
    text-align: center;
}

.yp-btn.yp-btn-small .yp-btn-in {
    min-width: 168px;
    font-size: 24px;
    padding: 5px 10px;
    line-height: 1.25;
}

.yp-menu-btn a.nav-link,
.yp-menu-btn a.nav-link:hover,
.yp-menu-btn a.nav-link:focus {
    background: linear-gradient(
        to bottom,
        #ffffff,
        #ffffffb8,
        #ffffff5e,
        #00000000,
        #00000000,
        #00000000
    ) !important;
    padding: 5px 10px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-family: var(--paytone);
    font-size: 24px;
    line-height: 1.25;
    min-width: 168px;
    text-align: center;
}

.quiz-btn-faq {
    padding-top: 40px;
}
.yp-heading h1,
.yp-heading h2 {
    position: relative;
    display: inline-block;
}
.yp-heading h1 .heading,
.yp-heading h2 .heading {
    font-size: 44.5px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.12px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    display: inline-block;
    text-shadow: 1px 1px 0px #fcb415, -1px -1px 0px #fcb415;
}
.yp-heading h1 .heading-shadow,
.yp-heading h2 .heading-shadow {
    -webkit-text-stroke: 12px #f6021a;
    font-size: 44.5px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.12px;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.yp-pp-quiz .yp-heading {
    margin-top: -20px;
}

.yp-heading {
    position: relative;
    padding: 42px 10px 0px 42px;
    display: inline-block;
}

.yp-heading-icon img {
    position: absolute;
    top: -6px;
    left: -7px;
}

.yp-bordered-heading h3 {
    font-weight: 700;
    font-family: var(--nunito);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    font-size: clamp(16px, 2.75vw, 24px);
}

.yp-bordered-heading h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("../images/yp-underline.png");
    width: 100%;
    height: 9px;
}

.yp-leaderboard {
    background: linear-gradient(to bottom, #fff, #fcf7ee 98%);
    padding-top: 30px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 100% 100% / 0 0 10% 10%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.yp-leaderboard-inner {
    background: url("../images/leader-board-left-icons.png") no-repeat left top,
        url("../images/leader-board-right-icons.png") no-repeat right top;
    min-height: 700px;
}

.yt-subhead {
    max-width: 320px;
    margin: auto;
    font-size: 24px;
    line-height: 1.35;
    color: var(--dark80);
    font-family: var(--nunito);
    font-weight: 400;
}

.leaderboard-item {
    padding: 8px;
}

.leaderboard-item-wrap {
    padding: 0px 0px 0px 120px;
    position: relative;
}

.leaderboard-item-right {
    padding: 7px 7px 7px 0;
}

.leaderboard-item-right-in {
    background: var(--white);
    padding: 22px 22px 22px 75px;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08);
    min-height: 130px;
    display: flex;
    align-items: center;
}

.leaderboard-item-wrap.yellow .leaderboard-item-right-in {
    background: var(--yellow);
    background: linear-gradient(to right, var(--yellow), var(--yellow2));
}

.leaderboard-item-wrap.gray .leaderboard-item-right-in {
    background: var(--gray);
    background: linear-gradient(to right, var(--gray), var(--gray2));
}

.leaderboard-item-wrap.orange .leaderboard-item-right-in {
    background: var(--orange3);
    background: linear-gradient(to right, var(--orange3), var(--orange3_70));
}

.leaderboard-item-left {
    width: 154px;
    height: 154px;
    background: var(--cream);
    border-radius: 100%;
    border: 10px solid var(--white);
    position: absolute;
    top: -5px;
    left: 0;
}

.leaderboard-item-wrap.yellow .leaderboard-item-left {
    background: var(--yellow);
    background: linear-gradient(to right, var(--yellow), var(--yellow2));
}

.leaderboard-item-wrap.gray .leaderboard-item-left {
    background: var(--gray);
    background: linear-gradient(to right, var(--gray), var(--gray2));
}

.leaderboard-item-wrap.orange .leaderboard-item-left {
    background: var(--orange3);
    /* background: linear-gradient(to right, var(--orange3), var(--orange3_70)); */
    background: linear-gradient(to right, var(--orange3), var(--orange3));
}

.leaderboard-item-right-in .learderbaord-name {
    width: 50%;
    font-family: var(--nunito);
    font-size: clamp(20px, 2.75vw, 32px);
    font-weight: 900;
    line-height: 1.16;
    text-align: left;
    color: var(--sliver);
    padding-right: 15px;
}

.learderbaord-content .__content,
.learderbaord-content .__location {
    font-family: var(--nunito);
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: var(--sliver);
}

.learderbaord-content .__content {
    margin-bottom: 12px;
}

.learderbaord-content .__location {
    font-weight: 700;
}

.leaderboard-item-wrap.yellow .leaderboard-item-right-in .learderbaord-name {
    color: var(--mustard);
}

.leaderboard-item-wrap.yellow .learderbaord-content .__content,
.leaderboard-item-wrap.yellow .learderbaord-content .__location {
    color: var(--olivetone);
}

.leaderboard-item-wrap.gray .leaderboard-item-right-in .learderbaord-name {
    color: var(--blue);
}

.leaderboard-item-wrap.gray .learderbaord-content .__content,
.leaderboard-item-wrap.gray .learderbaord-content .__location {
    color: var(--blueLight);
}

.leaderboard-item-wrap.orange .leaderboard-item-right-in .learderbaord-name {
    color: var(--brown);
}

.leaderboard-item-wrap.orange .learderbaord-content .__content,
.leaderboard-item-wrap.orange .learderbaord-content .__location {
    color: var(--brownLight);
}

.leaderboard-item-left .count {
    width: 50px;
    height: 23px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7.2px;
    padding: 1.8px 7.2px;
    object-fit: contain;
    border-radius: 2.7px;
    position: absolute;
    bottom: -10px;
    background: var(--blueGray);
}

.yellow .leaderboard-item-left .count {
    background-image: linear-gradient(to bottom, #600026, #c6004e 200%);
}

.gray .leaderboard-item-left .count {
    background: #000e25;
    background-image: linear-gradient(to bottom, #000e25, #00368b);
}

.orange .leaderboard-item-left .count {
    background: #064f47;
    background-image: linear-gradient(179deg, #064f47 49%, #0eb5a3 98%);
}

.leaderboard-item .count span {
    font-family: var(--nunito);
    font-size: 11.6px;
    font-weight: 900;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
}

.leaderboard-list {
    padding: 28px 0;
}

.yp-howzzat-hacks {
    background: var(--white);
    padding: 45px 0;
}

.home-swiper {
    width: 372px;
    height: 475px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.home-swiper .swiper-slide:nth-child(1n) {
    background-color: #ef4043;
}

.home-swiper .swiper-slide:nth-child(2n) {
    background-color: #1cbbb4;
}

.home-swiper .swiper-slide:nth-child(3n) {
    background-color: #ed145b;
}

.home-swiper .swiper-slide:nth-child(4n) {
    background-color: #ff994e;
}

.home-swiper .swiper-slide:nth-child(5n) {
    background-color: #b6d434;
}

.home-swiper .swiper-slide:nth-child(6n) {
    background-color: #ef4043;
}

.home-swiper .swiper-slide:nth-child(7n) {
    background-color: #1cbbb4;
}

.home-swiper .swiper-slide:nth-child(8n) {
    background-color: #ed145b;
}

.home-swiper .swiper-slide:nth-child(9n) {
    background-color: #ff994e;
}

.home-swiper .swiper-slide:nth-child(10n) {
    background-color: #b6d434;
}

.panorama-slider .swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.panorama-slider .swiper .swiper-slide {
    overflow: hidden;
}

.swiper-cards .swiper-slide {
    overflow: visible;
}

.swiper-slide-shadow {
    border-radius: 18px;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

.panorama-slider .swiper-slide {
    align-items: flex-end;
}

/*******************/
.yp-blogs {
    background: var(--cream);
    padding-top: 60px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    border-radius: 50% 50% 0 0 / 100px 100px 0 0;
    overflow: hidden;
    min-height: 450px;
}

.yp-quick-answer {
    background: var(--cream);
    padding: 80px 0 35px;
    overflow: hidden;
}

.text-card-slider .swiper-slide {
    padding: 18px;
}

.yp-text-slide-card h3 {
    font-size: 34px;
    color: var(--white);
    font-family: var(--nunito);
    font-weight: 900;
    line-height: 1.1;
    opacity: 0.9;
}

.yp-text-slide-card .text {
    color: var(--white);
    font-family: var(--nunito);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    opacity: 0.8;
}

.slide-card-count {
    background: url(../images/white-circle.png) no-repeat center;
    background-size: 100%;
    width: 82px;
    height: 82px;
    color: #ed145b;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--poetsen);
    font-size: 49px;
    line-height: 1.2px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    top: -40px;
    margin: auto;
    opacity: 0;
}

.swiper-slide-active .slide-card-count {
    opacity: 1;
}

.blog-article {
    width: 100%;
    min-height: 175px;
    overflow: hidden;
    display: flex;
    /* padding: 9px; */
    /* border: 9px solid var(--orange); */
    height: 100%;
}

.blog-article-in {
    border-radius: 27px;
    width: 100%;
    overflow: hidden;
}

.blog-article {
    border: 9px solid transparent;
}

.blog-article:hover {
    border-color: var(--orange);
}

.yp-big-article .blog-article {
    min-height: 450px;
    border-radius: 48px;
}

.blog-article {
    border-radius: 48px;
}

.blog-article-img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 38px;
}

.yp-blog-grid .row {
    margin: 0;
}

.yp-blog-grid .row > * {
    padding: 0;
}

.yp-small-left-top {
    height: 48%;
}

.yp-small-left-bottom {
    height: 52%;
}

.yp-small-left-top .row {
    height: 100%;
}

.yp-small-right-top {
    height: 58%;
}

.yp-small-right-bottom {
    height: 42%;
}

.blog-article-in {
    position: relative;
    border-radius: 27px;
}

.blog-article-in:before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background-color: var(--orange);
    opacity: 0;
    border-radius: 35px;
}

.yp-big-article .blog-article-in:before {
    top: 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
}

.blog-article-in:hover:before {
    opacity: 0.6;
}

.blog-article,
.blog-article-in,
.blog-article-in:before,
.blog-article-in span.icon img {
    transition: all ease-in-out 350ms;
}

.blog-article-in span.icon {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-article-in span.icon img {
    max-width: 65px !important;
    width: 100%;
    transform: scale(0);
}

.yp-big-article .blog-article-in span.icon img {
    max-width: 112px !important;
}

.blog-article-in:hover span.icon img {
    transform: scale(1);
}

.yp-blog-grid {
    padding: 40px 0;
    position: relative;
}

.cloud-img {
    margin-top: -7.5%;
}

.yp-blogs-in {
    position: relative;
    z-index: 1;
}

.yp-faq-cards {
    padding: 35px 60px 0 60px;
}

.yp-faq-cards .swiper-button-prev {
    left: -150px;
}

.yp-faq-cards .swiper-button-prev img {
    transform: rotateY(180deg);
}

.yp-faq-cards .swiper-button-next {
    right: -150px;
}

.yp-faq-cards .swiper-button-next:after,
.yp-faq-cards .swiper-button-prev:after {
    font-size: 0;
}

.footer-menu ul {
    padding-left: 0;
}

.footer-menu ul li {
    display: inline-block;
    padding: 5px 5px;
}

.footer-menu ul li a {
    font-size: 22px;
    color: var(--white);
    font-family: var(--nunito);
    font-weight: 600;
    padding: 5px 5px;
}

#footer {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.footer-inn {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 23% 0 5% 0;
}

.footer-social-links ul {
    border-top: 1px solid var(--white);
    gap: 16px;
    padding: 10px 0;
    margin-bottom: 0;
}

.copyright p {
    font-size: 15px;
}

.footer-social-links ul li a {
    display: block;
}

.footer-social-links ul li a img {
    width: 36px;
}

.yippee-sun {
    position: absolute;
    max-width: 140px;
    top: 22%;
    left: 2.5%;
    transform: rotateY(180deg);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.close-toggle {
    width: 24px;
    display: none;
}

.panorama-slider .swiper .swiper-slide.swiper-slide-active {
    box-shadow: 0px 7px 34px 0px rgba(0, 0, 0, 0.15);
}

.panorama-slider .swiper-wrapper {
    gap: 5px;
}

/* styles added for blog page and leaderboard */

.top-5 {
    top: 5%;
}

.top-35 {
    top: 35%;
}

.left-0 {
    left: 0;
}

.inner-banner {
    height: 480px;
}

.blog-banner {
    background: url(../images/blog_banner.webp);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-banner-content {
    left: 0;
    top: 35%;
}

.blog-cloud-img {
    position: absolute;
    bottom: -9%;
    left: 0;
}

.blog-list {
    background-color: var(--cream);
    margin-top: -2.25%;
}

.blog-category-item {
    display: none;
    /* Default: hidden */
}

.blog-category-item.show {
    display: block;
    /* Shown when filtered */
}

.nav-tabs .nav-link {
    border-radius: 66px;
    border: solid 1px rgba(247, 148, 30, 0.5);
    background-color: #fff;
    color: var(--orange);
    margin-right: 10px;
    text-wrap: nowrap;
    padding: 15px 28px;
}

.nav-tabs .nav-item:last-child .nav-link {
    margin-right: 0;
}

.nav-tabs li.nav-item {
    margin-bottom: 1px;
}

.nav-tabs .nav-link.active {
    background-color: var(--orange);
    color: #fff;
}

.blog-search {
    padding: 8px 20px;
    border-radius: 35px;
    border: solid 1.5px #fff;
    background-color: #fff;
}

.subscribe-block {
    background: url(../images/aside.webp) no-repeat;
    height: 545px;
    background-size: cover;
    border-radius: 12px;
    background-position: bottom center;
}

.subscribe-block h2 {
    font-size: 34.9px;
    font-weight: 900;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.9);
}

.subscribe-input-group {
    padding: 0 0 0 30px;
    border-radius: 36px;
    border: solid 1.5px #fff;
    background-color: var(--white);
    height: 60px;
}

.subscribe-input-group .form-control,
.subscribe-input-group .form-control::placeholder {
    color: #6b6b84cc;
}

.subscribe-input-group .btn {
    padding: 14px;
    border-radius: 36px !important;
    border: solid 1.5px #fff;
    background-color: var(--orange);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
}

.blog-content {
    max-width: 856px;
    margin: auto;
}

.blog-inner-content {
    background-color: var(--cream);
}

.blog-item-text p:first-of-type::first-letter {
    font-size: 2em;
    font-weight: bold;
    color: var(--orange);
    font-size: 58px;
    font-weight: 800;
    margin-right: 0.75rem;
    line-height: 100%;
}

.blog-item-text h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.08;
    color: #231f20;
}

.blog-item-text p {
    font-size: 16px;
    line-height: 1.63;
    color: #313131;
}

.blog-item-text ul {
    padding-left: 15px;
}

.blog-item-text ul li {
    list-style: disc;
    line-height: 1.63;
    color: #191919;
}

.blog-item::after {
    content: "";
    display: block;
    height: 5px;
    background: url(../images/blog-underline.png);
    width: 100%;
    margin: 2.5rem 0;
}

.blog-item .blog-title {
    line-height: 1.3;
    color: var(--dark);
}

.blog-item .blog-text {
    font-size: 16px;
    line-height: 1.64;
    color: #6b6b84;
}

.blog-share span,
.blog-categories p {
    color: var(--dark);
    font-size: 20px;
    font-weight: bold;
    line-height: 0.9;
    margin-right: 0.75rem;
}

.blog-categories::after {
    content: "";
    display: block;
    height: 9px;
    background-color: var(--orange);
    border-radius: 5px;
    margin: 2rem 0rem;
}

.blog-categories p > span {
    color: var(--orange);
    font-weight: 600;
}

.blog-inner-breadcrumb .breadcrumb-item a {
    color: #585858;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.17;
}

.blog-inner-breadcrumb .breadcrumb-item.active {
    color: var(--orange);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.17;
}

.blog-publisher-info img {
    object-fit: contain;
    border-radius: 50px;
    border: solid 1px #fff;
}

.blog-publisher-info span {
    font-size: 16px;
    font-weight: bold;
    color: rgba(247, 148, 30, 0.8);
}

.blog-pagination .page-link {
    border-radius: 33px !important;
    border: solid 1px #b5b5b5;
    background-color: transparent;
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.5px;
    text-align: center;
    color: var(--dark);
    margin: 0px 4px;
}

.blog-pagination .page-link.active {
    background-color: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
}

.blog-inner-header h2 {
    font-weight: bold;
    line-height: 1.31;
    color: var(--dark);
}

.blog-inner-header p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(26, 26, 26, 0.6);
}

.blog-inner-publisher-info span {
    font-weight: 600;
    color: var(--orange);
}

.blog-inner-date-time small {
    font-size: 14px;
    line-height: 1;
    color: #231f20;
    margin-right: 0.75rem;
}

.relatedBlogSwiper {
    overflow: visible;
}

.relatedBlogSwiper .swiper-button-prev {
    left: -70px;
}

.relatedBlogSwiper .swiper-button-prev img {
    transform: rotateY(180deg);
}

.relatedBlogSwiper .swiper-button-next {
    right: -70px;
}

.relatedBlogSwiper .blog-article {
    border-radius: 0;
}

.relatedBlogSwiper .swiper-button-next:after,
.relatedBlogSwiper .swiper-button-prev:after {
    font-size: 0;
}

.relatedBlogSwiper .swiper-pagination {
    bottom: -15% !important;
}

.related-blog-items .blog-article {
    display: block;
}

.related-blog-items .blog-article a {
    text-decoration: none;
    display: block;
}

.related-blog-items h2 {
    font-weight: bold;
    line-height: 1.3;
    color: var(--dark);
}

.related-blog-items .blog-article h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--dark);
}

.relatedBlogSwiper .blog-article a {
    border: 5px solid transparent;
}

.relatedBlogSwiper .blog-article:hover {
    border: 0px;
}

.relatedBlogSwiper .blog-article:hover a {
    border: 5px solid var(--orange);
}

.relatedBlogSwiper .swiper-wrapper {
    overflow: hidden;
}

.relatedBlogSwiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--orange);
    border: 5px solid rgba(247, 148, 30, 0.16);
    border-radius: 10px;
    box-shadow: 0px 0px 5px 4px rgba(247, 148, 30, 0.46);
}

.leaderboard-banner {
    background: url(../images/yippee-leaderboard-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 4/1;
    width: 100%;
    min-height: 300px;
}

.leaderboard-cloud-img {
    position: absolute;
    bottom: -9%;
    left: 0;
}

.leadership-content {
    background-color: var(--cream);
    overflow: hidden;
    padding-top: 20px;
    margin-top: -4%;
}

.leaderboard-aside-text h3 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2px;
}

.leaderboard-aside-text p {
    font-size: 14px;
    letter-spacing: 0.98px;
    color: rgba(255, 255, 255, 0.9);
}

.self-rank-num {
    background: linear-gradient(to bottom, #ea3722, #f6a816);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 48px;
    line-height: 100%;
}

.self-rank-item .leaderboard-item-left .count {
    background: linear-gradient(to bottom, #ea3722, #f6a816);
}

.self-rank-item .leaderboard-item-left {
    background: var(--white);
    border: 10px solid var(--cream);
}

.self-rank-item .learderbaord-name {
    font-weight: 900;
    line-height: 1.16;
    color: rgba(26, 26, 26, 0.75);
}

.self-rank-item .learderbaord-content {
    color: rgba(26, 26, 26, 0.75);
}

.self-rank-item .learderbaord-content .__content {
    color: rgba(26, 26, 26, 0.9);
}

.self-rank-item .learderbaord-content .__location {
    color: rgba(26, 26, 26, 0.8);
}

.leaderboard-rankings {
    /* margin-top: 20%; */
}

/* .fixed2{
 top:100px;
} */
.quiz-timer {
    margin-bottom: -20%;
}

@media only screen and (max-width: 600px) {
    .blog-banner {
        background: url(../images/blog-banner-mobile.webp);
    }

    .blog-banner-content {
        top: 10%;
    }

    .inner-banner {
        height: 350px;
    }

    .blog-cloud-img {
        bottom: 0;
    }

    .blog-banner-content .yp-heading h2 .heading,
    .blog-banner-content .yp-heading h2 .heading-shadow {
        font-size: 28px;
    }

    .blog-banner-content .yp-heading-icon img {
        width: 70px;
        top: 5px;
    }

    .nav-tabs .nav-link {
        padding: 10px 20px;
    }

    .blog-item::after {
        margin: 1.5rem 0;
    }

    .blog-item .blog-title {
        font-size: 24px;
    }

    .subscribe-block h2 {
        font-size: 26px;
    }

    .subscribe-input-group {
        padding: 0 0 0 20px;
    }

    .leaderboard-banner {
        background: url(../images/yippee-leaderboard-mob-bg.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        aspect-ratio: 1.25/1;
    }

    .leaderboard-cloud-img {
        bottom: -0%;
    }

    .leaderboard-banner-contnet .yp-heading h2 .heading,
    .leaderboard-banner-contnet .yp-heading h2 .heading-shadow {
        font-size: 28px;
    }

    .leadership-content {
        /*background-image: url(../images/leaderboard-designelm.png);
    background-repeat: no-repeat;
    background-position: 0px 8.5%;
    background-size: 100%;*/
    }

    .self-rank-num {
        font-size: 24px;
    }

    .self-rank-item .leaderboard-item-left {
        border: 4px solid var(--cream);
    }
}

/* Quiz Page Styles */

.progress-bar-gradient {
    background: repeating-linear-gradient(
        140deg,
        #b9ac05,
        #fbaa36 10px,
        #f1c480 10px,
        #c7e814 20px
    );
}

.moving-icon {
    position: absolute;
    top: calc(50% - 22px);
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #0072ff;
    left: 10%;
}

.quiz-timer-clock {
    width: 104px;
    height: 117px;
    background: url(../images/quiz-timer.png) no-repeat;
}

.quiz-timer-clock > p {
    font-size: 40px;
    font-weight: 900;
    color: rgba(26, 26, 26, 0.9);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 4px 4px rgba(0, 0, 0, 0.25);
    top: calc(50% - 22px);
    left: calc(50% - 22px);
}

.quiz-progress-bar .progress {
    height: 10px;
    background-image: linear-gradient(to top, #dee1e2 78%, #d2d2d2 3%);
}

.stepsIndiacator {
    font-size: 18px;
    font-weight: 600;
    line-height: 0.59;
    color: var(--orange);
}

.stepsIndiacator .total-steps {
    font-weight: 900;
}

.quiz-image-container img {
    object-fit: cover;
    width: 100%;
    flex-grow: 1;
    border-radius: 5px;
    height: 100%;
}

.quiz-question-container h1 {
    font-size: 36px;
    color: #ed145b;
    background-color: var(--white);
    padding: 5px 16px;
    border-radius: 50%;
    font-weight: bold;
}

.quiz-question-container p {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.08;
    color: rgba(255, 255, 255, 0.9);
}

.quiz-options {
    background-color: var(--white);
    border-radius: 12px;
    border: solid 4px rgba(247, 148, 30, 0.12);
}

.quiz-options.correct-option {
    border: solid 4px rgba(0, 192, 6, 0.4);
    background-color: rgba(0, 192, 6, 0.06);
}

.quiz-options.wrong-option {
    border: solid 4px rgba(255, 4, 4, 0.4);
    background-color: rgba(255, 4, 4, 0.06);
}

.quiz-options .quiz-response-img {
    width: 60px;
    height: 60px;
}

.quiz-options.correct-option .quiz-response-img {
    background: url(../images/tick-yes.webp) no-repeat;
}

.quiz-options.wrong-option .quiz-response-img {
    background: url(../images/tick-no.webp) no-repeat;
}

.quiz-option-text h3 {
    border: solid 1.5px rgba(247, 148, 30, 0.2);
    background-color: rgba(247, 148, 30, 0.1);
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: var(--orange);
}

.quiz-option-text h2 {
    font-size: 24px;
    font-weight: bold;
    color: rgba(26, 26, 26, 0.8);
}

.quiz-foot-links ul li a {
    color: var(--orange);
    font-size: 24px;
    font-weight: bold;
}

.quiz-foot-links ul li:not(:last-child)::after {
    content: "|";
    color: var(--orange);
    font-size: 24px;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .quiz-question-container p {
        font-size: 30px;
    }

    .results-leaderboard {
        padding-top: 320px !important;
    }
}

@media only screen and (max-width: 600px) {
    .quiz-options .quiz-response-img {
        width: 40px;
        height: 40px;
    }

    .quiz-option-text h3 {
        padding: 8px 10px;
        font-size: 16px;
    }

    .quiz-option-text h2 {
        font-size: 16px;
    }

    .quiz-options.correct-option .quiz-response-img,
    .quiz-options.wrong-option .quiz-response-img {
        background-size: 90%;
    }

    .quiz-foot-links ul li a {
        font-size: 16px;
    }

    .quiz-foot-links ul li:not(:last-child)::after {
        font-size: 16px;
        padding: 0 15px;
    }

    .quiz-timer-clock {
        width: 80px;
        height: 82px;
        background-size: 90%;
    }

    .quiz-timer-clock > p {
        font-size: 24px;
        top: calc(50% - 16px);
        left: calc(50% - 18px);
    }

    .quiz-image-container img {
        max-height: 110px;
    }

    .quiz-question-container h1 {
        font-size: 24px;
        padding: 5px 12px;
    }

    .quiz-question-container p {
        font-size: 20px;
        font-weight: 900;
        line-height: 1.16;
    }

    .quiz-image-container {
        margin-top: -20px;
    }
}

/* Quiz Page Styles end*/

/* Login Page Styles start */

.login-card {
    max-width: 736px;
    background-color: var(--orange);
    border-radius: 14px;
}

.login-card .card-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.16;
    color: var(--white);
    border: 0;
}

.login-form-body {
    color: var(--white);
}

.login-form-body label {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.login-form-body .input-group {
    padding: 4px;
    border-radius: 12px;
    border: solid 4px rgba(247, 148, 30, 0.2);
    background-color: var(--white);
}

.form-control::placeholder {
    color: rgba(107, 107, 132, 0.8);
}

.login-btn {
    border-radius: 50px;
    background-image: linear-gradient(
        to right,
        #ff671f,
        #fe9c0a 41%,
        #fe9c0a 63%,
        #ff671f 100%
    );
    text-align: center;
    padding: 8px 12px;
    border: 3px solid #e6e7e8;
    font-weight: 400;
    font-size: 22px;
    position: relative;
    overflow: hidden;
    font-family: var(--paytone);
}

.login-btn::before {
    content: "";
    mix-blend-mode: screen;
    background-image: linear-gradient(to bottom, #a5b7c6 2%, #000 110%);
    width: 100%;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.login-btn:hover {
    border-color: #e6e7e8;
}

.login-info p {
    border-radius: 12px;
    background-color: #b8edb9;
    padding: 8px;
    font-size: 20px;
    font-weight: bold;
    color: #037807;
}

.info-after-otp {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.info-after-otp a {
    color: #1244c0;
}

.login-divider {
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    margin: 0;
}

.login-divider::after {
    content: "";
    width: 51px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: calc(50% - 1px);
    margin-left: 10px;
    border-radius: 20%;
}

.login-divider::before {
    content: "";
    width: 51px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: calc(50% - 1px);
    left: 36%;
    border-radius: 20%;
}

.googleLogin {
    height: 54px;
    padding: 6px;
    border-radius: 127px;
    background-color: var(--white);
}

.googleLogin a {
    font-size: 22px;
    border: 0;
    font-weight: bold;
    color: rgba(26, 26, 26, 0.9) !important;
    background-color: #fff !important;
}

.googleLogin a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.googleLogin a img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    object-fit: contain;
}

/* Chrome, Safari, Edge, Opera */
.otp-bld::-webkit-outer-spin-button,
.otp-bld::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.otp-bld[type="number"] {
    -moz-appearance: textfield;
}

@media only screen and (max-width: 600px) {
    .login-card .card-title {
        font-size: 20px;
    }

    .login-form-body label {
        font-size: 16px;
    }

    .login-form-body .input-group {
        padding: 3px 0;
        border-radius: 6px;
        border: solid 2px rgba(247, 148, 30, 0.2);
    }

    .login-form-body .country-flag {
        width: 24px;
        height: 16px;
    }

    .login-btn {
        font-size: 20px;
    }

    .login-divider {
        font-size: 16px;
    }

    .login-divider::before {
        left: 27%;
    }

    .login-divider::after {
        margin-left: 10px;
    }

    .googleLogin button {
        font-size: 16px;
    }

    .login-info p {
        font-size: 14px;
    }

    .info-after-otp {
        font-size: 14px;
    }
}

/* Signup Page Styles */
.signup-card {
    background-color: var(--orange);
    border-radius: 14px;
    max-width: 1000px;
    padding: 2rem 6rem;
}

.signup-card .card-title {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.16;
}

.signup-card .form-control {
    height: 70px;
    border-radius: 12px;
    border: solid 4px rgba(247, 148, 30, 0.2);
    background-color: #fff;
    font-size: 22px;
    color: rgba(26, 26, 26, 0.8);
    padding-left: 1.75rem;
}

.login-block {
    padding: 50px 0px !important;
    margin-bottom: -10%;
    position: relative;
    z-index: 1;
}

.signup-submit .btn {
    border-radius: 50px;
    background-image: linear-gradient(
        to right,
        #ff671f,
        #fe9c0a 41%,
        #fe9c0a 63%,
        #ff671f 100%
    );
    text-align: center;
    padding: 8px 12px;
    border: 2px solid #fff;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.signup-submit .btn::before {
    content: "";
    mix-blend-mode: screen;
    background-image: linear-gradient(to bottom, #a5b7c6 2%, #000 110%);
    width: 100%;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.signup-submit .btn:hover {
    border-color: var(--white);
}

@media only screen and (max-width: 600px) {
    .signup-card {
        padding: 1.5rem 1rem;
    }

    .signup-card .card-title {
        font-size: 20px;
    }

    .signup-card .form-control {
        height: 50px;
        border-radius: 6px;
        border: solid 2.3px rgba(247, 148, 30, 0.2);
        font-size: 16px;
    }
}

/* Profile page Styles */

.profile-content {
    border-radius: 8px;
    background-color: var(--orange);
    padding: 2rem 6.5rem;
}

.profile-info {
    background-color: var(--white);
    border-radius: 20px;
}

.profile-info p {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.16;
    color: rgba(26, 26, 26, 0.9);
}

.profile-info .nav-pills .nav-link {
    border-radius: 0;
    text-align: left;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.16;
    padding: 0.75rem 1rem;
    color: rgba(26, 26, 26, 0.5);
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-info .nav-pills .nav-link img {
    width: auto;
    height: 32px;
}

.profile-info .nav-pills .nav-link.active {
    background-color: #e97f00;
    color: var(--white);
}

.myProfileContent {
    padding-left: 24px;
}

.myProfileContent .form-label {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.myProfileContent .form-label::after {
    content: "*";
    color: #de2500;
    margin-left: 2px;
}

.myProfileContent .form-control {
    height: 70px;
    border-radius: 12px;
    border: solid 2.5px #80df83;
    background-color: #fff;
    font-size: 22px;
    color: rgba(26, 26, 26, 0.8);
    padding-left: 1.75rem;
}

.saveLink {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.myScoreContent {
    padding-left: 4rem;
}

.score-container {
    border-radius: 16px;
    overflow: hidden;
    padding: 1.25rem 2.25rem;
    background-image: url(../images/myprofile-stats-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.score-wrapper {
    background-color: #1cbbb4;
    color: var(--white);
    background-repeat: no-repeat;
    background-size: cover;
}

.scores-col {
    border-right: 2px solid #fff;
    padding: 0 0.85rem;
}

.last-score-two {
    border: none;
    padding-right: 0;
}

.score-label {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.16;
    text-align: center;
    color: #fff;
}

.score-num {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.16;
    text-align: center;
    color: #fff;
    margin: 0.75rem 0;
}

.level-score-table h2 {
    font-weight: 800;
    line-height: 1.16;
    color: #fff;
}

.score-table-outer {
    border: 1px solid #fff;
    border-radius: 10px;
}

.level-score-table table thead {
    background-color: #e97f00;
    border-bottom: 4px solid #fff;
}

.level-score-table table thead th {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.16;
    color: #fff;
    padding: 0.75rem;
}

.level-score-table table tbody tr,
.level-score-table table tbody td,
.level-score-table tbody tr:nth-of-type(odd) > * {
    border: 0;
    padding: 0.75rem;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.16;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .profile-content {
        background-color: transparent;
        padding: 0;
    }

    .profile-info {
        background-color: transparent;
        border-radius: 0;
    }

    .profile-info .user-image {
        width: 97px;
        height: 97px;
    }

    .profile-info p {
        font-size: 14px;
    }

    .profile-info .nav-pills {
        background-color: var(--white);
        border-radius: 12px;
        overflow: hidden;
    }

    .profile-info .nav-pills .nav-item {
        width: 25%;
        display: flex;
    }

    .profile-info .nav-pills .nav-link {
        justify-content: center;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.11;
        letter-spacing: -0.24px;
        color: rgba(26, 26, 26, 0.5);
        margin-bottom: 0;
        min-height: 40px;
        text-align: center;
        padding: 8px;
    }

    .profile-info .nav-pills .nav-link img {
        display: none !important;
    }

    .profile-info .nav-pills .nav-link.active {
        background-color: var(--orange);
    }

    .myProfileContent {
        padding: 1rem;
        background-color: var(--orange);
        border-radius: 14px;
    }

    .myProfileContent .form-label {
        font-size: 16px;
        font-weight: bold;
        line-height: 1;
        color: rgba(255, 255, 255, 0.9);
    }

    .myProfileContent .form-control {
        height: 56px;
        border-radius: 6px;
        border: solid 2px rgba(0, 192, 6, 0.5);
        font-size: 16px;
        padding-left: 1rem;
    }

    .saveLink {
        font-size: 16px;
        font-weight: 600;
    }

    .myScoreContent {
        padding: 0rem;
    }

    .level-score-table h2 {
        font-size: 24px;
        font-weight: bold;
        line-height: 1.16;
        text-align: center;
        color: #1a1a1a;
    }

    .score-table-outer {
        background-color: var(--orange);
    }

    .score-container {
        border-radius: 0px;
        overflow: hidden;
        background: none;
        padding: 0;
    }

    .score-wrapper {
        background-image: url(../images/myprofile-stats-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        margin: 10px 0;
        border-radius: 12px;
        padding: 1rem;
    }

    .scores-col:nth-child(3) {
        border-right: 0px solid #fff;
    }

    .last-score-two {
        border: none;
        padding-right: 0;
    }

    .score-label {
        font-size: 12px;
    }

    .score-num {
        font-size: 24px;
        margin-bottom: 0;
    }
}

.img-box {
    overflow: hidden;
    height: 128px;
    width: 128px;
    border-radius: 50%;
    border: 4px solid #f7941e;
    position: relative;
    /* padding: 4px; */
}

.img-box .user-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.custom-photo-div label {
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    width: 100%;
    /* Style as you please, it will become the visible UI component. */
}

#upload-photo {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.custom-photo-div a {
    font-weight: 700;
}

.custom-photo-div {
    position: absolute;
    bottom: -8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    background-color: #f7941e;
    transition: 0.2s ease;
}

.img-box:hover .custom-photo-div {
    height: 25%;
    bottom: 0;
}

.myProfileContent .form-control:read-only {
    border: 4px solid #fdead2;
    background-color: #fff;
    color: #6b6b84cc !important;
}

.profile-content {
    margin-bottom: 0px !important;
}

.edit-profile {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.score-num {
    margin-bottom: 0;
}

.myProfileContent .form-control:disabled {
    border: 4px solid #fdead2;
    background-color: #fff;
    color: #6b6b84cc !important;
}

.login-form-body .form-control:read-only {
    border: 4px solid #fdead2;
    background-color: #fff;
    color: #6b6b84cc !important;
}

.saveLink {
    position: relative;
}

.saveLink img {
    position: absolute;
    right: 0;
    bottom: -6px;
}

.icon2 {
    display: none;
}

.profile-info .nav-pills .nav-link.active .icon2 {
    display: inherit;
}

.profile-info .nav-pills .nav-link.active .icon1 {
    display: none;
}

.googleLogin {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .profile-content {
        padding: 2rem 2rem;
    }
}

@media (max-width: 767px) {
    .profile-content {
        padding: 1rem 0rem;
    }

    .img-box {
        height: 97px;
        width: 97px;
    }

    .level-score-table {
        margin-top: 1.5rem !important;
    }
}

.decoration-none {
    text-decoration: none !important;
}

.small-font {
    font-size: 12px !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/********************/
/*** Login Screen ***/
/********************/
.login-card-outer {
    max-width: 736px;
    width: 100%;
    margin: auto;
}

.login-design-img {
    position: absolute;
    left: -175px;
    transform: rotate(-20deg);
    top: 0;
    bottom: 0;
    margin: auto;
}

.login-card-outer .card {
    padding: 12px 70px;
}

#login-form #mobile-number,
#otp-input {
    font-size: 20px;
    height: 50px;
}

/** Leaderboard **/
.banner-cloud-img {
    margin-top: -9%;
}

.rocket-fly-img {
    transform: scale(1.12) translate(-3%, 0px);
    margin: -7% 0 -3% 0;
}

.leaderboard-aside {
    position: sticky;
    top: 0;
}

.leaderboard-aside-text p {
    max-width: 330px;
    margin: auto;
}

.leaderboard-right-card-3 .leaderboard-aside-text {
    top: 8% !important;
}

.leaderboard-card-slider .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.leaderboard-card-slider .owl-dot span {
    width: 6px;
    background-color: rgba(217, 217, 217, 0.6);
    height: 6px;
    display: block;
    border-radius: 10px;
    margin: 4px;
    box-shadow: 0px 0px 0px 3px rgba(247, 148, 30, 0);
}

.leaderboard-card-slider .owl-dot.active span {
    background-color: var(--orange);
    box-shadow: 0px 0px 0px 3px rgba(247, 148, 30, 0.16);
}

.start-quize-item .leaderboard-item-left {
    border: none !important;
    background: #fcf7ee;
}

.start-quize-item .leaderboard-item-left img {
    width: 100%;
}

.header-navbar ul li.del-btn-li {
    margin-top: 10px;
}
.header-navbar ul li.logout-btn-li,
.header-navbar ul li.del-btn-li {
    border: none;
    padding: 10px 20px;
}
.header-navbar ul li.logout-btn-li a,
.header-navbar ul li.logout-btn-li a:hover,
.header-navbar ul li.logout-btn-li a:focus {
    background: transparent url("../images/logout-icon.svg") no-repeat left
        center !important;
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    color: #fff !important;
    padding: 5px 0 5px 28px !important;
    text-decoration: none;
}
.header-navbar ul li.del-btn-li a,
.header-navbar ul li.del-btn-li a:hover,
.header-navbar ul li.del-btn-li a:focus {
    background: transparent url("../images/delete-icon.svg") no-repeat left
        center !important;
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    color: #fff !important;
    padding: 5px 0 5px 28px !important;
    text-decoration: none;
}

.self-rank-item .leaderboard-item-right-in {
    justify-content: space-between;
}

.profile-info .nav-pills .nav-link.delete-account-btn img {
    width: 33px;
    margin-right: 8px !important;
    height: auto;
}

.yippee-modal .modal-content {
    background: transparent;
    border: none;
}

.yippee-modal-content {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    /* min-height: 280px; */
}

.yippee-modal .modal-dialog {
    max-width: 620px;
    width: 100%;
    padding: 30px 15px !important;
    margin: auto;
}
.yippee-modal-top-img {
    text-align: center;
    margin-bottom: -75px;
}
.yippee-sun-modal-top-logo {
    max-width: 250px;
}
.yippee-modal .modal-header {
    border: none;
    padding: 0;
    position: relative;
}
.yippee-modal .modal-header .btn-close {
    background: url("../images/clos-icon.png") no-repeat center;
    width: 48px;
    height: 48px;
    opacity: 1;
    background-size: cover;
    margin: 0 0 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    z-index: 1;
}
.yippee-modal .modal-body {
    padding: 0;
}
.yp-popup-logo {
    padding: 10px 50px 10px 50px;
}
.yp-popup-logo img {
    max-width: 185px;
}
.yippee-modal .modal-title {
    font-family: var(--nunito);
    font-size: 36px;
    font-weight: 900;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: normal;
    color: #f6021a;
    margin-bottom: 40px;
    padding-top: 8px;
}
.yippee-modal .yp-modal-content-area h4 {
    font-family: var(--nunito);
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 20px;
}
.yp-cancel-btn {
    text-decoration: none;
    background: transparent;
}
.yp-cancel-btn span {
    height: 33px;
    flex-grow: 0;
    font-family: Nunito;
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #f7941e;
    width: 100%;
    display: block;
}
.yp-cancel-btn {
    padding: 5px 0;
    min-width: 65px;
    background: transparent url(../static/images/line-pop.png) repeat-x bottom;
    background-size: auto 6px;
}
.yp-modal-inline-btns {
    gap: 15px;
}

.checkbox-field label .text {
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 1.25;
    display: inline-block;
}
.checkbox-field label .text a {
    color: var(--blueLight);
}
.checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.checkbox-field label input#check_confirm {
    margin: 3px;
    cursor: pointer;
}

.checkbox-field {
    display: inline-block;
    width: 100%;
    padding: 12px 0 28px 0;
}

.checkbox-field label input:before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--orange);
    position: absolute;
    border: 1px solid var(--white);
    border-radius: 2px;
    top: 1px;
    left: 0;
}

.checkbox-field label input:checked:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 5px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(-45deg);
    top: 6px;
    left: 4px;
}

.white {
    color: #fff;
}
.sticy-quizbtn {
    width: 79px;
    height: 79px;
    position: fixed;
    right: 15px;
    bottom: 50px;
    padding: 3px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background: linear-gradient(
        to right,
        #ff671f,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #ff671f
    );
    border: 3px solid #e6e7e8;
    font-family: var(--paytone);
    font-size: 17.3px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    z-index: 9;
}

.quiz-btn-in {
    background: linear-gradient(
        to bottom,
        #ffffff,
        #ffffffb8,
        #ffffff5e,
        #00000000,
        #00000000,
        #00000000
    );
    border-radius: 50px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-controller-btns {
    position: fixed;
    right: 15px;
    bottom: 50px;
    display: flex;
    gap: 5px;
    z-index: 9;
}
.audio-control-btn {
    width: 79px;
    height: 79px;
    padding: 3px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background: linear-gradient(
        to right,
        #ff671f,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #fe9c0a,
        #ff671f
    );
    border: 3px solid #e6e7e8;
    font-family: var(--paytone);
    font-size: 17.3px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
}
.audio-control-btn-in {
    background: linear-gradient(
        to bottom,
        #ffffff,
        #ffffffb8,
        #ffffff5e,
        #00000000,
        #00000000,
        #00000000
    );
    border-radius: 50px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.audio-control-btn img {
    width: 36px;
}

.ypgpt-banner {
    background-image: url("../images/gpt/yp-gpt-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 3.15 / 1;
    width: 100%;
    min-height: 300px;
}
.ypgpt-area-in {
    max-width: 854px;
    margin: auto;
}
.ypgpt-ques-cta {
    border-radius: 10px;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
    background-color: #1cbbb4;
    background-image: url("../images/gpt/icon-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 20px;
}
.search-block-group {
    background-color: #fff;
    display: flex;
    gap: 10px;
    border-radius: 35px;
}
.search-block-group input {
    padding: 10px 15px 10px 35px;
    height: 56px;
    border: 2px solid #fff;
    width: 100%;
    border-radius: 35px;
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}
.search-block-group input::placeholder {
    color: #6b6b84;
}
.search-submit-btn {
    border-radius: 35px;
    border: solid 2px #fff;
    background-color: #f7941e;
    display: block;
    padding: 15px;
    width: 122px;
    height: 56px;
}
.search-submit-btn:not(.active) {
    opacity: 0.5;
}
.ypgpt-ques-cta-in h2 {
    font-weight: 900;
    color: #fff;
    /* max-width: 500px; */
    margin-left: auto;
    margin-right: auto;
}
.search-hints {
    padding: 32px 0px;
}
.search-hint-list ul {
    padding: 0;
    margin-bottom: 20px;
}
.search-hint-list ul li {
    padding: 8px;
}
.search-hint-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.search-hint-list ul li a {
    padding: 13px 25px;
    border-radius: 180px;
    border: solid 1px #e5e5e5;
    background-color: #fff;
    text-decoration: none;
    font-size: 16px;
    color: #1a1a1a !important;
    display: block;
    cursor: pointer;
}
.yt-faq {
    padding: 24px 22px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 34px 34px 66px 0 rgba(0, 0, 0, 0.04);
    background-color: #fff;
}
.yt-faq h2 {
    font-size: 25px;
    font-weight: normal;
    line-height: normal;
    color: #1a1a1a;
}

.explore-cat-list ul {
    display: inline-flex;
    white-space: nowrap;
    overflow: auto;
    padding-left: 0;
    max-width: 100%;
    padding-bottom: 16px;
}
.explore-cat-list li {
    display: inline-block;
    padding: 4px;
}
.explore-cat-list li a {
    padding: 12px 28px;
    border-radius: 50px;
    background-color: #fff;
    color: #f7941e;
    font-size: 16px;
    font-weight: 600;
    display: block;
    line-height: 24px;
    border: 1px solid rgb(247 148 30 / 50%);
    text-decoration: none;
}
.explore-cat-list li a.active {
    background-color: #f7941e;
    color: #fff;
    font-weight: 800;
}
.explore-cat-list ul::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.explore-cat-list ul::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    border-radius: 5px;
    background-color: #d9d9d9;
}
.explore-cat-list ul::-webkit-scrollbar-thumb {
    background-color: #f79238 !important;
    outline: 0px solid #f79238;
    height: 5px;
    border-radius: 5px;
}
.explore-cat-list .all-cat {
    order: -2;
}
.explore-cat-list li.active {
    order: -1;
}
.ytfaq-accordion {
    padding-top: 24px;
}
.ytfaq-accordion .accordion-item {
    border-radius: 5px;
    border: solid 1px #d7d7d7;
    background-color: #fff;
    overflow: hidden;
}
.ytfaq-accordion .accordion-item:not(:last-child) {
    margin-bottom: 16px;
}
.ytfaq-accordion .accordion-button {
    color: #1a1a1a;
    font-size: 18px;
    padding: 16px 25px;
    line-height: 1.5;
}
.ytfaq-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    box-shadow: none;
}
.ytfaq-accordion .accordion-body {
    padding: 0 25px 15px;
}
.accordion-button::after {
    background: url("../images/gpt/orange-down-arrow.svg") no-repeat center;
}
.accordion-button:not(.collapsed)::after {
    background: url("../images/gpt/orange-down-arrow.svg") no-repeat center;
}
.ypgpt-search-result-block {
    padding: 40px 0;
}
.new-chat {
    padding: 32px 0 50px;
}
.yp-btn.yp-btn-small.newchat-btn .yp-btn-in {
    font-size: 22px;
    line-height: 1.4;
}
.ypgpt-chatbox {
    border-radius: 10px;
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.16);
    background-color: #1cbbb4;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 20px;
}

.share-list-popup {
    position: absolute;
    right: -10px;
    background: #fff;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    top: 50px;
    z-index: 2;
}
.share-list-popup:not(.show) {
    display: none;
}
.share-list-popup ul {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 12px;
    list-style: none;
}
.share-list-pop {
    position: relative;
}
/* .share-list-popup:before {
    content: "";
    position: absolute;
    border-bottom: 10px solid #ffffff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    top: -9px;
    right: 20px;
    z-index: 2;
}
.share-list-popup:after {
    content: "";
    position: absolute;
    border-bottom: 10px solid rgba(0, 0, 0, 0.05);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    top: -10px;
    right: 19px;
    z-index: 1;
} */
.share-list-popup ul li a img {
    width: 29px;
}
.chat-item-header {
    display: flex;
    gap: 15px;
}
.chat-item-head-ques {
    background: url("../images/gpt/search.svg") no-repeat top 6px left 0;
    padding: 10px 5px 8px 35px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    width: 100%;
    color: #1a1a1a;
}
.ypgpt-chatbox .chat-item-head-ques {
    background: url("../images/gpt/search-white.svg") no-repeat top 6px left 0;
    border-bottom: 1px solid #fff;
}
.share-chat {
    width: 50px;
    position: relative;
}
.share-chat-btn {
    background: transparent;
    border: none;
    margin-top: 5px;
}
.chat-item-body {
    padding: 20px 0;
    color: #1a1a1a;
}
.chat-item-body-in {
    background: url("../images/gpt/star-ans.svg") no-repeat top left;
    padding: 0px 15px 0px 52px;
    font-size: 16px;
    line-height: 1.65;
    color: #1a1a1a;
}
.chat-list {
    max-height: calc(100vh - 350px);
    min-height: 200px;
    overflow-y: auto;
    padding: 0 15px;
}
.chat-list::-webkit-scrollbar {
    width: 8px;
    padding: 4px 2px;
}
/* Track */
.chat-list::-webkit-scrollbar-track {
    background: #d9d9d9;
}

/* Handle */
.chat-list::-webkit-scrollbar-thumb {
    background: #f79238;
    border-radius: 10px;
    border-width: 4px 2px 4px 2px;
    border-style: solid;
    border-color: #d9d9d9;
}
.ypgpt-chatbox .chat-item-head-ques,
.ypgpt-chatbox .chat-item-body,
.ypgpt-chatbox .chat-item-body-in,
.ypgpt-chatbox .chat-item-body-in p,
.ypgpt-chatbox .chat-item-body-in ul {
    color: #fff;
}
.chat-item-body-in p {
    margin-bottom: 5px;
}
.chat-item-body-in ol,
.chat-item-body-in ul {
    padding-left: 25px;
    margin-bottom: 5px;
}
.chat-item-body-in ol li {
    list-style: decimal;
}
.chat-item-body-in ul li {
    list-style: disc;
}
.chat-result-card {
    box-shadow: 34px 34px 66px 0 rgba(0, 0, 0, 0.04);
}
.like {
    background: transparent;
}
.dislike {
    background: transparent;
}
.like-button svg *,
.dislike-button svg * {
    fill: #fff;
}
.ypgpt-result .like-button svg *,
.ypgpt-result .dislike-button svg * {
    fill: #1a1a1a;
}
.like-button.active svg *,
.dislike-button.active svg * {
    fill: var(--orange);
}
.text-sm p,
.text-sm {
    font-size: 14px;
}
.section-heading h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: normal;
    color: #1a1a1a;
    margin-bottom: 40px;
}
.ai-ques-list-in {
    gap: 10px 20px;
    padding: 18px 24px;
    border-radius: 12px;
    border: solid 4px rgba(247, 148, 30, 0.12);
    background-color: #fff;
}
.ques-icon img {
    width: 50px;
    min-width: 50px;
}
.question-title-meta {
    width: 100%;
}
.ques-title h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    line-height: 1.2;
}
.question-title-meta .date-time {
    gap: 10px 20px;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #1a1a1a;
}
.ai-ques-list-in .arrow-right {
    min-width: 22px;
    padding-top: 8px;
}
.ai-ques-item {
    padding: 8px 0;
}
.meta-icon {
    display: flex;
    align-items: center;
}
.date-time .date,
.date-time .time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blur-background {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ffffffa2;
    z-index: 9999;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
    display: inline-block;
}
.loader::before,
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid rgb(247 146 56 / 80%);
    animation: prixClipFix 2s linear infinite;
}
.loader::after {
    inset: 8px;
    transform: rotate3d(90, 90, 0, 180deg);
    border-color: #f79238;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }
    75%,
    100% {
        clip-path: polygon(
            50% 50%,
            0 0,
            100% 0,
            100% 100%,
            100% 100%,
            100% 100%
        );
    }
}
.profile-info .nav-pills .nav-link svg {
    margin-right: 9px;
}
.profile-info .nav-pills .nav-link.active svg * {
    fill: #ffffff;
    stroke: #ffffff;
}
.ypgpt-result,
.ai-question-list {
    padding-left: 24px;
}

.pointer {
    cursor: pointer !important;
}

.no-decoration {
    text-decoration: none !important;
}
.ai-question-list a {
    text-decoration: none;
}
.popup-form {
    max-width: 400px;
    margin: auto;
}
.popup-form label {
    margin-bottom: 5px;
    color: var(--orange);
}
.popup-form .form-control {
    padding: 10px 15px;
}
.resend-otp-text {
    color: #767676;
    font-size: 14px;
    margin-top: 15px;
}
.resend-otp-text a {
    font-weight: 600;
    color: var(--orange) !important;
    text-decoration: none !important;
    cursor: pointer;
}
.confirmation-btns a,
.stay-logged-out {
    cursor: pointer;
}
.yippee-modal-content h3 {
    color: var(--orange);
}
.yippee-modal-content p {
    color: var(--black);
}
.popup-form2 label {
    color: #868686;
    font-size: 14px;
}
.popup-form2 .form-group {
    padding: 8px;
}
.popup-form2 .form-control {
    font-size: 15px;
    border-radius: 3px;
}
.text {
    color: #777;
    text-align: left !important;
}
.text a {
    color: var(--orange);
}
#myQuestion h3 {
    color: white;
}
.yippee-slide-title h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.15;
    color: var(--dark);
    margin-top: 12px;
}
.yippee-slide-img {
    width: 100%;
    padding-bottom: 67%;
    position: relative;
    border-radius: 45px;
    overflow: hidden;
    background-color: #f6f6f6;
    border: 5px solid transparent;
    transition: border, 1s;
}
.yippee-slide-img:hover {
    border-color: var(--orange);
}
.yippee-slide-img .blog-article-img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
.yippee-slide-img .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yippee-slide-img .icon img {
    max-width: 65px !important;
    width: 100%;
    transform: scale(0);
    transition: transform, 1s;
}
.yippee-slide-img:hover .icon img {
    transform: scale(1);
}
#yippee-blog-slider .owl-dots {
    text-align: center;
}
#yippee-blog-slider .owl-dots button.owl-dot span {
    background: #000;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 5px rgba(247, 148, 30, 0.16);
    height: 8px;
    width: 8px;
    display: block;
    opacity: 0.2;
    margin: 6px;
}
#yippee-blog-slider .owl-dots button.owl-dot.active span {
    background: var(--orange);
    /* border: 5px solid rgba(247, 148, 30, 0.16); */
    border-radius: 10px;
    box-shadow: 0px 0px 0px 5px rgba(247, 148, 30, 0.16);
    opacity: 1;
}
#yippee-blog-slider .owl-nav button {
    background: url("../static/images/arrow-icon.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 60px;
    margin: auto;
    height: 42px;
    width: 42px;
}
#yippee-blog-slider .owl-nav button.owl-prev {
    transform: rotate(180deg);
    left: -50px;
}
#yippee-blog-slider .owl-nav button.owl-next {
    right: -50px;
}
.yippee-blog-carousel {
    padding-top: 30px;
}
.yippee-blog-carousel h2 {
    font-weight: bold;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 25px;
}
.fixed-btm-nav {
    position: fixed;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    left: 0;
    background-color: #fff;
}
.myaccount-btn,
.myaccount-btn:hover,
.myaccount-btn:focus,
.myaccount-btn:active {
    background: #f79238 !important;
    width: 100%;
    border-radius: 0 !important;
    color: #ffff !important;
    font-size: 16px;
    outline: none !important;
    box-shadow: 0px -3px 20px rgba(0, 0, 0, 0.05) !important;
    border: none;
    padding: 10px;
}

.myaccount-btn span {
    position: relative;
    padding-right: 15px;
    font-family: "Source Sans Pro", sans-serif;
}
.myaccount-btn span:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-135deg);
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 0;
    margin: auto;
    transition: all ease-in-out 500ms;
}
.myaccount-btn img {
    width: 22px;
    margin-right: 5px;
}
.myaccount-menu-wrapper {
    width: 100% !important;
}
.myaccount-menu-wrapper > ul {
    margin: 15px 0;
    padding-left: 0;
}
.myaccount-menu-wrapper > ul > li {
    margin: 3px 0;
    display: inline-block;
    width: 100%;
    border-radius: 5px;
}
.myaccount-menu-wrapper ul li {
    border: solid 1px #e5e5e5;
}
.myaccount-menu-wrapper ul li a {
    background-color: #f5f5f5;
    font-size: 15px;
    font-weight: normal;
    color: #131313;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    transition: all ease-in-out 350ms;
    text-decoration: none;
}
.myaccount-menu-wrapper ul li a .icon-circle {
    height: 20px;
    width: 20px;
    background-color: #000000;
    border-radius: 50%;
    margin-right: 6px;
    text-align: center;
    transition: all ease-in-out 350ms;
    display: flex;
    align-items: center;
    justify-content: center;
}
.myaccount-menu-wrapper ul li a .icon-circle img {
    transition: all ease-in-out 350ms;
}
.myaccount-menu-wrapper .cat-circle-image {
    width: 12px;
}
.myaccount-menu-wrapper ul li:hover > a,
.myaccount-menu-wrapper ul li.active > a {
    background-color: #949494;
    color: #fff;
    text-decoration: none;
    transition: all ease-in-out 350ms;
}
.myaccount-menu-wrapper ul li:hover > a .icon-circle,
.myaccount-menu-wrapper ul li.active > a .icon-circle {
    background-color: #fff;
    transition: all ease-in-out 350ms;
}
.myaccount-menu-wrapper ul li:hover > a .icon-circle img,
.myaccount-menu-wrapper ul li.active > a .icon-circle img {
    filter: brightness(0.35);
}
.myaccount-btn.active span:after {
    transform: rotate(45deg);
    top: 0;
}
.react-btns {
    padding-left: 52px;
}

@media (max-width: 1024px) {
    .ypgpt-ques-cta-in h2 {
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .yippee-slide-title h3 {
        font-size: 20px;
        line-height: 1.4;
    }
    #yippee-blog-slider .owl-nav button {
        height: 32px;
        width: 32px;
    }
    #yippee-blog-slider .owl-nav button.owl-prev {
        left: -32px;
    }
    #yippee-blog-slider .owl-nav button.owl-next {
        right: -32px;
    }
}

@media (max-width: 767px) {
    .ypgpt-ques-cta-in h2 {
        max-width: 400px;
    }
    #myQuestion h3 {
        color: #1a1a1a;
        margin-bottom: 20px;
    }
    .profile-info .nav-pills .nav-link svg {
        display: none;
    }
    .ai-ques-list-in {
        gap: 5px 14px;
        padding: 12px 17px;
    }
    .ques-icon img {
        width: 42px;
        min-width: 42px;
    }
    .ques-title h4 {
        font-size: 16px;
    }
    .question-title-meta .date-time {
        font-size: 12px;
    }
    .ai-ques-list-in .arrow-right {
        min-width: 12px;
    }
    .ypgpt-result,
    .ai-question-list {
        padding-left: 0;
    }
    .ai-ques-item {
        padding: 6px 0;
    }
    .chat-item-body-in {
        font-size: 14px;
    }
    .yippee-slide-img {
        border-radius: 30px;
    }
    .yippee-slide-img .icon img {
        max-width: 40px;
    }
    .search-hint-list ul li a {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
    }
    .search-hint-list ul li {
        padding: 5px;
    }
}
.yippee-slide-img:before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background-color: var(--orange);
    opacity: 0;
    border-radius: 35px;
    z-index: 2 !important;
}
.yippee-slide-img:hover:before {
    opacity: 0.6;
}
