* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primaryColor: #f68d2e;
    --secondaryColor: #0d0d0d;
}

body, 
html {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #fff;
}

h1,h2,h3,h4,h5,h6 {
    margin-bottom: 0;
}

img{
    width: 100%;
    height: auto;
}

ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

textarea::placeholder {
    font-size: 14px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
}

.error-text, #errorMsg {
    color: red;
}

.header .navbar {
    border: none;
}

.navbar-toggler{
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Topbar Header*/
.topbar-header {
    font-size: 11px;
    font-weight: 500;
    padding: 11px 0;
    display: flex;
    justify-content: center;
    background-color: #000;
}

.topbar-header .tobpar-header-badge {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 100vw;
}

.topbar-header .tobpar-header-badge a{
    color: #000;
    white-space: nowrap;
}

.topbar-header .tobpar-header-badge a:hover,
.topbar-header .topbar-header-text a:hover{
    text-decoration: underline;
}

.topbar-header .topbar-header-icon {
    margin-right: 5px;
    display: flex;
    align-items: center;
}

.topbar-header .topbar-header-text {
    display: flex;
    align-items: center;
}

.topbar-header .topbar-header-text a{
    color: #fff;
}

/* Navbar */
.navbar .navbar-nav {
    gap: 30px;
    padding-right: 100px;
}

.navbar .navbar-nav li .nav-link,
.navbar .navbar-nav li .nav-link:hover{
    color: var(--secondaryColor);
    font-size: 1rem;
}

.navbar .navbar-nav li .nav-link {
    position: relative;
}

.navbar .navbar-nav li .nav-link:hover {
    border-bottom: 1px solid var(--secondaryColor);
}

.navbar .navbar-collapse .action-btn,
.navbar .navbar-collapse .book-session-btn,
.first-step .quizscreen-body .img-btn button,
.second-step .quizscreen-body .img-btn button,
.third-step .quizscreen-body .img-btn button,
.sixth-step .quizscreen-body .img-btn button,
.eight-step .quizscreen-body .img-btn button,
.quizscreen-body .next-btn,
.ninth-step .quizscreen-body .receive-estimate-btn {
    display: inline-block;
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    color: #fff;
    line-height: 20px;
    padding: 15px 40px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
}


.navbar .navbar-collapse .book-session-btn {
    padding: 8px 30px;
    font-size: 12px;
}

.navbar .navbar-collapse .action-btn:hover,
.navbar .navbar-collapse .book-session-btn:hover
.navbar .navbar-collapse .book-session-btn:hover,
.first-step .quizscreen-body .img-btn button:hover,
.second-step .quizscreen-body .img-btn button:hover,
.third-step .quizscreen-body .img-btn button:hover,
.eight-step .quizscreen-body .img-btn button:hover,
.quizscreen-body .next-btn:hover,
.ninth-step .quizscreen-body .receive-estimate-btn:hover{
    background-color: #797877;
    border-color: #797877;
}


/* Section Quiz*/
.quiz-app {
    margin-top: 180px;
}

.quiz-app .quiz-content {
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.quiz-app .quiz-content h1 {
    font-weight: 800;
    font-size: 50px;
    line-height: 1.1956521739;
    color: var(--secondaryColor);
}

.quiz-app .quiz-content h1 span {
    font-style: italic;
}

.quiz-app .quiz-content .quiz-subtitle {
    font-weight: 400;
    font-size: 46px;
    line-height: 1.1956521739;
    color: var(--secondaryColor);
}

.quiz-app .quiz-content .quiz-text {
    max-width: 590px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 18px;
}

.quiz-app .quiz-content .quiz-btn {
    display: inline-block;
    margin: 20px 0;
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: #fff;
    line-height: 20px;
    padding: 15px 60px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}

.quiz-app .quiz-content .quiz-btn:hover {
    background-color: #c16827;
    border-color: #c16827;
}

.quiz-app .quiz-content .quiz-meeting{
    max-width: 400px;
    width: 100%;
    font-size: 14px;
    line-height: 1.4285714286;
    text-align: center;
}

.quiz-app .quiz-content .quiz-meeting .quiz-meeting-text{
    color: #757575;
    font-size: 16px;
}

.quiz-app .quiz-content .quiz-meeting .quiz-meeting-action a{
    color: var(--secondaryColor);
    font-weight: bold;
    position: relative;
}

.quiz-app .quiz-content .quiz-meeting .quiz-meeting-action a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background: #000;
    height: 1px;
    transition: width 0.25s;
}

.quiz-app .quiz-content .quiz-meeting .quiz-meeting-action a:hover::after {
    width: 100%;
}



.quiz-app .quiz-imgs .quiz-img1 {
    position: absolute;
    top: 360px;
    left: 0;
    width: 380px;
}

.quiz-app .quiz-imgs .quiz-img2 {
    position: absolute;
    top: 360px;
    right: 0;
    width: 380px;
}


/* Dropdowns */
.navbar-nav .dropdown {
    position: static;
}

.navbar-nav .dropdown .dropdown-menu{
    display: none ;
    border-top: 1px solid #d1cbcb;
    border-bottom: 1px solid #d1cbcb;
    background-clip: padding-box;
    background-color: #fff;
    box-shadow: 0px 10px 50px rgb(0 0 0 / 10%);
    padding: 30px;
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    transition: all 0.3s;
}

.navbar-nav .dropdown:hover .dropdown-menu.first-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.navbar-nav .dropdown:hover .dropdown-menu.second-dropdown,
.navbar-nav .dropdown:hover .dropdown-menu.third-dropdown,
.navbar-nav .dropdown:hover .dropdown-menu.fourth-dropdown {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-nav .dropdown:hover .dropdown-menu .list3,
.navbar-nav .dropdown:hover .dropdown-menu.fourth-dropdown .list2 {
    margin-top: 35px;
}

.navbar-nav .dropdown:hover .dropdown-menu li .image .list3-lazyLoaded {
    height: 140px;
    border: 1px solid #000;
}

.navbar-nav .dropdown:hover .dropdown-menu .animation,
.navbar-nav .dropdown:hover .dropdown-menu .live-action,
.navbar-nav .dropdown:hover .dropdown-menu .solutions,
.navbar-nav .dropdown:hover .dropdown-menu .video-production,
.navbar-nav .dropdown:hover .dropdown-menu .free-strategy-session,
.navbar-nav .dropdown:hover .dropdown-menu .about,
.navbar-nav .dropdown:hover .dropdown-menu .video-apps {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-nav .nav-item .dropdown-menu li .image {
    margin-right: 15px;
    
}

.navbar-nav .nav-item .dropdown-menu li .image img{
    width: 130px;
    height: 80px;
    border-radius: 10px;
}

.navbar-nav .nav-item .dropdown-menu li .image-content span {
    color: #919191 !important;
}

.navbar-nav .nav-item .dropdown-menu li .image-content a {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: var(--secondaryColor);
}

.navbar-nav .nav-item .dropdown-menu li .image-content p,
.navbar-nav .dropdown .dropdown-menu.second-dropdown .dropdown-end p,
.navbar-nav .dropdown .dropdown-menu.third-dropdown .dropdown-end p,
.navbar-nav .dropdown .dropdown-menu.fourth-dropdown .dropdown-end p {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3076923077;
    color: #2A2A2A;
}

.navbar-nav .dropdown .dropdown-menu.second-dropdown .dropdown-end span svg,
.navbar-nav .dropdown .dropdown-menu.third-dropdown .dropdown-end span svg,
.navbar-nav .dropdown .dropdown-menu.fourth-dropdown .dropdown-end span svg {
    color: var(--primaryColor);
    fill: currentColor
}

.navbar-nav .nav-item .dropdown-menu li .image-content a:hover {
    color: var(--primaryColor);
    background: transparent;
}



/* Quiz App */
.section {
    display: none;
}

.section.visible {
display: block;
}

.quizscreen-row {
    max-width: 950px;
}

.section .quizscreen-body {
    padding-bottom: 30px;
}

.seventh-step .quizscreen-body .quizscreen-row {
    width: 500px;
}

.third-step .quizscreen-body .quizscreen-row {
    width: 750px;
    margin-top: 50px;
}

.third-step .quizscreen-body .quizscreen-row2 {
    width: 470px;
    margin-top: 50px;
}

.fifth-step .quizscreen-body .quizscreen-slider-row {
    width: 850px;
    margin-top: 70px;
}

.ninth-step .quizscreen-body form {
    width: 750px;
}

.ninth-step .quizscreen-checkbox .quizscreen-checkbox-label {
    display: inline-flex;
    cursor: pointer;
}

.quizscreen-checkbox .quizscreen-checkbox-label:checked,
.quizscreen-checkbox .quizscreen-checkbox-label:active,
.quizscreen-checkbox .quizscreen-checkbox-label:focus-within,
.quizscreen-checkbox .quizscreen-checkbox-label:visited {
    background-color: #FFF4E8;
    border-radius: 8px;
    padding: 10px
}

@media (max-width: 991px) {
    .ninth-step .quizscreen-body form {
        width: 100%;
    }
}

.ninth-step .quizscreen-body form textarea {
    display: block;
    width: 100%;
    border: 1px solid #0d0d0d;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 22px;
    height: 120px;
    resize: none;
}

.ninth-step .quizscreen-body .row label{
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.375;
    color: #0d0d0d;
}

.ninth-step .receive-estimate-btn:disabled {
    background-color: #e3e3e3;
    border-color: #e3e3e3;
}

.first-step,
.second-step,
.third-step,
.fourth-step,
.fifth-step,
.sixth-step,
.seventh-step,
.eight-step,
.ninth-step {
    margin-top: 150px;
}

.first-step .quizscreen-head,
.second-step .quizscreen-head,
.third-step .quizscreen-head,
.fourth-step .quizscreen-head,
.fifth-step .quizscreen-head,
.sixth-step .quizscreen-head,
.seventh-step .quizscreen-head,
.eight-step .quizscreen-head,
.ninth-step .quizscreen-head {
    text-align: center;
    position: relative;
}

.quizscreen-head .quizscreen-back-container {    
    position: fixed;
    left: 0;
    right: 0;
    height: 30px;
    display: flex;
    align-items: center;
    max-width: 1270px;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 65px;
    padding-right: 20px;
    width: 100%;
    text-align: left;
}

@media (max-width: 991px) {
    .quizscreen-head .quizscreen-back-container {
        position: absolute;
        padding: 0;
        width: auto;
    }
}


.quizscreen-back-container .quizscreen-back {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3888888889;
    color: var(--secondaryColor);
    text-decoration: none;
    border: none;
    outline: none;
    background-color: transparent;
}

.first-step .quizscreen-head .quizscreen-steps,
.second-step .quizscreen-head .quizscreen-steps,
.third-step .quizscreen-head .quizscreen-steps,
.fourth-step .quizscreen-head .quizscreen-steps,
.fifth-step .quizscreen-head .quizscreen-steps,
.sixth-step .quizscreen-head .quizscreen-steps,
.seventh-step .quizscreen-head .quizscreen-steps,
.eight-step .quizscreen-head .quizscreen-steps,
.ninth-step .quizscreen-head .quizscreen-steps {
    margin-bottom: 32px;
}

.first-step .quizscreen-head .quizscreen-steps .quizscreen-counter,
.second-step .quizscreen-head .quizscreen-steps .quizscreen-counter,
.third-step .quizscreen-head .quizscreen-steps .quizscreen-counter,
.fourth-step .quizscreen-head .quizscreen-steps .quizscreen-counter,
.fifth-step .quizscreen-head .quizscreen-steps .quizscreen-counter,
.sixth-step .quizscreen-head .quizscreen-steps .quizscreen-counter,
.seventh-step .quizscreen-head .quizscreen-steps .quizscreen-counter,
.eight-step .quizscreen-head .quizscreen-steps .quizscreen-counter,
.ninth-step .quizscreen-head .quizscreen-steps .quizscreen-counter {
    display: inline-block;
    padding: 5px;
    border: 1px solid #000;
    border-radius: 9px;
    min-width: 53px;
    line-height: 18px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.first-step .quizscreen-head .quizscreen-steps .quizscreen-progress,
.second-step .quizscreen-head .quizscreen-steps .quizscreen-progress,
.third-step .quizscreen-head .quizscreen-steps .quizscreen-progress,
.fourth-step .quizscreen-head .quizscreen-steps .quizscreen-progress,
.fifth-step .quizscreen-head .quizscreen-steps .quizscreen-progress,
.sixth-step .quizscreen-head .quizscreen-steps .quizscreen-progress,
.seventh-step .quizscreen-head .quizscreen-steps .quizscreen-progress,
.eight-step .quizscreen-head .quizscreen-steps .quizscreen-progress,
.ninth-step .quizscreen-head .quizscreen-steps .quizscreen-progress {
    position: relative;
    height: 4px;
    width: 280px;
    background-color: #eee;
    margin: 20px auto 0;
}

.first-step .quizscreen-head .quizscreen-steps .quizscreen-progress span,
.second-step .quizscreen-head .quizscreen-steps .quizscreen-progress span, 
.third-step .quizscreen-head .quizscreen-steps .quizscreen-progress span, 
.fourth-step .quizscreen-head .quizscreen-steps .quizscreen-progress span,
.fifth-step .quizscreen-head .quizscreen-steps .quizscreen-progress span,
.sixth-step .quizscreen-head .quizscreen-steps .quizscreen-progress span, 
.seventh-step .quizscreen-head .quizscreen-steps .quizscreen-progress span,
.eight-step .quizscreen-head .quizscreen-steps .quizscreen-progress span, 
.ninth-step .quizscreen-head .quizscreen-steps .quizscreen-progress span { 
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #f68d2e;
}

.first-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 11.1111%;
}

.second-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 22.2222%;
}

.third-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 33.3333%;
}

.fourth-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 44.4444%;
}

.fifth-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 55.5555%;
}

.sixth-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 66.6666%;
}

.seventh-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 77.7777%;
}

.eight-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 88.8888%;
}

.ninth-step .quizscreen-head .quizscreen-steps .quizscreen-progress span {
    width: 99.9999%;
}

.first-step .quizscreen-head .quizscreen-title,
.second-step .quizscreen-head .quizscreen-title,
.third-step .quizscreen-head .quizscreen-title,
.fourth-step .quizscreen-head .quizscreen-title,
.fifth-step .quizscreen-head .quizscreen-title,
.sixth-step .quizscreen-head .quizscreen-title,
.seventh-step .quizscreen-head .quizscreen-title,
.eight-step .quizscreen-head .quizscreen-title,
.ninth-step .quizscreen-head .quizscreen-title {
    font-weight: 800;
    font-size: 46px;
    line-height: 1.1956521739;
    color: var(--secondaryColor);
}

.first-step .quizscreen-head .quizscreen-text,
.second-step .quizscreen-head .quizscreen-text,
.third-step .quizscreen-head .quizscreen-text,
.fourth-step .quizscreen-head .quizscreen-text,
.fifth-step .quizscreen-head .quizscreen-text,
.sixth-step .quizscreen-head .quizscreen-text,
.seventh-step .quizscreen-head .quizscreen-text,
.eight-step .quizscreen-head .quizscreen-text {
    font-size: 18px;
    max-width: 600px;
    width: 100%;
    margin: 25px auto 0;
}

.first-step .quizscreen-body .card-wrapper,
.second-step .quizscreen-body .card-wrapper,
.third-step .quizscreen-body .card-wrapper,
.sixth-step .quizscreen-body .card-wrapper,
.eight-step .quizscreen-body .card-wrapper {
    max-width: 265px;
    width: 100%;
    margin: 25px auto;
    
}

.quizscreen-body .card-wrapper p {
    color:#0d0d0d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4285714286;
}

.first-step .quizscreen-body .card-wrapper .img-wrapper,
.second-step .quizscreen-body .card-wrapper .img-wrapper,
.third-step .quizscreen-body .card-wrapper .img-wrapper,
.sixth-step .quizscreen-body .card-wrapper .img-wrapper,
.eight-step .quizscreen-body .card-wrapper .img-wrapper {
    overflow: hidden;
    position: relative;
    height: 160px;
    cursor: pointer;
    border-radius: 10px;
}

.first-step .quizscreen-body .card-wrapper .img-btn,
.first-step .quizscreen-body .card-wrapper .img-btn button,
.second-step .quizscreen-body .card-wrapper .img-btn,
.second-step .quizscreen-body .card-wrapper .img-btn button,
.third-step .quizscreen-body .card-wrapper .img-btn,
.third-step .quizscreen-body .card-wrapper .img-btn button,
.sixth-step .quizscreen-body .card-wrapper .img-btn,
.sixth-step .quizscreen-body .card-wrapper .img-btn button,
.eight-step .quizscreen-body .card-wrapper .img-btn,
.eight-step .quizscreen-body .card-wrapper .img-btn button {
    width: 100%;
    margin-top: 7px;
}

.first-step .quizscreen-body .card-wrapper .img-wrapper img,
.second-step .quizscreen-body .card-wrapper .img-wrapper img,
.third-step .quizscreen-body .card-wrapper .img-wrapper img,
.sixth-step .quizscreen-body .card-wrapper .img-wrapper img,
.eight-step .quizscreen-body .card-wrapper .img-wrapper img {
    width: 100%;
    height: 100%;
}

.first-step .quizscreen-body .card-wrapper:hover .img-wrapper img,
.second-step .quizscreen-body .card-wrapper:hover .img-wrapper img,
.third-step .quizscreen-body .card-wrapper:hover .img-wrapper img,
.sixth-step .quizscreen-body .card-wrapper:hover .img-wrapper img,
.eight-step .quizscreen-body .card-wrapper:hover .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.25s;
    border-radius: 10px;
}

.first-step .quizscreen-body .card-wrapper:hover .img-btn button,
.second-step .quizscreen-body .card-wrapper:hover .img-btn button,
.third-step .quizscreen-body .card-wrapper:hover .img-btn button,
.sixth-step .quizscreen-body .card-wrapper:hover .img-btn button,
.eight-step .quizscreen-body .card-wrapper:hover .img-btn button {
    background-color: #797877;
    border-color: #797877;
}

.first-step .quizscreen-body .card-wrapper p,
.second-step .quizscreen-body .card-wrapper p,
.third-step .quizscreen-body .card-wrapper p {
    font-size: 16px;
    margin-top: 1rem;
    text-align: center;
}


/* quizscreen-slider Buttons */

.quizscreen-slider .quizscreen-slider-btn,
.slider-container .quizscreen-slider-btn,
.slider-container .slider-selected-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 55px;
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 21px;
    font-weight: 500;
    white-space: nowrap;
}

.quizscreen-body .next-btn {
    padding: 15px 90px;
}


/* fourth-step */
.fourth-step .quizscreen-body .quizscreen-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: -30px -17px 0;
}

.fourth-step .quizscreen-body .quizscreen-socials .quizscreen-social{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 25px;
    padding: 0 17px;
    flex: 0 0 auto;
}

.quizscreen-socials .quizscreen-social label{
    cursor: pointer;
    display: block;
    width: 98px;
}

.quizscreen-socials .quizscreen-social label .quizscreen-social-img img{
    display: block;
    width: 100px;
    height: 100px;
    border: 10px solid #fff;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px 15px rgba(0, 0, 0, 0.05);
}

.quizscreen-socials .quizscreen-social label p{
    margin-top: 18px;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    color: #000;
}

.quizscreen-socials .quizscreen-social label .quizscreen-social-checkbox{
    margin-top: 18px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-color: #eee;
    border: 9px solid #eee;
    cursor: pointer;
    position: relative;
}

.quizscreen-socials .quizscreen-social label .quizscreen-social-checkbox::before{
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -7px;
    margin-left: -7px;
    border-radius: 50%;
    background-color: #000;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.3s;
    opacity: 0;
}

.quizscreen-socials .quizscreen-social label .quizscreen-social-checkbox:checked::before {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

/*  */
.quizscreen-body .quizscreen-form-input{
    display: block;
    width: 100%;
    border: 1px solid #0d0d0d;
    padding: 20px 20px;
    border-radius: 9px;
    font: inherit;
    font-size: 16px;
    line-height: 22px;
}

/* //////////////////////////////// */

.slider-container {
    position: relative;
}

.slider-container .my-progress{
    width: 75%;
    text-align: center;
    padding: 15px 0;
    background-color: #EEEEEE;
    border-radius: 8px;
}

.slider-container .my-progress input[type='range'] {
    width: 87%;
    height: 10px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    background-color: var(--primaryColor);
    appearance: none
}

/* input[type='range']::-webkit-slider-runnable-track {
    background-color: var(--primaryColor) !important;
  } */
  
  /* input[type='range']::-moz-range-track {
    background-color: var(--primaryColor) !important;
  } */
  
  /* input[type='range']::-ms-fill-lower {
    background-color: var(--primaryColor) !important;
  } */

/* Styling the thumb or the "moved circle" inside the input range */
input[type="range"]::-webkit-slider-thumb {
    background-color: #000;
    border: none;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    cursor: pointer;
    appearance: none;
}

input[type="range"]::-moz-range-thumb {
background-color: #000;
border: none;
border-radius: 50%;
width: 17px;
height: 17px;
cursor: pointer;
}

input[type="range"]::-ms-thumb {
background-color: #000;
border: none;
border-radius: 50%;
width: 17px;
height: 17px;
cursor: pointer;
}

.tooltip {
    --bs-tooltip-bg: #000;
    --bs-tooltip-color: #fff;
    --bs-tooltip-border-radius: none;
}


.slider-container .my-progress .steps-container{
    position: absolute;
    top: 0;
    left: 350px;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.4rem 1.3rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.quizscreen-radio input[type='radio'] {
    appearance: none;
}

.quizscreen-radio-text {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 46px;
    font-size: 14px;
    line-height: 1.4285714286;
    cursor: pointer;
}

.quizscreen-radio-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eee;
    border: 9px solid #eee;
}

.quizscreen-radio-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s;
    background: #000;
    border: 9px solid #eee;
    visibility: hidden;
    transform: scale(0);
    opacity: 0;
}

.quizscreen-radio-input:checked + .quizscreen-radio-text::after {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
}

/* Fifth Step */
.quizscreen-slider-note {
    position: absolute;
    left: 65%;
    transform: translate(-50%, 0);
    padding: 7px 16px;
    border-radius: 2px;
    border: 0;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    background: #0d0d0d;
    color: #fff;
    bottom: calc(100% + 21px);
    text-align: center;
}

.quizscreen-slider-note::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #0d0d0d transparent transparent transparent;
}

.slider-values span {
    font-size: 21px;
    font-weight: 500;
    color: #000;
}


/* Media Query */
@media (max-width: 767px) {
    .topbar-header {
        padding-left: 15px;
        padding-right: 15px;
    }

    .fifth-step .quizscreen-body .quizscreen-slider-row,
    .third-step .quizscreen-body .quizscreen-row,
    .third-step .quizscreen-body .quizscreen-row2 {
        width: 100%;
    }

    .slider-values span {
        font-size: 16px;
    }

    .quizscreen-row .slider-container {
        gap: 8px;
    }

    .quizscreen-row2 .quizscreen-controls {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }

    .tooltip {
        position: absolute !important;
        inset: unset !important;
        margin: 0px !important;
        transform: translate(-50%, 0) !important;
        left: 50% !important;
        top: calc(100% - 10px) !important;
    }

}

.desktop-nav {
    display: flex;
}

.mobile-nav {
    display: none;
}


/* Media Query (max-width: 991px) */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        height: 100%;
        display: flex;
    }

    .mobile-nav .mobile-nav-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .mobile-nav-item .mobile-nav-link {
        color: #0d0d0d;
        font-weight: 700;
        font-size: 26px;
        line-height: 1.6153846154;
    }
    
    .mobile-nav-item .mobile-nav-submenu-link{
        font-weight: 400;
        font-size: 26px;
        line-height: 1.6153846154;
        color: #0d0d0d;
    }

    .action-btn {
        margin: 20px 0;
    }


    .header.has-mobile-nav-open {
        height: 100%;
        overflow-y: scroll;
    }

    .topbar-header-icon img {
        width: 30px;
    }

    #basic-section .quiz-meeting-action {
        padding-bottom: 20px;
    }

    .quizscreen-head .quizscreen-title {
        font-size: 32px;
    }
}



