.level_speak {
    display: inline-block;
    width: 3px;
    height: 12px;
    margin-left: 0px;
    border-radius: 2px;
    vertical-align: middle;
}

.level_speak_color_ok {
    background-color: rgba(245, 88, 88);
}

.level_speak_color_ng {
    background-color: #ddd;
}

.cp_box *, .cp_box *:before, .cp_box *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_box {
    position: relative;
}

.cp_box label {
    position: absolute;
    z-index: 1;
    bottom: -8px;
    width: 100%;
    height: 80px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: left;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.cp_box input:checked + label {
    background: inherit; /* 開いた時にグラデーションを消す */
}

.cp_box label:after {
    line-height: 2.5rem;
    position: absolute;
    z-index: 2;
    bottom: -30px;
    left: 0%;
    width: 16rem;
    color: #00AFEB;
    font-family: FontAwesome;
    content: '\f13a' ' 続きをよむ';
}

.cp_box input {
    display: none;
}

.cp_box .cp_container {
    overflow: hidden;
    height: 100px; /* 開く前に見えている部分の高さ */
    transition: all 0.5s;
}

.cp_box input:checked + label {
    /* display: none ; 閉じるボタンを消す場合解放 */
}

.cp_box input:checked + label:after {
    font-family: FontAwesome;
    content: '\f139' ' 閉じる';
}

.cp_box input:checked ~ .cp_container {
    height: auto;
    padding-bottom: 10px; /* 閉じるボタンのbottomからの位置 */
    transition: all 0.5s;
}

.dur {
    position: relative;
}

.dur h6 {
    position: absolute;
    bottom: 0;
    /*画像の左上に配置*/
    left: 0;
    margin: 0;
    /*余計な隙間を除く*/
    color: white;
    /*文字を白に*/
    /*背景色*/
    font-weight: 600;
    font-size: 10px;
    line-height: 1;
    /*行高は1に*/
    padding: 4px 4px;
    /*文字周りの余白*/
}

.dur .free {
    border-radius: 2px;
    position: absolute;
    top: 0;
    /*画像の左上に配置*/
    left: 0;
    margin: 0;
    /*余計な隙間を除く*/
    color: white;
    /*文字を白に*/
    background: #ff5252;
    /*背景色*/
    font-weight: 600;
    opacity: 0.8;
    font-size: 8px;
    line-height: 1;
    /*行高は1に*/
    padding: 4px 4px;
    /*文字周りの余白*/
}

.dur .lock {
    border-radius: 2px;
    position: absolute;
    top: 0;
    /*画像の左上に配置*/
    left: 0;
    margin: 0;
    /*余計な隙間を除く*/
    color: white;
    /*文字を白に*/
    background: #111;
    /*背景色*/
    font-weight: 600;
    opacity: 0.7;
    font-size: 8px;
    line-height: 1;
    /*行高は1に*/
    padding: 4px 4px;
    /*文字周りの余白*/
}

.dur p {
    position: absolute;
    top: 0;
    /*画像の左上に配置*/
    left: 0;
    margin: 0;
    /*余計な隙間を除く*/
    color: white;
    /*文字を白に*/
    background: #111;
    /*背景色*/
    font-weight: 600;
    opacity: 0.6;
    font-size: 8px;
    line-height: 1;
    /*行高は1に*/
    padding: 2px 2px;
    /*文字周りの余白*/
}

.dur img {
    width: 100%;
}

.Card {
    margin-top: 20px;
    width: 100%;
    overflow-x: auto;
    display: flex;
}

.Card-Item {
    width: calc((100% - 44px) / 3);
    flex: 0 0 auto; /* これを指定しないと横スクロールになりません */
}

.Card-Item:not(:first-child) {
    margin-left: 13px;
}

.Card-Item-ImgBox {
    width: 100%;
}

.Card-Item-ImgBox-Img {
    border-radius: 4px;
    padding-top: 100%;
    width: 100%;
}

.Card-Item-Box {
    margin-top: 6px;
}

.Card-Item-Box-Title {
    text-align: center;
    font-size: 12px;
}

.scene {
    width: 100%;
    height: 300px;
    perspective: 600px;
}

.flipcard {
    border: 13px solid #e6e6e6;
    border-radius: 0.3em;
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
}

.flipcard.is-flipped {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.card__face {
    font-family: 'Rounded Mplus 1c';
    box-shadow: 2px 2px 20px #eee;
    position: absolute;
    width: 100%;
    height: 100%;
    color: #777;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card__face--front {
    background: white;
    padding-top: 80px;
}

.card__face--back {
    background: white;
    padding-top: 80px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.image-inner {
    overflow: hidden;
    position: relative;
    width: 150px;
}

@keyframes fade_live {
    from {
        opacity: 1.0;
        background-color: rgba(255, 0, 0, 0.6);
    }
    50% {
        opacity: 0.2;
        background-color: rgba(255, 0, 0, 0.6);
    }
    to {
        opacity: 1.0;
        background-color: rgba(255, 0, 0, 0.6);
    }
}

@-webkit-keyframes fade_live {
    from {
        opacity: 1.0;
        background-color: rgba(255, 0, 0, 0.6);
    }
    50% {
        opacity: 0.2;
        background-color: rgba(255, 0, 0, 0.6);
    }
    to {
        opacity: 1.0;
        background-color: rgba(255, 0, 0, 0.6);
    }
}

.triangle {

    animation: fade_live 2000ms infinite;
    -webkit-animation: fade_live 2000ms infinite;
    font-weight: 900;
    color: #FFF;
    font-size: 10px;
    padding: 70px 0px 1px;
    position: absolute;
    right: -61px;
    top: -52px;
    text-align: center;
    width: 100px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.teacher-flag-icon img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
}

.sample-box {
    position: relative;
}

.flag {
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20%;
    left: -20%;
}

.flag2 {
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20%;
    left: 0%;
}

.ask-btn-bbs {
    position: fixed;
    bottom: -15px;
    right: -15px;
    z-index: 2000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-image: -webkit-linear-gradient(bottom left, #00AFEB, #337ab7);
    color: #fff;
    text-align: center;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.image-box {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.image-box img {
    max-width: 100%;
    transition: all 0.7s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}

.image-box:hover img {
    transform: scale(1.08);
}

.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hovereffect:hover .overlay {
    background-color: rgba(170, 170, 170, 0.4);
}

.hovereffect h2, .hovereffect img {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hovereffect img {
    display: block;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.hovereffect:hover img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hovereffect h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 17px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
}

.hovereffect a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    margin: 50px 0 0 0;
    background-color: transparent;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-weight: normal;
    height: 85%;
    width: 85%;
    position: absolute;
    top: -20%;
    left: 8%;
    padding: 70px;
}

.hovereffect:hover a.info {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-color: rgba(0, 0, 0, 0.4);
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
    width: 0.4em;
}

.swal2-progress-steps li.swal2-progress-step-line {
    width: 0.4em;
}

.swal2-styled.swal2-confirm {
    margin-right: 10px;
}

.swal2-styled.swal2-cancel {
    margin-right: 10px;
}

#canvas-container {

}

#canvas__tegaki {
    border: 1px solid #ccc;
}

#header_live {
    position: relative;
    z-index: 999;
    background-color: #e74c3c;
    animation: header_live 10s infinite;
    -webkit-animation: header_live 10s infinite;
    opacity: 0.95;
}

@-webkit-keyframes header_live {
    0% {
        background-color: #e74c3c;
    }
    20% {
        background-color: #f1c40f;
    }
    40% {
        background-color: #1abc9c;
    }
    60% {
        background-color: #3498db;
    }
    80% {
        background-color: #9b59b6;
    }
    100% {
        background-color: #e74c3c;
    }
}

@keyframes header_live {
    0% {
        background-color: #e74c3c;
    }
    20% {
        background-color: #f1c40f;
    }
    40% {
        background-color: #1abc9c;
    }
    60% {
        background-color: #3498db;
    }
    80% {
        background-color: #9b59b6;
    }
    100% {
        background-color: #e74c3c;
    }
}

#note {
    position: absolute;
    z-index: 6001;
    top: 0;
    left: 0;
    right: 0;
    background: #EC407A;
    text-align: center;
    line-height: 3.5;
    overflow: hidden;
    -webkit-box-shadow: 0 0 5px black;
    -moz-box-shadow: 0 0 5px black;
    box-shadow: 0 0 5px black;
    color: white;
    font-weight: 500;
}

.cssanimations.csstransforms #note {
    -webkit-transform: translateY(-150px);
    -webkit-animation: slideDown 5.0s 1.0s 1 ease forwards;
    -moz-transform: translateY(-150px);
    -moz-animation: slideDown 5.0s 1.0s 1 ease forwards;
}

#close {
    position: absolute;
    right: 10px;
    top: 9px;
    text-indent: -9999px;
    background: url(images/close.png);
    height: 16px;
    width: 16px;
    cursor: pointer;
}

.cssanimations.csstransforms #close {
    display: none;
}

@-webkit-keyframes slideDown {
    0%, 100% {
        -webkit-transform: translateY(-150px);
    }
    10%, 90% {
        -webkit-transform: translateY(0px);
    }
}

@-moz-keyframes slideDown {
    0%, 100% {
        -moz-transform: translateY(-150px);
    }
    10%, 90% {
        -moz-transform: translateY(0px);
    }
}

*.logbox {
    border: solid 0px #808080;
    width: 100%;
    height: 900px;
    padding: 1.0em;
    overflow: auto;
}

*.logbox_mob {
    border: solid 0px #808080;
    width: 100%;
    height: 480px;
    padding: 1.0em;
    overflow: auto;
}

.meta-live {
    position: relative;

}

.meta-live h6 {
    position: absolute;
    top: 15px; /*画像の左上に配置*/
    left: 0;
    margin: 0; /*余計な隙間を除く*/
    color: white; /*文字を白に*/
    background: #FA5B6B; /*背景色*/
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5; /*行高は1に*/
    padding: 5px 10px; /*文字周りの余白*/
    opacity: 0.9;
    border-top: solid 3px #FFF3E0; /*上線*/
    border-bottom: solid 3px #FFF3E0; /*下線*/
}

.meta-live-play {
    position: relative;

}

.meta-live-play p {
    position: absolute;
    top: 40px;
    left: 270px;
    margin: 0; /*余計な隙間を除く*/
    color: #00AFEB; /*文字を白に*/

    font-size: 180px;
    font-weight: 500;
    line-height: 1.5; /*行高は1に*/
    padding: 5px 10px; /*文字周りの余白*/
    opacity: 0.7;

}

.frame {
    position: relative;
    display: inline-block;
    overflow: hidden; /* 不要部分を消す */

    width: 100%
}

.frame:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 120px;
    height: auto;
    background: red;
    content: "LIVE"; /* 表示するテキスト */
    text-align: center;
    color: #fff;
    font-family: 'Arial';
    font-weight: bold;
    padding: 5px 10px;
    right: -35px;
    top: 0px;
    transform: rotate(30deg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 点滅 */
.blinking {
    -webkit-animation: blink 0.7s ease-in-out infinite alternate;
    -moz-animation: blink 0.7s ease-in-out infinite alternate;
    animation: blink 0.7s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.create-course-content .from-group {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f1f2;
}

.create-course-content .text-note {
    color: #a6a6a6;
    font-size: 0.8rem;
}

.create-course-content h5 {
    font-weight: bold;
    margin-bottom: 5px;
}

.hidden {
    display: none;
}

.force-hidden {
    display: none !important;
}

.margin-10 {
    margin: 10px;
}

.margin-20 {
    margin: 20px;
}

.create-class-header {
    margin-bottom: 20px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 20px;
    position: relative;
}

.create-class-header .right-button {
    position: absolute;
    top: 0px;
    right: 0px;
}


nav.datepicker--nav {
    display: flex;
}

.mc-item {
    position: relative;
    background-color: #fff;
    /*min-height: 330px;*/
}

.mc-item .image-heading {
    overflow: hidden;
}

.mc-item .image-heading img {
    width: 100%;
}

.mc-item .meta-categories {
    position: absolute;
    top: 10px;
    left: 8px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: 'Rounded Mplus 1c';
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    color: #fff;
    padding: 0 8px;
    background-color: #00AFEB;
}

.mc-item .meta-categories a {
    color: #fff;
}

.mc-item .meta-categories2 {
    position: absolute;
    top: 38px;
    left: 8px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: 'Rounded Mplus 1c';
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    color: #fff;
    padding: 0 8px;
    background-color: #00AFEB;
}

.mc-item .meta-categories2 a {
    color: #fff;
}

.mc-item .content-item {
    position: relative;
    padding: 15px 10px;
    border-left: 1px solid #f5f5f5;
    border-right: 1px solid #f5f5f5;
}

.mc-item h4 {
    font-family: 'Rounded Mplus 1c';
    font-size: 16px;
    color: #666;
    line-height: 1.3em;
    margin: 0;
}

.mc-item h4 a {
    color: #666;
    font-weight: bold;
}

.mc-item h4:hover {
    color: #00AFEB;
}

.mc-item h4:hover a {
    color: #00AFEB;
}

.mc-item .image-author {
    position: absolute;
    top: -20px;
    left: 10px;
    width: 26px;
    height: 26px;
    overflow: hidden;
}

.mc-item .image-author img {
    width: 100%;
}

.mc-item .name-author {
    font-size: 15px;
    color: #646472;
    margin-top: 34px;
}

.mc-item .name-author a {
    color: #00AFEB;
    font-weight: bold;
}

.mc-item .ft-item {
    position: relative;
    padding: 18px 10px;
}

.mc-item .ft-item .price {
    position: absolute;
    font-size: 20px;
    font-weight: 700;
    color: #666;
    bottom: 15px;
    right: 15px;
    text-align: center;
}

.mc-item .ft-item .price .price-old {
    display: block;
    font-size: 16px;
    color: #a6a6a6;
    margin-top: 5px;
    text-decoration: line-through;
}

.mc-item .ft-item .view-info, .mc-item .ft-item .comment-info {
    display: inline-block;
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    margin-right: 12px;
}

.mc-item .ft-item .view-info, .mc-item .ft-item .comment-info2 {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    margin-right: 12px;
}

.mc-item .ft-item .view-info .icon, .mc-item .ft-item .comment-info .icon {
    display: inline-block;
    font-size: 14px;
    margin-right: 5px;
}


.class-list .list-item {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.class-list .mc-item {
    padding: 6px;
    min-height: 0;
}

.class-list .mc-item:after {
    content: '';
    display: block;
    clear: both;
}

.class-list .mc-item .image-heading {
    width: 32.3%;
    float: left;
}

.class-list .mc-item .image-heading img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    border: 1px solid #d8d6d8;
}

.class-list .mc-item .content-item {
    padding-bottom: 60px;
}

.class-list .mc-item .content-item,
.class-list .mc-item .ft-item {
    display: inline-block;
    border: 0;
    width: 67.7%;
    padding-left: 24px;
    padding-right: 130px;
}

.class-list .mc-item h4 {
    font-size: 20px;
}

.class-list .mc-item .ft-item {
    position: absolute;
    padding-top: 15px;
    padding-bottom: 0;
    bottom: 25px;
    right: 0;
}

.class-list .mc-item .ft-item .price {
    bottom: 0;
}

.class-list .mc-item .image-author {
    display: none;
}

.class-list .mc-item .name-author {
    margin-top: 10px;
}

.class-list .mc-item .meta-categories {
    left: 14px;
}

.class-list .mc-item .meta-categories2 {
    left: 14px;
}

.class-list .mc-item .rating {
    display: inline-block;
    margin-right: 10px;
}

.class-list .delete-container {
    text-align: right;
    display: block;
    font-size: 16px;
    color: #a6a6a6;
    margin-top: 5px;
}

.class-list .delete-container a:hover {
    text-decoration: none;
}

.full-width {
    width: 100%;
}

.as-link {
    color: rgba(33, 150, 243, .85);
    text-decoration: none;
    cursor: pointer;
}

.alert-dismissible.danger {
    background-color: #f44336 !important;
}

.rank-group {

}


.rank-group .card {
    display: inline-block;
    width: 48%;
}

.rank-group .card:nth-child(2n+1) {
    margin-right: 2%;
}

#group-lesson-rejoin-button {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    transform: translateX(-50%) translateY(-50%);
    cursor: pointer;
    padding: 20px;
    background-color: #327fb4;
    border-radius: 5px;
    box-shadow: 3px 4px 9px #ccc;
    display: none;
    z-index: 2;
    text-align: center;
}

.error-container {
    margin-top: 20px;
}

.error-container .go-back {
    color: rgba(33, 150, 243, .85);
    text-decoration: none;
    cursor: pointer;
}

.debug-exception {
    width: 100%;
    white-space: pre-wrap;
}

.user_filter_form_modal_bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #000;
    opacity: 0.3;
    z-index: 998;
}

.user_filter_form {
    display: none;
    top: 100px;
    left: 50%;
    bottom: 200px;
    width: 400px;
    position: fixed;
    background-color: #fff;
    z-index: 999;
    margin-left: -200px;;
}

.user_filter_form .filter_title {
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ccc;

}

.user_filter_form .filter_close {
    position: absolute;
    right: -12px;
    top: -11px;
    cursor: pointer;
}

.user_filter_form .list-user {
    height: calc(100% - 156px);
    overflow-y: auto;
    overflow-x: hidden;
}

.user_filter_form .list-user li {
    cursor: pointer;
}

.user_filter_form .list-user li:hover {
    background-color: #eee;
}

.user_filter_form .list-user li.template_item {
    display: none !important;
}

.user_filter_form .list-user li .user_checked {
    display: none;
}

.user_filter_form .list-user li .user_checked .material-icons {
    color: #69b34c;
    font-size: 32px;
    font-weight: bold;
}

.user_filter_form .filter_bottom {
    border-top: 1px solid #ccc;

}

.user_filter_form .filter_bottom .btn {
    width: 50%;
    text-align: center;
    border-radius: 0px;
}

.user_filter_form .icon-big-size {
    font-size: 40px;
}

.list-record-paging {
    padding-top: 10px;
    width: 100%;
    border-top: 1px dashed #ccc;
    margin-top: 5px;
}

.long_input {
    width: 100%;
}

.admin_form_input {
    color: #666;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    padding: 0 12px;
    font-family: 'Rounded Mplus 1c';
    height: 35px;
}

[dir=ltr] .admin-lesson-note-header {
    padding-top: 0px;
    padding-bottom: 20px;

}

[dir=ltr] .admin-lesson-note-textbox {
    padding: 20px;
}


[dir=ltr] .admin-tab .note-input-container {
    padding: 20px;
    margin-bottom: 0px;
}

[dir=ltr] .admin-tab .note-input-container textarea {
    padding: 5px 10px;
    border: 1px solid #aaa;

}

[dir=ltr] .admin-tab .button-block {
    padding-left: 20px;

}

[dir=ltr] .admin-tab .button-block .save-note {

}


[dir=ltr] .admin-tab .button-block .save-note.disable {
    cursor: wait;
    background-color: #666;
    border-color: #666;
}

[dir=ltr] .admin-tab .button-block .error-text {
    padding-left: 5px;
    color: #f70;
}

[dir=ltr] .list-course-table {

}

[dir=ltr] .list-course-table tr {

}

[dir=ltr] .list-course-table tr th {
    font-weight: bold;
    white-space: nowrap;
}

[dir=ltr] .list-course-table tr td {

}

[dir=ltr] .list-course-table tr td.thumb_img img {
    height: 50px;
}


[dir=ltr] .list-course-table tr .action {
    white-space: nowrap;
}

.color-picker-container {
    /*display: flex;*/
}

.color-picker-container .html-color-picker {
    height: 45px;
    width: 45px;
    display: inline-block;
    vertical-align: middle;
}

.color-picker-container .html-color-text {

    display: inline-block;
    vertical-align: middle;
}

.create-course-content .text-error {
    color: #fc6d03;
}

.select2-big-input {
    border: 1px solid #D4D4D4;
}

.create-course-content .select2-container--default .select2-selection--multiple {
    border: 1px solid #D4D4D4;
}

.create-course-content .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #D4D4D4;
}

.table-responsive .admin-filter-form {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.table-responsive .admin-filter-button-group {
    text-align: center;
    padding-top: 10px;
}

.table-responsive .admin-in-cell-list {
    margin-bottom: 0px;
    padding-inline-start: 25px;
}

.table-responsive .admin-in-cell-list li {
    padding: 5px 0px;
    border-bottom: 1px dashed #ccc;
}

.table-responsive .admin-in-cell-list li:last-child {
    border-bottom: 0px;
}

.table-responsive .admin-in-cell-list li.is-correct {
    background-color: #9dd8fa;
}

.quiz_answer_option_group {
    margin-left: -18px;
}

.quiz_answer_option_group .quiz_answer_option {
    padding-bottom: 10px;
}

.quiz_answer_option_group .quiz_answer_option span {

}

.quiz_answer_option_group .quiz_answer_option input {
    width: calc(100% - 25px);
}

[dir=ltr] .video-upload-overlay {
    background-color: #000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    background-color: rgba(0, 0, 0, .4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 199999;
}

[dir=ltr] .video-upload-modal {
    background-color: #fff;
    width: 478px;
    padding: 17px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    z-index: 200000;
}

.video-upload-modal .video-upload-progress-title {
    font-size: 25px;
}

.video-upload-modal .video-upload-progress-bar {
    height: 40px;
    width: 100%;
    border: 1px solid #ccc;
    margin-top: 10px;
    position: relative;
}

.video-upload-modal .video-upload-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-upload-modal .video-upload-progress-current {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(70, 214, 41, 0.39);
}

.red-text {
    color: #f00;
}


.teacher-lesson-container {

}

.teacher-lesson-container .embed-responsive {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.teacher-lesson-container .meta-live {
    position: relative;

}

.teacher-lesson-container .meta-live h6 {
    position: relative;
    top: 0;
    margin-top: 20px;
}

.teacher-lesson-container .lesson-action {
    text-align: center;
    margin-top: 20px;
}

.teacher-lesson-container .lesson-action .lesson-action-button {

}

.teacher-lesson-container .finish-lesson {

}

.teacher-lesson-container .finish-lesson {

}

.teacher-lesson-container .finish-lesson button.disabled {
    background-color: #999;
    border-color: #999;
    cursor: not-allowed;
}

.user-review-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    bottom: 0;
    z-index: 9;
}


.user-review-wrapper .user-review-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    opacity: 0.3;

}

.user-review-wrapper .user-review-container {
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 2px 2px 5px 1px #ccc;
    text-align: center;
}

.user-review-wrapper .user-review-container .title {
    margin: 4px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

.user-review-wrapper .user-review-container .rating-container {
    text-align: left;
    margin-left: 50px;
}

.user-review-wrapper .user-review-container textarea {
    width: 320px;
    min-height: 160px;
    margin: 10px 30px;
    padding: 5px;
}

.rating {
    white-space: nowrap;
}

.rating-stars {
    display: inline-block;
    position: relative;

}

.rating-stars .empty-stars {

}

.rating-stars .empty-stars .star {
    color: #ccc;
}


.rating-stars .filled-stars {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    overflow: hidden;

}

.rating-stars .filled-stars .star {

}

@media (max-width: 768px) {
    [dir=rtl] .lesson-float-button,
    [dir=ltr] .lesson-float-button {
        position: fixed;
        right: 0;
        left: 0;
        background-color: #fff;
        bottom: 0px;
        z-index: 1;
        text-align: center !important;
    }

    [dir=ltr] .mdk-header-layout, [dir=ltr] .mdk-header-layout .mdk-drawer-layout, [dir=ltr] .mdk-header-layout .mdk-drawer-layout__content {
        transform: none !important;
    }
}


.zoom-text-wrapper {
    text-align: center;
    margin-top: 15px;
}

.zoom-sweetalert {

}

.zoom-sweetalert .sa-button-container {
    display: none;

}

.zoom-sweetalert .zoom-popup-text {
    padding-bottom: 40px;

}

.zoom-sweetalert .zoom-popup-button {

}

.zoom-sweetalert .zoom-popup-button .zoom-cancel {
    margin: 0px 20px;

}

.zoom-sweetalert .zoom-popup-button .zoom-start {
    margin: 0px 20px;

}

.ajax-loading,
.ajax-loading-bg {
    height: 100%;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.ajax-loading-bg {
    opacity: 0.3;
}

.ajax-loading {
    background: transparent;
}

.no-wrap {
    white-space: nowrap;
}

[dir=ltr] .media-control[data-media-control] .media-control-layer[data-controls] .playback_rate[data-playback-rate-select] button.media-control-button.media-control-icon {
    line-height: 100%;
    padding-top: 4px;
}

.player .video-js .vjs-time-control {
    display: block;
}

.player .video-js .vjs-remaining-time {
    display: none;
}

@media (max-width: 768px) {
    .player .video-js .vjs-time-control {
        display: none;
    }
}

.player .video-js.vjs-has-started .vjs-touch-overlay {
    bottom: 30px;
    height: auto;
}

.player .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    z-index: 10;
}

.delete_report_question_answer {
    cursor: pointer;
    color: #ff8000;
}

.row.no-margin {
    margin: 0;
}

.layout .align-right {
    text-align: right;
}

.table-responsive .min-szie {
    width: 1%;
}

.table-responsive .align-center {
    text-align: center;
}

@media screen and (min-width: 1024px) {

    #reviewModal .modal-dialog {
        max-width: 800px; /* New width for default modal */
    }
}

.card.position-reset {
    position: initial;
}

.admin-top-page .nav-item .nav-link {
    cursor: pointer;
}

.report_form_container .multiple-language-text {
    width: 50px;
    background-color: #e0e0e0;
    text-transform: uppercase;
    align-items: end;
    display: inline-block;
}

div.report-error-text {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

div.report-error-text .error-text {
    display: inline-block;
    font-size: 25px;
    padding: 20px;
}

.btn-full-width {
    width: 100%;
}

.sortable_list > li {
    cursor: move;
}