@charset "UTF-8";

/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&family=Montserrat:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('../vendor/material-icon/material-icon.css');
@import url('../vendor/Ionicons/ionicons.min.css');
@import url('../vendor/fontawesome/all.min.css');
@import url('../vendor/foundation-icons/foundation-icons.css');
@import url('../vendor/bootstrap-icons-1.11.3/bootstrap-icons.css');
:root {
    --body-font: 'Noto Sans Thai', sans-serif;
    --body-font-size: 16px;
    --body-font-color: rgba(0, 0, 0, 0.87);
    --body-font-color-lighter: rgba(0, 0, 0, 0.08);
    --body-font-weight: 400;
    --body-line-height: 1.35em;
    --body-color: #fbfbfb;
    --body-color-white: #ffffff;
    --body-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    --body-footer-bgcolor: #f5f6f7;
    --sidebar-color: #ffffff;
    --theme-color: #01827d;
    --theme-color-dark: #00625f;
    --theme-color-darker: #005b5b;
    --theme-color-lighter: #aedde1;
    --theme-color-lighter-v: #aedde139;
    --theme-color-text: #ffffff;
    --theme-color-text-invert: #f69000;
    --theme-color-gradient: linear-gradient(to left, var(--theme-color) 0%, var(--theme-color-darker) 50.39%, var(--theme-color) 100%);
    --theme-color-hover: #005f66;
    --theme-button-color: rgba(1, 130, 125, 1);
    --theme-button-color-font: rgba(255, 255, 255, 1);
    --theme-button-color-hover: rgb(0, 95, 102);
    --theme-button-color-font-hover: rgba(255, 255, 255, 1);
    --theme-button-color-invert: rgba(246, 144, 0, 1);
    --theme-button-color-invert-darker: rgb(236, 148, 8);
    --theme-button-border: solid 1px rgba(1, 130, 125, 1);
    --theme-button-outline-color-font: rgba(1, 130, 125, 1);
    --theme-button-outline-color-hover: rgba(0, 95, 102, 1);
    --theme-button-outline-color-font-hover: rgba(255, 255, 255, 1);
    --theme-button-outline-border: solid 1px rgba(1, 130, 125, 1);
    --bs-btn-border-radius: 0.375rem;
}

html {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    overflow-x: hidden!important
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    color: var(--body-font-color);
    line-height: var(--body-line-height);
    background-color: var(--body-color);
}

main {
    /*
min-height: calc(100vh - 40px);
background-color: var(--body-color)!important;
padding-top: 64px;
*/
    padding: 20px 30px 5px 30px;
    width: 100%;
    min-height: calc(100vh - 104px);
}

main.mh-topbar {
    min-height: calc(100vh - 64px);
}

a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    cursor: pointer;
    color: var(--theme-color);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--theme-color-hover);
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #e6e6e6
}

::-webkit-scrollbar-thumb {
    background-color: grey
}

::-webkit-scrollbar-thumb:hover {
    background-color: #666
}

::-webkit-scrollbar-thumb:active {
    background-color: #4d4d4d
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
}

.ionicons {
    font-size: 1.5rem;
}

.flip-x {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.bg-darker {
    background-color: rgba(0, 0, 0, 0.05);
}

.bg-theme-dark {
    background-color: var(--theme-color-darker);
}

.bg-content {
    background-image: url(../img/bgcontent3.jpg);
    background-size: cover;
}

.bg-content.bg-overlay {
    background-image: url(../img/bgcontent4.jpg);
}

.btn-theme {
    padding: 6px 25px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 2;
    color: var(--theme-button-color-font);
    background: var(--theme-button-color);
    border: var(--theme-button-border);
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-theme:hover {
    color: var(--theme-button-color-font-hover);
    background-color: var(--theme-button-color-hover);
    box-shadow: var(--body-box-shadow);
}

.btn-theme-outline {
    padding: 6px 25px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 2;
    color: var(--theme-button-outline-color-font);
    background: var(--theme-button-outline-color);
    border: var(--theme-button-outline-border);
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-theme-outline:hover {
    color: var(--theme-button-outline-color-font-hover);
    background-color: var(--theme-button-outline-color-hover);
}

.btn-quiz {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    width: 100%;
    color: var(--theme-button-color-font);
    background: var(--theme-button-color-invert);
    border: var(--theme-button-color-invert);
}

.btn-quiz.nm {
    font-size: initial;
    padding: 6px 25px;
}

.btn-quiz:hover {
    background: var(--theme-button-color-invert-darker);
    border: var(--theme-button-color-invert-darker);
}

.btn-fullwidth {
    gap: 0.5rem;
    padding: 0.75rem 0;
    width: 100%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-quiz.btn-default {
    color: #333;
    background-color: #e9eef2;
    border-color: #e1e5e9;
}

.btn-quiz.btn-default:hover {
    background-color: #e1e5e9;
    border-color: #e1e5e9;
    box-shadow: var(--body-box-shadow);
}

.rtcogmember-button {
    width: 100%;
    border-radius: var(--bs-btn-border-radius);
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.16);
    color: var(--body-color);
    font-weight: 700;
    border: solid 1px #b90a0d;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: url(../img/rtcog_bg.png) #b90a0d repeat;
}

.rtcogmember-button:hover {
    background: url(../img/rtcog_bg.png) #270102 repeat;
    color: var(--body-color-white);
}

.facebookmember-button {
    width: 100%;
    border-radius: var(--bs-btn-border-radius);
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.16);
    color: var(--body-color);
    font-size: 1.1rem;
    font-weight: 500;
    border: solid 1px #1877f2;
    padding: 0.35rem 0 0.35rem 20%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    background: #1877f2;
    transition: all .4s ease-in-out;
}

.facebookmember-button:hover {
    background: #3b5998;
    color: var(--body-color-white);
    box-shadow: 0 0 15px rgba(0, 0, 0, .3);
}

.linemember-button {
    width: 100%;
    border-radius: var(--bs-btn-border-radius);
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.16);
    color: var(--body-color);
    font-size: 1.1rem;
    font-weight: 500;
    border: solid 1px #06C755;
    padding: 0.35rem 0 0.35rem 20%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    background: #06C755;
    transition: all .4s ease-in-out;
}

.linemember-button:hover {
    background: #049440;
    color: var(--body-color-white);
    box-shadow: 0 0 15px rgba(0, 0, 0, .3);
}

.googlemember-button {
    width: 100%;
    border-radius: var(--bs-btn-border-radius);
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.16);
    color: var(--body-color);
    font-size: 1.1rem;
    font-weight: 500;
    border: solid 1px #DB4437;
    padding: 0.35rem 0 0.35rem 20%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
    background: #DB4437;
    transition: all .4s ease-in-out;
}

.googlemember-button:hover {
    color: var(--body-color-white);
    background: #bd3a2e;
    box-shadow: 0 0 15px rgba(0, 0, 0, .3);
}

.d-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-box {
    display: inline-flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.share-label {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.share-btn img {
    width: auto;
    height: 28px;
}

.share-btn:hover {
    box-shadow: 0 0 20px rgba(1, 130, 125, .45);
}

.btn-facebook {
    background-color: #1877f2;
}

.btn-facebook:hover {
    background-color: #3b5998;
}

.btn-twitter {
    background-color: #000000;
}

.btn-twitter:hover {
    background-color: #14171a;
}

.btn-line {
    background-color: #06C755;
}

.btn-line:hover {
    background-color: #049440;
}

@media screen and (max-width: 767.98px) {
    main {
        padding: 20px 15px 5px 15px;
    }
    .linemember-button,
    .googlemember-button,
    .facebookmember-button {
        padding: 0.35rem 0 0.35rem 15%;
    }
}


/*----- // -----*/

.top-bg {
    background-image: url(../img/bgcontent3.jpg);
    background-color: var(--theme-color);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 -6rem;
    height: 270px;
    width: 100%;
}

.content-container.box {
    background-color: var(--body-color-white);
    margin-top: -220px;
    margin-bottom: 2em;
    border-radius: var(--bs-btn-border-radius);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    margin-right: auto;
    margin-left: auto;
    padding: 40px 60px 60px 60px;
    min-height: 50vh;
}

.topic-wrapper {
    padding: 0.5rem 0;
}

.topic-wrapper-center {
    text-align: center;
    padding: 1rem 0;
}

.topic-wrapper {
    padding: 1rem 0;
}

.topic-wrapper-center h1 {
    font-size: 2em;
}

.topic-wrapper-center h3 {
    padding-top: 2rem;
}

.topic-wrapper p,
.topic-wrapper-center p {
    font-size: 1.1em;
    line-height: 1.6em;
}

.topic-wrapper p.text-grey,
.topic-wrapper-center p.text-grey {
    font-size: 0.95rem;
    opacity: 55%;
}

.topic-member {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.topic-member h3,
.topic-member p {
    margin: 0;
}

.menu-member-wrapper {
    overflow: auto;
}

.menu-member {
    display: flex;
    gap: 0.25rem;
    padding: 0;
    margin: 0.75rem 0 0 0;
    width: auto;
}

.menu-member li {
    list-style: none;
}

.menu-member li a {
    color: var(--body-font-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 1.5rem;
    border-radius: var(--bs-btn-border-radius);
    white-space: nowrap;
}

.menu-member li a:hover {
    background-color: var(--body-font-color-lighter);
}

.menu-member li.active a {
    color: var(--theme-color-text);
    background-color: var(--theme-color);
}

.section-title {
    padding: 1.5rem 0;
}

.section-title h4 {
    margin-bottom: 0.15rem;
}

.section-title p {
    margin-bottom: 0;
}

hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border: 0;
    border-top: 1px solid #b1b1b1;
}

.separator {
    margin: 2rem 0 2.5rem 0;
    height: 0.8rem;
    position: relative;
    border-bottom: 1px solid #c3c3c3;
    justify-content: center;
    display: flex;
}

.separator div {
    position: absolute;
    padding: 0 0.75em;
    background-color: var(--body-color);
}

.text-theme {
    color: var(--theme-color);
}

.text-theme-invert {
    color: var(--theme-color-text-invert);
}

.bold {
    font-weight: bold;
}

.indent {
    text-indent: 30px;
}

.underline {
    text-decoration: underline;
}

@media screen and (max-width: 991.98px) {
    .content-container.box {
        padding: 30px;
    }
    .menu-member {
        margin-bottom: 0.25rem;
    }
}

@media screen and (max-width: 767.98px) {
    .top-bg {
        background-size: inherit;
    }
    .content-container.box {
        padding: 25px;
    }
}


/*----- Scroll Top -----*/

.scroll-top {
    width: 45px;
    height: 45px;
    background: var(--theme-color);
    text-align: center;
    font-size: 20px;
    color: var(--theme-color-text);
    border-radius: var(--bs-btn-border-radius);
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
    padding: 0.6em;
}

.scroll-top:hover {
    background: rgba(0, 115, 124, 0.7);
    color: #fff;
}

@keyframes animation1 {
    0% {
        transform: translateY(0px);
        opacity: 0.29;
    }
    50% {
        transform: translateY(-700px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 0;
    }
}


/*----- Page -----*/

.page-flex {
    display: flex;
}

.layer {
    width: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    animation: animation-drawer-fade-in .5s ease-in-out 1;
    z-index: 5;
}

.main-wrapper {
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

section+section {
    margin: 1.5rem 0;
}

@media (max-width: 1199.98px) {
    .main-wrapper {
        max-width: 100%;
    }
    .main-wrapper.main-player {
        max-width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) and (orientation: landscape) {
    .main-wrapper {
        max-width: calc(100vw - 60px);
        width: 100%;
        margin: 4rem 0 0 auto;
    }
    .sidebar.hidden+.main-wrapper {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .layer,
    .layer.active {
        display: none !important;
    }
    .sidebar+.main-wrapper {
        max-width: calc(100vw - 268px);
        width: 100%;
    }
    .sidebar.hidden+.main-wrapper {
        max-width: calc(100vw - 64px);
        width: 100%;
    }
}

.main-wrapper.full-width {
    max-width: 100vw!important;
}


/*----- Overlay -----*/

.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: #081828;
    content: "";
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 5;
}


/*----- Pagination -----*/

.pagination {
    text-align: left;
    margin: 65px 0 0 0;
    display: block;
    background-color: transparent;
}

.pagination.center {
    text-align: center;
}

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

.pagination .pagination-list {
    display: inline-block;
    border: none;
}

.pagination .pagination-list li {
    margin-right: 5px;
    display: inline-block;
}

.pagination .pagination-list li:last-child {
    margin-right: 0px;
}

.pagination .pagination-list li a {
    background: transparent;
    color: #473BF0;
    border: 1px solid #473BF0;
    padding: 0 15px;
    font-weight: 500;
    font-size: 13px;
    border-radius: var(--bs-btn-border-radius);
    line-height: 35px;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
    background: #473BF0;
    color: #fff;
    border-color: transparent;
}

.pagination .pagination-list li a i {
    font-size: 20px;
}

.pagination .pagination-list li a i {
    font-size: 14px;
}


/*----- Breadcrumb -----*/

.breadcrumb {
    padding: 0;
    margin-bottom: 1.5em;
    background-color: transparent;
    font-size: 0.8em;
    font-weight: 500;
    color: var(--body-font-color);
}

.breadcrumb>li a {
    color: var(--theme-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--body-font-color);
    content: "\f3d3";
    font-family: "Ionicons";
    font-weight: 600;
    padding: 0 0.5em 0 0;
}


/*----- Footer -----*/

footer {
    background-color: var(--body-footer-bgcolor);
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.98px) {
    footer {
        height: auto;
        padding: 1rem 0;
    }
}


/*----- rtcog-web -----*/

.rtcog-web header {
    background: url(../img/rtcog_bg.png) #b90a0d repeat;
    background-position: center;
    background-size: contain;
}

.rtcog-web header:after {
    content: '';
    background: linear-gradient(30deg, #edb518 0%, #fdcb43 15%, #f9f295 30.39%, #edb518 100%);
    height: 6px;
    width: 100%;
    display: block;
}

.rtcog-web .navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.rtcog-web .logo-img {
    max-height: 100px;
    transition: all 0.3s;
    padding: 0.25rem 0;
}

.rtcog-web .button-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rtcog-web .button-box a,
.rtcog-web .button-box button {
    width: 48.5%;
}

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}

.btn-dark:hover {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21;
}

.btn-outline-dark {
    color: #212529;
    border-color: #212529;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}


/*----- Form -----*/

.form-label {
    margin-bottom: 0.25rem;
}

form .btn.btn-theme,
form .btn.btn-form {
    padding: 0.8rem 0.25rem;
}

valid {
    color: #ff0000;
    font-weight: 600;
}

.field-icon {
    position: absolute;
    right: 1rem;
    top: 2.25rem;
    z-index: 2;
    opacity: 0.5;
    cursor: pointer;
}

.was-validated .field-icon {
    right: 2.75rem;
    top: 2.4rem;
    bottom: unset;
}

.form-check {
    padding-left: 0.5em;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 40px;
    padding-top: 3px;
    margin-bottom: 18px;
    cursor: pointer;
    font-size: 1.1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: var(--bs-btn-border-radius);
}

.radiomark {
    position: absolute;
    top: -4px;
    left: -6px;
    height: 32px;
    width: 32px;
    background-color: #eee;
    border-radius: 50%;
}

.checkbox-container:hover input~.checkmark,
.checkbox-container:hover input~.radiomark {
    background-color: #def6eb;
}

.checkbox-container input:checked~.checkmark,
.checkbox-container input:checked~.radiomark {
    background-color: var(--theme-button-color);
}

.checkmark:after,
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after,
.checkbox-container input:checked~.radiomark:after {
    display: block;
}

.checkbox-container .checkmark:after,
.checkbox-container .radiomark:after {
    left: 8px;
    top: 1px;
    width: 9px;
    height: 18px;
    border: solid white;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-container .radiomark:after {
    left: 12px;
    top: 5px;
}

h4.form-check.form-check-inline label {
    margin-top: 10px;
}

.form-check-input:checked {
    background-color: var(--theme-button-color);
    border-color: var(--theme-button-color);
}

.dropdown {
    position: absolute;
    padding: 5px 10px;
    background-color: var(--sidebar-color);
    -webkit-box-shadow: var(--body-box-shadow);
    box-shadow: var(--body-box-shadow);
    border-radius: var(--bs-btn-border-radius);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    z-index: 3;
}

.dropdown::before {
    content: '';
    position: absolute;
    right: 6px;
    top: -10px;
    border-style: solid;
    border-width: 0 15px 15px;
    border-color: transparent transparent #fff;
}

.dropdown a {
    display: inline-block;
    width: 100%;
    color: var(--body-font-color);
    border-bottom: 1px solid #eee;
    text-align: left;
}

.dropdown-btn {
    color: #b9b9b9;
}


/*----- // -----*/

.owl-stage,
.owl-item {
    position: relative;
}

.owl-item:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 2;
}

.owl-item.active.center:before {
    z-index: -2;
}

#hero-banner {
    padding-top: 10px;
}

@media screen and (max-width: 767.98px) {
    #hero-banner {
        padding-top: 0;
    }
}


/*----- course -----*/

.box {
    background-color: #ffffff;
    border-radius: var(--bs-btn-border-radius);
    -webkit-box-shadow: 4px 4px 25px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 4px 4px 25px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 4px 4px 25px 3px rgba(0, 0, 0, 0.05);
}

.course-wrapper {
    position: relative;
}

.course-wrapper a {
    height: 100%;
}

a .course-box {
    color: var(--body-font-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

a:hover .course-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px !important;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    transition: all .3s;
    color: var(--body-font-color)
}

.course-box img {
    border-top-left-radius: var(--bs-btn-border-radius);
    border-top-right-radius: var(--bs-btn-border-radius);
}

.course-info {
    padding: 1rem 1.5rem;
    height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.course-info small i {
    margin-right: 0.25rem;
    font-size: 1.3rem;
    opacity: 0.4;
}

.course-title {
    font-weight: 600;
    display: -webkit-box;
    text-overflow: -o-ellipsis-lastline;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    max-height: 2.53em;
    font-size: 1.35em;
}

h5.course-title {
    -webkit-line-clamp: 3;
    max-height: 3.75em;
    font-size: 1.05em;
}

.course-detail {
    display: -webkit-box;
    text-overflow: -o-ellipsis-lastline;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    max-height: 4.3em;
    margin-bottom: 0.25rem;
}

#recommend-course .course-title {
    -webkit-line-clamp: 1;
    max-height: 1.75em;
}

#recommend-course .course-detail {
    -webkit-line-clamp: 2;
    max-height: 2.8em;
}

#recommend-course .course-wrapper-xl .course-detail {
    -webkit-line-clamp: 14;
    max-height: 19.6em;
}

.course-wrapper.course-wrapper-s .course-title {
    -webkit-line-clamp: 3;
    max-height: 3.55em;
    font-size: 1.15em;
}

.course-wrapper.course-wrapper-s .course-info p {
    display: -webkit-box;
    text-overflow: -o-ellipsis-lastline;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    max-height: 4.25em;
}

.course-info small {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 1rem;
}

.course-footer {
    margin-top: auto;
    display: block;
}

.course-wrapper.course-wrapper-s .course-info .course-footer-date p {
    margin: 0.25rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.5;
}

.course-speaker {
    margin-top: 1.5rem;
    color: var(--theme-color);
    display: -webkit-box;
    text-overflow: -o-ellipsis-lastline;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    max-height: 2.8em;
}

#recommend-course .course-speaker {
    margin: 0.5rem 0;
}

.course-category {
    border-top: solid 1px #eee;
    padding-top: 0.5rem;
    display: -webkit-box;
    text-overflow: -o-ellipsis-lastline;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    max-height: 4.4em;
}

.course-category i {
    margin-right: 0.3rem;
    color: var(--theme-color);
    vertical-align: middle;
}

.viewall-box {
    display: flex;
    justify-content: end;
    margin: 1rem 0;
}

.course-cover {
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding: 2rem 1rem;
}

.course-cover-poster {
    background-repeat: no-repeat;
    background-size: cover;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    filter: blur(25px);
    -webkit-filter: blur(25px);
    position: absolute;
    z-index: 0;
}

.courses-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(1, 70, 75);
    background: linear-gradient(270deg, rgba(1, 70, 75, 0) 0%, rgba(1, 70, 75, 1) 100%);
    /*background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);*/
    z-index: 0;
}

.course-cover .course-info {
    color: var(--theme-color-text);
    position: relative;
    z-index: 1;
    padding: 3rem;
}

.courses-review {
    margin: 2.5rem 0 1.5rem 0;
}

.courses-review h4 {
    margin: 0 0.75rem 0 0;
}

.courses-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#course-shortcut-box {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.course-overall-poster {
    border-radius: var(--bs-btn-border-radius);
    overflow: hidden;
}

.course-overall-items {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0.45rem 0;
    padding-left: 0.5rem;
}

.course-overall-items i {
    width: 18px;
}

.courses-detail-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #dee2e6;
}

.courses-detail-item h5 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

#course-detail .nav-tabs,
#course-playlist .nav-tabs {
    gap: 0.5rem;
}

#course-detail .nav-tabs .nav-link,
#course-playlist .nav-tabs .nav-link {
    border: none;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--body-font-color);
}

#course-detail .nav-tabs .nav-item.show .nav-link,
#course-detail .nav-tabs .nav-link.active,
#course-playlist .nav-tabs .nav-item.show .nav-link,
#course-playlist .nav-tabs .nav-link.active {
    color: var(--theme-color)!important;
    background-color: transparent!important;
    border-bottom: solid 2px var(--theme-color);
}

#course-info-tab-contents {
    padding: 2rem 1rem;
}

#course-info-tab-contents .tab-pane {
    min-height: 415px;
}

#course-playlist-tab-contents {
    padding: 1.5rem 0;
}

.table-course-outline>tbody>tr>td {
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}

.table-course-outline>tbody>tr>td:nth-child(1) {
    border-right: none;
    max-width: 85%;
}

.table-course-outline>tbody>tr>td:nth-last-child(1) {
    text-align: end;
    border-left: none;
}

.table-course-outline>tbody>tr>td i {
    vertical-align: middle;
    margin-right: 0.25em;
}

.table-course-outline>tbody>tr.course-title-row>td {
    background-color: var(--theme-color);
    color: var(--theme-color-text);
    font-weight: 600;
    font-size: 1.2em;
    padding: 0.75rem;
}

.course-instructor {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.course-instructor-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 2rem;
    overflow: hidden;
}

.course-instructor img {
    width: 100%;
    height: auto;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 1em;
    border-bottom: solid 1px #eee;
    padding: 1rem;
    color: var(--body-font-color);
}

.material-item:hover {
    background-color: #eee;
}

.material-type-icon img {
    width: 32px;
    height: 32px;
}

.material-name {
    font-size: 1.1rem;
}

.material-size {
    font-size: 0.85rem;
    opacity: 0.5;
}

.material-download {
    margin: 0 0 0 auto;
}

.btn-material-download {
    padding: 2px 9.5px;
}

.btn-material-download i {
    font-size: 2em;
}

#related-course {
    padding-top: 0.5rem;
    margin-top: 1.5rem;
    border-top: 1px dashed #dee2e6;
}

#course-player-wrapper {
    padding: 0;
}

#course-player {
    background-color: #f5f5f5;
    height: calc(100vh - 64px);
}

#player-wrapper {
    padding: 1.5rem 2.25rem 0.75rem 2.25rem;
    min-height: calc(100vh - 120px);
}

#player-wrapper .my-course-dimensions {
    max-width: 100%!important;
}

.course-action {
    display: flex;
    justify-content: end;
    padding: 0 2.25rem 0 0;
}

.course-action .btn {
    padding: 6px 3em!important;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.course-action [type=submit].btn {
    margin: 0 0 0 auto;
}

#course-playlist {
    position: fixed;
    right: 0;
    background-color: var(--body-color-white);
    box-shadow: var(--body-box-shadow);
    padding: 1.5rem;
    height: 100%;
    max-height: calc(100vh - 64px);
    overflow: auto;
}

@media screen and (max-width: 1399.98px) {
    #recommend-course .course-wrapper-xl .course-title {
        -webkit-line-clamp: 5;
        max-height: 6.1em;
    }
    #recommend-course .course-wrapper-xl .course-detail {
        -webkit-line-clamp: 14;
        max-height: 19.6em;
    }
    .course-list.course-slide {
        display: flex;
        overflow: auto;
        width: calc(100vw - 360px - 3rem);
        scroll-snap-type: x mandatory;
        flex-shrink: 0;
        flex-wrap: nowrap;
        position: relative;
        transition-property: transform;
        scrollbar-width: thin;
    }
    .course-slide .course-wrapper {
        scroll-snap-align: start;
    }
    .course-slide .course-box {
        width: calc(33.3333vw - 120px - 2em);
    }
    .course-speaker {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    #course-shortcut-box {
        padding: 1rem;
    }
    .course-cover .course-info {
        padding: 2rem;
    }
    .sidebar.hidden+.main-wrapper .course-list.course-slide {
        width: calc(100vw - 175px - 3rem);
    }
    .sidebar.hidden+.main-wrapper .course-slide .course-box {
        width: calc(33.3333vw - 5.7rem);
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) and (orientation: landscape) {
    .sidebar.hidden+.main-wrapper #recommend-course .course-wrapper.d-xxl-block {
        display: block!important;
    }
    .sidebar.hidden+.main-wrapper #recommend-course .course-wrapper.col-xxl-5 {
        width: 40%!important;
    }
    .sidebar.hidden+.main-wrapper #recommend-course .course-wrapper.col-xxl-6 {
        width: 50%!important;
    }
    .sidebar.hidden+.main-wrapper #recommend-course .col-xxl-7 {
        width: 60%!important;
    }
    .sidebar.hidden+.main-wrapper #course-list .course-wrapper.col-xxl-3,
    .sidebar.hidden+.main-wrapper #material-list .course-wrapper.col-xxl-3 {
        width: 25%!important;
    }
}

@media screen and (max-width: 1199.98px) {
    #player-wrapper {
        padding: 2rem 2.25rem 2rem 2.25rem;
        min-height: unset;
    }
    #course-playlist {
        position: relative;
    }
    .course-list.course-slide {
        width: calc(100vw - 3rem);
    }
    .course-slide .course-box {
        width: calc(33.3333vw - 2em);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) and (orientation: landscape) {
    .course-list.course-slide {
        width: calc(100vw - 65px - 3rem);
    }
    .course-slide .course-box {
        width: calc(33.3333vw - 3.4rem);
    }
    .course-cover .course-info {
        padding: 1rem 2rem;
    }
}

@media screen and (max-width: 991.98px) {
    .course-list.course-slide {
        width: calc(100vw - 2rem);
    }
    .course-slide .course-box {
        width: calc(50vw - 2em);
    }
    .course-speaker {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    .course-cover {
        padding: 1.5rem;
    }
    .course-cover .course-info {
        padding: 3rem 2rem;
    }
    .course-instructor-wrapper {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 767.98px) {
    .course-slide .course-box {
        width: calc(100vw - 2em);
    }
    #recommend-course .course-wrapper-xl .course-detail {
        -webkit-line-clamp: 2;
        max-height: 2.8em;
    }
    .course-cover,
    .course-cover .course-info {
        padding: 1.5rem;
    }
    #course-detail .nav-tabs,
    #course-playlist .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1px;
    }
    .course-instructor {
        display: grid;
        align-items: center;
    }
    .course-instructor-wrapper {
        width: 155px;
        height: 155px;
        margin: 0 auto 1rem auto;
    }
    .course-instructors-info h5 {
        text-align: center;
    }
    #course-player {
        padding: 20px 15px;
    }
    #player-wrapper {
        padding: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .course-info.course-recom {
        padding: 0.75rem;
    }
    .course-recom h5.course-title {
        -webkit-line-clamp: 3;
        max-height: 3.75em;
        font-size: 0.9em;
    }
    .course-recom h4.course-title {
        font-size: 1.15em;
    }
    .course-recom .course-detail {
        font-size: 0.9em;
    }
}

.course-recom h4.course-title {
    -webkit-line-clamp: unset;
    max-height: unset;
}

.course-recom .course-detail {
    -webkit-line-clamp: unset;
    max-height: unset;
}


/*----- OWL -----*/

#player-wrapper.slideshow {
    padding: 2rem 3rem 0.75rem 3rem;
}

#player-wrapper.slideshow+.course-action {
    padding-right: 3rem;
}

.owl-carousel.slideshow .owl-nav {
    position: absolute;
    top: calc(50% - 1em);
    width: 100%;
}

.owl-carousel.slideshow .owl-nav button {
    font-size: 8em!important;
}

.owl-carousel.slideshow .owl-prev {
    position: absolute;
    left: -60px;
}

.owl-carousel.slideshow .owl-next {
    position: absolute;
    right: -60px;
}

.owl-carousel.slideshow.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent!important;
    color: inherit!important;
}

.owl-carousel.slideshow+.owl-nav {
    display: none;
}


/*----- rating -----*/

.rate {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    height: 28px;
    margin: 4rem 0 2rem 0;
}

.rating>input {
    display: none
}

.rating>label {
    position: relative;
    width: 1em;
    font-size: 60px;
    font-weight: 300;
    color: #FFD600;
    cursor: pointer
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important
}

.rating>input:checked~label:before {
    opacity: 1
}

.rating:hover>input:checked~label:before {
    opacity: 0.4
}

.course-rating-box label.form-label {
    font-size: 1.1rem;
}

.buttons {
    top: 36px;
    position: relative;
}

.btn.btn-theme.rating-submit {
    padding: 0.5rem 3.5rem;
    font-size: 1.15rem;
    margin: 0 auto;
}


/*----- Course Outline -----*/

.course-outline-main-topic {
    padding: 0.5rem 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    background-color: var(--theme-color);
    color: var(--theme-color-text);
}

.course-outline-sub-topic {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    position: relative;
    padding: 1.75rem 0;
}

.course-outline-icon-wrapper {
    position: relative;
    min-width: 42px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background-color: #eee;
    text-align: center;
    overflow: hidden;
    color: var(--theme-color-text);
}

.course-outline-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    background-color: #eee;
    color: var(--body-font-color);
}

.course-outline-sub-topic.done .course-outline-icon-bg {
    background-color: var(--theme-color);
    color: var(--theme-color-text);
}

.course-outline-icon-wrapper i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
    color: var(--body-font-color);
}

.course-outline-icon-wrapper i.fi-clipboard-pencil {
    margin-top: 2px;
    margin-left: 2px;
}

.course-outline-sub-topic.done .course-outline-icon-wrapper i {
    top: calc(50% - 22.25px);
    left: calc(50% - 8.8px);
    transform: none;
    color: var(--theme-color-text);
}

.course-outline-sub-topic.done .course-outline-icon-wrapper i.fi-clipboard-pencil {
    left: calc(50% - 10.8px);
}

.course-outline-sub-topic.done .course-outline-icon-wrapper i:before {
    content: "\f3fd";
    font-family: "Ionicons";
    font-size: 2.75rem!important;
}

.course-outline-sub-topic.active .course-outline-icon-bg,
.course-outline-sub-topic.active .course-outline-icon-wrapper i {
    background: var(--theme-color-lighter) !important;
    color: var(--theme-color-darker) !important;
}

.course-outline-topic-wrapper {
    display: flex;
    align-items: first baseline;
    width: calc(100% - 42px);
    padding-top: 0.65rem;
}

.course-outline-topic-wrapper .col-4 {
    text-align: end;
    font-size: 0.9em;
    opacity: 0.6;
    padding-right: 0.5rem;
}

.course-outline-topic-wrapper .col-8 .item-title {
    min-height: 42px;
    padding: 0.7rem 0;
}

.course-outline-topic-wrapper .col-8 p {
    margin: 0;
}

.course-outline-topic-wrapper a {
    color: initial;
}

.course-journey-line {
    position: absolute;
    top: 0;
    left: 21px;
    bottom: 0;
    transform: translateX(-50%);
    width: 2px;
    z-index: 0;
    background-color: #eee;
}

.course-outline-sub-topic.done .course-journey-line {
    background-color: var(--theme-color-lighter);
}

.course-outline-sub-topic.active .course-journey-line:before {
    content: '';
    width: 2px;
    height: 50%;
    position: absolute;
    background-color: var(--theme-color-lighter);
}

.course-outline-sub-topic:first-child .course-journey-line,
.course-outline-sub-topic:last-child .course-journey-line {
    height: 50%;
}

.course-outline-sub-topic:first-child {
    padding-top: 0;
}

.course-outline-sub-topic:first-child .course-journey-line {
    top: 50%;
}


/* ---- quiz-box ---- */

#quiz-box {
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.quiz-score {
    font-size: 3.5em;
    margin: 0 0 3rem 0;
    text-align: center;
}

.quiz-box-bg {
    background-image: url(../img/bg_line.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* ---- inputGroup ---- */

.inputGroup {
    background-color: #fff;
    border: 1px solid #D1D7DC;
    display: block;
    margin: 10px 0;
}

.inputGroup label {
    padding: 15px 20px 15px 55px;
    width: 100%;
    display: block;
    text-align: left;
    color: #3C454C;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    font-size: 16px;
    margin-bottom: 0;
    font-family: 'Montserrat', 'Prompt', sans-serif;
}

.inputGroup label span {
    font-weight: 400;
    font-size: 0.9em;
}

.inputGroup label:before {
    width: 50px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: var(--theme-color);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.inputGroup label:after {
    width: 32px;
    height: 32px;
    content: '';
    border: 2px solid #D1D7DC;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

.inputGroup.inputCheck label:after {
    border-radius: 0;
}

.inputGroup input:checked~label {
    color: #fff;
}

.inputGroup input:checked~label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup input:checked~label:after {
    background-color: var(--theme-button-color-invert-darker);
    border-color: var(--theme-button-color-invert-darker);
}

.inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}


/*----- Pagination -----*/

.pagination {
    text-align: center;
    margin: 2.5em 0;
    display: flex;
    justify-content: center;
    background-color: transparent;
}

.pagination.center {
    text-align: center;
}

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

.pagination li.page-item a.page-link {
    background: transparent;
    color: var(--body-font-color);
    border: 0px solid #dee2e6;
    padding: 0;
    margin: 0 5px;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 50%;
    line-height: 2.5rem;
    width: 40px;
    height: 40px;
}

.pagination li.page-item a.active,
.pagination li.page-item a:active,
.pagination li.page-item a:hover {
    background: var(--theme-color-lighter);
    color: var(--theme-color-text);
    border-color: transparent;
}

.pagination li.page-item a i {
    vertical-align: middle;
    font-size: 1.3rem;
}

.pagination li.page-item.active a.page-link {
    background: var(--theme-color);
    color: var(--theme-color-text);
}


/*
.pagination li.page-item:first-child a.page-link {
    margin-right: 0px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.pagination li.page-item:last-child a.page-link {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
*/


/*----- Member -----*/

#member-history-items.table>tbody>tr>td:nth-child(1) {
    width:
}

.bd-dbt {
    border-bottom: dashed 1px var(--body-font-color-lighter);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

#my-course-list .btn {
    font-size: 1rem;
    width: 200px;
    padding: 6px 0;
}

@media screen and (max-width: 767.98px) {
    #my-course-list .bd-dbt {
        border-bottom-width: 0px;
        margin-bottom: 0;
    }
    #my-course-list .bd-dbt.bd-last {
        border-bottom-width: 1px;
        margin-bottom: 1.75rem;
    }
    #my-course-list .btn {
        width: 100%;
    }
}

.password-hint {
    color: var(--theme-color-text-invert);
    font-size: 0.9rem;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
}

.password-hint .title {
    font-weight: 600;
    margin-bottom: 0;
}

.password-hint .detail {
    margin-bottom: 0;
}


/*----- Favourite Items -----*/

#my-course-list h5 i {
    font-size: 34px;
    color: var(--theme-color);
    vertical-align: middle;
}


/*----- Filter Bar -----*/

.filter-wrapper {
    overflow: auto;
}

.filter-action {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: end;
    width: auto;
}

.filter-action a {
    color: var(--body-font-color);
    border: solid 1px var(--body-font-color-lighter);
    border-radius: var(--bs-btn-border-radius);
    padding: 0.5rem 1rem;
}

.filter-action a strong {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.filter-action a i {
    font-size: 0.5rem;
}

.filter-action a i.material-icons {
    font-size: 1.2rem;
}

.filter-action a:hover {
    background-color: var(--body-font-color-lighter);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    cursor: pointer;
}

.filter-action a.active,
.filter-action a.active:hover {
    background-color: var(--theme-color-lighter);
    color: var(--body-font-color)!important;
}

@media screen and (max-width: 767.98px) {
    .filter-action {
        justify-content: left;
        margin-bottom: 0.5rem;
    }
}


/*----- Accordion -----*/

.accordion-item {
    border: none;
    border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background-color: var(--body-color-white);
    box-shadow: none;
    font-size: 1.15rem;
    font-weight: 600;
}

.accordion-collapse {
    padding: 0.35rem 0 1.25rem 0.5rem;
}

.bookmark-btn a .material-icons {
    font-size: 3rem;
    color: var(--theme-button-color);
}

.swal2-popup {
    width: 45em!important;
    padding-bottom: 2.25em!important;
}

.swal2-title {
    font-size: 1.5em!important;
}