﻿body {
}
video
{
    width:100%
}
.h-100vh
{
    height:100vh
}
.h-35px {
    height: 35px
}
.w-400 {
    width: 400px;
}
.left-0
{
    left:0
}
.size-100
{
    max-height:100px;
    min-height:100px
}
.size-150 {
    max-width: 150px;
    max-height: 150px;
}
.border-light {
    border: 1px solid var(--color-light-5);
}
.overflow-y-auto
{
    overflow-y:auto
}
.button:hover
{
    opacity:0.8
}
.none {
    display: none !important
}
.right-15 {
    right: 15px
}
.h-65 {
    height: 65px;
}
.h-maxcontent
{
    height:max-content
}
.w-maxcontent {
    width: max-content
}
.max-h-500
{
    max-height:500px;
}
.max-h-450 {
    max-height: 450px;
}
.overflow-scroll-y
{
    overflow-y:auto
}
.overflow-scroll-x {
    overflow-x: auto
}
.p5-15 {
    padding: 5px 15px;
}
.p10-15 {
    padding: 10px 15px;
}
.p-10 {
    padding: 10px
}
.p-13
{
    padding:13px;
}
.p-15 {
    padding: 15px
}
.p-20 {
    padding: 20px
}
.text-5
{
    font-size:5px;
}
.text-4em {
    font-size: 4em
}
.radius-4left
{
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.text-9d9d9d {
    color: #9d9d9d;
}
.text-666b8d {
    color: #666b8d;
}
    .text-666b8d:hover {
        color: var(--color-purple-4);
    }
.text-success {
    color: var(--color-purple-1) !important;
}
.text-primary {
    --bs-text-opacity: 1;
    color: var(--bs-primary-rgb) !important;
}
.text-danger {
    color: red;
}
.text-a7 {
    color: #a7a7a7;
}
.shadow-7 {
    box-shadow: 0 15px 20px -20px rgb(0 0 0 / 73%);
}
.radius-15
{
    border-radius:15px
}
.p-12
{
    padding:12px;
}
.p5-10px {
    padding: 5px 10px
}
.p10-30px {
    padding: 10px 30px;
}
.p15-30px {
    padding: 15px 30px;
}
.py-14 {
    padding: 14px 0;
}
.w-45px {
    width: 45px
}
.w-50px {
    width: 50px
}
.w-60px {
    width: 60px
}
.wh-45px {
    width: 45px;
    height:45px
}
.gap-3 {
    gap: 3px
}
.gap-5 {
    gap: 5px
}
.gap-10 {
    gap: 10px
}
.gap-15 {
    gap: 15px
}
.gap-18 {
    gap: 18px
}
.gap-20 {
    gap: 20px
}
.fw-medium
{
    font-weight:600
}
.radius-4
{
    border-radius:4px
}
.radius-7 {
    border-radius: 7px
}
.radius-100
{
    border-radius:100%
}
.border-ddd {
    border: #ddd solid thin;
}
.flex100per {
    flex: 0 0 100%;
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
}
.w-100
{
    width:100%
}
.flex-column
{
    flex-direction:column
}
.alertify-notifier.ajs-right .ajs-message.ajs-visible
{
    font-size:13px;
    color:#fff;
}
.text-24
{
    font-size:24px;
}
.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #2ab57d;
    --bs-btn-border-color: #2ab57d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #249a6a;
    --bs-btn-hover-border-color: #229164;
    --bs-btn-focus-shadow-rgb: 74, 192, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #229164;
    --bs-btn-active-border-color: #20885e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #2ab57d;
    --bs-btn-disabled-border-color: #2ab57d;
}
.line-clamp-1, .line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.line-clamp-1 {
    -webkit-line-clamp: 1;
}
.line-clamp-2 {
    -webkit-line-clamp: 2;
}
.tabs__controls input[type=submit]:not(:disabled) {
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    text-decoration: none;
}
.spinner {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    z-index: 2;
    width: 50px;
    height: 50px;
}

    .spinner .path {
        stroke: #7545f06b;
        stroke-linecap: round;
        -webkit-animation: dash 1.5s ease-in-out infinite;
        animation: dash 1.5s ease-in-out infinite;
    }

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
.loaddata_ {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99;
}
.pagination.-avatars .pagination__item.avt {
    width: 92px;
    height: 92px;
}
    .pagination.-avatars .pagination__item.avt img {
        border-radius: 100%;
        object-fit: cover;
    }
.shadow-sd-7 {
    box-shadow: 0 15px 20px -21px rgb(0 0 0 / 24%);
}
.shadow-sd-14 {
    box-shadow: 0 15px 20px -14px rgb(0 0 0 / 24%);
}
.detail-course label {
    margin: 0;
    font-size: 14px
}
.cball-course label, #_pnRefund .item label {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin: 0
}
.list-lesson ul li {
    padding: 5px 0;
}
.list-lesson ul li:last-child {
    padding-bottom:0;
    border-bottom: none;
}
.-purple-1:hover {
    background-image: linear-gradient(to right, #00b14f 0%, #1a5b45 51%, #00b14f 100%);
    background-image: linear-gradient(to right, #00b14f 0%, #1a5b45 51%, #00b14f 100%);
    -webkit-transition: all 500ms;
    transition: all 500ms;
    background-size: 200% auto;
    border:none
}
.aspNetDisabled.button
{
    opacity:0.5
}
._viewLesson {
    border: none;
    line-height: 0.5;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    padding: 6px 5px 9px 6px !important;
}
.list-lesson span p
{
    font-size:13px
}
.list-lesson.item ul {
    border: #e1e5f3 solid thin;
    border-radius:4px;
}
.list-lesson.item ul li:first-child
{
    border:none
}
.list-lesson.item ul li
{
    padding:10px
}
.time-dot ul li {
    list-style: disc !important;
    margin-left: 30px;
}
#_copylink:hover
{
    cursor:pointer
}
.notify-copy {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    top: 0;
    color: #fff;
    left: 0;
    right: 0;
    opacity: 0;
    z-index:-1
}

._icon {
    background: #33333338;
    padding: 13px;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.btn-transparent
{
    background:transparent;
    border:none
}
.flex-shrink0 {
    flex-shrink: 0;
}
.progress
{
    height:5px
}
.rating_ .progress .progress-bar {
    background: #FFAA33;
    box-shadow: none;
}
.contact-form, .form-select, .select2-container--default .select2-selection--single {
    border: 0;
    outline: none;
    width: 100%;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    line-height: unset;
    padding: 13px 15px;
    color: var(--color-light-1);
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 600;
}
    .form-select:focus {
        border: 1px solid #e1e1e1;
        /*outline: #00b14f21 solid 3px !important;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);*/
        outline: none;
        box-shadow: none
    }
.btn-send-rating {
    display: flex;
    background: #666666;
    height: 100%;
    font-size: 14px !important;
}
    .btn-send-rating:hover {
        background-color: var(--color-purple-1)
    }
.bg-f7f7f7
{
    background:#f7f7f7
}
.avatar-cmt {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.infor_us_:before {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 8px 5px 0;
    border-color: transparent #f7f7f7 transparent transparent;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    position: absolute;
    left: -7px;
}
.stt-teacher {
    position: absolute;
    top: 0;
    display: flex;
    padding: 3px 6px;
    border-radius: 4px;
    background: linear-gradient(180deg, #f5c20f, #fd9f19);
    font-size: 12px;
    color: #fff;
}
.group- div:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left:none !important
}
.group- div:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.course-relate-teacher img{
    object-fit: cover;
    width: 100%;
    height:100%;
    max-height:220px
}
.blinking {
    animation: 1s blink ease infinite;
    width: 10px;
    height: 10px;
    border-radius: 100%
}
@-webkit-keyframes"blink" {
    0%
    {
        opacity: 0;
        background-color: red;
    }

    25% {
        opacity: 1;
        background-color: red;
    }

    50% {
        opacity: 0;
        background-color: darkorange;
    }

    75% {
        opacity: 1;
        background-color: darkorange;
    }

    100% {
        opacity: 0;
        background-color: darkorange;
    }
}
.top0
{
    top:0
}
.top95 {
    top: 95px
}
.min-h-100 {
    min-height: 100% !important;
}
.min-vh-100 {
    min-height: 100vh !important;
}
.vh-100 {
    height:100vh
}
.vh-100-480px {
    height: calc(100vh - 480px);
    height: -moz-calc(100vh - 480px);
    height: -webkit-calc(100vh - 480px);
}
.vh-100-410px {
    height: calc(100vh - 410px);
    height: -moz-calc(100vh - 410px);
    height: -webkit-calc(100vh - 410px);
}
.vh-100-280px {
    height: calc(100vh - 280px);
    height: -moz-calc(100vh - 280px);
    height: -webkit-calc(100vh - 280px);
}
.vh-100-290px {
    height: calc(100vh - 290px);
    height: -moz-calc(100vh - 290px);
    height: -webkit-calc(100vh - 290px);
}
.vh-100-250px {
    height: calc(100vh - 250px);
    height: -moz-calc(100vh - 250px);
    height: -webkit-calc(100vh - 250px);
}
.vh-100-325px {
	max-height: calc(100vh - 355px);
    height: calc(100vh - 325px);
    height: -moz-calc(100vh - 325px);
    height: -webkit-calc(100vh - 325px);
}
.vh-100-300px {
    height: calc(100vh - 300px);
    height: -moz-calc(100vh - 300px);
    height: -webkit-calc(100vh - 300px);
}
.vh-100-210px {
    height: calc(100vh - 210px);
    height: -moz-calc(100vh - 210px);
    height: -webkit-calc(100vh - 210px);
}
.vh-100-165px {
    height: calc(100vh - 165px);
    height: -moz-calc(100vh - 165px);
    height: -webkit-calc(100vh - 165px);
}
.vh-100-137px {
    height: calc(100vh - 137px);
    height: -moz-calc(100vh - 137px);
    height: -webkit-calc(100vh - 137px);
}
.type-search .toggle-element.-dropdown {
    top: 35px;
    left: 42px;
    padding: 13px;
    min-width: auto;
}
.type-search .dropdown__button {
    padding: 0 !important;
    background:transparent
}
.type-search .icon {
    position: relative !important;
    transform: unset !important;
}
#_ddlTypeSearch:focus
{
    outline:none
}
[data-anim^='slide-'].is-in-view, [data-anim-child^='slide-'].is-in-view
{
    height:100%
}
.w-30per {
    width: 30%;
}
.wh-30 {
    width: 30px;
    height: 30px;
}
#_avatar {
    object-fit: cover;
}
.w-30 {
    width: 30px;
}
.bg-f5f5fa {
    background: #f5f5fa
}
.w-65per {
    width: 65%;
}
.w-35per {
    width: 35%;
}
.w-40per {
    width: 40%;
}
.w-60per {
    width: 60%;
}
._form-text {
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: #f5f5fa;
    border-radius:4px;
}
    ._form-text:focus {
        outline: none
    }
.bg-primary {
    background-color: var(--color-purple-4) !important
}
.note_voucher:before {
    content: "";
    width: 3px;
    background: #e5e5e5;
    display: inline-flex;
    margin-right: 5px;
    height: 100%;
}
.arrow-voucher:after {
    left: auto;
    right: -10px;
    top: 0;
    transform: scaleX(-1);
}

.arrow-voucher:after {
    top: 0;
    right: -8px;
    content: '';
    width: 10px;
    height: 100%;
    position: absolute;
    background-color: #fff;
    background: linear-gradient(-137deg, #eae3fd 6px, transparent 0) 0 5px, linear-gradient(320deg, #eae3fd 5px, transparent 0) 0 5px;
    background-position: left;
    background-repeat: repeat-y;
    background-size: 10px 10px;
    /* border-left: #fff dashed thin; */
}
.arrow-voucher-acc:after {
    background: linear-gradient(-137deg, #ffffff 6px, transparent 0) 0 5px, linear-gradient(320deg, #ffffff 5px, transparent 0) 0 5px;
    background-position: left;
    background-repeat: repeat-y;
    background-size: 10px 10px;
}
.text-voucher {
    border: #7545f0 solid thin;
    padding: 3px;
    color: #7545f0;
    background: linear-gradient(to right, #7545f0 0%, #a480ff 100%);
    background-clip: text;
    color: transparent;
}
.btn-voucher-add:hover {
    background: linear-gradient(to right, #7545f0 0%, #a480ff 100%);
}
.aspNetDisabled.btn-default:hover
{
    background:#ddd;
}
.radio-wrapper tbody
{
    display:flex;
    flex-direction:column
}
.radio-wrapper tbody label
{
    margin:0
}
.radio-wrapper tbody td{
    display: flex;
    gap: 5px;
}
.info-method p, .info-method h1, .info-method h2, .info-method h3 {
    font-size: 13px;
    line-height: 1.5;
    font-weight:normal
}
.count-cart
{
    top: -7px;
    right: -10px;
    background: red;
    display: flex;
    padding: 3px;
    width: 17px;
    font-size: 11px;
    line-height: 1;
    border-radius: 4px;
    color: #fff;
    align-items: center;
    justify-content: center;
}
._rb-list tbody
{
    display:flex;
    gap:15px;
}
._rb-list tbody tr td {
    display: flex;
    gap: 5px;
}
._rb-list tbody tr td label
{
    margin:0
}
.list-learning-profile .item input[type="radio"] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
}
.list-learning-profile .item input[type=radio]:hover {
    cursor: pointer;
}
    .list-learning-profile .item input[type="radio"]:checked + img {
        outline: 2px solid #eae3fd;
        border-radius: 4px;
        padding: 3px;
        background: #eae3fd;
    }
.box-data {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
}
.backdrop-modal-right- {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #333333cc;
    z-index: 999;
    height: 100vh;
}
.info-order-data ul
{
    display:flex;
    flex-direction:column;
    gap:5px;
}
    .info-order-data ul li, .box-data-subjectmain ul li {
        display: flex;
        gap: 5px;
    }
    .info-order-data ul li:before, .box-data-subjectmain ul li:before {
        content: "\f00c";
        font-family: "Font Awesome 6 Pro";
        font-weight: 400;
    }
.refund-reason tbody
{
    display:flex;
    flex-direction:column;
    width: 100%
}
    .refund-reason tbody tr td, .refund-reason tbody tr td span.aspNetDisabled {
        display: flex;
        gap: 5px;
    }
        .refund-reason tbody tr td label {
            margin: 0;
            line-height: 18px;
        }
.teacher-detail-3 ._avtar img {
    width: 40px;
    height: 40px;
}
.list-feed ul li {
    border: #f3f3f3 solid thin;
    border-radius: 4px;
}
._form-text-cmtfeed {
    width: 100%;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
}
    ._form-text-cmtfeed:focus {
        outline: #6b4aeb26 solid 3px;
    }
.data-lessons ul li {
    border-top: #f3f3f3 solid thin;
    padding:10px 20px;
}
.-video- {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
    .-video- iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius:4px;
    }
.content-lessons img, .content-lessons video {
    width: 100%;
    border-radius: 4px;
}
.control-lessons button:disabled {
    opacity: 0.5
}
#_pnDescription p
{
    font-size:14px;
}
#_btnComplete.aspNetDisabled {
    color: var(--color-purple-1);
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: none;
}
.title-subject:before
{
    content:"";
    display:flex;
    width:5px;
    background:#7545f0
}
.form-score:focus {
    outline: none
}
.form-check-input- label, .radio-button-group label{
    margin: 0;
    line-height: 1.3;
    font-weight: normal
}
.form-check-input-, .radio-button-group span[data-group] {
    display: flex;
    gap: 5px;
}
.list-lesson-lecturer ul li {
    padding: 10px 15px;
    border-bottom: #e1e5f3 solid thin;
}
    .list-lesson-lecturer ul li:last-child
    {
        border:none
    }
.header-search__content p
{
    padding:0;
    font-size:13px;
}
.masthead-search__searches p:after
{
    content:","
}
.masthead-search__searches p:last-child:after {
    content: ""
}
.bg-overlay-allpage {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333333db;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.box-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.box-info.box-info-lecturer {
	justify-content: unset;
}
.list-certificate table.table th {
    font-weight: 600;
}
.list-certificate table.table td, .list-certificate table.table th {
    font-size: 14px;
    padding: 15px
}


@media (max-width: 767px) {
    .img-null-cart
    {
        width: 100% !important
    }
    .md\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important
    }
    .md\:flex-column-reverse {
        flex-direction: column-reverse
    }
}
@media (max-width: 1180px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 100%;
    }
    .lg\:w-100 {
        width: 100% !important;
    }
    .min-vh-100
    {
        min-height:auto !important
    }
}
@media only screen and (min-device-width: 740px) and (max-device-width: 992px) and (orientation:portrait) {
    .md\:flex-column {
        flex-direction: row !important
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}
@media only screen and (min-device-width: 740px) and (max-device-width: 992px) and (orientation:landscape) {
    .lg\:flex-row {
        flex-direction: row !important
    }
    .lg\:flex-column {
        flex-direction: column !important
    }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation:portrait) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation:landscape) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
    .lg\:overflow-scroll-y
    {
        overflow-y:auto
    }
}