@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* Plus Jakarta Sans - Light (Weight 300) - Normal Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Plus Jakarta Sans - Light (Weight 300) - Italic Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Plus Jakarta Sans - Regular (Weight 400) - Normal Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Plus Jakarta Sans - Regular (Weight 400) - Italic Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Plus Jakarta Sans - Medium (Weight 500) - Normal Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Plus Jakarta Sans - Medium (Weight 500) - Italic Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Plus Jakarta Sans - Semi Bold (Weight 600) - Normal Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Plus Jakarta Sans - Semi Bold (Weight 600) - Italic Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Plus Jakarta Sans - Bold (Weight 700) - Normal Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Plus Jakarta Sans - Bold (Weight 700) - Italic Style */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    background: linear-gradient(180deg, #031F1D 5%, #15bba2 100%, #008B7B 100%) !important;
}
html{
    background-color: #031F1D!important;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

body a {
    color:#085952;
}

body a:hover {
    color:#000;
}

.clear {
    clear:both;
}

.error-message {
    color:red;
    background:#fff;
    position: fixed;
    top:0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    left:0px;
    right: 0px;
    padding:20px 24px;
    width:360px;
    text-align: center;
    margin:0px auto;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    background:rgb(255, 222, 222);
    font-weight: bold;
}

/* LOGIN */
.login {
    background:url("../assets/login-bg.svg");
    background-repeat: no-repeat;
    background-size: 980px;
    background-position: center center;
    text-align: center;
}

.link-to-home {
    padding:20px 0px;
    color:#fff;
}

.login-logo {
    width:250px;
    margin:0px auto;
    display: block;
    margin-bottom: 20px;
}

.login-box {
    text-align: left;
    background:#fff;
    border-radius: 16px;
    width:418px;
    padding:40px 24px;
    margin:auto;
    margin-top:60px;
}

.login-box h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin:0px;
    margin-bottom: 10px;
}

.login-box p {
    color: var(--Woodsmoke-300, #B0B0B0);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    margin:0px;
}

.login-box .form {
    margin-top: 20px;
}

.login-box .form label {
    display: block;
    margin-bottom: 7px;
    color:#003734;
}

.login-box .form input[type="text"], .login-box .form input[type="password"], .form textarea  {
    display: block;
    width: 100%;
    border-radius: 8px;
    padding:12px 16px;
    border: 1px solid #E7E7E7;
    background: #F6F6F6;
}

.login-box .form select {
    display: block;
    width: 100%;
    border-radius: 8px;
    padding:12px 16px;
    border: 1px solid #E7E7E7;
    background: #F6F6F6;
}

.login-box .form div {
    padding:10px 0px;
}

.login-box .form input[type="submit"] {
    display: flex;
    width: 360px;
    padding: 13px 24px 15px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #026D63;
    color: #FFF;
    
    font-size: 14px;
    font-weight: 600;
    border: 0;
    margin-top: 10px;
}

.login-box .form input[type="submit"]:hover {
    background:#085952;
    cursor: pointer;
    cursor: hand;
}

.seperator {
    border-bottom:1px solid #D1D1D1;
}

.seperator span {
    background:#fff;
    display: inline-block;
    margin:0px auto;
    padding:5px;
    position: absolute;
    left:0px;
    right:0px;
    width:40px;
    text-align: center;
    margin-top:-15px;
    color:#B0B0B0;
}

.login-box .form input[type="button"] {
    display: flex;
    width: 360px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #eeee;
    color: #085952;;
    font-style: normal;
    font-weight: 600;
    font-size:14px;
    border:0px;
}

.login-box .form input[type="button"]:hover {
    background:#085952;
    cursor: pointer;
    cursor: hand;
    color:#fff;
    border:0px;
}


/* DASHBOARD */
.header {
    padding:20px 0px;
    color:#fff;
    padding-bottom: 7px;
}

.wrapper {
    width:1024px;
    margin:0 auto;
    max-width: 100%;
}

.logo {
    float:left;
}

.logo img {
    width:190px;
    margin-top:10px;
}

.menu {
    float:left;
    width:370px;
    margin-top: 0px;
    margin-left: 130px;
}

.menu li {
    list-style-type: none;
    margin-left: 10px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 24px;
    transition-duration: 200ms;
}

.menu .active {
    background:rgba(255 255 255 / 15%);
}

.menu li:hover {
    background:rgba(255 255 255 / 15%);
}

.menu li a {
    padding:8px;
    font-size:16px;
    color:#fff;
    text-decoration: none;
    display: inline-block;
    padding:7px 10px;
    padding-left: 32px;
    font-weight: 800;
}

.icon_vocabulary {
    background: url("../assets/vocabulary.svg") no-repeat;
    background-position: center left;
}

.icon_dashboard {
    background: url("../assets/home.svg") no-repeat;
    background-position: center left;
}

.profile {
    float:right;
    color:#fff;
    text-decoration: none;
    font-size: 16px;
    padding:8px 0px;
    text-align: right;
    margin-top: 7px;
    font-weight: 800;
}

.profile img {
    width:32px;
    height:32px;
    object-fit: cover;
    border-radius:32px;
    float:left;
    margin-right:10px;
    margin-top:-4px;
}

.profile:hover {
    color:#ccc;
}

.main {
    width: 1120px;
    max-width: 95%;
    /*width:1024px;*/
    padding:32px 48px;
    background:#fff;
    min-height: 400px;
    margin:0px auto;
    border-radius: 40px;
}
.teacher_page .teacher_info .teacher_card:hover{
    box-shadow: none;
}
.teacher_page .teacher_info .teacher_card{
    width: fit-content;
    align-items: start;
    justify-content: start;
    margin: 0;
    overflow: unset;
}
.teacher_page .teacher_info .teacher_card img {
    margin: 0;
}
.teacher_page .teacher_info{
    display: flex;
    gap: 32px;
}
.teacher_page .teacher_info .biography{
    margin-top:16px;
    font-weight:400;
    margin-bottom:16px;
}
.teacher_page .teacher_calendar{
    margin-top: 24px;
}
.teacher_page .calendar .teacher_times{
    width: 100%;
    overflow-y: hidden;
    padding-bottom: 10px;
}
.headline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
    flex-direction: row;
}
.teacher_info .headline {
    align-items: start;
    flex-direction: column;
}

.headline h1 {
    /*width:auto;*/
    /*max-width: 380px;*/
    font-size: 28px;
    font-weight: 700;
    margin:0px;
    width:700px;
    max-width: none
}

.headline p {
    font-size: 16px;
    color:#888888;
    margin:0px;
    padding:3px 0px;
}

.headline h1 span {
    color:#026D63;
}

.secondary_buttons {
    display: flex;
    margin-top:9px;
    gap: 15px;
    width: 613px;
    justify-content: right;
}

.secondary_buttons a {
    display: flex;
    gap: 5px;
    height: fit-content;
    background:#1A1A1A;
    border-radius:8px;
    font-weight: 600;
    font-size: 14px;
    padding:14px 20px;
    /*margin-left: 15px;*/
    color:#fff;
    text-decoration: none;
}

.secondary_buttons img {
    float:left;
    margin-right: 8px;
    margin-top: -2px;
}

.secondary_buttons a:hover {
    background:#3a3a3a;
    color:#fff;
}

.latest_words {
    width:40%;
    /*max-width:347px;*/
    /*width:347px;*/
    background:#F6F6F6;
    border-radius:24px;
    padding:32px 20px;
    float:left;
    margin-right: 24px;
    /*height: 347px;*/
}

.latest_words h3 {
    padding:0px;
    margin:0px;
    float: left;
    font-size: 20px;
    margin:0px;
    margin-bottom: 20px;
    font-weight: 600;
}

.latest_words a {
    color:#1A1A1A;
    text-decoration:none;
    display: block;
    background:#fff;
    padding:11px;
    border-radius: 8px;
    float: right;
    margin-top:-7px;
    max-width: 100px;
}

.latest_words .word {
    background:#fff;
    border-radius: 16px;
    margin-top:10px;
    min-height: 292px;
}

.latest_words .word .word_header {
    background:#C3FFF4;
    padding:16px 24px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.word .definition {
    border-bottom:1px solid #E7E7E7;
}

.word .definition, .word .example {
    padding:16px 24px;
}

.word label {
    color:#888888;
}

.word p {
    padding:10px 0px;
    margin:0px;
    font-weight: 500;
    line-height: 1.4em;
}

.latest_words .word h3 {
    color:#003834;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    float: left;
    margin-bottom:0px;
}

.latest_words .word h3 span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    display: block;
    color:#008B7B;
}

.latest_words .word a {
    background:#fff;
    border-radius: 8px;
    color:#026D63;
    font-weight: 600;
    font-size: 14px;
    margin-top: 0px;
}

.latest_words a:hover{
    background:#eee;
}
.sessions-container{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.sessions {
    width:60%;
    /*max-width:549px;*/
    /*width:549px;*/
    float:left;
    /*height:347px;*/
    background:#F6F6F6;
    border-radius:24px;
    padding:32px 32px;
}

.sessions .tabs {
    /*list-style-type: none;*/
    display: flex;
    gap: 30px;
    margin:0;
    /*padding:0 0 2px 0;*/
    border-bottom:1px solid #D1D1D1;
}

.sessions .tabs li {
    display: inline-block;
    margin-right: 30px;
}

.sessions .tabs a {
    padding:0 0 10px 0;
    margin:0 0 -1px 0;
    font-size: 20px;
    color:#888888;
    text-decoration: none;
    display: block;
    font-weight: 600;
    border-bottom:2px solid transparent;
    text-align: center;
}

.sessions .tabs .active {
    border-bottom:2px solid #1A1A1A;
    color:#000;
}

.sessions .tabs a:hover {
    color:#000;
}

.session_card {
    background:#fff;
    padding:24px;
    border-radius: 24px;
    margin-top: 20px;
    padding-top:16px;
    position:relative;
}

.session_card .teacher {
    /*padding:5px 10px;*/
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.session_card .teacher h3 {
    font-size: 24px;
    color:#026D63;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: fit-content;
    /*float: left;*/
    /*margin-left: 28px;*/
    /*margin-top:15px;*/
    /*margin-bottom: 8px;*/
    /*max-width: 250px;*/
}
.session_card .teacher .teacher_info{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.session_card .teacher span {
    color:#6D6D6D;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.session_card .teacher img {
    object-fit: cover;
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 90px;
}

.session_card .details {
    list-style: none;
    margin:0px;
    padding:0px;
    border-top:1px solid #eee;
    padding-top: 25px;
    margin-top:16px;
    padding-left: 20px;
}

.session_card .details li {
    padding:0px 10px;
    display: table-cell;
    min-width:130px;
    text-align: center;
}

.session_card .details li img {
    width:52px;
    height:52px;
    margin-bottom: 10px;
}

.session_card .details li span {
    display: block;
    color:#888;
    float: left;
    width: 100%;
}

.session_card .details li b {
    float: left;;
    display: block;
    width: 100%;
    padding:5px 0px;
}
.session_card .teacher .meeting-button{
    /*margin-left: auto;*/
    height: fit-content;
}

.cancel-by-teacher {
    background:red;
    color:#fff;
    font-size: 16px;
    padding:13px 30px;
    text-decoration: none;
    border-radius: 8px;
    float: right;
    margin-top: 20px;
    margin-right: 20px;
}
.session_card .teacher .meeting-button.canceled-meeting{
    background-color: #999999;
    cursor: not-allowed;
}
.cancel-by-teacher:hover {
    background:#1A1A1A;
    color:#fff;
} 

.join {
    background:#026D63;
    padding:13px 30px;
    font-size:16px;
    font-weight: 600;
    color:#fff;
    text-decoration: none;
    border-radius:8px;
    float: right;
    margin-top:20px;
}

.join:hover {
    background:#1A1A1A;
    color:#fff;
}
.join:has(img):hover {
    background-color: #FFF;
}

.teachers, .topics{
    background: #F6F6F6;
    border-radius: 24px;
    padding: 30px 30px;
}

.teachers h2 {
    padding: 0px;
    margin: 0px;
    font-size: 20px;
    margin: 0px;
    margin-bottom: 20px;
    font-weight: 800;
}

.teacher_list{
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px 30px 30px;
    gap: 20px;
    /*overflow-x: auto;*/
    max-width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.teacher_list::-webkit-scrollbar {
    display: none;
}
.scroll-control{
    display: flex;
    gap: 10px;
}
.scroll-control button{
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    height: fit-content;
}
.scroll-control button:hover{
    background: #C3FFF4;
}
.teacher_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*width:193px;*/
    /*float:left;*/
    background:#fff;
    border-radius: 16px;
    /*padding:16px;*/
    /*height: 410px;*/
    /*position: relative;*/
    text-align: center;
    transition-duration: 200ms;
    /*background: #fff;*/
    margin-bottom: 20px;
    padding-top:0;
    overflow: hidden;
}

.teacher_card:hover {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.15) 0px 50px 100px -20px, rgba(0, 0, 0, 0.15) 0px 30px 60px -30px;
}

.teacher_card .star {
    font-size:22px;
    display: none;;
}

.teacher_card:hover .star {
    color:#026D63;
    display: block;
}

.teacher_card img {
    cursor: pointer;
    /*margin-left:-16px;*/
    width:225px;
    height:225px;
    object-fit: cover;
    /*border-radius: 16px;*/
    /*margin-bottom: 24px;*/
    /*border-bottom-left-radius: 0px;*/
    /*border-bottom-right-radius: 0px;*/
}

.teacher_card a {
    display: block;
    /*position:absolute;*/
    /*bottom:16px;*/
    padding:15px 0px;
    text-align: center;
    width:85%;
    /*font-size:14px;*/
    background:#fff;
    border:1px solid #E7E7E7;
    border-radius: 8px;
    color:#1A1A1A;
    text-decoration: none;
    font-weight: 800;
    margin: 16px 0;
}
.teacher_card .teacher_info{
    /*padding: 0 16px 16px 16px;*/
    width: 100%;
    /*margin-top: 24px;*/
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    flex-direction: column;
}
.teacher_card a:hover {
    color:#fff;
    background:#026D63;
}

.teacher_card p {
    font-size: 14px;
    color:#5D5D5D;
    line-height: 1.4em;
    margin:0px;
    margin-top: 7px;
}

.teacher_card b {
    color:#1A1A1A;
    font-size: 18px;;
}

.footer {
    text-align: center;
    padding:20px;
    font-size: 12px;
    color:#026D63;
}

.no-result {
    text-align: center;;
    padding:50px 0px;
    grid-column: 1 / -1;
}

.no-result img {
    width:150px;
    margin-bottom:15px;
}

.no-result p {
    padding:0px;
    margin:0px;
    margin-top:7px;
    color:#6D6D6D;
}

.white-button {
    background:#fff;
    padding:13px 24px;
    font-size:16px;
    font-weight: 600;
    color:#1A1A1A;
    text-decoration: none;
    border-radius:8px;
    float: right;
    /*margin-top:20px;*/
    border:1px solid #E7E7E7;
    height: fit-content;
}

.white-button:hover {
    color:#026D63;
}

.teacher_photo {
    width:200px;
    height:200px;
    object-fit: cover;
    float: left;
    border-radius:16px;
    margin-right: 32px;
}

.headline .star {
    float:right;
    font-size: 24px;
    color:#026D63;
    margin-right:-90px;
}

.back {
    font-size: 18px;
    color:#1A1A1A;
    text-decoration: none;
    margin-bottom: 24px;
    display: block;
    background:url("../assets/back.svg") no-repeat;
    background-position: left center;
    padding-left: 24px;
    background-size:16px;
}

.back:hover {
    color:#026D63;
}

.calendar, .teacher_topics {
    background: #F6F6F6;
    border-radius: 24px;
    padding: 32px 32px;
    margin-top:32px;
}
.topics .topic_header{
    justify-content: start;
}
.topics .topic_header h2{
    margin: 0;
}

.calendar table thead span {
    font-weight:400;
}

.calendar table th {
    padding:10px;
}

.calendar table th, .calendar table td {
    text-align:center;
    font-size:14px;
    position: relative;
    vertical-align: baseline;
    width:14.28%;
    background:#fff;
}

.calendar table td {
    height: 80px;
}

.calendar table th:first-child {
    border-top-left-radius: 16px;
}

.calendar table th:last-child {
    border-top-right-radius: 16px;
}

.calendar table td:first-child {
    border-bottom-left-radius: 16px;
}

.calendar table td:last-child {
    border-bottom-right-radius: 16px;
}

.calendar .slot {
    display: block;
    background: #ECFDF5;
    margin:10px;
    border-radius:4px;
    color:#1A1A1A;
    padding:8px 16px;
    font-weight: 600;
    border:2px solid #eee;
}

.calendar .slot:hover {
    background:#15bba2;
    cursor:pointer;
    cursor:hand;
    border:2px solid #00D9B9;
    color:#fff;
}

.calendar .busy, .calendar .not_selected {
    background:#eee !important;
    cursor:not-allowed !important;
    color:#999 !important;
    opacity: 0.5;
}

.calendar .past {
    background:#eee !important;
    cursor:not-allowed !important;
    color:#999 !important;
    opacity: 0.5;
}

.calendar .past:hover {
    border-color:red !important; 
} 

.calendar .busy:hover {
    border-color:red !important; 
} 

.timezone {
    /*float:right;*/
    /*text-align: right;*/
    /*margin-top:-45px;*/
    margin: 0;
}

.week_selector {
    clear:both;
    padding:0px 20px;
    padding-bottom: 20px;
}

.calendar .dayoff {
    background:#eee;
    position: absolute;
    margin:0px auto;
    top:10px;
    bottom:10px;
    left:10px;
    right:10px;
    text-align: center;
    border-radius:4px;
    font-size:12px;
}

.modal_overlay, .modal_overlay_t {
    background:rgba(0,0,0,0.7);
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    display: none;
    z-index: 99;
}

.modal {
    background:#fff;
    position:fixed;
    z-index: 9999;
    top:50px;
    width:400px;
    margin:0px auto;
    left:0px;
    right:0px;
    padding:24px;
    border-radius: 16px;
    display: none;
}

.modal h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin:0px;
    padding:0px;
}

.modal p {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color:#6D6D6D;
}

.modal div {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color:#454545;
}

.modal table {
    margin-top:16px;
}

.modal table td {
    font-size:14px;
    padding:10px 0px;
}

.modal table td img {
    float:left;
    margin-right: 16px;
}

.modal table td b {
    display: block;
    color:#888888;
    font-weight: 500;
    margin-bottom: 3px;
}

.modal table td span {
    color: #1a1a1a;
    font-weight: 600;
}

.modal input[type="button"] {
    padding:15px 24px;
    border:1px solid #D1D1D1;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    /*margin-right: 16px;*/
    border-radius:8px;
    background:#fff;
    width:190px;
    /*margin-top:20px;*/
}
.meeting_link{
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: auto;
}

.teacher .meeting_link span{
    display: none;
}
.modal .confirm {
    margin-right: 0px !important;
    background:#026D63 !important;
    border:1px solid #026D63 !important;
    color:#fff;
}
#confirm.modal {
    width: 450px;
}
#balance_modal .confirm:disabled{
    background:#999 !important;
    color:#fff !important;
    cursor: not-allowed;
    border-color: #D1D1D1!important;
}

.modal input:hover {
    cursor:pointer;
}

.cancel {
    color:#999;
    font-size:12px;
    margin-top:10px;
    margin-right:0px;
    display: block;
}

.sessions .past {
    opacity:0.8;
}

.sidebar {
    /*float: left;*/
    /*width:350px;*/
    width: 35%;
}

.session_box {
    padding:24px;
    border-radius: 16px;
    background:#F6F6F6;
    margin-bottom: 24px;;
    width: 100%;
}
.session_info.session_box{
    width: 350px;
}
.session-analyze .container{
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 18px;
}
.conversation {
    padding:24px;
    border-radius: 16px;
    /*width:602px;*/
    background:#F6F6F6;
    /*margin-bottom: 24px;*/
    /*float: left;*/
    /*margin-left:24px;*/
    width: 65%;
    margin: 0;
}

.conversation h3 {
    font-size: 20px;
    color:#1A1A1A;
    margin:0px;
    padding:0px;
    margin-top:10px;
}

.session_box h3 {
    font-size: 20px;
    color:#1A1A1A;
    margin:0px;
    padding:0px;
    margin-top:10px;
}

.session_box p {
    margin:0px;
    margin-top:5px;
    line-height: 1.4em;
}

.session_info .teacher_photo {
    width:100px;
    height:100px;
    object-fit: cover;
    border-radius: 16px;
    margin-right: 16px;
}

.session_info table td {
    font-size:12px;
}

.session_info table {
    margin-top:20px;
}

.session_info table td img {
    float:left;
    margin-right: 5px;
    margin-top:-5px;
}

.session_info table td span {
    display: block;
}

.session_recommendations div {
    margin:20px 0px;
}

.session_recommendations div b {
    font-weight: 800;
    color:#008B7B;
    display: block;
    font-size:14px;
    margin-bottom: 10px;;
}

.session_recommendations div span {
    font-size: 12px;
    color:#1A1A1A;
    line-height: 1.4em;
}

.session_summary p {
    margin-top:20px;
    font-size:12px;
    color:#1A1A1A;
    line-height: 1.4em;
}

.chat {
    padding:10px 24px;
    margin-left: -24px;
    margin-right: -24px;
}

.chat:hover {
    cursor: pointer;
    
    background:#aaffef !important;
}

.chat img {
    width:32px;
    height:32px;
    object-fit: cover;
    border-radius:32px;
    margin-right: 10px;
    float:left;
    margin-top: 2px;
}

.chat b {
    float:left;
    display: block;
    width:500px;;
    font-size:14px;
}

.chat p {
    width:560px;
    float:left;
    display: block;
    margin:0px;
    line-height: 1.4em;
    font-size: 14px;
}

.chat:hover span {
    border-bottom:2px dashed #00D9B9;
}

.chat span:hover {
    border-bottom: 2px solid #00D9B9;
    cursor: pointer;
    cursor: hand;
    background:#026D63;
    color:#fff;
}

.word_bar {
    background:#FFF;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    box-shadow: 0 -6px 20px 0 rgba(0, 0, 0, 0.10);
}

.word_bar .wrapper {
    padding: 8px 16px;
}

.word_bar h3 {
    margin:0;
    font-size:18px;
    color:#1A1A1A;
    /*padding-bottom:20px;*/
    /*border-bottom:1px solid #eee;*/
    /*margin-bottom:20px;*/
}

.word_bar label {
    display:inline-block;
    background:#026D63;
    padding:8px;
    border-radius: 120px;
    padding:6px 16px;
    color:#fff;
    margin-right: 8px;
    background:#026D63;
    background-position:10px center;
    background-size:14px;
    font-weight: 800;
    padding-bottom:8px;
    cursor:pointer;
    cursor:hand;
}

.word_bar label:hover {
    background-color:#F65556;
}
.word_bar .icon {
    display: none;
}
.word_bar .selected-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.word_bar input {
    background:#026D63;
    color:#fff;
    border-radius:8px;
    padding:13px 24px;
    font-size:14px;
    border:0;
    float:right;
    font-weight: 800;
    /*margin-top:-71px;*/
    height: fit-content;
}

.word_bar input:hover {
    background:#1A1A1A;
    cursor:pointer;
    cursor:hand;
}

.word_bar .disabled {
    background:#ccc !important;
    color:#1A1A1A !important;
    cursor: not-allowed !important;
}

.fixed {
    position: fixed;
    top:16px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    
}

.fixed table {
    display: none;
}

.fixed .teacher_photo {
    width: 48px !important;
    height: 48px !important;
}

.fixed h3 {
    font-size: 16px;
    margin-top:0px;
}

.voc_session {
    background:#F6F6F6;
    border-radius:24px;
    padding:24px;
    margin:24px 0px;
}
.voc_session .voc_header{
    display: flex;
    justify-content: space-between;
}

.voc_session .voc_header div{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.voc_session .voc_header h3 {
    padding:0;
    margin:0;
    font-size:20px;
}

.voc_session .collapse_button {
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.voc_session .collapse_button .icon{
    display: none;
}

.voc_session .voc_header span {
    font-size:14px;
    font-weight: 600;
}

.voc_words {
    margin-top:24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.voc_parent {
    position:relative;
    float:left;
    /*width:182px;*/
    /*margin-bottom:16px;*/
    /*margin-right:16px;*/
    min-height: 100px;
}

.voc_parent:nth-child(5n) {
    margin-right: 0px;
}


.voc_item {
    /*width:134px;*/
    min-height: 260px;
    width: 100%;
    background:#fff;
    padding:24px;
    border-radius:16px;
    position:relative;
    box-shadow: rgba(50, 50, 93, 0.07) 0px 2px 5px -1px, rgba(0, 0, 0, 0.05) 0px 1px 3px -1px;
}


.voc_item .progress {
    display: block;
    width:100%;
    background:#E7E7E7;
    height:4px;
    border-radius:10px;
    position:relative;
    margin-top:20px;
    margin-bottom: 20px;
}

.voc_item .progress b {
    display: block;
    position: absolute;
    height:4px;
    left:0px;
    top:0px;
    background:#1FDA92;
}

.voc_item h4 {
    color:#1A1A1A;
    font-size:18px;
    font-weight: 700;
    margin:0px;
    padding:0px;
}

.voc_item p {
    font-size: 12px;
    overflow: hidden;
    height:115px;
    line-height: 1.38em;
    font-weight: 600;
    color:#1A1A1A;
}

.voc_item a {
    font-size:12px;
    font-weight: 800;
    color:#020842;
    white-space: nowrap;
}

.voc_item a:hover {
    color:#1FDA92 !important;
}

.voc_item img {
    /*width:48px;*/
    height:48px;
    opacity:0.5;
    /*margin-left:40px;*/
    margin-top:30px;
    width: 100%;
}

.voc_item:hover {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.15) 0px 50px 100px -20px, rgba(0, 0, 0, 0.15) 0px 30px 60px -30px;
    position:absolute;
    z-index: 99999;
}

.voc_item ul {
    margin:0px;
    padding:0px;
    list-style-type: none;
    display: none;
    margin-top:-2px;
}

.voc_item ul li {
    padding:5px 0px;
    padding-top:0px;
}

.voc_item ul .done a {
    color:#026D63;
}

.voc_item ul a {
    position: relative;
    white-space: nowrap;
}

.voc_item:hover .next_task {
    display:none;
}

.voc_item:hover ul {
    display: block;
}

.voc_item:hover .origin {
    display: none;
}

.voc_item:hover .translation {
    display: block;
}

.voc_item .translation {
    display: none;
}

.voc_item .translation b {
    font-weight: 800;
}

.voc_overlay {
    position:fixed;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    z-index: 9999;
    width:100%;
    height: 100%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: none;
}

.smartcard {
    background:#fff;
    border-radius: 16px;
    padding:90px;
    position:fixed;
    top: 20px;
    bottom:20px;
    right:20px;
    left:20px;
    margin:auto;
    width:780px;
    height:520px;
    z-index:9999;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.15) 0px 50px 100px -20px, rgba(0, 0, 0, 0.15) 0px 30px 60px -30px;
    display: none;
    max-width: 95%;
}

.smartcard h3 {
    font-size: 36px;
    text-align: center;
    color:#1A1A1A;
    margin:0px;
    padding:0px;
}

.smartcard h3 i {
    font-style: normal;
    border-bottom:2px dotted #026D63;
}

.smartcard p {
    color:#1A1A1A;
    font-size: 18px;
    text-align: center;
    line-height: 1.4em;
}

.smartcard td {
    font-size: 18px;
}
.smartcard .close-button{
    display: none;
}
.smartcard .progress {
    background:#C6EFDF;
    border-radius:20px;
    height:5px;
    width:56px;
    display: block;
    position:relative;
    margin:0px auto;
    margin-top:-60px;
    margin-bottom: 60px;
}

.smartcard .progress b {
    background:#1FDA92;
    border-radius:20px;
    height:5px;
    width:56px;
    display: block;
    position:absolute;
    top:0px;
    left:0px;
}

.smartcard span {
    display: block;
    font-size: 16px;
    color:#6D6D6D;
    text-align: center;
    margin-top: 0px;
}

.smartcard span.translation {
    font-size: 16px;
    color:#1A1A1A;
    font-weight: 800;
    margin-top:20px;
}

.smartcard span.translation img {
    width:12px;
    height:12px;
    display: inline-block;
    margin-right: 10px;
}

.smartcard input {
    background:#026D63;
    border-radius:8px;
    /*width:100%;*/
    text-align: center;
    padding:20px 0px;
    color:#fff;
    font-size: 16px;
    font-weight: 800;
    border:0px;
    margin-top:37px;
}

.smartcard input:hover {
    background:#008B7B;
    cursor: pointer;
    cursor: hand;
}

.pronunciation .play {
    margin:0px auto;
    display: block;
    margin-top:32px;
    width:85px;
}

.pronunciation .play:hover {
    opacity:0.7;
    cursor:pointer;
    cursor:hand;
}

.examples input[type="button"]{
    margin-top:11px;
}

.examples p {
    margin:20px !important;
}

.examples span {
    margin-top:-10px;
}

.shortcut {
    margin-top:30px !important;
    background:#F6F6F6 !important;
    color:#5D5D5D !important;
}
.conversations input[type="button"]{
    margin-top:11px;
}

.conversations table {
    margin-top:20px;
}

.synonyms table {
    margin-top:20px;
}

.synonyms ul {
    list-style-type: none;
    margin:0px;
    padding:0px;
    margin-top:10px;  
}

.synonyms ul li {
    padding:3px 0px;
}

.is_used_on_session img {
    margin:0px auto;
    display: block;
    margin-top:50px;
    margin-bottom:50px;
}

.open_next_task {
    position:absolute;
    bottom:40px;
    left:90px;
    right:90px;
    /*width:600px !important;*/
}

.smartcard .shortcut {
    position:absolute;
    bottom:110px;
    left:90px;
    right:90px;
    /*width:600px !important;*/
}

.smartcard .shortcut:hover {
    background:#eee !important;
}

.topup {
    text-align: center;
}

.topup_head h2 {
    color: #1A1A1A;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 48px */
    margin:0px;
    padding:0px;
    margin-bottom: 16px;
}

.topup_head p {
    width: 462px;
    color: var(--Woodsmoke-800, #454545);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin:0px auto;
}

.topup .option_box {
    background:#F6F6F6;
    padding:32px;
    border-radius:24px;
    width:256px;
    float:left;
    margin-right:32px;
    margin-top:48px;
}

.topup .option_box:nth-child(5) {
    margin-right: 0px;
}

.topup .option_box h3 {
    color: #141414;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: "Plus Jakarta Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 142.857% */
    margin:0px;
    padding:0px;
    margin-bottom:40px;
}

.topup .option_box span {
    display: inline-block;
    background:#C3FFF4;
    border-radius:24px;
    padding:8px 16px;
    font-size: 16px;
    font-weight: 600;
}

.topup .option_box b {
    display: block;
    color:#141414;
    font-size:56px;
    font-weight: 700;
    margin-top:16px;
}

.topup .option_box p {
    color: #3E3E59;
    font-size:16px;
    font-weight: 400;
    margin-top:16px;
}

.topup .option_box a {
    display: block;
    border-radius:8px;
    padding:16px 22px;
    text-decoration: none;
    background:#fff;
    color:#1A1A1A;
    font-size: 20px;
    font-weight: 700;
    border:1px solid #1A1A1A;
    margin-top:40px;
}

.topup .option_box .mostly {
    background:#0CF5D0;
    color:#1A1A1A;
}

.topup .option_box a:hover {
    background:#1A1A1A;
    color:#F7F7F7;
}

.profile_modal {
    width:200px;
    background:#fff;
    border-radius:16px;
    position:absolute;
    right:0px;
    top:-20px;
    padding:32px;
    z-index: 9999999;
    text-align: center;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.15) 0px 50px 100px -20px, rgba(0, 0, 0, 0.15) 0px 30px 60px -30px;
    display: none;
}

.profile_modal img {
    margin:0px auto;
    width:100px;
    border-radius:100px;
    height:100px;
    object-fit: cover;
    margin-bottom:20px;
    cursor: pointer;
    cursor:hand;
}

.profile_modal img:hover {
    opacity:0.8;
}

.profile_modal a {
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.profile_modal span {
    display:block;
    color: #454545;
    font-size: 14px;
    margin-bottom: 5px;
}

.profile_modal p {
    margin:0px;
    padding:0px;
    margin-bottom: 16px;
    color:#454545;
    font-size:16px;
}

.profile_modal h3 {
    color:#1A1A1A;
    margin:0px;
    padding:0px;
    font-size:24px;
    margin-bottom: 5px;
    line-height: 1em;
    font-weight: 600;
}

.calendar td input {
    border-radius: 4px;
    padding:8px 16px;
    font-weight:600;
    border:2px solid #eee;
    margin:10px auto;
    display:block;
    max-width:112px;
    text-align:center;
}

.native_way {
    padding:15px 10px;
}

.native_way p {
    color:#999;
}

.native_way span {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5em;
    display: block;
    color:#026D63;
}

.native_way span s {
    color:red;
}

.native_way span i {
    color:#999;
    font-size: 14px;
    display: block;
    padding-top:20px;
}

.promo_button {
    display: block;
    border-radius:8px;
    padding:16px 22px;
    text-decoration: none;
    background:#fff;
    color:#1A1A1A;
    font-size: 20px;
    font-weight: 700;
    border:1px solid #1A1A1A;
    margin-top:40px;
    width:200px;
    margin-left: auto;
    margin-right: auto;
}

.promo_button:hover {
    background:#1A1A1A;
    color:#F7F7F7;
}

.google-sign-in {
    padding:0px !important;
    margin-bottom: 10px;
}

.google-sign-in div {
    padding:0px !important;
}

.pagination ul {
    width: 100%;
    list-style-type: none;
    margin-top: 20px;
    display: flex;
    font-weight: bold;
}

.pagination ul li{
    margin-right: 10px;
    font-size: large;
}

.search-bar {
    display: flex;
    float: right;
}

.search-bar form input{
    padding:10px;
    background:#eee;
    border-radius: 8px;
    padding:12px 16px;
    border-radius: var(--Spacing-spc_8, 8px);
    border: 1px solid var(--Woodsmoke-100, #E7E7E7);
    background: var(--Woodsmoke-50, #F6F6F6);
}
.users {
    width:549px;
    float:left;
    height:347px;
    background:#F6F6F6;
    border-radius:24px;
    padding:32px 32px;
}
.user_card {
    background:#fff;
    padding:24px;
    border-radius: 24px;
    margin-top: 20px;
    padding-top:16px;
    position:relative;
}
.user_info .user_photo {
    width:100px;
    height:100px;
    object-fit: cover;
    border-radius: 16px;
    margin-right: 16px;
    float: left;
}
.user_info .date, .user_info a{
    font-size: large;
    float: right;
}
a.disabled{
    pointer-events: none;
    cursor: default;
}

#topup_modal{
    width: 480px;
}
.topup-header{
    display: flex;
    padding-bottom: 21px;
}
.topup-card-icon{
    display: flex;
    height: auto;
    padding: 12px;
    border: 1px #E9EAEB solid;
    border-radius: 10px;
    margin-right: 16px;
}
.input-amount-container, .input-promo-container{
    display: flex;
    margin: 40px 20px;
    position: relative;
}
.input-amount-container:before{
    content: "TMT";
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 14px;
    font-weight: 500;
}
.input-amount-container input:focus, .input-promo-container input:focus{
    outline: none;
    border-color: #026D63;
}
.input-amount-container input, .input-promo-container input{
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: right;
    border-radius: 4px;
    border: 2px grey solid;
    height: 50px;
    width: 250px;
    margin: auto;
    padding: 18px 16px 18px 30px;
}
.total-amount-container{
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}
.total-amount-container h4, .total-amount-container p{
    margin: 5px;
}
.topup-form input[type='submit']:hover, .promo input[type='submit']:hover, .submit-button:hover{
    background: #008B7B;
}
.topup-form input[type='submit'], .promo-form input[type='submit'], .submit-button{
    background: #026D63!important;
    width: auto;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 14px 26px;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.topup-form button[type='submit']:disabled{
    background:#999 !important;
    color:#fff !important;
    cursor: not-allowed;
}
.selection-circle{
    border: 2px solid #D5D7DA;
}
.bank-option input[name='bank']:checked ~ .bank-info{
    border-color: #00a884;
    background-color: #C3FFF433;
}
.bank-option input[name='bank']:checked ~ .bank-info .selection-circle {
    border-color: #00a884;
    background-color: #008B7B;
}
.bank-option .bank-info.disabled{
    opacity: 0.6;
    filter: grayscale(100%);
}
.bank-option:has(.disabled){
    cursor: not-allowed!important;
}
.topup-form{
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.selection-circle {
    display: flex;
    width: 18px;
    height: 16px;
    border-radius: 50%;
}
.bank-info img{
    height: 30px;
    width: 45px;
}
.close-button{
    border: none;
    background: none;
    cursor: pointer;
}
.topup-form .linebreak{
    margin: 0;
    width: 100%;
    height: 1px;
    border: none;
    background: #E9EAEB
}
.bank-info .supported-banks{
    display: block;
    margin-left: 12px;
    width: 100%;
}
.input-amount-container input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.bank-options {
    display: block;
    padding: 20px 0 0 0;
    margin-bottom: 2px;
}
.bank-option {
    display: flex;
    cursor: pointer;
    margin-bottom: 12px!important;
}
.bank-info {
    width: 100%;
    border: 1px solid #E9EAEB;
    border-radius: 12px;
    display: flex;
    transition: border-color 0.3s;
    overflow: hidden;
    align-items: center;
}
.bank-option input[type="radio"] {
    display: none;
}
[data-parent="1"]{
    --topic-color: #354B57;
    --topic-background: #DDE6EB;
}
[data-parent="2"]{
    --topic-color: #8B2929;
    --topic-background: #FAE0E0;
}
[data-parent="3"]{
    --topic-color: #462AAD;
    --topic-background: #D0D0FB;
}
[data-parent="4"]{
    --topic-color: #8F3B1D;
    --topic-background: #FCEFDD;
}
.topic, .topic a svg path{
    color: var(--topic-color);
    background: var(--topic-background);
    fill: var(--topic-color);
}
.topic_header{
    display: flex;
    justify-content: space-between;
    padding: 16px;
    align-items: center;
    border-radius: 16px 16px 0 0;
}
.topic_header_title{
    margin: 0;
    display: flex;
}
.inner-topics{
    margin: 16px;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
}
.topic_text{
    text-decoration: none;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
}
.topics h2{
    font-size: 20px;
    margin: -2px 0 24px 0 ;
}
.topics .topic_header{
    padding: 0 0 16px;
}
.topic_container{
    display: flex;
    max-width: 100%;
    gap: 24px;
    justify-content: left;
}
.topic_container .main_topic{
    max-width: 250px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    padding: 14px 24px;
    justify-content: space-between;

    background-repeat: no-repeat;
    background-position: right bottom 5px;
    background-size: 130px auto;
}
.topic_container .main_topic img{
    object-fit: cover;
    /*display: none;*/
}
.topic_container .main_topic.topic-general{
    background-color: #DDE6EB;
    background-image: url('/assets/Luggage-Travel.png');
    background-size: 100px auto;
}
.topic_container .main_topic.topic-test{
    background-color: #FAE0E0;
    background-image: url('/assets/Croods-Keeping-in-Touch.png');
}
.topic_container .main_topic.topic-job{
    background-color: #D0D0FB;
    background-image: url('/assets/Croods-The-Feedback.png');
}
.topic_container .main_topic.topic-study{
    background-color: #FCEFDD;
    background-image: url('/assets/Amigos-Chilling.png');
}
.topic_container .main_topic h3{
    margin: 0;
    font-size: 18px;
    font-weight: 700
}
.topic_container .main_topic img{
    margin-top: auto;
    max-width: 140px;
    width: auto;
}
.topic_container .main_topic.disabled{
    opacity: 0.5;
    cursor: not-allowed!important;
}
.topic_container .main_topic.disabled{
    border: none;
}
.topic_container .main_topic.disabled:hover::after {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1;
}

.topic_container .main_topic:hover{
    cursor: pointer;
    border-color: var(--topic-color);
}
.teachers h2{
    margin-top: -2px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}
.topic{
    display: flex;
    gap: 10px;
    border-radius: 10px;
    padding: 10px 18px;
    margin-left: 10px;
    align-items: center;
}
.topic_text:hover{
    color: #FFF !important;
}.topic_text:hover{
    background: var(--topic-color)!important;
}
.topics_list{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    box-sizing: border-box;
    gap: 10px;
    flex-direction: row-reverse;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.teacher_topic{
    position: relative;
    cursor: pointer;
    width: 200px;
    border-radius: 10px;
    border: 3px solid transparent;
}
.teacher_topic:hover{
    border-color: color-mix(in srgb, var(--topic-color) 30%, transparent);
}
.teacher_topic.selected{
    border-color: var(--topic-color);
}
.session_notes{
    padding: 10px;
    resize: none;
    font-size: 14px;
    width: 100%;
    outline: none;
    border: 1px solid #3F435029;
    border-radius: 4px;
}
.session_notes:focus{
    border: 1px solid #306B63;
}

.book_big {
    margin-top:20px;
    background:#306B63; 
    text-decoration:none; 
    color: #ffffff;
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 14px; 
    padding: 14px 50px;
    text-align: center;
    display: none;
    width:200px;
}

.book_big:hover {
    background:#1A1A1A; 
    color:#F7F7F7;
}

.big_button_disabled {
    background:#999 !important;
    color:#fff !important;
}
.photo-input{
    display: none;
}
#promoStatus{
    border: none;
    width: 746px;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
}
#promoStatus .modal-container{
    display: flex;
    flex-direction: row;
    width: 100%;
}
#promoStatus .promo-info{
    padding: 40px;
    width: 50%;
    background-color: #FFFF;
    background-image: url('/assets/background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #334155;
    display: flex;
    flex-direction: column;
}
.promo-info .promo-header{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 23px;
    line-height: 150%;
}
.promo-info .promo-text{
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.promo-info .progress-container{
    margin-top: 23px;
    margin-bottom: 8px;
}
.progress-container .success-message{
    color: #15803D;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.promo-info .success-message:before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #22C55E;
    border-radius: 50%;
    margin-right: 8px;
}
.promo-info .submit-button{
    width: 100%;
    margin-top: auto;
}
.progress-bar-container{
    width: 100%;
    height: 8px;
    background-color: rgba(5, 110, 98, 0.25);
    border-radius: 10px;
}
.progress-bar-container .progress-bar{
    background-color: rgba(2, 109, 99, 1);
    transition: width 2s ease-in-out;
    border-radius: 10px;
    height: 100%;
    width: 0;
}
#promoStatus .modal-container .promo-video{
    padding: 40px;
    width: 50%;
    position: relative;;
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 1), rgba(6, 31, 29, 1), rgba(2, 109, 99, 1));
    border-radius: 0 24px 24px 0;
    display: flex;
    justify-content: center;
}
.promo-video .video-container {
    position: relative;
    max-width: 100%;
    width: 288px;
    height: 478px;
}
#promoVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    cursor: pointer;
}
#playPauseButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    cursor: pointer;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
#playPauseButton.hidden {
    opacity: 0;
    visibility: hidden;
}
#timeLeftIndicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;

    color: white;
    font-size: 14px;
    font-family: sans-serif;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}
#timeLeftIndicator::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #026D63;
    border-radius: 50%;
}
.promo-video .close-button{
    position: absolute;
    font-size: 24px;
    z-index: 10;
    right: 20px;
    top: 20px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
}
.promo-info small{
    font-size: 12px;
}