:root{
    --attain-primary-color-r: 29;
    --attain-primary-color-g: 157;
    --attain-primary-color-b: 74;
    --attain-primary-colo-rgb: 29, 157, 74;




    --attain-primary-color: rgba(var(--attain-primary-color-r), var(--attain-primary-color-g), var(--attain-primary-color-b), 1);
    --attain-primary-color-20: rgba(var(--attain-primary-color-r), var(--attain-primary-color-g), var(--attain-primary-color-b), 0.05);
    --attain-primary-color-lite: #e2f3e8;
    --attain-secondary-color: #194da2;
    --attain-secondary-color-rgb: 25, 77, 162;
    --attain-secondary-color-lite: rgb(234 245 249);
    --attain-secondary-color-20: rgba(var(--attain-secondary-color-rgb), 0.2);
    --attain-secondary-color-30: rgba(var(--attain-secondary-color-rgb), 0.3);
    --attain-background-color: #ffffff;
    --attain-default-padding: 20px;

    --apptivate-mobile-max-width: 480px;
    --apptivate-mobile-margin: 40px auto 0;
    --apptivate-header-height: 65px;
    --apptivate-footer-height: 0; /* 75px; */

    --wpapptivate-drawer-height: 90vh;
    --wpapptivate-drawer-width: 100vw;
    --attain-correct-color : #1d9d4a;
    --attain-incorrect-color : #d9534f;
    --attain-incorrect-bgcolor : #f2dede;
    --attain-alert-bgcolor : #f0ad4e;
    --attain-alert-color : #ffffff;
    --attain-warning-btn-bgcolor : #e52c2c;
    --attain-warning-btn-color : #ffffff;
    --attain-warning-color : #e52c2c;
    --attain-disabled-color : #bbb;

    --attain-icon-color : var(--attain-primary-color);
    --attain-icon-label-color : #333;
    --attain-xp-bg-color : #777;
    --attain-xp-color : #fff;

    /*** Buttons ***/
    --attain-btn-bgcolor : var(--attain-primary-color-lite);
    --attain-btn-color : var(--attain-primary-color);
    --attain-btn-border-color : var(--attain-primary-color);
    --attain-btn-bgcolor-hover : var(--attain-primary-color);
    --attain-btn-color-hover : #fff;
    --attain-btn-border-color-hover : var(--attain-primary-color);

}

html {
    scroll-behavior: smooth;
    margin-top: 0 !important;
}

body{
    /*line-height: 110% !important;*/
    font-size: 16px !important;
}

attain{
    color: var(--attain-secondary-color);
    font-weight: 600;
}

ai {
    color: var(--attain-primary-color);
}

i, i.mso {
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    font-style: normal;
}

.em{
    font-weight: 600;
}

.em.primary {
    color: var(--attain-secondary-color);
}

.icon {
    color: var(--attain-icon-color);
    font-size: 32px;
    vertical-align: middle;
}

.margin-minimal {
    margin: 0 !important;
}

.flush {
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.attain-notification {
    font-style: italic;
    display: flex;
    gap: 5px;
    color: #777;
    font-size: .9rem !important;
    align-items: center;
}

.attain-notification::before {
    font-family: 'Material Symbols Outlined';
    content: "info";
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
}


span.icon-label, h5 {
    color: var(--attain-icon-label-color);
    line-height: 110% !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

[data-nav] {
    cursor: pointer;
}

.attain-h1 {
    font-size: 1.4em;
    margin: 10px 0;
    font-weight: 500;
}

.attain-h2 {
    font-size: 1.2em;
    margin: 10px 0;
    font-weight: 500;
}

.attain-h3 {
    display: block;
    font-weight: 600;
    font-size: 1.1em;
    color: var(--attain-primary-color);
    margin: 10px 0 2px;
}

.attain-xp-bubble {
    /* background: #f8eddffc; */
    color: var(--attain-alert-bgcolor);
    font-size: 12px;
    border-radius: 50px;
    padding: 2px 6px;
    /* vertical-align: super; */
    font-weight: 700;
    letter-spacing: .25px;
    /* margin: 0 0 0 5px; */
    /* border: 2px solid var(--attain-alert-bgcolor); */
    /* display: block; */
}

.attain-hint {
    font-size: .7rem;
    display: block;
    text-align: center;
}

p.attain-callout {
    font-weight: 500;
    text-align: center;
    display: block;
}

button.attain-btn {
    background: var(--attain-primary-color-lite) !important;
    color: var(--attain-primary-color) !important;
    border: 1px solid var(--attain-primary-color) !important;
    font-family: 'Poppins' !important;
    font-weight: 600 !important;
    font-size: 1em !important;
    margin: 10px 0 !important;
}

button.attain-btn:hover {
    background: var(--attain-primary-color) !important;
    color: #fff !important;
}

.app-notification-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--attain-secondary-color-rgb), 0.8); /* semi-transparent */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999; /* below overlay if you want */
}

.app-notification-lightbox.active {
  display: flex;
}

.app-notification-overlay {
    position: fixed;
    background: #fff;
    width: 80vw;
    left: 10vw;
    top: 10vh;
    height: 80vh;
    z-index: 100;
    border-radius: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-notification-header {
    font-size: 1.4em;
    text-align: center;
    font-weight: 600;
    margin: 0 0 10px;
    flex-shrink: 0;
    padding: 10px;
}

.app-notification-body {
    overflow-y: auto;
    flex-grow: 1;
    flex: 1 1 auto;
    padding: 10px 20px;
    font-size: 18px;
}
.app-notification-footer {
    /* position: absolute; */
    margin-top: 10px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #ccc;
    background: var(--attain-secondary-color-lite);
    flex-shrink: 0;
    padding: 10px 20px;
}

.app-notification-body ul {
    list-style: none;
    padding: 0;
}


.app-notification-body .attain-h2 {
    text-align: center;
}

.app-notification-body .attain-h3 .icon {
    margin-right: 10px;
    font-size: 28px;
}

.app-notification-body button.attain-btn {
    margin: 10px auto;
    position: relative;
    display: block;
}



#vwpapptivate-con a {
    color: var(--attain-primary-color);
}

#vwpapptivate-con .attain-content-block a {
    color: #333;
}

.attain-profile span.material-symbols-outlined.icon {
    color: var(--attain-icon-color);
}

div#user-profile-con {
    padding: 20px;
}

.user-profile-header {
    text-align: center;
}

#user-profile-con .avatar-con {
    display: block;
    background: #fff;
    border: 2px solid var(--attain-primary-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 2px;
    margin: 0 auto 10px;
}

#user-profile-con .avatar {
    font-size: 20px;
    background: var(--attain-secondary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    padding: 0;
    /* margin-left: 10px; */
    cursor: pointer;
    display: block;
}

.username {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin: 5px;
}

.attain-con{
    padding: var(--attain-default-padding);
}

#vwpapptivate-con{
    max-height: 100vh;
    overflow: hidden;
}

div#attain-movables {
    position: absolute;
    left: -9999px;
}

div#vwpapptivate-con .h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--attain-secondary-color);
    margin: 0;
    text-align: left;
    line-height: 130%;
}

h2 span.material-symbols-outlined {
    vertical-align: middle;
    margin-right: 10px;
    font-size: 32px;
    color: var(--attain-primary-color);
}

div#attain-quickchat {
    /* background: #fff; */
    position: fixed;
    bottom: 0;
    right: 15px;
    width: 60px;
    z-index: 20;
}

.quickchat.static {
    display: flex;
    background: transparent;
    width: auto;
    border-radius: 24px;
    padding: 5px 10px;
    color: #777;
    font-size: 16px;
    text-align: left;
    transition: left 0.3s;
    justify-content: flex-start;
    gap: 2px;
    align-items: center;
    margin: 10px;
    cursor: pointer;
    flex-direction: column;
}

.quickchat-label {
    /* display: none; */
    font-size: 12px;
    line-height: 1;
    text-align: center;
    color: var(--attain-primary-color);
    background: #fff;
    padding: 3px 6px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: .2px;
    white-space: nowrap;
    border: 1px solid var(--attain-primary-color);
}

/*.quickchat-btn.static {
    position: fixed;
    bottom: 50px;
    background: var(--attain-primary-color-lite);
    width: calc(100% - 20px);
    border-radius: 24px;
    padding: 5px 10px;
    color: #777;
    font-size: 16px;
    text-align: left;
    transition: left 0.3s;
    cursor: pointer;
    left: 10px;
}*/



/*#chat-btn {
    width: 34px;
    height: 34px;
    background: var(--attain-primary-color);
    border-radius: 50%;
    padding: 7px;
    position: relative;
    margin: 0 auto;
}*/
#chat-btn {
    width: 60px;
    height: 60px;
    background: var(--attain-primary-color);
    border-radius: 50%;
    padding: 18px;
    position: relative;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #fff;
}


/**** Header Styles ****/
div#attain-header-right {
    width: auto;
    position: absolute;
    right: 10px;
    top: 14px;
}

.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    height: inherit;
}

span.xp-count {
    color: var(--attain-secondary-color);
    font-weight: 600;
    font-size: 20px;
}

.xp-count span {
    font-size: .90rem;
    font-weight: 800;
    color: var(--attain-primary-color);
}

span.attain-header-item.streaks {
    display: flex;
    align-items: center;
    color: var(--attain-primary-color);
}

span.streak-count {
    /* background: var(--attain-primary-color); */
    /* color: #fff; */
    font-weight: 700;
    /* width: 20px; */
    /* display: inline-block; */
    /* height: 20px; */
    /* border-radius: 50px; */
    /* padding: 0 0 0 5px; */
    /* position: absolute; */
    /* left: 15px; */
    /* vertical-align: top; */
    margin-right: -3px;
    color: var(--attain-secondary-color);
    font-size: 20px;
}

#attain-header-right .avatar-con {
    background: #fff;
    border: 2px solid var(--attain-primary-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 2px;
    /* margin-left: 10px; */
}

#attain-header-right .avatar {
    font-size: 20px;
    background: var(--attain-secondary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    padding: 0;
    /* margin-left: 10px; */
    cursor: pointer;
    display: block;
}
/*** End Header Styles ***/

/*** Homepage Styles ***/
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    max-width: 600px;
}

.quick-action-item {
    background: #fff;
    border-radius: 12px;
    font-size: 1rem;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    border: 1px solid #ccc;
    line-height: 1.2;
}

.quick-action-item:hover {
    background: aliceblue;
}


.quick-action-icon {
    color: var(--attain-primary-color);
}

.quick-action-icon i{
    font-size: 28px
}


.quick-action-text {
    font-weight: 500;
    width: calc(100% - 85px);
}

.quick-action-img {
    width: 75px;
    height: 75px;
    background-position: 0px 0px;
    background-size: cover;
    border-radius: 12px;
    border: 1px solid var(--attain-secondary-color-lite);
}


.nested .quick-action-text {
    font-size: .9rem;
}
.nested .quick-action-img {
    width: 50px;
    height: 50px;
}

.flex-2 > div {
    flex: 0 0 48%;
}

/** End Homepage Styles ***/

.sidebar-toggle-btn {
    cursor: pointer;
    display: none
}

#attain-more-menu {
    position: fixed;
    background: #fff;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    top: 0;
    display: none;
    padding: 20px;
}

div#more-menu-close {
    cursor: pointer;
}

div#more-menu-close span {
    font-weight: 500;
}

#attain-more-menu.active {
    display: block;
}

.more-menu-item {
    padding: 8px;
    font-size: 20px;
    cursor: pointer;

}

.more-menu-item a {
    color: #333 !important;
}

.more-menu-item:hover, .more-menu-item a:hover {
    color: var(--attain-primary-color) !important;
}   

.menu-icon {
    vertical-align: middle;
    margin-right: 10px;
}

span.menu-label {
    vertical-align: middle;
}

.attain-metric {
    font-size: 24px;
    font-weight: 500;
}

.bg-alert {
    background: var(--attain-primary-color-lite) !important;
    /* color: var(--attain-alert-color); */
}



/******* Global Notification Styles *********/



div#global-notifications-con {
    background: #fff;
    border: 1px solid var(--attain-warning-color);
    border-radius: 12px;
    display: none;
    align-items: baseline;
    font-size: 13px;
    padding: 5px 10px;
}

div#global-notifications-con.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: calc(100vw - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    margin: 10px;
    justify-content: flex-start;
}

div#global-notification-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.global-notification {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.global-notification.active {
    display: flex;

}


.notification-content {
    display: flex;
    gap: 5px;
    align-items: end;
}

div#global-notification-btns {
    text-align: right;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-left: 10px;
}

.global-notification-btn {
    background: var(--attain-warning-btn-bgcolor);
    color: var(--attain-warning-btn-color);
    padding: 5px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

span.global-notification-hide {
    font-size: 14px !important;
    font-weight: 600;
    cursor: pointer;
    color: var(--attain-warning-color);
}

.notification-icon span {
    color: var(--attain-warning-color);
}

span.prev-notification, span.next-notification {
    cursor: pointer;
}

span.prev-notification.disabled, span.next-notification.disabled {
    color: var(--attain-disabled-color);
    cursor: initial;
}

@media screen and (max-width: 600px) {
    div#global-notifications-con {
        width: calc(100vw - 20px);
        left: 10px;
        display: flex;
        flex-direction: column-reverse;
    }
    div#global-notification-btns {
        margin-left: 0;
    }

    .notification-content {
        align-items: flex-start;
    }

}

/*** End Global Notification Styles ***/

/* CSS */
.prompt-gallery-container {
    position: relative;
    overflow: hidden;
    margin: auto;
    padding-bottom: 0;
}

.prompt-gallery {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.prompt {
    background: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid var(--attain-secondary-color-lite);
    padding: 10px;
    border-radius: 12px;
    width: 300px;
    background: #fff;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    cursor: pointer;
}

.prompt:hover {
    border: 1px solid var(--attain-secondary-color);
}

.prompt h5 {
    margin: 0 0 10px;
}


.prompt:hover h5 {
    color: var(--attain-secondary-color);
}

.prompt-text p {
    font-size: .8em !important;
}




.prompt .material-symbols-outlined {
    color: var(--attain-icon-color);
}

.prompt p {
    color: #555;
}

.prompt-icon {
    display: flex;
    font-size: 30px;
    margin-bottom: 10px;
    color: #0078ff;
}


/* Navigation dots */
.navigation-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 10px;
}

.navigation-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.navigation-dots .dot.active {
    background: #0078ff;
}
/* End Navigation dots */




/*body {
    margin-bottom: 60px !important;
}*/

/*#attain-prompt-response h2 {
	font-size: 20px;
	margin-top: 30px;
}*/


/******* Menu ********/
.vwpapp-menu {
    width: fit-content;
    margin: 0 auto;
}

.vwpapp-menu-item {
    display: block !important;
    margin: 15px 0;
    text-align: center;
    cursor: pointer;
}



.vwpapp-menu-item.active {
    color: orange;
    font-weight: 600
}

.vwpapp-menu-item-icon {
    background: none;
    border-radius: 25px;
    padding: 5px 10px 0;
}

.vwpapp-menu-item-icon.active {
    background: var(--attain-primary-color-lite);
}


.vwpapp-menu, .vwpapp-menu a {
    color: #333 !important;
}

.vwpapp-menu-item-icon:hover {
    background: var(--attain-primary-color-lite) !important;

}


/* Quick Prompt Button */
@media only screen and (min-width: 601px) {





    .vwpapp-menu-item-label {
        display: inline-block;
        vertical-align: middle;
    }

    /*.vwpapptivate-drawer {
        width: 1000px;
        left: calc((100% - 910px) / 2);
    }*/

    div#response-body {
        padding: 0 20px 40px 35px;
    }
}
/* End Quick Prompt Button */



/********** Sidebar List Styles ****************/


div#prompt-uploaded-preview {
    display: flex;
}

.upload-file {
    position: relative;
    margin-right: 10px;
    max-width: 75px;
}

.remove-file {
    position: absolute;
    right: -8px;
    top: -8px;
    margin: 0 !important;
    background: #fff;
    border-radius: 50%;
    border: none;
}

.view-file {
    position: absolute;
    left: calc((75px/2) - 12px);
    padding: 0;
    margin: 0 !important;
    top: calc(50% - 12px);
}

input#questionimage, input#answerimage  {
    display: none;
}

div#prompt-actions, div#prompt-actions-answer {
    width: 120px;
    display: inline-flex !important;
    vertical-align: middle;
}
#attain-prompt-submit {
    display: none;
    background: var(--attain-primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top:-50px

}

#attain-prompt-submit .send-button {
	color: #fff;
	margin: 7px 0 0 10px;
}

#attain-prompt-next {
    display: none;
}

#attain-prompt-next button {
    font-size: 14px;
    padding: 3px 12px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    background-color: var(--attain-primary-color);
}



ul.student-data-list {
    padding: 0;
    margin: -20px;
}
ul.student-data-list li {
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #ddd;
    padding: 7px 20px;
    cursor: pointer;
}


li.chat-item:hover {
    background: var(--attain-secondary-color-lite);
}


.chat-item.active{
    background: var(--attain-primary-color-lite);
    font-weight: 600;
}

.chat-item.question::before {
    content: "Q";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    font-size: 20px;
    background: red;
    padding: 6px 12px;
    display:none
}

span.data-type {
    border-radius: 6px;
    /* background: var(--attain-secondary-color-lite); */
    color: var(--attain-secondary-color);
    font-size: 12px;
    /* padding: 2px 8px; */
    display: block;
    width: fit-content;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 5px;
    text-transform: uppercase;
}

ul.type-filter {
    margin: 0 0 20px;
    padding: 0;
}

ul.type-filter li.type-filter-item {
    list-style: none;
    display: inline-block;
    margin: 0 7px 7px 0;
    background: #eee;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

ul.type-filter li.type-filter-item.active {
    background: var(--attain-primary-color-lite);
    font-weight: 600;
}




/********** End SIdebar List Styles ****************/

/********** Header Styles ****************/

/*#vwpapp-header {
    background: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    z-index: 1;
}*/
/********** End Header Styles ****************/

/********** Footer Styles ****************/
.vwpapp-footer {
    position: fixed;
    left: 0px;
    padding: 10px;
    width: 90px;
    background: #fff;
    font-size: 0.8rem;
    z-index: 1;
    height: 100vh;
    top: var(--apptivate-header-height);
    border-right: 1px solid #ddd;
    height: calc(100vh - var(--apptivate-header-height));
    overflow: hidden;
    display: none
}

/********** End Footer Styles ****************/


/*********** General Styles ***********/

.attain-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1),  0px 6px 12px rgba(0, 0, 0, 0.08); */
    position: relative;
    border: 1px solid #ccc;
}

.attain-card h2{
    position: relative
}

.attain-card h3{
    font-size:18px;
}

.attain-data-metric{
    font-size:2em;
    font-weight: 600;
}

.attain-card-squared {
    background: #fff;
    border-radius: 20px;
    padding: 12px 8px;
    /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1),  0px 6px 12px rgba(0, 0, 0, 0.08); */
    position: relative;
    border: 1px solid #e5e7eb;
    min-height: 300px;
    margin-bottom: 20px;
}

.attain-card-squared .header {
    padding: 10px 16px;
    text-transform: uppercase;
}

.attain-card-squared .header h2 {
    font-size: 28px;
    font-weight: 600;
    color: inherit;
    margin-top: 0;
}

.attain-card-squared .footer {
    position: absolute;
    bottom: 0;
    display: block;
    width: calc(100% - 16px);
    padding: 10px 16px 20px;
}

.attain-card-squared .footer p {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    text-shadow: .5px 0.5px #ccc;
    background-color: rgba(255,255,255,.5);
    color:#333;
}

.attain-card-squared .footer button {
    margin: 0;
    /* display: flex; */
    width: 100%;
    text-align: center !important;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--attain-primary-color);
    border: none;
    border-radius: 16px !important;
}

.attain-card-squared.study-guide {
    background-size: contain !important;
    background-color: #fff !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.attain-card-squared.primary {
    color: var(--attain-primary-color);
}

.attain-card-squared .subject-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.attain-card-squared.paper1-practice-test {
    background: linear-gradient(to bottom, #0cc0df, #005996) !important;
    color: #fff;
}

.attain-card-squared.paper1-practice-test .content {
    background: url('https://staging.attainmore.ai/wp-content/plugins/attain-frontend/assets/images/paper1-practice-test-trans.png');
    width: 100%;
    height: -webkit-fill-available;
    position: absolute;
    top: 50px;
    background-repeat: no-repeat;
    background-position: center;
}

.attain-card-squared.paper1-practice-test .footer p {
    background: none;
    color: #fff;
    text-shadow: .5px 0.5px #333;
}

.attain-card-squared.paper1-practice-test .footer button {
    background: #fff;
    color: var(--attain-secondary-color);
}

.attain-card-squared.paper1-practice-test .subject-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--attain-secondary-color);
}



/*********** End General Styles ***********/


/*********** scientific Notation ***********/
sub, sup {
    font-size: 12px;
}


/*********** End scientific Notation ***********/


/********* Prompt Styles *********/
/*.prompt-input-question {
    margin: 0 0 15px !important;
}*/

div#attain-response, #response-body {
    background: var(--attain-secondary-color-lite);
    padding: 0 0 60px;
}

#attain-response .attain-content-block, #response-body .attain-content-block {
    background: #fff;
}

.attain-resp-section {
    background: #fff;
    padding: 20px 10px;
    border-radius: 12px;
    margin: 0 0 30px;
}

.attain-label {
    color: var(--attain-secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin: 15px 0 2px;
}
.attain-disclaimer {
    font-size: 12px;
    margin-top: 40px;
}

.new-prompt-con {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 14px;
    /* border: 1px solid var(--attain-primary-color-lite); */
    cursor: pointer;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 2;
}

.new-prompt-btn svg {
    width: 20px;
    height: 20px;
}

.new-prompt-btn svg path {
    fill: var(--attain-primary-color-lite);
}

span.material-symbols-outlined.new-prompt-close-btn {
    font-size: 32px;
    color: var(--attain-primary-color-lite);
    display: none;
}

/*.prompt-options-con {
    position: absolute;
    text-align: right;
    margin-top: -139px;
    margin-left: 100px;
    transition: margin-left 0.3s;
    width: 150px;
    z-index: 2;
}


.prompt-options-con.active {
    margin-left: -110px;
}*/

div#prompt-options {
    display: flex;
    gap: 20px;
}

.prompt-option {
    padding: 10px;
    background: var(--attain-primary-color-lite);
    border-radius: 12px;
    margin-bottom: 5px;
    font-size: 14px;
    width: 150px;
    cursor: pointer;
}

.prompt-option:hover {
    color: green;
}


.prompt-input.answer {
    margin-top: 10px;
    padding-top: 10px;
}

.prompt-type-label {
    display: inline-block;
    width: 20px !important;
    font-weight: 700;
    color: var(--attain-primary-color);
    font-size: 18px;
}

.prompt-input-action.submit{
    display: none
}

.prompt-instructions {
    font-variant: all-petite-caps;
    color: #999;
    font-weight: 500;
}

/********* Response Styles *********/

#attain-prompt-response {
    font-size: 1.5em;
    color: #333;
    width: 100%;
    height: calc(100vh - var(--apptivate-header-height));
    overflow: auto;
    /*padding: 20px 20px 80px 30px;*/
}


#response-body h2 {
    font-size: 18px;
    margin-top: 0;
    color: var(--attain-primary-color);
    text-transform: none;
    margin: 0 0 10px;
}



#response-body h3 {
    font-weight: 600;
    font-size: 16px;
    margin-top: 40px;
}

div#response-body {
    padding: 10px;
}

#response-body .definition {
	background: var(--attain-secondary-color-lite);
}



.vwpapptivate-drawer-content div#response-body {
    padding: 0;
}

#response-body p {
    margin-bottom: 10px;
    font-size: .9em;
}

.response-action-icons {
    margin: 20px 0 0;
}

.attain-ques-imgs {
    display: flex;
    gap: 20px;
    border-top: 1px solid #ccc;
    padding: 10px 0 0;
    margin: 10px 0 0;
}

.attain-question {
    font-size: 24px;
    font-weight: 500;
    color: #555;
    line-height: 1.3;
}

.attain-rsp-section {
    margin: 0px 0 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

div#attain-answer {
    background: var(--attain-secondary-color-lite);
    padding: 1px 20px 20px;
    border-radius: 0 8px 8px 0;
    border-left: 3px solid var(--attain-primary-color);
    margin: 0px 0 40px 13px;
}

#attain-approach ul.no-list-style, #attain-approach ol.no-list-style {
    margin: 0 !important;
    padding: 0 !important;
}

li.attain-approach.no-list-style {
    list-style-type: none !important;
}

#response-body li {
    margin-bottom: 8px;
    line-height: 140%;
}

.drilldown-item {
	display: inline-block;
	margin: 0 7px 10px 0;
	border: 1px solid var(--attain-btn-border-color);
	border-radius: 25px;
	padding: 3px 10px;
	cursor: pointer;
	font-size: .9em;
	background: var(--attain-btn-bgcolor);
	color: var(--attain-btn-color);
	font-weight: 600;
}

div#attain-reasoning {
    font-variant: small-caps;
    font-style: italic;
    margin: 40px 0 0;
    color: #555;
}

.attain-concept {
    display: inline-flex;
    margin: 5px 10px;
    font-size: 1.1em;
}

.attain-json {
    display: none;
}

.attain-flash-card {
	background: #fff;
	margin: 15px 10px;
	padding: 20px;
	/* display: inline-flex; */
	/* width: 49%; */
	border-radius: 14px;
	box-shadow: 2px 2px 2px #ddd;
}

.attain-flash-card-front {
	font-size: 18px;
	font-weight: 600;
}



/*Approach*/
.attain-approach-step {
    margin: 0 0 15px;
}

.step-heading {
    font-weight: 500;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.circle {
    min-width: 30px;
    height: 30px;
    background-color: var(--attain-primary-color);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    position: relative;
    /*z-index: 1;*/
}

.step-line {
    position: absolute;
    height: calc(100% + 20px);
    width: 3px;
    background: var(--attain-primary-color);
    left: 13px;
}

/*.circle::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: #00a97e;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.step:nth-child(1) .circle::before {
    height: 50%;
    top: 50%;
}

.step:last-child .circle::before {
    height: 50%;
    top: 0;
}*/

.step:not(:last-child) .circle::before {
    height: 100px; /* Adjust this height according to your design */
}

.step:last-child .circle::before {
    display: none; /* No line after the last step */
}

/*** Marking Breakdown ***/
span.subtotal {
    font-weight: 700;
    color: #fff;
    padding: 2px 5px;
    border-radius: 8px;
    font-size: .8em;
    letter-spacing: 1px;
}


span.subtotal.excellent {
    background: green;
}
span.subtotal.good {
    background: orange;
}
span.subtotal.poor {
    background: red;
}

/*#attain-answer-breakdown {
    margin-top: 60px;
}*/

#attain-answer-breakdown .mark {
    font-weight: 700;
    color: var(--attain-primary-color);
    padding: 0px 8px;
    border-radius: 8px;
    font-size: .8em;
    letter-spacing: 1px;
    border: none;
    /* max-width: 17px; */
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    /*background: var(--attain-primary-color-lite);*/
}

#attain-answer-breakdown button.explanation-toggle-btn {
    font-size: .8em;
    border-radius: 20px;
    background: var(--attain-secondary-color-lite);
    padding: 4px 14px;
    /* width: fit-content; */
    direction: inherit;
    margin: 8px 0;
    border: 1px solid var(--attain-secondary-color);
    color: var(--attain-secondary-color);
    font-weight: 500;
    cursor: pointer;
    display: block;
}

#attain-answer-breakdown button.explanation-toggle-btn::after {
    content: "Show Explanations";
}

#attain-answer-breakdown button.explanation-toggle-btn.active {
    background: #fff;
}

#attain-answer-breakdown button.explanation-toggle-btn.active::after {
    content: "Hide Explanations";
}

span.attain-breakdown {
    margin-bottom: 20px;
}

span.answer-part-con {
    margin-right: 5px;
}

#attain-answer-breakdown .mark-explanation-con {
    display: none;
}

#attain-answer-breakdown.active .mark-explanation-con {
    display: block;
}

#attain-answer-breakdown.active .attain-breakdown {
    display: block;
    margin: 0;
}

#attain-answer-breakdown .explanation {
    font-style: italic;
    /* font-family: monospace; */
    font-weight: 400;
    color: var(--attain-secondary-color);
    letter-spacing: .2px;
    background: var(--attain-secondary-color-lite);
    padding: 4px;
    font-size: .8em;
}




div#chat-icon {
    width: 40px;
    height: 40px;
    background: var(--attain-primary-color);
    border-radius: 50%;
    padding: 10px;
    position: relative;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
}

/******* End of Response Styles *********/

/*span.mark-explanation {
    font-style: italic;
    color: var(--attain-secondary-color);
    background: var(--attain-secondary-color-lite);
}*/

.flex-con {
    display: flex;
    justify-content: space-between;
}

.grid-con {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 20px;
}

.card-header {
    font-weight: 500;
    display: block;
    color: var(--attain-primary-color);
}

.attain-card.has-action {
    padding: 20px 20px 40px 20px;
}

.attain-card.more {
    padding: 20px 20px 60px 20px;
    background: var(--attain-secondary-color-lite);
    margin: 0 20px 0 0;
}

.attain-content-block .attain-card {
    background: #fff;
}

.where-clauses .element::after {
    content: " = ";
}

.card-footer {
    position: absolute;
    bottom: 0;
    display: block;
    width: calc(100% - 40px);
    padding: 10px 0;
}

span.action-icon {
    margin: 0 15px 0 0;
    cursor: pointer;
}

span.action-icon.active {
    color: green;
    font-variation-settings: 'FILL' 1;
}

span.action-icon.share {
    display: none;
}

span.speak_aloud::after {
    content: "Listen";
    font-family: Poppins;
    font-size: 14px;
    font-weight: 600;
    vertical-align: bottom;
    margin: 5px;
    /* padding: 90px; */
    position: relative;
    display: inline-block;
}


div#attain-grade-con .attain-grade {
    font-weight: 600;
    width: fit-content;
    border-radius: 8px;
    padding: 4px 10px;
    color: #fff;
}

div#attain-grade-con .attain-grade.excellent {
    background: green;
}
div#attain-grade-con .attain-grade.good {
    background: orange;
}
div#attain-grade-con .attain-grade.poor {
    background: red;
}

/*** Answer Breakdown ***/
#attain-answer-breakdown span.answer-part {
    font-weight: 400;
    display:block;
}



span.subtotal {
    margin: 0 5px;
}

#task-container {
	margin: 20px 0;
	padding: 0 40px;
}

#task {
    font-size: 1.3rem;
    margin-top: 20px;
}

#progress-bar {
    width: 300px;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-top: 20px;
    position: relative;
}

#progress {
    height: 100%;
    width: 0;
    background-color: #4caf50;
    border-radius: 5px;
    transition: width 2s ease;
}



/********* End of Response Styles *********/


/********** Layout Styles ***********/
#vwpapptivate-con {
    max-height: 100vh;
    overflow: hidden;
    position: fixed;
    /* top: 0; */
    width: 100vw;
    z-index: 1;
    margin-top: 0;
}

/*.main-content-con {
    padding-left: 35px;
    padding-right: 20px;
}*/
.main-content-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
}

.main-content-con p {
    font-size: 1rem;
}

.attain-content-bg-white {
    padding: 12px 12px;
    max-width: 600px;
    width: 100%;
}

p.welcome {
    font-size: 1.2rem !important;
    margin: 0 !important;
    font-weight: 500;
}

div#vwpapp-content {
    /* margin-left: 90px; */
    display: flex;
    height: 100vh;
}

.vwpapp-content-item {
    padding: 20px;
    position: relative;
    height: calc(100vh - var(--apptivate-header-height));
    border-left: 1px solid #ddd;
    overflow-y: auto;
}

.vwpapp-content-item.main {
    flex-grow: 1;
    background-color: var(--attain-background-color);
    overflow: auto;
    padding: 0;
    width: calc(100% - 390px);
}

/****
.vwpapp-content-item.main .sidebar-toggle-btn {
    position: fixed;
    z-index: 2;
    cursor: pointer;
    margin-left: 5px;
    margin-top: 5px;
    display: none;
}

.vwpapp-content-item.main .sidebar-toggle-btn .material-symbols-outlined{
    font-size: 28px;
    color: var(--attain-secondary-color);
}*/

.vwpapp-content-item.sidebar-left {
    width: 0; /* Initial width of sidebar */
    transition: width 0.3s ease; /* Smooth transition for width changes */
    z-index: 2;
    background: #fff;
    border-right: none;
    position: relative;
    padding:0;
    height: calc(100vh - var(--apptivate-header-height) );

}

/****
.vwpapp-content-item.sidebar-left .sidebar-toggle-btn{
    position: fixed;
    z-index: 2;
    cursor: pointer;
    margin-top: -15px;
}*/

.vwpapp-content-item.sidebar-left.active {
    width: 300px;
    transition: width 0.3s ease;
    padding: 20px;
    border-right: 2px solid #ccc;
    display: none;
}

.current-subject-con {
    margin-left: -15px;
}

.current-subject-btn {
    font-size: 16px;
    margin-bottom: 5px;
    cursor: pointer;
    padding: 8px 16px;
    background: #fff;
    border-radius: 12px;
    font-weight: 500;
    color: #555;
}

.current-subject-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    letter-spacing: .2px;
}

.current-subject-btn:hover, .current-subject-btn.active {
    background: var(--attain-secondary-color-lite);
}

.current-subject {
    display: inline-block;
    max-width: 200px;
    vertical-align: top;
    line-height: 1.3em;
}

.attain-subject-list {
    border: 1px solid #ddd;
    margin-top: -15px;
    position: absolute;
    z-index: 1;
    background: #fff;
    width: 88%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    display: none;
}

.attain-subject-list.active {
    display: block;
}

.attain-subject-list li {
    list-style: none;
    padding: 8px 16px;
    cursor: pointer;
    background: #fff;
}

.attain-subject-list li:hover {
    background: var(--attain-secondary-color-lite);
}

.attain-subject-list li.add-new {
    display: flex;
    place-items: flex-end;
}


.attain-content-block {
    margin: 20px 10px;
    background-color: var(--attain-secondary-color-lite);
    border-radius: 12px;
    padding: 20px 10px;
    padding: 15px 10px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    /* margin: 0 10px; */
}
.attain-content-block h2 {
    margin: 0 0 10px !important;
    color: var(--attain-secondary-color);
}

.attain-content-block.inverted {
    background: no-repeat;
    padding: 0 10px;
    margin: 0 10px;
}

.attain-content-block.inverted .attain-card {
    background: var(--attain-primary-color-20);
}

.attain-subject-list li.add-subject {
    display: flex;
    align-items: center;
    font-size: 1em;
    text-transform: uppercase;
    color: var(--attain-secondary-color);
}

.attain-activity-list h2 {
    font-size: 16px !important;
    font-weight: 500 !important;
    margin: 0 0 25px !important;
}

@media screen and (max-width: 600px) {
    .attain-content-bg-white {
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
    }

    .attain-content-block {
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
    }
    .quick-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
        max-width: 600px;
    }
}

/*.discover-con {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    width: calc(100% - 20px);
}

.discover-item {
    width: 300px;
    text-align: center;
    cursor: pointer;
}

.discover-item {
    width: 300px;
    text-align: center;
    cursor: pointer;
    border: transparent;
}
*/



.discover-con, .prompt-gallery {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    scroll-snap-type: x mandatory;     /* Optional: snap to items */
    gap: 1rem;
    padding: 1rem 0;
    scrollbar-width: none;             /* Firefox */
}

.discover-con::-webkit-scrollbar,  .prompt-gallery::-webkit-scrollbar{
    display: none;                     /* Chrome/Safari */
}

.discover-item, .prompt {
    flex: 0 0 75%;
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    border: 1px solid #ccc;
    max-width: 300px;
}


.discover-item.attain-card.action-item.prompt.sm {
    flex: 0 0 30%;
    display: block;
    text-align: center;
}

.discover-item:hover {
    border: 1px solid var(--attain-secondary-color);
    cursor: pointer;
}


.discover-icon {
    color: var(--attain-primary-color);
}

.discover-item.stacked {
    flex: 0 0 30%;
    text-align: center;
    display: block;
}

@media (min-width: 768px) {
    .discover-item {
        flex: 0 0 auto;
        width: 300px;
        max-width: 100%;
    }
}


.discover-item h5 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.prompt.sm h5 {
    font-size: .95em;
    font-weight: 500;
}

.discover-item p {
    line-height: 130%;
    font-size: 14px !important;
}

/**** VWP Styles ****/
.vwp-flexrow {
    display: flex;
    flex-wrap: wrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    gap: 15px;
}

.vwp-flexrow-item {
    flex: 0 0 auto;
    width: 200px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid transparent;
}

.vwp-flexrow-item .icon span {
    color: var(--attain-icon-color);
}
  

.vwp-flexrow-item.subject-box .icon span {
    font-size: 30px;
    font-weight: 300;
}

.vwp-flexrow-item:hover {
    border: 1px solid #ddd;
}

.vwp-flexrow-item h5 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
}

.vwp-flexrow-item p {
    line-height: 130%;
    font-size: 14px !important;
}

.vwp-flexrow-item.action-item {
    /* width: 70px; */
    text-align: center;
    display: block;
    cursor: pointer;
    padding: 10px 5px;
    border: 1px solid #ccc;
    flex-shrink: 1;
}


.icon span {
    font-size: 36px;
}

/*** End VWP Styles ***/

.vwp-flexrow.subject-box-list {
    padding: 15px 0;
}

.vwp-flexrow-item.subject-box {
    width: 170px;
    text-align: center;
    display: block;
    cursor: pointer;
}

.vwp-flexrow-item.action-item {
    width: 100px;
    text-align: center;
    display: block;
    cursor: pointer;
    padding: 5px;
}

.vwp-flexrow-item.subject-box .icon span {
    font-size: 30px;
}


@media screen and (max-width: 600px) {
    .vwp-flexrow {
        display: flex;
        flex-wrap: nowrap;              /* Prevent wrapping */
        overflow-x: auto;               /* Enable horizontal scroll */
        overflow-y: hidden;             /* Optional: hide vertical overflow */
        scroll-snap-type: x mandatory;  /* Enable scroll snapping */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;          /* Firefox */
        -ms-overflow-style: none;       /* IE */
        width: 100%;                    /* Ensure it's constrained */
      }
      
      .vwp-flexrow::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
      }
      
      .vwp-flexrow-item.subject-box {
        flex: 0 0 auto;
        width: 40%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
      
    
}

/*
@media (min-width: 768px) {
    .subject-box {
        flex: 0 0 200px;
    }
}
    */

/*div#sidebar-toggle-btn {
    position: fixed;
    z-index: 2;
    cursor: pointer;
    margin-left: 282px;
    margin-top: -20px;
    transition: transform 0.3s ease;
    transform: rotate(270deg);
}*/

.sidebar-toggle-btn {
    /*position: fixed;
    z-index: 2;
    cursor: pointer;
    margin-left: 282px;
    margin-top: -20px;
    color: var(--attain-secondary-color);*/
}   



/*.sidebar-toggle-btn.opened {
    transform: rotate(270deg);
}

.sidebar-toggle-btn.closed {
    transform: rotate(90deg);
}*/


#sidebar-toggle-btn .ui-icon {
    color: #999 !important;
    font-size: 30px;
    
}



.vwpapp-tooltip {
    position: absolute;
    background-color: var(--attain-secondary-color-lite);
    color: #333;
    padding: 7px 15px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.3),0 4px 6px -4px rgba(0,0,0,0.3);
}

.vwpapp-tooltip-item {
    padding: 5px;
    border-bottom: none /* 1px solid #ddd */;
    cursor: pointer;
    display: inline-block;
    margin-right: 12px;
}

.vwpapp-tooltip-item:hover {
    /* background: #ffffff95; */
    font-weight: 600;
}
/********** End of Layout Styles ***********/

/********* VWPApptivate Layer ***********/
.vwpapptivate-layer {
    background: #ffffff;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 100vw;
    opacity: 0;
    transition: left 0.5s, opacity 0.2s !important;
    z-index: 4;
}

.vwpapptivate-layer.active {
    left: 0;
    opacity: 1;
}


.vwpapptivate-layer-header {
    display: flex;
    height: 60px;
    background: var(--attain-primary-color-inactive);
    flex-direction: row;
    /* align-content: center; */
    align-items: center;
    font-size: 1.4em;
    border-bottom: 1px solid #ccc;
}

.vwpapptivate-layer-back {
    margin-top: 6px !important;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.vwpapptivate-layer-body {
    padding: 20px;
}

.vwpapptivate-layer-content {
    height: calc(100vh - 150px); /* to support Edge and Safari */ 
    height: calc(100dvh - 60px);
    overflow: auto;
    padding-bottom: 80px;
    background: #eff6ff;

}

.vwpapptivate-layer-content h3 {
    margin: 10px 0 2px !important;
}

.vwpapptivate-layer-content p {
    margin: 0 0 10px !important;
}

/*.vwpapptivate-layer-content h2 {
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
    color: var(--attain-secondary-color);
    margin: 18px 0 !important;
}*/


#vwpapptivate-overlay {
    background: var(--attain-secondary-color);
    width: 100vw;
    height: 100vh;
    z-index: 5;
    position: fixed;
    top: 0;
    opacity: 0.75;
    display: none;
}

#vwpapptivate-overlay.active {
    display: block;
}

.vwpapptivate-drawer {
    position: fixed;
    bottom: 0;
    height: 0;
    visibility: hidden;
    transition: height 0.5s;
    overflow: auto;
    background: var(--attain-secondary-color-lite);
    border-radius: 25px 25px 0 0;
    padding: 20px 20px;
    z-index: 100;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1),  0px 6px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
    width: 100%;
    margin: 0;
    z-index: 0;
}

.vwpapptivate-drawer.active {
    height: var(--wpapptivate-drawer-height);
    visibility: visible;
    z-index: 25;
    overflow: hidden;
}

.vwpapptivate-drawer-thumb {
    padding: 2px;
    background: #ccc;
    margin: 5px 30% 26px;
}

span.vwpapptivate-drawer-close {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    right: 10px;
}

.vwpapptivate-drawer-header {
    font-size: 1.2em;
    margin: 0 0 10px;
}

.vwpapptivate-drawer-content {
    font-size: 1.3em;
    max-height: calc(var(--wpapptivate-drawer-height) - 40px);
    overflow: auto;
    padding-right: 10px;
}

.vwpapptivate-overlay {
    background: rgba(218,218,218,0.4);
    width: 100vw;
    height: 100vh;
    z-index: 1;
    position: fixed;
    top: 0;
    display: none;
}

.vwpapptivate-overlay.active {
    display: block;
}

.vwpapptivate-drawer-content .definition {
    background: #fff;
}

/********* End of VWPApptivate Layer ***********/


/***** Loading Spinner *****/
.loader {
    margin: 20px auto 0;
    max-width: 480px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

#vwp-preloader {
    position: fixed;
    top: 130px;
    left: 225px;
    /* transform: translate(-50%, -50%); */
    z-index: 9999;
    display: none;
    width: calc(100% - 225px);
    height: 100vh;
    background: rgba(245, 249, 253, 0.8);
}

.vwp-spinner {
	width: 50px;
	margin-top: 20px;
	margin-left: calc((100vw - 50px)/2);
	height: 50px;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	/* position: absolute; */
	z-index: 9999;
	transform: translate(-50%, -50%);
	display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*********** End of Spinner ***********/


/********** Subject Selection ***********/
#user-subject-con {
    background: transparent;
    z-index: 2;
    padding: 0;
    top: calc(var(--apptivate-header-height) + 1px);
}

select#user-subject-dropdown {
    border-radius: 25px;
    border: 1px solid #ccc;
}

#selected-subjects-con span {
    vertical-align: text-bottom;
}

#add-subject {
	cursor: pointer;
}

#subject-search-text {
    border: none;
    padding: 10px;
    border-radius: 20px;
}

#subject-search-text:focus, #subject-search-text:focus-visible {
	outline: none;
}

div#subject-search {
    display: flex;
    gap: 10px;
    /* border-bottom: 1px solid #ccc; */
    padding-bottom: 10px;
    align-items: center;
}

div#subject-list {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}


.selected-subject {
    border: 1px solid #ccc;
    display: inline-block;
    background:var(--attain-primary-color);
    color: #fff;
    padding: 5px 10px !important;
    border-radius: 25px;
    margin: 0 0 5px 5px !important;
}

.subject-option {
    background: #eee;
    color: #555 !important;
    width: fit-content;
    padding: 7px 15px;
    border-radius: 25px;
    cursor: pointer;
    border: 1px solid #ddd;
    display: inline-block;
    margin: 5px 2px;
}

.subject-option.selected {
    background: var(--attain-primary-color);
    color: #fff !important;
    border: 1px solid #ddd;
}

.e-n-tabs-heading button {
	margin-right: 10px;
}

span.remove-subject.material-symbols-outlined {
    font-size: 16px;
    border: 1px solid;
    border-radius: 50%;
    margin-left: 5px;
    cursor: pointer;
}

input#subject-search-text::placeholder {
    color: #ccc !important;
    font-style: italic;
    font-size: 13px;
}

#add-subject .material-symbols-outlined {
    color: var(--attain-primary-color);
}

div#selected-subjects-con {
    border: 1px solid #ccc;
    padding: 10px 10px;
    border-radius: 12px;
    margin: 10px 0;
    height: 250px;
    overflow: auto;
}

div#selected-subjects {
    padding: 10px 0;
}

.manage-subjects-con {
    padding: 20px;
}

.manage-subjects-con p {
    line-height: 140%;
    margin: 0 0 15px;
}

button#save-subjects {
    background: var(--attain-secondary-color);
    border: none !important;
    margin: 10px 0;
    right: 0;
}

button#save-subjects:hover {
    font-weight: 600;
    color: #fff !important;
}


.apptivate-notification {
    position: absolute;
    top: 30px;
    left: calc((100vw - 250px)/2);
    width: 250px;
    z-index: 2;
    background: var(--attain-secondary-color-lite);
    border: 1px solid #ccc;
    padding: 10px 20px;
    /* display: flex; */
    border-radius: 12px;
    display: none
}

.apptivate-notification-content {
    display: flex;
    gap: 10px;
    align-items: center;
}

.apptivate-notification-text {
    font-weight: 500;
}

.apptivate-notification-actions {
    display: flex;
    justify-content: flex-end;
}

.apptivate-btn {
    width: fit-content;
    border: 1px solid #ccc;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    background: var(--attain-primary-color);
    color: #fff;
    font-size: 14px;
    margin: 10px 0 0;
    cursor: pointer;
}



/********** End of Subject Selection ***********/

/********** Prompt Styles ***********/
.prompt-type-con {
    margin: 0 0 10px 24px;
    display: none;
}

.prompt-type-option {
    font-weight: 700;
    border-bottom: 3px solid transparent !important;
    color: #999;
    display: inline-block;
    width: fit-content;
	font-size: 16px;
	margin-right: 10px;
	cursor: pointer;
}

.prompt-type-option.selected {
	border-bottom: 3px solid var(--attain-primary-color) !important;
	color: var(--attain-primary-color);
}


.attain-prompt-text {
	border: none;
	background: none;
	min-height: 60px;
}

.attain-prompt-text:focus-visible, .attain-prompt-text:focus-visible{
	outline: none;
}





textarea.attain-prompt-text:focus, textarea.attain-prompt-text:focus-visible {
	outline: none;
}

div#prompt-con {
    /*background: #fff;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    position: fixed;
    bottom: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.35);
    z-index: 1;*/
    display:none;
}

div.prompt-input-con {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    padding: 0 0 10px;
    margin: 0;
    z-index: 1;
}

/*div.prompt-input-con > div {
    display: inline-block;
    margin: 0 5px;
    vertical-align: bottom;
}*/

#prompt-con select {
	border: 1px solid var(--attain-secondary-color);
	background: none;
	width: fit-content;
	outline: none;
	/* display: inline-block; */
	border-radius: 12px;
	background: #fff;
}

#prompt-con select:focus-visible {
    outline: none;
}

span.change-prompt-type {
    font-size: 12px;
    color: #999;
    margin-left: 5px;
    cursor:pointer;
}

/*#prompt-input, div#prompt-input-content-answer {
    width: calc(100% - 170px);
}*/

.prompt-input {
	width: 100%;
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--attain-secondary-color);
}



div.prompt-input-con span.material-symbols-outlined {
    cursor: pointer;
    margin: 0 8px;
    color: #555;
}

textarea.prompt-input {
    /* width: 100%; */
    display: inline-block;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 200px;
    background: var(--attain-primary-color-lite);
    border: none;
    vertical-align: bottom;
    border-radius: 25px;
    padding: 0 10px;
}

.prompt-col.input {
    width: 100vw;
    padding-bottom: 10px;
}

.prompt-answer-input-con {
	display: none;
}

/*.prompt-input-ele {
    display: inline-block;
    margin: 0 5px;
    width: calc(100% - 200px);
    vertical-align: middle;
}*/

/********** End of Prompt Styles ***********/



/***** Study Styles *********/
.attain-card.suggestions {
    display: inline-block;
    margin: 10px 10px 10px 0;
    font-size: 16px;
    border: 1px solid #eee;
    padding: 8px 15px;
    cursor: pointer;
    background: var(--attain-secondary-color-lite);
}

ul.student-data-list {
    padding: 0;
    margin: -20px;
}
ul.student-data-list li {
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    cursor: pointer;
}


li.chat-item:hover {
    background: var(--attain-secondary-color-lite);
}


.chat-item.active{
    background: var(--attain-primary-color-lite);
    font-weight: 600;
}

.chat-item.question::before {
    content: "Q";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    font-size: 20px;
    background: red;
    padding: 6px 12px;
    display:none
}

span.data-type {
    border-radius: 6px;
    /* background: var(--attain-secondary-color-lite); */
    color: var(--attain-secondary-color);
    font-size: 12px;
    /* padding: 2px 8px; */
    display: block;
    width: fit-content;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 5px;
    text-transform: uppercase;
}

ul.type-filter {
    margin: 0 0 20px;
    padding: 0;
}

ul.type-filter li.type-filter-item {
    list-style: none;
    display: inline-block;
    margin: 0 7px 7px 0;
    background: transparent;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #eee;
}

ul.type-filter li.type-filter-item.active {
    background: var(--attain-primary-color-lite);
    font-weight: 600;
}


li.topic-item.attain-card {
    list-style: decimal;
    list-style-position: inside;
    font-size: .7em;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    width: 200px;
}

span.score {
    position: absolute;
    bottom: 0px;
    /* width: 30px; */
    /* height: 21px; */
    background: #fff;
    border-radius: 20px;
    padding: 1px 4px;
    font-size: 12px;
    color: var(--attain-secondary-color);
    font-weight: 600;
    /*z-index: 1;*/
    display: block;
    right: 0;
}


.syllabus-ref {
    font-size: 12px;
}

/******Topic List Styles ******/

input#topic-search {
    border-radius: 8px;
    border-color: #ccc;
    margin-bottom: 10px;
}

.units {
    margin-left: -8px;
}

.unit {
    padding: 5px 0;
}

.unit::before {
    content: 'local_library';
    font-family: "Material Symbols Outlined";
    text-decoration: none !important;
    position: absolute;
    margin-left: 23px;
    font-size: 24px;
    font-weight: 300;
    margin-top: -8px;
}

.module, .topic {
    padding: 5px;
}

.module::before {
    content: 'layers';
    font-family: "Material Symbols Outlined";
    text-decoration: none !important;
    position: absolute;
    margin-left: 23px;
    font-size: 24px;
    font-weight: 300;
    margin-top: -8px;
}

.topic::before {
    content: 'topic';
    font-family: "Material Symbols Outlined";
    text-decoration: none !important;
    position: absolute;
    margin-left: 23px;
    font-size: 24px;
    font-weight: 300;
    margin-top: -8px;
}

/* Hide nested elements initially */
.modules, .topics, .subtopics {
    display: none;
}

/* Styling for titles */
.unit-title, .module-title, .topic-title {
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.subtopic {
    padding: 5px;
    cursor: pointer;
    margin-left: 50px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.subtopic::before {
    content: 'subject';
    font-family: "Material Symbols Outlined";
    text-decoration: none !important;
    position: absolute;
    margin-left: -30px;
    font-size: 24px;
    font-weight: 300;
    margin-top: -8px;
}

.toggle-arrow {
    margin-right: 30px;
    font-size: 16px;
    vertical-align: middle;
}

.subtopic:hover {
    color: var(--attain-secondary-color);
    text-decoration: underline;
}

.subtopic.active {
    background: var(--attain-secondary-color-lite);
}



/********** End of Study Styles *********/

/********** Subtopic Data Styles *********/
/*#subtopic-data-con{

}*/


/*div#subtopic-data-head h2 {
    text-transform: none;
    margin: 0;
}*/

/*.subtopic-data-body {
    background: var(--attain-background-color);
}*/


/*div#subtopic-data-body  .attain-card {
    background: #fff;
    margin: 0 0 20px;
}*/

.subtopic-data-body .description, .attain-content-block.description {
    font-size: 18px;
    background: var(--attain-primary-color-lite);
}

/********** End of Subtopic Data Styles *********/

/********** Flash Card Styles *********/



/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.lightbox-content {
    position: relative;
    width: 75vw;
    max-width: 600px;
    perspective: 1000px;
}

/*.card {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}*/




.lightbox-content .card {
    background: transparent;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    padding: 40px;
    text-align: center;
    border-radius: 25px;
}

.card-front {
    background-color: var(--attain-secondary-color-lite);
    color: #333;
}

.card-front::before {
    content: "Concept";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
}

.card-back {
    background-color: var(--attain-primary-color-lite);
    color: #333;
    transform: rotateY(180deg);
}

.card-back::before {
    content: "Explanation";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-count {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Navigation Arrows */
.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls button {
    background: none;
    border: none;
    color: var(--attain-secondary-color);
    font-size: 2em;
    cursor: pointer;
}

button#prev-card, button#next-card {
    background: none;
    color: var(--attain-secondary-color);
}

ul.subtopic-data-list {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-flow: wrap;
    margin-top: 20px;
}

li.subtopic-data.attain-card {
    list-style: none;
    /* margin: 10px 20px 0 0; */
    /* display: block; */
    /* width: 240px; */
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
    padding: 15px;
    max-height: 98px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow: unset;
    max-width: 200px;
}

li.subtopic-data.attain-card:hover {
    background: var(--attain-secondary-color-lite);
}



/* Mobile adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        width: 90vw;
    }
}
/********** End of Flash Card Styles *********/

/********** Report Styles ***********/
.attain-report-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.attain-report-row .subject {
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 4px;
    font-size: 1.1em;
}

.attain-report-cell.grade {
    text-align: right;
}

.attain-report-cell.grade.percent {
    font-weight: 600;
    font-size: 1.2em;
}

.attain-report-cell.grade.percent.excellent, .attain-grade .excellent {
    color: green;
}

.attain-report-cell.grade.percent.good, .attain-grade .good {
    color: orange;
}

.attain-report-cell.grade.percent.poor, .attain-grade .poor {
    color: red;
}

/*.excellent {
    color: green;
}

.good {
    color: orange;
}

.poor {
    color: red;
}*/

.attain-report-row:last-child {
    border: none;
}

.attain-grade, .attain-qa {
    font-size: 2em;
}

.attain-qa {
    display: inline-block;
    margin-right: 30px;
    margin-top: 15px;
}

/*.attain-qa span {
    font-size: 1.2em;
    font-weight: 600;
}*/
 
.vwpapptivate-layer-header-title {
    font-weight: 600;
    color: #555;
    width: 100%
}

.vwpapptivate-layer-header-title .question, .vwpapptivate-layer-header-title .layer-title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #555;
    width: calc(100% - 60px);
    text-overflow: ellipsis;
    height: 26px;
    overflow: hidden;
    white-space: nowrap;
    line-height: 130%;
}

.vwpapptivate-layer-header-title .subject, .vwpapptivate-layer-header-title .layer-breadcrumb {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
}



/************/
.attain-report-details-row { 
    display: flex;
    justify-content: space-between;
    width: 75%;
}

.vwpbwpa-summary-item {
    margin-bottom: 10px;
}

.vwpbwpa-summary-item .label {
    margin-bottom: 0px;
    white-space: nowrap;
    font-weight: 600 !important;
}

/*svg path {
    animation: none !important;
}

.apexcharts-series path {
    fill: var(--attain-primary-color) !important;
}*/
.upvoted {
	color:#1d9d4a;
}
.downvoted {
}

.progress-content {
    margin-top: 10px;
}

.progress {
    width: 300px;
}
.progress-row {
    display: grid;
    grid-template-columns: 75% 25%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
    font-size: 14px;
    padding: 6px 0;
}

.progress-row .grade {
    text-align: right;
    font-weight: 600;
    font-size:16px
}

.progress-row .excellent {
    color: green;
}
.progress-row .good {
    color: orange;
}
.progress-row .poor {
    color: red;
}

.grade.ungraded {
    font-size: 12px;
    font-weight: 500;
}

/*///////// End of Report Styles //////////*/



/********** File Lightbox Styles ***********/
div#attain-file-lightbox {
    position: fixed;
    z-index: 99999;
    top: 0;
    background: rgba(0,0,0,0.9);
    height: 100vh;
    padding: 40px 20px 0;
    width: 100vw;
    display: none;
    justify-content: center;
}

div#attain-file-lightbox.active{
    display: flex;
}


.file-lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    cursor: pointer;
}

div#attain-file-lightbox .file-lightbox-body {
    max-height: 95vh;
    overflow: auto;
}


.attain-ques-img img {
    max-height: 85px;
    cursor:zoom-in;
}

/********** End of File Lightbox Styles ***********/

/********** Rseponse Loader styles ***********/
.preloader-msg {
    margin-bottom: 15px;
    font-style: italic;
    font-size: 14px;
}

.loader-close {
    /* position: absolute; */
    /* right: 12px; */
    /* top: 8px; */
    cursor: pointer;
    /* width: 28px; */
    /* height: 28px; */
    /* background: #fff; */
    /* border-radius: 50%; */
    /* font-weight: 600; */
    /* border: 1px solid #ddd; */
    /* font-size: 18px; */
    text-align: right;
    /* z-index: 1; */
    /* padding: 2px; */
}

#tip-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 140px;
	background: none;
	border-radius: 16px;
	padding: 0 20px;
	margin-top: 20px;
}


  
.loader-bubble {
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	max-width: 340px;
	box-shadow: 0 4px 12px rgba(0,0,0,.2);
	text-align: center;
	position: relative;
}
  
.loader-tip-image {
    margin-bottom: 12px;
    max-height: 200px;
}
  
  .loader-tip-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    }

  .loader-tip-title {
    font-weight: 600;
    color: var(--attain-secondary-color);
    margin-bottom: 15px;
 }

 a.loader-tip-cta {
    background: var(--attain-primary-color);
    border-radius: 12px;
    padding: 5px 10px;
    color: #fff !important;
    /* text-transform: uppercase; */
    font-size: 16px;
    font-weight: 500;
}

.loader-tip-h2 {
    font-weight: 600;
    color: var(--attain-secondary-color);
    line-height: 1.3;
    margin-bottom: 10px;
}
  
@media screen and (min-width: 600px) {
    #tip-loader {
        position: absolute;
        z-index: 1;
        bottom: 100px;
        left: 20px;
    }
    .loader-bubble {
        max-width: auto;
    }
  }


  /********** End of Response Loader styles ***********/


/****** Scroll List Styles *********/
.attain-scroll-list {
    max-height: 150px;
    overflow: auto;
    background: var(--attain-secondary-color-lite);
    /* padding: 5px; */
    border-radius: 8px;
    margin-top: 15px;
    /* border: 1px solid var(--attain-secondary-color); */
    margin-top: 15px;
}

.scroll-list-item {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
}

.scroll-list-item .competency {
    display: block;
    font-size: 11px;
    line-height: 120%;
    text-transform: uppercase;
}

.scroll-list-item .text {
    font-size: 16px;
    font-weight: 500;
    width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
    line-height:110%
}

.scroll-list-item .icon span {
    font-size: 30px;
    color: var(--attain-icon-color);
    font-weight: 300;
}

.scroll-list-item .details {
    text-align: right;
    width: 80px;
    font-size: 12px;
}

  /******* End of Scroll List Styles *********/

  /******* Subject Details Styles *********/
  .subject-details-con {
    padding: 0;
    background: var(--attain-background-color);
    color: #333;
}

.vwp-flexrow.subject-action-list {
    padding: 15px 0;
}

.vwp-flexrow-item.action-item {
    /* width: 70px; */
    text-align: center;
    display: block;
    cursor: pointer;
    padding: 10px 5px;
    border: 1px solid #ccc;
    flex-shrink: 1;
}

.vwp-flexrow-item.action-item:hover {
    border-color: var(--attain-secondary-color);
}

.subject-action-list .action-item h5 {
    font-size: 14px !important;
    font-weight: 500;
}


.goto {
    border: 1px solid #ccc;
    /* width: 300px; */
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 8px;
    margin: 20px 0;
    cursor: pointer;
    background: #fff;
    max-width: 330px;
}
.goto:hover {
    border: 1px solid var(--attain-secondary-color);
}

.goto .label-con {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 16px;
    letter-spacing: -0.5px;
    font-weight: 500;
}

.goto .icon {
    color: var(--attain-icon-color);
}

.goto p {
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    line-height: 130% !important;
}


.vwp-grid {
    display: flex;
    gap: 10px;

}

.vwp-grid.subject-list {
    overflow: auto;
    margin: 10px 0;
    padding: 20px 0;
}

.vwp-grid.subject-list .vwp-grid-item {
    /* width: 170px; */
    text-align: center;
    display: block;
    cursor: pointer;
    width: calc(33.333% - 10px);
}

.vwp-grid.subject-list .vwp-grid-item .text {
    /* width: calc(100% - 10px); */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12px !important;
    text-align: center;
    line-height: 120%;
    font-weight: 500;
}

.vwp-grid.student-data {
    gap: 20px;
}

.vwp-grid.overflow {
    overflow: auto;
}

.vwp-grid-item.student-data-card {
    flex: 0 0 75%;
    border-right: 1px solid #ccc;
    padding-right: 20px;
    margin-top: 10px;
}

.student-data-card span.icon span {
    font-size: 24px;
    margin-right: 5px;
}

.vwp-grid.subject-list .vwp-grid-item .icon span.material-symbols-outlined {
        font-size: 40px;
        color: var(--attain-icon-color);
}


.data-item {
    padding: 5px 10px;
    height: 90px;
    margin-bottom: 10px;
    overflow: hidden;
}

.data-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 125%;
}

.data-topics {
    line-height: 100%;
    margin-bottom: 3px;
}

.data-topic {
    font-size: 11px;
    color: #555;
    /* text-transform: uppercase; */
    font-weight: 500;
    background: var(--attain-primary-color-lite);
    padding: 2px 4px;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

@media screen and (min-width: 600px) {
    .vwp-grid.subject-list .vwp-grid-item {
        width: calc(25% - 10px);
    }
 
    .vwp-grid-item.student-data-card {
        flex: 0 0 30%;
    }
}

  /******** End of Subject Details Styles ******/


/********** Study Guide Styles ***********/
.study-guide {
    font-size: 16px;
}

.study-guide .attain-card.definition {
    background: #fff;
}

.study-guide ol {
    /* margin: 0 !important; */
    padding: 0 0 0 20px !important;
}

.study-guide ol li {
    margin-bottom: 10px;
}

.study-guide .attain-content-block table {
    background: #fff;
}

.accordion-wrapper {
    position: relative;
}

ol.accordion {
    list-style: none;
    padding-left: 0 !important;
}

  .accordion-content {
    display: none;
    margin-left: 20px;
    margin-top: 5px;
  }

  .core-point {
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
}

.core-point ol.accordion-content {
	font-weight: normal;
	font-size: .9em;
	margin: 0;
	list-style: lower-alpha;
	cursor: auto;
}

@media only screen and (min-width: 600px) {
    .core-point ol.accordion-content {
        margin: 0 0 0 24px;
    }
}

.core-point ol.accordion-content li {
	margin: 10px 0;
	background: #fff;
	padding: 5px 10px;
	border-radius: 8px;
}

.core-point ol.accordion-content li::marker {
    background: #fff !important;
    font-size: 16px;
    color: var(--attain-secondary-color);
    font-weight: 500;
}

  .toggle-icon {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 5px;
    font-weight: bold;
    color: #0073e6;
  }

  .toggle-all {
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -30px;
    text-transform: uppercase;
    color: #555;
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 2px 5px;
    border-radius: 12px;
}

  ul.accordion-content {
    font-weight: 400;
    padding-left: 10px;
    font-size: 16px;
}

  ul.accordion-content li {
    margin-bottom: 10px;
}


.study-guide ul.accordion-content {
    font-weight: 400;
    padding-left: 0;
    font-size: 16px;
    margin: 10px 0;
}

.study-guide ul.accordion-content li {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    list-style: none;
    border: 1px solid #ccc;
}

div#studyguide-complete-con {
    padding: 10px;
}

button#studyguide-complete-btn {
    width: 100%;
}

/********** End of Study Guide Styles ***********/
@media only screen and (max-width: 600px) {
    .vwpapp-menu {
        width: fit-content;
        margin: 0 auto;
        display: flex;
    }

    /*#vwpapptivate-con {
        top: auto;
    }*/

    div#vwpapp-content {
        margin-left: 0;
        display: block;
        /*grid-template-columns: 300px 1fr;*/
    }

    .vwpapp-content-item.main {
        width: auto
    }

    /*div#vwpapptivate-con .h2 {
        font-size: 20px;
        margin-top: 20px;
    }*/

    .vwpapp-content-item.sidebar-left {
        position: absolute;
        height: calc(100vh - var(--apptivate-header-height) );
        padding-bottom: 80px !important;
    }
    #attain-prompt-response {
        font-size: 1.2em;
        color: #333;
        height: calc(100vh - var(--apptivate-header-height) - var(--apptivate-footer-height) - 40px);
    }

    .grid-con {
        grid-template-columns: 1fr;
    }

    #user-subject-con {
        display: inline-block;
        width: calc(100% - 40px);
        z-index: 2;
    }

    div#prompt-con {
        bottom: 70px;
    }



    /*div#sidebar-close-btn {
        position: fixed;
        z-index: 1;
        cursor: pointer;
        right: 5px;
        top: 5px;
    }*/



    .vwpapp-footer {
        position: fixed;
        top: unset;
        bottom: 0;
        padding: 10px 0px;
        border-top: 1px solid #ccc;
        width: 100vw;
        background: #fff;
        font-size: 0.8rem;
        z-index: 1;
        height: unset;
        display: none
    }

    /*.vwpapp-menu-item #chat-btn {
        top: auto;
    }

    .vwpapp-menu-item {
        display: inline-block !important;
        margin: 0 10px;
        text-align: center;
        cursor: pointer;
    }*/

    .vwpapptivate-layer {
        background: #fff;
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 100vw;
        opacity: 0;
        transition: left 0.1s opacity 0.5s;
        z-index: 4;
    }

    .vwpapptivate-layer.active {
        left: 0;
        opacity: 1;
    }

    /*.prompt-gallery {
        margin-top: 20px;
        display: block;
        gap: unset;
    }*/

    .prompt-input-ele {
        width: calc(100% - 5px);
    }

    .attain-question {
        font-size: 1.1em;
    }

    div#subtopic-data-body {
        min-height: calc(100vh - 145px);
    }

    ul.subtopic-data-list {
        gap: 10px;
    }

    li.subtopic-data.attain-card {
        padding: 12px;
        max-width: 40vw;
    }

    li.topic-item.attain-card {
        width: 40vw;
    }    

    /**.prompt-gallery .prompt {
        width: 250px;
    }*/

    /*.prompt{
        flex: 0 0 80%; 
    }*/

   /* .discover-item {
        max-width: 46% !important;
    }

    .discover-con {
        flex-wrap: wrap;
    }
        */
    #prompt-options-con .prompt-gallery {
        display: block !important;
        /* width: 90% !important; */
    }

    #prompt-options-con .prompt {
        width: 100%;
    }

}

@media only screen and (min-width: 401px) {
    .attain-scroll-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        max-height: 220px;
    }

    .attain-scroll-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .attain-scroll-list .scroll-list-item {
        border: 1px solid #eee;
    }

}


/********* Subjects Row Layout **********/
/* Row layout */
.vwp-row.subject-list {
    /* background: #fff; */
    border-radius: 20px 20px 0 0;
    padding: 20px 0 0;
}

/* Card look & feel (tweak to match your design system) */
.vwp-row-item.row-card {
    padding: 0 0 5px;
    /* border-radius: 14px; */
    background: #fff;
    /* box-shadow: 0 1px 3px rgba(0,0,0,.08); */
    cursor: pointer;
    margin: 2px 0;
    font-size: 1.1rem;
    /* font-weight: 500 !important; */
}

.subject-list-controls button:hover {
    color: var(--attain-secondary-color) !important;
}

.vwp-row-item.row-card .icon .material-symbols-outlined{ font-size: 26px; line-height: 1; }
.vwp-row-item.row-card .text{ font-weight: 600; line-height: 1.2; }

.vwp-row-item.row-card .row-head {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 0 6px 0 12px;
    justify-content: flex-start;
}
.row-head .arrow {
    vertical-align: middle;
    color: #bbb;
}

.vwp-row.subject-list .subject {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vwp-row.subject-list .icon .material-symbols-outlined {
    font-size: 26px;
    line-height: 1;
    background-image: linear-gradient(to bottom, var(--attain-primary-color), var(--attain-secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* color: var(--attain-secondary-color); */
}


.row-body {
    padding: 10px;
    /* background: rgba(204, 204, 204, 0.1); */
    border: 1px solid #ddd;
    /* box-shadow: inset 0 0 10px rgba(51, 51, 51, 0.1); */
    margin: 0 10px;
    border-radius: 8px;
    /* font-size: .39em !important; */
    display: flex;
    flex-wrap: wrap;
}

.xp {
    margin-right: 20px;
}

/**** Style first row only differently ****/
.vwp-row.subject-list .vwp-row-item.row-card:first-child {
    border-radius: 20px 20px 0 0;
    padding-top: 4px;
}

.vwp-row.subject-list .list-head {
    display: flex;
    justify-content: space-between;
    align-content: center;
    background: #fff;
    padding: 12px 12px 4px;
    font-size: .8rem;
    font-weight: 500;
    border-radius: 20px 20px 0 0;
    color: #999;
}

/* Hidden state for overflow subjects */
.vwp-row-item.row-card.is-hidden{ display: none; }

/* Toggle controls */
.subject-list-controls {
    background: #fff;
    margin: 0;
    border-radius: 0 0 20px 20px;
}
/*.subject-list-controls .subject-toggle{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #e4e6eb;
  background: #f8f9fb;
  font-weight: 600;
  
}*/
.subject-list-controls .subject-toggle:hover{
  background: #fff !important;
}

button.subject-toggle {
    color: #333 !important;
    background: none !important;
    border: none !important;
    /* text-align: left; */
    cursor: pointer;
    font-weight: 500;
    font-size: .9rem;
    width: 100%;
    text-align: left;
}

.vwp-row-item.row-card .text {
    font-weight: 500;
    line-height: 1.2;
    font-size: 1rem;
}

.vwp-row-item.row-card .metric {
    display: flex;
    /* flex-direction: column; */
    /* width: 30px; */
    align-items: center;
    gap: 5px;
}

.vwp-row-item.row-card .chart {
    border: 1px solid #ccc;
    height: 6px;
    border-radius: 4px;
    width: 46px;
    display: none;
}

.vwp-row-item.row-card .bar {
    background: var(--attain-secondary-color);
    height: 100%;
}

.vwp-row-item.row-card .percent {
    white-space: nowrap;
    font-weight: 500;
    color: var(--attain-secondary-color);
}

.vwp-row-item.row-card.add {
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--attain-primary-color);
    padding: 0 12px;
    border-radius: 20px 20px 0 0;
}

.row-body-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9rem;
    flex: 0 0 50%;
}

.row-body-item i {
    background: #f7f7f7;
    padding: 0px 5px;
    border-radius: 4px;
    margin: 5px 3px;
    border: 1px solid #ddd;
    color: var(--attain-secondary-color);
}

.row-stats {
    display: flex;
    padding: 0 0 10px 12px;
    font-size: .8em;
    gap: 0;
    /* grid-template-columns: 1fr 1fr 1fr; */
    justify-content: space-between;
}


.row-stats  .stat.metric.avg-score {
    text-align: center;
}

.stat.metric.xp {
    text-align: right;
}

.subject-list .metric .label {
    font-size: .9em;
    text-transform: uppercase;
    color: #aaa;
}


.attain-btn-card {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.attain-btn-card label {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    font-size: .9em;
    font-weight: 500;
    color: #555;
    cursor: pointer;
}

.attain-btn-card:hover label {
    color: var(--attain-secondary-color);
}

.attain-btn-card:hover i {
    background: aliceblue;
}

@media only screen and (min-width: 600px) {
    .vwp-row.subject-list .row-body-item{
        flex: 0 0 33%;
    }
}
