@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');

/* Variables */
:root {
    --bradius: 1.25rem;
    --bradius-02: .375rem;
    --font-mitr: "Mitr", sans-serif;
}

.font-mitr {
    font-family: var(--font-mitr);
}

/* Reset */
html,
body {
    padding: 0;
    margin: 0;
    font-family: "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.15;
    overflow-x: hidden;
}

body.loading {
    height: 100dvh !important;
    overflow: hidden !important;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

a {
    color: inherit;
    transition: all .25s;
}

a,
a:hover {
    text-decoration: none;
}

a.link {
    text-decoration: underline;
    font-weight: 400;
}

img.img {
    display: block;
    width: 100%;
    height: auto;
}

.fit {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.img-fill {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* Buttons */
button {
    font-family: "Noto Sans Thai", sans-serif;
}

.btns {
    width: 100%;
}

.btn {
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1.5;
    transition: all .25s;
}

.btn.btn-action {
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    cursor: pointer;
    padding: .3125rem 1rem;
    border: 1px solid transparent;
    white-space: nowrap;
    border-radius: 1000em;
}

.btn.btn-action.style-02 {
    border-radius: .375rem;
    font-size: .9375rem;
    font-weight: 300;
}

.btn.btn-action.style-02.sm {
    padding: .3rem .875rem;
}

.btn.btn-action.style-03 {
    padding: .5rem 1rem;
}

.btn.btn-action.md {
    padding: .5rem 1.25rem;
    min-width: 7rem;
    text-align: center;
}

.btn.btn-action.xs {
    font-size: .875rem;
    padding: .3125rem .5rem;
}

.btn.btn-icon {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: max-content;
    padding: .125rem .175rem .125rem .75rem;
}

.btn.btn-icon .icon {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: .5rem;
    border: 1px solid transparent;
    z-index: 1;
}

.btn.btn-icon .title,
.btn.btn-icon .icon>* {
    position: relative;
    z-index: 2;
}

.btn.btn-icon .icon {
    transform: rotate(320deg);
    transition-duration: 300ms;
}

.btn.btn-icon:hover .icon {
    transform: rotate(360deg);
}

.btn.btn-icon.transform-unset .icon {
    transform: unset;
}

.btn.btn-icon.transform-unset:hover .icon {
    transform: unset;
}

.btn.btn-icon::before {
    content: '';
    position: absolute;
    width: 0;
    aspect-ratio: 1/1;
    transition-property: all;
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    left: -100%;
    border-radius: 9999px;
}

.btn.btn-icon:hover::before {
    left: 0;
    width: 100%;
}

.btn.btn-icon .icon svg {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: .625rem;
}

.btn.mw-1 {
    min-width: 9rem !important;
}

.btn.btn-icon .icon svg path {
    transition: fill .25s;
}

.btn.btn-icon.style-02 {
    padding: .3125rem 0;
    overflow: visible;
}

.btn.btn-icon.style-02 .icon {
    transform: unset;
    transition-duration: unset;
    border-radius: var(--bradius-02);
}

.btn.btn-icon.style-03 .icon {
    transform: unset;
    transition-duration: unset;
    border-radius: 50%;
}

.btn.btn-icon.style-03:hover::before {
    background: transparent !important;
}

.btn.btn-circle .icon {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: .5rem;
    border: 1px solid transparent;
    z-index: 1;
    transition: background .25s;
}

.btn.btn-circle .icon svg {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: .625rem;
}

.btn-ebook {
    display: flex;
    align-items: center;
}

.btn-ebook .icon svg {
    display: block;
    width: auto;
    height: .875rem;
}

.btn.btn-action.sm {
    font-size: .875rem;
    padding: .25rem 1rem;
}

.btn-play {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-play>*:first-child {
    position: relative;
    z-index: 3;
}

.btn-play:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: btnVideo 1.5s ease-out infinite;
}

.btn-play:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transform: translateX(-50%)translateY(-50%);
    transition: all .2s;
}

.btn-play.xl,
.btn-play.xl:after {
    width: 5rem;
    height: 5rem;
}

.btn-play.lg,
.btn-play.lg:after {
    width: 4rem;
    height: 4rem;
}

.btn-play.md,
.btn-play.md:after {
    width: 2.5rem;
    height: 2.5rem;
}

.btn-play.sm,
.btn-play.sm:after {
    width: 2rem;
    height: 2rem;
}

.btn-play.xs,
.btn-play.xs:after {
    width: 1.5rem;
    height: 1.5rem;
}

.btns.social-group-01 {
    display: flex;
}

.btns.social-group-01 .btn {
    margin: .25rem;
}

.btns.social-group-01 .icon svg {
    display: block;
    width: auto;
    height: 1.75rem;
}

@media screen and (max-width:490.98px) {
    .btns.social-group-01 .icon svg {
        height: 1.5rem;
    }
}

@media screen and (max-width:375.98px) {
    .btns.social-group-01 .icon svg {
        height: 1.3125rem;
    }
}

@media screen and (max-width:360.98px) {
    .btns.social-group-01 {
        flex-wrap: wrap;
    }
}


/* Avatar */
.avatar-01 {
    display: flex;
    align-items: center;
}

.avatar-01 .avatar {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-01 .ss-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.current-index,
.total-slides {
    font-weight: 400 !important;
    font-size: .875rem !important;
}


/* Animation */
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes btnVideo {
    0% {
        transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
        opacity: 0;
    }
}

/* Bounce In Right */
@keyframes bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    60% {
        opacity: 1;
        transform: translateX(-1px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}


/* Roll In */
@keyframes roll-in {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    border-radius: .25rem;
}

::-webkit-scrollbar-thumb {
    border-radius: .25rem;
}

::-webkit-scrollbar:horizontal {
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cccccc;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}


/* Section & Container */
section {
    width: 100%;
    overflow: hidden;
}

section .content-wrapper {
    position: relative;
    border-radius: var(--bradius);
    padding: 2rem;
    overflow: hidden;
}

section .content-wrapper.bg-right {
    border-radius: var(--bradius) 0 0 var(--bradius);
}

section .content-wrapper.bg-right::before {
    content: '';
    position: absolute;
    top: -.025rem;
    bottom: -.025rem;
    left: 100%;
    background: #ffffff;
    width: 15rem;
    z-index: 2;
}

section .content-wrapper .img-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section .content-wrapper .content-inner {
    position: relative;
}

.section-padding {
    padding: 4rem 0;
}

.section-padding-sm {
    padding: 1.75rem 0;
}

.container {
    position: relative;
    width: 100%;
    max-width: calc(1240px - 2rem);
    padding: 0;
    margin: 0 auto;
}

.container.expand-right {
    max-width: calc(620px - 1rem + 50vw);
    margin: 0 0 0 auto;
}

@media screen and (min-width:1400px) {
    .container {
        max-width: calc(1300px - 2rem);
    }

    .container.expand-right {
        max-width: calc(650px - 1rem + 50vw);
    }
}

@media screen and (max-width:1299.98px) {
    .container {
        max-width: calc(1140px - 2rem);
    }

    .container.expand-right {
        max-width: calc(570px - 1rem + 50vw);
    }

    section .content-wrapper.bg-right::before {
        top: -.0625rem;
        bottom: -.0625rem;
    }
}

@media screen and (max-width:1199.98px) {
    .container {
        max-width: calc(992px - 2rem);
    }

    .container.expand-right {
        max-width: calc(496px - 1rem + 50vw);
    }

    section .content-wrapper {
        padding: 3.5rem;
    }
}

@media screen and (max-width:991.98px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .container {
        max-width: calc(768px - 2rem);
    }

    .container.expand-sm {
        max-width: 100%;
    }

    .container.expand-right {
        max-width: calc(384px - 1rem + 50vw);
    }

    section .content-wrapper {
        padding: 3rem;
    }
}

@media screen and (max-width:767.98px) {
    .section-padding {
        padding: 3rem 0;
    }

    .section-padding-sm {
        padding: 1.5rem 0;
    }

    .container {
        max-width: calc(576px - 2rem);
    }

    .container.expand-xs {
        max-width: 100%;
    }

    .container.expand-right {
        max-width: calc(288px - 1rem + 50vw);
    }

    section .content-wrapper {
        padding: 2rem;
    }

    section .content-wrapper.no-bg {
        padding: 0 2rem 0 2rem;
    }

    section .content-wrapper.pr-0 {
        padding: 2rem !important;
    }
}

@media screen and (max-width:575.98px) {
    .section-padding {
        padding: 2.5rem 0;
    }

    .container {
        max-width: calc(100% - 2rem);
    }

    .container.expand-xxs {
        max-width: 100%;
    }

    .container.expand-right {
        max-width: calc(50% - 1rem + 50vw);
    }

    section .content-wrapper {
        padding: 2rem;
    }

    section .content-wrapper.no-bg {
        padding: 0 2rem 0 2rem;
    }
}

@media screen and (max-width:490.98px) {
    section .content-wrapper {
        padding: 1.5rem;
    }

    section .content-wrapper.no-bg {
        padding: 0 1.5rem 0 1.5rem;
    }
}

@media screen and (max-width:390.98px) {
    section .content-wrapper {
        padding: 1rem;
    }

    section .content-wrapper.no-bg {
        padding: 0 1rem 0 1rem;
    }
}


/* Typography */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.p,
li,
label {
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
}

h1,
.h1 {
    font-size: 4rem;
    line-height: 1.15;
}

h2.lg,
.h2.lg {
    font-size: 2.5rem;
    line-height: 1.25;
}

h2,
.h2 {
    font-size: 2.375rem;
    line-height: 1.25;
}

h3,
.h3 {
    font-size: 2rem;
    line-height: 1.45;
}

h4,
.h4 {
    font-size: 1.875rem;
}

h5,
.h5 {
    font-size: 1.375rem;
}

h5.sm,
.h5.sm {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1.125rem;
}

p,
.p,
li,
label {
    font-size: 1rem;
}

p.md,
.p.md,
li.md,
label.md {
    font-size: .9375rem;
}

p.sm,
.p.sm,
li.sm,
label.sm {
    font-size: .875rem;
}

p.xs,
.p.xs,
li.xs,
label.xs {
    font-size: .8125rem;
}

p.xxs,
.p.xxs,
li.xxs,
label.xxs {
    font-size: .6875rem;
}

p.xxxs,
.p.xxxs,
li.xxxs,
label.xxxs {
    font-size: .5rem;
}

@media screen and (max-width:1199.98px) {

    h1,
    .h1 {
        font-size: 3.75rem;
        line-height: 1.15;
    }

    h2,
    .h2,
    h2.lg,
    .h2.lg {
        font-size: 2.1875rem;
        line-height: 1.25;
    }

    h3,
    .h3 {
        font-size: 1.75rem;
        line-height: 1.45;
    }

    h4,
    .h4 {
        font-size: 1.625rem;
    }
}

@media screen and (max-width:991.98px) {

    h1,
    .h1 {
        font-size: 3.375rem;
        line-height: 1.2;
    }

    h2,
    .h2,
    h2.lg,
    .h2.lg {
        font-size: 2rem;
        line-height: 1.3;
    }

    h3,
    .h3 {
        font-size: 1.75rem;
        line-height: 1.5;
    }

    h4,
    .h4 {
        font-size: 1.625rem;
    }

    h5,
    .h5 {
        font-size: 1.3125rem;
    }
}

@media screen and (max-width:767.98px) {

    h1,
    .h1 {
        font-size: 3rem;
        line-height: 1.25;
    }

    h2,
    .h2,
    h2.lg,
    .h2.lg {
        font-size: 1.875rem;
        line-height: 1.4;
    }

    h3,
    .h3 {
        font-size: 1.5625rem;
        line-height: 1.55;
    }

    h4,
    .h4 {
        font-size: 1.4375rem;
    }

    h6,
    .h6 {
        font-size: 1.0625rem;
    }

    h5,
    .h5 {
        font-size: 1.25rem;
    }

    h5.sm,
    .h5.sm {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:575.98px) {

    h1,
    .h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    h2,
    .h2,
    h2.lg,
    .h2.lg {
        font-size: 1.625rem;
        line-height: 1.5;
    }

    h3,
    .h3 {
        font-size: 1.375rem;
        line-height: 1.6;
    }

    h5,
    .h5 {
        font-size: 1.125rem;
    }

    h5,
    .h5 {
        font-size: 1.125rem;
    }

    h6,
    .h6 {
        font-size: 1rem;
    }

    p,
    .p,
    li,
    label {
        font-size: .9375rem;
    }
}


/* Date Range Picker */
.daterangepicker .drp-buttons .btn {
    border-radius: 1000em;
    min-width: 5rem;
    font-weight: normal;
    border: none;
    cursor: pointer;
    transition: opacity .25s;
}

/* Captcha */
.captcha-container img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 5rem;
}


/* Checkbox */
.checkbox-set>.checkmark {
    position: relative;
    cursor: pointer;
}

.checkbox-set.none input {
    opacity: 0;
}

.checkbox-set {
    position: relative;
    display: flex;
    align-items: center;
}

.checkbox-set.size-02 input:checked~.checkmark::before {
    width: .625rem;
    height: .625rem;
}

.checkbox-set .bg-color {
    position: absolute;
    top: -.4375rem;
    left: -1rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    z-index: 1;
    pointer-events: all;
    border: 1px solid transparent;
}

.checkbox-set input:checked~.checkmark::before {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    top: .0625rem;
    left: calc(50% - .5rem);
    border-radius: 50%;
    pointer-events: auto;
    z-index: 2;
}



/* Form - Comment */
.form-comment-01 {
    padding: 1rem;
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.08);
    ;
}


/* Form - Read Only */
form.read-only input {
    min-height: 2.5rem;
}

form.read-only textarea {
    line-height: 1.5;
}


/* Form Group */
.form-group {
    position: relative;
    margin: .5625rem 0 0 0;
}

.form-group .dropdown-icon {
    position: absolute;
    right: 0;
    pointer-events: none;
    width: 2.5rem;
    height: 100%;
    border-radius: 0 .375rem .375rem 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    background: transparent;
}

.form-group .file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.5rem;
    border: 1px solid transparent;
    padding: .4375rem .75rem;
    border-radius: .375rem;
    margin-bottom: .5rem;
}

.form-group .file .file-size {
    white-space: nowrap;
}

.form-group .file .text {
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    transition: color .25s;
    -webkit-line-clamp: 1;
}

.form-group.style-02 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-group.style-02>label {
    width: 8rem;
    padding-right: 1rem;
    white-space: nowrap;
}

.form-group.style-02>.form-input {
    width: calc(100% - 8rem);
}

.form-group.style-02.size-02>label {
    width: 10rem;
    padding-right: 1rem;
    white-space: nowrap;
}

.form-group.style-02.size-02>.form-input {
    width: calc(100% - 10rem);
}

.form-group.style-03 input.disabled {
    pointer-events: none;
}

@media screen and (max-width:575.98px) {
    .form-group.style-02 {
        flex-direction: column;
        align-items: start;
    }

    .form-group.style-02>.form-input {
        width: 100%;
    }

    .form-group.style-02.size-02>.form-input {
        width: 100%;
    }

    .form-group.style-02.size-02>label {
        text-align: left !important;
    }

    .form-group.style-02.size-02 {
        align-items: start;
    }
}


/* file-upload-container */
.file-upload-container {
    display: flex;
    height: 5.5rem;
    border-radius: .375rem;
    padding: .75rem;
    transition: background .25s;
    border: 1px solid transparent;
}

.file-upload-container .icon-container {
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-container .icon-container svg {
    display: block;
    width: auto;
    height: 3rem;
}

.file-upload-container .text-container {
    width: calc(100% - 9.5rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.file-upload-container .text-container .file-name {
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    transition: color .25s;
    -webkit-line-clamp: 1;
}

.file-upload-container .button-container {
    width: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-container.style-02 {
    height: 5.375rem;
}

.file-upload-container.style-02 .text-container .file-name {
    -webkit-line-clamp: 2;
}

.file-upload-container.style-02 .text-container {
    width: calc(100% - 5rem);
}

.file-upload-container.style-02:last-child {
    margin-bottom: 0 !important;
}


/* Floating-label */
.floating-label {
    position: relative;
}

.floating-label label {
    position: absolute;
    left: 1rem;
    top: .625rem;
    font-size: 1rem;
    pointer-events: none;
    transition: .2s ease;
}

#myChart {
    width: 600px;
    height: 400px;
    margin: 0 auto;
    border: 1px solid #aaa;
}

/* Inputs */
input[type=text],
input[type=email],
input[type=password],
input[type=date],
input[type=tel],
input[type=number],
input[type=phone],
input[type=submit],
input[type=file],
select,
textarea {
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: none !important;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 300;
    padding: .4375rem .75rem;
    margin: 0;
    outline: none !important;
    transition: border-color .25s, color .25s;
    font-family: "Noto Sans Thai", sans-serif;
    width: 100%;
    min-height: 2.775rem;
    border-radius: .375rem;
}


/* Hamburger */
.hamburger {
    cursor: pointer;
}

.hamburger>* {
    width: 1rem;
    height: .125rem;
    transform: translateX(.375rem);
    transition: all .45s;
}

.hamburger>*:nth-child(2) {
    margin: .25rem 0;
    width: 1.375rem;
    transform: none;
}

.hamburger.active>*:nth-child(1) {
    width: 1.375rem;
    -webkit-transform: rotate(-45deg)translate(-.4rem, .4rem);
    transform: rotate(-45deg)translate(-.4rem, .4rem);
}

.hamburger.active>*:nth-child(2) {
    opacity: 0;
    transform: translateX(2rem);
}

.hamburger.active>*:nth-child(3) {
    width: 1.375rem;
    -webkit-transform: rotate(45deg)translate(-.1rem, -.2rem);
    transform: rotate(45deg)translate(-.1rem, -.2rem);
}


/* Notification */
.notification-01 {
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: .375rem;
    min-height: 2.75rem;
    padding: .75rem;
}

.notification-01 .icon {
    margin-right: .5rem;
}


/* Profile Container */
.profile-container-02>.wrapper {
    display: flex;
    align-items: center;
}

.profile-container-02>.wrapper .img-container {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

.profile-container-02>.wrapper .img-container img {
    border-radius: 50%;
}

.profile-container-02>.wrapper .text-container {
    width: calc(100% - 3rem);
    padding-left: 1rem;
}


/* Special Box */
.ss-box {
    display: block;
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
}

.ss-box.size-02 {
    max-width: 55rem;
}

.ss-box.size-03 {
    max-width: 32rem;
}

.ss-box.size-04 {
    max-width: 49rem;
}

.ss-box.size-05 {
    max-width: 60rem;
}

.ss-box.size-06 {
    max-width: 30rem;
}

.ss-box.size-07 {
    max-width: 44rem;
}

.ss-box.padding-01 {
    padding: 4rem;
}

@media screen and (max-width:991.98px) {
    .ss-box.size-03 {
        max-width: 100%;
    }
}

@media screen and (max-width:767.98px) {
    .ss-box.padding-01 {
        padding: 3rem;
    }
}

@media screen and (max-width:575.98px) {
    .ss-box.padding-01 {
        padding: 2.5rem;
    }
}

@media screen and (max-width:490.98px) {
    .ss-box.padding-01 {
        padding: 2rem;
    }
}


/* Special Text Wrapper */
.ss-text-wrapper-02 {
    display: block;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
}

.ss-text-wrapper-03 {
    display: block;
    width: 100%;
    max-width: 36rem;
    margin: 0 auto 0 0;
}

@media screen and (max-width:1299.98px) {
    .ss-text-wrapper-02 {
        max-width: 30rem;
    }

    .ss-text-wrapper-03 {
        max-width: 32rem;
    }
}

@media screen and (max-width:1199.98px) {
    .ss-text-wrapper-02 {
        max-width: 25rem;
    }

    .ss-text-wrapper-03 {
        max-width: 27rem;
    }
}

@media screen and (max-width:991.98px) {
    .ss-text-wrapper-02 {
        max-width: 20rem;
    }

    .ss-text-wrapper-03 {
        max-width: 22rem;
    }
}

@media screen and (max-width:767.98px) {

    .ss-text-wrapper-02,
    .ss-text-wrapper-03 {
        max-width: 100%;
    }
}


/* Scroll Wrapper */
.scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.scroll-x-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 .5rem .875rem .5rem;
}

.scroll-y-wrapper {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 .875rem 0 0;
}


/* Special Card */
.ss-card {
    display: block;
    width: 100%;
}

.ss-card .title,
.ss-card .desc {
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    transition: color .25s;
}

.ss-card .photo-tag {
    display: flex;
    align-items: center;
    padding: .25rem .625rem;
    border-radius: .3rem;
    background: #000000;
    position: absolute;
    bottom: .5rem;
    left: .5rem;
}

.ss-card .calendar-tag {
    display: flex;
    align-items: center;
    padding: .375rem .875rem;
    border-radius: .3rem;
    background: #000000;
    position: absolute;
    bottom: .5rem;
    left: .5rem;
}

/* Special Card Hover Filter 01 */
.ss-card .hover-filter,
.ss-card .hover-filter-01,
.ss-card .hover-filter-02,
.ss-card .hover-filter-03 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    right: 0;
    opacity: 0;
    transition: opacity .3s;
}

.ss-card .hover-filter-01 .icon.ebook {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translate(-50%, -50%);
    transition: top .3s;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.ss-card .hover-filter-01 .icon.ebook svg {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 2.625rem;
}

.ss-card:hover .hover-filter-01 .icon.ebook {
    top: 50%
}

.ss-card:hover .hover-filter {
    opacity: 1;
}

.ss-card:hover .hover-filter-01 {
    opacity: .8;
}

.ss-card:hover .hover-filter-03 {
    opacity: 1;
}

.filter-03 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.filter-04 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ss-card .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ss-card .btn-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ss-card .btn-video em {
    font-size: 3.75rem;
}

.ss-card .btn-video.lg em {
    font-size: 4.25rem;
}


/* Special Card 01 */
.ss-card-01 {
    position: relative;
    height: 100%;
}

.ss-card-01 .ss-img {
    border-radius: 0 3.5rem 0 0;
    height: 100%;
}

.ss-card-01 .text-container {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem 3.5rem 2rem 2rem;
    display: flex;
    align-items: center;
}

.ss-card-01 .text-container .icon {
    margin-right: .5rem;
}

.ss-card-01 .text-container .icon img {
    display: block;
    width: auto;
    height: 4rem;
}


/* Special Card 02 */
.ss-card-02 {
    width: 12rem;
    height: 12rem;
    overflow: hidden;
    transition: border .3s;
}

.ss-card-02 .wrapper {
    border: 3px solid transparent;
    width: 12rem;
    height: 12rem;
}

.ss-card-02:hover .wrapper {
    overflow: hidden;
}

.ss-card-02 .text-container {
    padding: 2rem 1rem 1rem 1rem;
    transition: padding .3s;
}

.ss-card-02:hover .text-container {
    padding: 1rem 1rem 2rem 1rem;
}

.ss-card-02 .img-wrapper {
    position: relative;
    display: block;
    padding: 60% 0 0 0;
    width: 100%;
    transition: transform .3s;
    transition-delay: .0125s;
}

.ss-card-02:hover .img-wrapper {
    transform: translateY(-1.5rem);
}

.ss-card-02 .img-wrapper img {
    display: block;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%) scale(1.25);
    left: 50%;
    right: auto;
    width: auto;
    max-width: 100%;
    right: 0;
    height: auto;
    max-height: 100%;
}


/* Special Card 03 */
.ss-card-03 {
    position: relative;
    overflow: hidden;
}

.ss-card-03 .text-container {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.5rem 1.5rem;
}

@media screen and (max-width:575.98px) {

    .ss-card-03 .btn-play.lg,
    .ss-card-03 .btn-play.lg:after {
        width: 3.25rem;
        height: 3.25rem
    }
}

@media screen and (max-width:490.98px) {

    .ss-card-03 .btn-play.lg,
    .ss-card-03 .btn-play.lg:after {
        width: 3rem;
        height: 3rem
    }

    .ss-card-03 .btn-play svg {
        width: auto;
        height: 1.5rem
    }
}



/* Special Card 04 */
.ss-card-04 {
    position: relative;
}

.ss-card-04 .text-container .title {
    -webkit-line-clamp: 2;
    min-height: 2.5rem;
    font-weight: 400;
}

.ss-card-04:hover .text-container .title {
    text-decoration: underline;
}

.ss-card-04 .text-container .desc {
    -webkit-line-clamp: 2;
    min-height: 2.75rem;
}

.ss-card-04 .bureau {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: .5rem;
}

.ss-card-04 .bureau .title {
    -webkit-line-clamp: 1;
}

.ss-card-04.style-02:hover .text-container .title {
    text-decoration: none;
}


/* Special Card 05 */
.ss-card-05,
.ss-card-05 .ss-img {
    height: 100%;
}

.ss-card-05 {
    position: relative;
}

.ss-card-05 .text-container {
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    opacity: 0;
    padding: 1.5rem 1.5rem;
    transition: top 1s, opacity 1s;
}


/* Special Card 06 */
.ss-card-06 {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.ss-card-06::before {
    content: '';
    position: absolute;
    height: 30px;
    width: 30px;
    top: 0;
    left: 0;
    border-radius: 0 0 .5rem 0;
    transform: scale(1.5);
    transition: transform .5s ease-out;
    transform-origin: 50% 50%;
    border: 1px solid transparent;
}

.ss-card-06:hover::before {
    border: 1px solid transparent;
}

.ss-card-06:hover::before {
    transform: scale(28);
}

.ss-card-06 {
    padding: 2rem 2rem .75rem 2rem;
    border-radius: .75rem;
}

.ss-card-06 .text-container {
    position: relative;
    margin-bottom: 2rem;
}

.ss-card-06 .text-container .title {
    -webkit-line-clamp: 3;
    min-height: 4rem;
    transition: color .25s;
}

.ss-card-06 .ss-stats {
    position: relative;
}

.ss-card-06 .ss-stats .title {
    transition: color .25s
}

.ss-card-06 .card-footer {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-top: .75rem
}

.ss-card-06:hover .card-footer .title {
    transition: color .25s, border .25s;
}

.ss-card-06 .folder-icon {
    position: absolute;
    top: .4375rem;
    left: .4375rem;
}

.ss-card-06 .folder-icon svg {
    display: block;
    width: auto;
    height: 1.5rem;
}

.ss-card-06 .folder-icon svg path {
    transition: fill .25s;
}

.ss-card-06 .pattern {
    position: absolute;
    top: 0 !important;
    right: 0 !important;
}

.ss-card-06 .pattern svg {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 2.75rem;
}

.ss-card-06 .pattern svg path.c-white {
    transition: stroke .25s;
}

.ss-card-06.style-02:hover .btn-ebook .color-p,
.ss-card-06.style-02:hover .color-gray-02 {
    transition: color .25s;
}

.ss-card-06.style-02:hover .btn-ebook .icon svg path {
    transition: fill .25s;
}

.ss-card-06.style-02:hover .btn-ebook .bcolor-p {
    transition: border .25s;
}


/* Special Card 07 */
.ss-card-07 {
    position: relative;
}

.ss-card-07 .text-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Special Card 08 */
.ss-card-08 .text-container .title {
    -webkit-line-clamp: 2;
    min-height: 3rem;
}

.ss-card-08 .btn-play,
.ss-card-08 .btn-play:after {
    width: 2.875rem;
    height: 2.875rem;
}

.ss-card-08 .btn-play svg {
    display: block;
    width: auto;
    height: 2rem;
}

.ss-card-08 .ss-stats .title {
    min-height: unset;
    -webkit-line-clamp: unset;
}


/* Special Card 09 */
.ss-card-09 .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.ss-card-09 .img-container {
    width: 35%
}

.ss-card-09 .text-container {
    position: relative;
    width: 65%;
    padding-left: 1.5rem;
}

.ss-card-09 .text-container .btns {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.ss-card-09 .text-container>.title {
    -webkit-line-clamp: 3;
}

@media screen and (max-width:991.98px) {
    .ss-card-09 .img-container {
        width: 100%
    }

    .ss-card-09 .text-container {
        width: 100%;
        padding-left: 0;
    }

    .ss-card-09 .text-container>.title {
        -webkit-line-clamp: 2;
        min-height: 2.5rem;
    }

    .ss-card-09 .text-container .desc {
        -webkit-line-clamp: 2;
        min-height: 2.75rem;
    }

    .ss-card-09 .text-container .btns {
        position: relative;
        justify-content: center !important;
        margin-top: 1rem;
    }

    .ss-card-09 .text-container .btns .btn .title {
        min-height: 0;
    }

    .ss-card-09 .text-container .btns {
        bottom: unset;
        right: unset;
    }

}

@media screen and (max-width:575.98px) {

    .ss-card-09 .text-container>.title,
    .ss-card-09 .text-container .desc {
        min-height: unset;
    }

    .ss-card-09 .text-container .btns {
        margin-top: 2rem;
    }
}


/* Special Card 10 */
.ss-card-10 .text-container .title {
    -webkit-line-clamp: 2;
    min-height: 3rem;
}

.ss-card-10 .btn-play,
.ss-card-10 .btn-play:after {
    width: 2.875rem;
    height: 2.875rem;
}

.ss-card-10 .btn-play svg {
    display: block;
    width: auto;
    height: 2rem;
}

@media screen and (max-width:991.98px) {
    .ss-card-10 .text-container .title {
        -webkit-line-clamp: 2;
        min-height: 0
    }
}


/* Special Card 11 */
.ss-card-11 {
    position: relative;
}

.ss-card-11 .pattern-01 {
    position: absolute;
    left: -3rem;
    bottom: -3rem;
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 7rem;
    z-index: 1;
}

.ss-card-11 .pattern-02 {
    position: absolute;
    top: 2rem;
    right: -7rem;
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 9.5rem;
    z-index: 1;
}

@media screen and (max-width:991.98px) {
    .ss-card-11 .pattern-01 {
        height: 5rem;
        bottom: -1rem;
    }
}

@media screen and (max-width:575.98px) {
    .ss-card-11 .pattern-01 {
        height: 4rem;
        bottom: -1rem;
    }
}


/* Special Card 12 */
.ss-card-12 {
    position: relative;
}

.ss-card-12 .img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.ss-card-12 .img-wrapper>img {
    position: relative;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 25rem;
    z-index: 2;
    border: 3px solid transparent;
}

.ss-card-12 .text-container {
    transition: background .25s;
    padding: 1rem 1rem;
}

.ss-card-12 .text-container .title {
    transition: color .25s;
}

@media screen and (max-width:1299.98px) {
    .ss-card-12 .img-wrapper>img {
        height: 22rem;
        width: auto;
    }
}

@media screen and (max-width:1199.98px) {
    .ss-card-12 .img-wrapper>img {
        height: 20rem;
    }
}


/* Special Card 13 */
.ss-card-13 {
    position: relative;
}

.ss-card-13 .text-container {
    position: absolute;
    bottom: 0;
    padding: .25rem 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, bottom .25s;
}

.ss-card-13 .text-container .title {
    -webkit-line-clamp: 5;
    min-height: 3rem;
}

.ss-card-13 .btns {
    position: absolute;
    bottom: 1rem;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.ss-card-13:hover .text-container {
    opacity: 1;
    bottom: 5rem;
}

.ss-card-13:hover .btns {
    opacity: 1;
    pointer-events: auto;
}


/* Special Card 14 */
.ss-card-14 .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.ss-card-14 .img-wrapper {
    position: relative;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.ss-card-14 .img-wrapper>img {
    position: relative;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    z-index: 2;
    border: 3px solid transparent;
}

.ss-card-14 .text-container {
    position: relative;
    width: 75%;
    padding: 1.5rem 1.5rem;
}

.ss-card-14 .text-container .btns {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.ss-card-14 .text-container .title {
    -webkit-line-clamp: 3;
}

@media screen and (max-width:991.98px) {
    .ss-card-14 .img-wrapper {
        width: 100%
    }

    .ss-card-14 .text-container {
        width: 100%;
        padding: 1rem 0 0 0;
    }

    .ss-card-14 .text-container>.title {
        -webkit-line-clamp: 2;
        min-height: 2.5rem;
    }

    .ss-card-14 .text-container .desc {
        -webkit-line-clamp: 2;
        min-height: 2.75rem;
    }

    .ss-card-14 .text-container .btns {
        position: relative;
        justify-content: center !important;
        margin-top: 2rem;
    }

    .ss-card-14 .text-container .btns .btn .title {
        min-height: 0;
    }

    .ss-card-14 .text-container .btns .btn {
        bottom: unset;
        right: unset;
    }
}

@media screen and (max-width:767.98px) {
    .ss-card-14 .img-wrapper>img {
        height: 20rem;
    }
}

@media screen and (max-width:575.98px) {

    .ss-card-14 .text-container .title,
    .ss-card-09 .text-container .desc {
        min-height: unset;
    }

    .ss-card-14 .text-container .btns {
        margin-top: 2rem;
    }
}


/* Special Card 15 */
.ss-card-15 {
    position: relative;
}

.ss-card-15:not(.sub-card) {
    margin-top: 4rem;
}

.ss-card-15 .img-wrapper {
    position: relative;
    display: block;
    width: 100%;
    border-radius: .875rem .875rem .875rem .875rem;
    padding: 120% 0 0 0;
    transition: background .25s;
}

.ss-card-15.sub-card .img-wrapper {
    padding: 100% 0 0 0;
    border-radius: .875rem .875rem .875rem .875rem;
}

.ss-card-15 .img-wrapper .hero {
    position: absolute;
    display: block;
    left: 0;
    z-index: 2;
    bottom: 0;
    width: 100%;
    height: auto;
    border-radius: 0 0 .875rem .875rem;
}

.ss-card-15 em {
    font-size: .75rem;
}

.ss-card-15 .pattern {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 12rem;
    position: absolute;
    top: -1.25rem;
    left: -1.3125rem;
    z-index: 1;
}

.ss-card-15.sub-card .pattern {
    height: 10rem;
    left: -1rem;
}

@media screen and (max-width:991.98px) {
    .ss-card-15.sub-card .pattern {
        height: 8rem;
    }
}

@media screen and (max-width:575.98px) {
    .ss-card-15.sub-card+.grid {
        margin-bottom: 5rem !important;
    }
}



/* Special Card 16 */
.ss-card-16 .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.ss-card-16 .img-container {
    display: flex;
    width: 25%
}

.ss-card-16 .img-container .date-container {
    width: 45%;
    height: 100%;
}

.ss-card-16 .img-container .date-container>.date {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.ss-card-16 .img-container .date-container>.date.muti-date {
    height: 50%;
}

.ss-card-16 .img-container .ss-img {
    width: 55%;
}

.ss-card-16 .text-container {
    position: relative;
    width: 75%;
    padding: .5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ss-card-16 .text-container .stat {
    align-items: center;
}

.ss-card-16 .text-container .card-footer {
    width: 100%;
}

.ss-card-16 .text-container .card-footer .btns {
    width: auto;
}

.ss-card-16 .text-container .title {
    -webkit-line-clamp: 1;
}

.ss-card-16 .date.muti-date {
    display: flex;
    align-items: center;
    flex-direction: row !important;
}

.ss-card-16.style-02 {
    height: 5.375rem;
}

.ss-card-16.style-02 .wrapper {
    height: 100%;
}

.ss-card-16.style-02 .date-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
}

.ss-card-16.style-02 .date-container .date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .75rem;
}

.ss-card-16.style-02 .text-container .title {
    -webkit-line-clamp: 2;
    line-height: 1.25;
}

.ss-card-16.style-02 .text-container {
    width: calc(100% - 5rem);
    display: flex;
    align-items: center;
    flex-direction: unset;
}

.ss-card-16.style-02:last-child {
    margin-bottom: 0 !important;
}

@media screen and (max-width:991.98px) {
    .ss-card-16 .img-container {
        width: 100%
    }

    .ss-card-16 .text-container {
        width: 100%;
        padding: 0 .625rem;
    }

    .ss-card-16 .text-container .title:not(.stat .title) {
        -webkit-line-clamp: 2;
        min-height: 2.5rem;
    }

    .ss-card-16 .text-container .btn .title {
        min-height: 0 !important;
    }

}

@media screen and (max-width:575.98px) {
    .ss-card-16 .text-container .title {
        min-height: unset;
    }
}

@media screen and (max-width:390.98px) {
    .ss-card-16 .text-container .title:not(.stat .title) {
        min-height: 2rem;
    }
}

.ss-card-16.minisite {
    position: relative;
}

.ss-card-16.minisite .text-container .card-footer {
    flex-wrap: wrap;
}

.ss-card-16.minisite .wrapper {
    border-radius: .5rem;
    overflow: hidden;
}

.ss-card-16.minisite .date .icon {
    width: auto;
    height: 1rem;
}

.ss-card-16.minisite .pattern {
    position: absolute;
    top: 0;
    right: 1.75rem;
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 4.25rem;
}

@media screen and (max-width:1199.98px) {
    .ss-card-16.minisite .text-container .title {
        max-width: 30rem;
    }
}

@media screen and (max-width:991.98px) {
    .ss-card-16.minisite .pattern {
        display: none;
    }

    .ss-card-16.minisite .text-container .title {
        max-width: 100%;
    }
}


/* Special Card 17 */
.ss-card-17 {
    position: relative;
}

.ss-card-17 .title {
    -webkit-line-clamp: 2;
}

.ss-card-17 .desc {
    -webkit-line-clamp: 2;
}

.ss-card-17 .btn.btn-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}


/* Special Card 18 */
.ss-card-18 {
    position: relative;
    border: 1px solid transparent;
}

.ss-card-18 .text-container .title {
    -webkit-line-clamp: 2;
    min-height: 2.5rem;
    font-weight: 400;
}

.ss-card-18:hover .text-container .title {
    text-decoration: underline;
}

@media screen and (max-width:575.98px) {
    .ss-card-18 .text-container .title {
        min-height: 0;
    }
}


/* Special Card 19 */
.ss-card-19 {
    position: relative;
    overflow: hidden;
}

.ss-card-19 .ss-img {
    padding: 0 0 0 0
}

.ss-card-19 .text-container {
    position: relative;
    padding: 1.5rem;
    z-index: 1;
    border-radius: 12px;
}


/* Special Card 20 */
.ss-card-20 {
    position: relative;
    padding: 4.75rem 1.875rem 1.875rem 1.875rem;
    overflow: hidden;
    border: 1px solid transparent;
}

.ss-card-20 .title {
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 0 0 .75rem 0;
}

.ss-card-20 .pattern {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 3rem;
    position: absolute;
    top: 0;
    right: 0;
}


/* Special Card 21 */
.ss-card-21 {
    border: 1px solid transparent;
}

.ss-card-21 .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.ss-card-21 .wrapper>.img-container {
    width: 15%;
}

.ss-card-21 .wrapper .button-container {
    width: 10rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.ss-card-21 .wrapper>.text-container {
    width: calc(100% - (15% + 10rem));
    display: flex;
    align-items: center;
}

.ss-card-21 .text-container .title {
    -webkit-line-clamp: 2;
    font-weight: 400;
}

@media screen and (max-width:991.98px) {
    .ss-card-21 .wrapper>.img-container {
        width: 20%;
    }

    .ss-card-21 .wrapper .button-container {
        width: 7.5rem;
    }

    .ss-card-21 .wrapper>.text-container {
        width: calc(100% - (20% + 7.5rem));
    }
}

@media screen and (max-width:767.98px) {
    .ss-card-21 {
        border-radius: .75rem;
        overflow: hidden;
    }

    .ss-card-21 .wrapper>.img-container {
        width: 100%;
    }

    .ss-card-21 .wrapper .button-container {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: .3125rem 1rem;
    }

    .ss-card-21 .wrapper>.text-container {
        width: 100%;
        text-align: center;
    }

    .ss-card-21 .text-container .title {
        min-height: 2.5rem;
    }
}

@media screen and (max-width:575.98px) {
    .ss-card-21 .text-container .title {
        min-height: 0;
    }
}


/* Special Card 22 */
.ss-card-22 {
    position: relative;
    overflow: hidden;
}

.ss-card-22 .ss-img {
    padding: 0 0 0 0
}

.ss-card-22 .card-wrapper {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ss-card-22 .text-container {
    position: relative;
    z-index: 1;
    ;
}

.ss-card-22 .card-wrapper .btns {
    z-index: 3;
}

@media screen and (max-width:991.98px) {
    .ss-card-22 .card-wrapper {
        flex-direction: column;
    }
}


/* Special Card 23 */
.ss-card-23 {
    position: relative;
    height: 19rem;
    padding: 1.5rem;
    overflow: hidden;
    transition: background .25s;
}

.ss-card-23::after {
    position: absolute;
    top: 0;
    left: -95%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}

.ss-card-23:hover::after {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.ss-card-23:hover .title,
.ss-card-23:hover .desc {
    transition: color .25s;
}

.ss-card-23.style-02 .title {
    min-height: 2.5rem;
}

.ss-card-23.style-02 {
    height: 31.25rem;
}

@media screen and (max-width:991.98px) {
    .ss-card-23.style-02 {
        height: 32.25rem;
    }
}

@media screen and (max-width:767.98px) {
    .ss-card-23 {
        height: 17rem;
    }

    .ss-card-23.style-02 {
        height: auto;
    }
}

@media screen and (max-width:575.98px) {
    .ss-card-23 {
        height: auto;
    }

    .ss-card-23.style-02 {
        height: auto;
    }

    .ss-card-23.style-02 .title {
        min-height: 0;
    }
}


/* Special Card 24 */
.ss-card-24 {
    border: 1px solid transparent;
}

.ss-card-24:first-child {
    margin-top: 0 !important;
}

.ss-card-24 .wrapper {
    display: flex;
}

.ss-card-24 .wrapper .img-container {
    width: 7.25rem;
}

.ss-card-24 .wrapper .text-container {
    width: 75%;
    padding: .5rem .5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 7.25rem);
}

.ss-card-24 .wrapper .text-container .title {
    -webkit-line-clamp: 2;
    line-height: 1.25;
}

@media screen and (max-width:490.98px) {
    .ss-card-24 .wrapper {
        flex-direction: column;
    }

    .ss-card-24 .wrapper .img-container {
        width: 100%;
    }

    .ss-card-24 .wrapper .text-container {
        width: 100%;
    }

    .ss-card-25 .hero-pattern {
        position: relative !important;
    }
}


/* Special Card 25 */
.ss-card-25 {
    position: relative;
}

.ss-card-25 .ss-img {
    padding: 0 0 0 0;
}

.ss-card-25 .text-container {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ss-card-25 .hero-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: auto;
    height: 18rem;
}

@media screen and (max-width:991.98px) {
    .ss-card-25 .hero-pattern {
        bottom: -3.125rem;
        height: 16rem;
    }
}


/* Special Card 26 */
.ss-card-26 {
    padding: 1.5rem;
    border-left: 5px solid transparent;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}


/* Special Card 27 */
.ss-card-27 .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.ss-card-27 .img-container {
    width: 50%;
}

.ss-card-27 .text-container {
    width: 50%;
    padding: 1rem 2rem;
}

.ss-card-27 .text-container>.title {
    min-height: 3.625rem;
}

.ss-card-27 .text-container .desc {
    min-height: 6.4375rem;
    -webkit-line-clamp: 4;
}

.ss-card-27.style-02 .text-container {
    padding-right: 3rem;
}

@media screen and (max-width:1199.98px) {
    .ss-card-27 .text-container {
        padding: 1rem 2rem;
    }

    .ss-card-27 .text-container .desc {
        -webkit-line-clamp: 3;
        min-height: 4.8rem;
    }
}

@media screen and (max-width:991.98px) {
    .ss-card-27 .text-container {
        padding: .75rem 1.5rem;
    }

    .ss-card-27 .text-container>.title {
        -webkit-line-clamp: 2;
    }

    .ss-card-27 .text-container .desc {
        -webkit-line-clamp: 2;
        min-height: 3.2rem;
    }
}

@media screen and (max-width:767.98px) {
    .ss-card-27 .img-container {
        width: 100%;
    }

    .ss-card-27 .text-container {
        width: 100%;
        padding: 1rem .25rem;
    }

    .ss-card-27 .text-container>.title,
    .ss-card-27 .text-container .desc {
        min-height: unset;
    }

    .ss-card-27.style-02 .text-container {
        padding-right: 0;
    }
}


/* Special Card 28 */
.ss-card-28 .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.ss-card-28 .img-container {
    width: 35%;
    z-index: 2;
}

.ss-card-28 .text-container {
    position: relative;
    width: 65%;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: -.25rem;
}

.ss-card-28 .text-container .btns {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.ss-card-28 .text-container>.title,
.ss-card-28 .text-container>div>.title {
    -webkit-line-clamp: 3;
}

.ss-card-28 .text-container .desc {
    -webkit-line-clamp: 2;
}

@media screen and (max-width:991.98px) {
    .ss-card-28 .img-container {
        width: 100%;
        z-index: 2;
    }

    .ss-card-28 .text-container {
        width: 100%;
        padding: .75rem 1rem;
        margin-left: unset;
        margin-top: -.125rem;
        border-radius: 0 0 8px 8px;
    }

    .ss-card-28 .text-container>.title,
    .ss-card-28 .text-container>div>.title {
        -webkit-line-clamp: 2;
        min-height: 2.5rem;
    }

    .ss-card-28 .text-container .desc {
        -webkit-line-clamp: 2;
        min-height: 2.75rem;
    }

    .ss-card-28 .text-container .btns {
        position: relative;
        justify-content: center !important;
        margin-top: 1rem;
    }

    .ss-card-28 .text-container .btns .btn .title {
        min-height: 0;
    }

    .ss-card-28 .text-container .btns {
        bottom: unset;
        right: unset;
    }

}

@media screen and (max-width:575.98px) {

    .ss-card-28 .text-container>.title,
    .ss-card-28 .text-container .desc,
    .ss-card-28 .text-container>div>.title {
        min-height: unset;
    }

    .ss-card-28 .text-container .btns {
        margin-top: 2rem;
    }
}


/* Special Card 29 */
.ss-card-29 .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.ss-card-29 .img-container {
    width: 8rem
}

.ss-card-29 .text-container {
    position: relative;
    width: calc(100% - 8rem);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 0 !important;
}

.ss-card-29 .text-container .btns {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.ss-card-29 .btn-video em {
    font-size: 2.9375rem;
}

.ss-card-29 .text-container>.title {
    -webkit-line-clamp: 2;
    max-width: 37.5rem;
}

.ss-card-29 .text-container .flower-pattern {
    position: absolute;
    top: 0;
    right: 1rem;
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 4.25rem;
}

@media screen and (max-width:1299.98px) {
    .ss-card-29 .text-container>.title {
        max-width: 33.5rem;
    }

    .ss-card-29 .text-container .flower-pattern {
        height: 3.9375rem;
    }
}

@media screen and (max-width:1199.98px) {
    .ss-card-29 .text-container>.title {
        max-width: 27.5rem;
    }

    .ss-card-29 .text-container .flower-pattern {
        height: 3.5rem;
    }
}

@media screen and (max-width:991.98px) {
    .ss-card-29 .img-container {
        width: 100%
    }

    .ss-card-29 .text-container {
        width: 100%;
        padding: .75rem;
        border-top: 0 !important;
    }

    .ss-card-29 .text-container>.title {
        -webkit-line-clamp: 2;
        min-height: 2.5rem;
    }

    .ss-card-29 .text-container .desc {
        -webkit-line-clamp: 2;
        min-height: 2.75rem;
    }

    .ss-card-29 .text-container .ss-stats {
        margin-top: 1.25rem;
    }

    .ss-card-29 .text-container .flower-pattern {
        display: none;
    }

    .ss-card-29 .text-container .btns {
        bottom: .625rem;
    }

}

@media screen and (max-width:575.98px) {

    .ss-card-29 .text-container>.title,
    .ss-card-09 .text-container .desc {
        min-height: unset;
    }

    .ss-card-29 .text-container .btns {
        margin-top: 2rem;
    }
}


/* Special Card 30 */
.ss-card-30:not(:first-child) {
    margin-top: 1.5rem;
}

.ss-card-30 .wrapper {
    display: flex;
    flex-wrap: wrap;
}

.ss-card-30 .img-container {
    width: 30%;
}

.ss-card-30 .text-container {
    width: 70%;
    padding: 0 1rem;
}

.ss-card-30 .text-container .title {
    -webkit-line-clamp: 1;
}

.ss-card-30 .text-container .desc {
    -webkit-line-clamp: 3;
    margin-top: .5rem;
}

@media screen and (max-width:767.98px) {
    .ss-card-30 .img-container {
        width: 30%
    }

    .ss-card-30 .text-container {
        width: 70%;
    }

    .ss-card-30 .text-container .desc {
        -webkit-line-clamp: 2;
    }
}

@media screen and (max-width:575.98px) {
    .ss-card-30 .text-container .desc {
        -webkit-line-clamp: 1;
        margin-top: .3125rem;
    }
}

@media screen and (max-width:490.98px) {
    .ss-card-30 .img-container {
        width: 45%
    }

    .ss-card-30 .text-container {
        width: 55%;
    }

    .ss-card-30 .text-container .desc {
        -webkit-line-clamp: 1;
        margin-top: .0625rem;
    }
}

@media screen and (max-width:390.98px) {
    .ss-card-30 .img-container {
        width: 100%
    }

    .ss-card-30 .text-container {
        width: 100%;
        padding: .75rem .5rem;
    }

}



/* Special Header */
.ss-header {
    display: flex;
}

.ss-header img {
    display: block;
    height: 1.25rem;
    width: auto;
    margin: .1875rem .125rem 0 0;
}

.ss-header.aos-init.aos-animate img.roll-in {
    animation: roll-in 1.5s ease;
}


/* Special Separation 01 */
.ss-sep-01 {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: .05rem;
}

/* Special Separation 02 */
.ss-sep-02 {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    margin: .875rem 0;
}

.ss-sep-02>* {
    position: relative;
    padding: 0 1rem;
}

.ss-sep-02>*::before,
.ss-sep-02>*::after {
    content: '';
    position: absolute;
    top: calc(50% - .0625rem);
    width: 100vw;
    height: .10625rem;
}

.ss-sep-02>*::before {
    right: 100%;
}

.ss-sep-02>*::after {
    left: 100%;
}


/* Search Filter */
.search-filter-container .btn-collap {
    width: 1.625rem;
    height: 1.625rem;
    display: flex;
    cursor: pointer;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    margin-left: 1rem;
    transition: background .25s, transform .25s;
}

.search-filter-container .btn-collap.active {
    transform: rotate(180deg);
}

.search-filter-container .form-wrapper {
    border: 1px solid transparent;
    margin-top: 1rem;
    display: none;
    border-radius: var(--bradius);
}

.search-filter-container .btn-collap:hover svg path {
    transition: fill .25s;
}



/* Special List */
.ss-list,
.ss-list ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ss-list>li {
    position: relative;
    padding: .1875rem 0 .1875rem 0;
}

.ss-list ul>li {
    padding: .1875rem 0;
}

.ss-list>li::before {
    content: '';
    position: absolute;
    top: .625rem;
    left: 0;
    width: .375rem;
    height: .375rem;
    border-radius: 50%;
}

.ss-list ul>li::before {
    display: none;
}


/* ss-list-01 */
.ss-list.ss-list-01 li {
    display: flex;
    align-items: start;
    margin-bottom: .5rem;
    padding: .1875rem 0 .1875rem 1.25rem;
}

.ss-list.ss-list-01 li .icon {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-list.ss-list-01 li .icon.size-01 em {
    font-size: 1.25rem;
}

.ss-list.ss-list-01 li .text {
    width: calc(100% - 1rem);
    padding-left: .5rem;
    margin-top: -.3125rem;
    font-weight: 200;
    font-size: 1rem;
}

.ss-list.ss-list-01 li .text.size-02 {
    font-size: 1.125rem;
}

.ss-list.ss-list-02 li {
    position: relative;
    padding-left: 1rem;
}

.ss-list.ss-list-02 li::before {
    content: '';
    position: absolute;
    top: calc(100% - 1.25rem);
    left: 0;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
}

/* ss-list-03 */
.ss-list.ss-list-03 li {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.ss-list.ss-list-03 li .number {
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: .375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.ss-list.ss-list-03 li .number>* {
    transform: rotate(-45deg);
    font-weight: 400;
}

.ss-list.ss-list-03 li .text {
    width: calc(100% - 2rem);
    padding-left: 1rem;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.3125;
}

.ss-list.style-01 li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    padding: .5rem 0 .5rem 1rem;
}

.ss-list.style-01 li:not(.sub-cate) .title {
    font-weight: 400;
    margin-left: .3125rem;
}

.ss-list.style-01 li.sub-cate {
    padding: .3125rem 0 .3125rem 2.25rem;
}

.ss-list.style-01 li.sub-cate .title {
    font-weight: 300;
    margin-left: .3125rem;
}

.ss-list.style-01 li .icon {
    width: 1.375rem;
    height: 1.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss-list.style-01 li .icon svg,
.ss-list.style-01 li .icon img {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 1rem;
}

.ss-list.style-01 li.sub-cate .icon svg,
.ss-list.style-01 li.sub-cate .icon img {
    height: .75rem;
}


/* ss-list-04 */
.ss-list.ss-list-04 li {
    position: relative;
    padding-left: .875rem;
    margin: .25rem 0;
}

.ss-list.ss-list-04 li::before {
    content: '-';
    left: 0;
    top: 0;
}


/* Special Tag */
.ss-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.ss-tags>.tag {
    position: relative;
    display: block;
    font-size: .8125rem;
    font-weight: 300;
    padding: .5rem .875rem .5rem .875rem;
    transition: background .25s, color .25s;
    margin: .25rem .25rem;
    border-radius: 1000em;
}

.ss-tags.style-02>.tag,
.ss-tags.style-03>.tag {
    border-radius: var(--bradius-02);
    border: 1px solid transparent;
    padding: .625rem .875rem .625rem .875rem;
    cursor: pointer;
}

.ss-tags.style-03>.tag {
    overflow: hidden
}

.ss-tags.style-03>.tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    transition: all .25s;
    z-index: 2;
}

.ss-tags.style-03>.tag .title {
    position: relative;
    z-index: 3;
    transition: color .25s;
}

.ss-tags.style-03>.tag:hover::before {
    height: 100%;
}


/* Status */
.status-01 {
    display: inline-block;
    padding: .125rem .5rem;
    border-radius: .375rem;
    text-align: center;
}


/* Special Text */
.ss-text-wrapper-01 {
    display: block;
    width: 100%;
    max-width: 34rem;
    padding-left: 2.5rem;
}

@media screen and (max-width:991.98px) {
    .ss-text-wrapper-01.style-02 {
        padding-left: 0;
        max-width: 100%;
    }
}

/* Special Title 01 */
.ss-title-01 .wrapper {
    display: flex;
    align-items: center;
}

/* Special Title 02 */
.ss-title-02 {
    position: relative;
}

.ss-title-02 .wrapper {
    display: flex;
}

.ss-title-02 .wrapper .icon {
    position: relative;
    width: 2.25rem;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss-title-02 .wrapper .icon .icon-pattern {
    position: absolute;
    top: calc(100% - .3125rem);
    left: 0;
    right: 0;
}

.ss-title-02 .wrapper .icon .icon-pattern svg {
    display: block;
    width: 2.25rem;
    height: auto;
}

.ss-title-02 .wrapper .icon .icon-pattern svg path {
    stroke-width: 0;
}

.ss-title-02 .wrapper .title {
    padding: .25rem 1rem;
}

.ss-title-02.style-02 .wrapper .title {
    width: calc(100% - 2.25rem);
}


/* Special Title 03 */
.ss-title-03 {
    position: relative;
}

.ss-title-03 .wrapper {
    display: flex;
}

.ss-title-03 .date-container {
    width: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ss-title-03 .date-container.muti-date {
    align-items: unset;
    justify-content: unset;
    border-radius: .75rem;
    overflow: hidden;
    height: 6.8875rem;
}

.ss-title-03 .date-container.muti-date .date {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-title-03 .date-container.muti-date .date .icon {
    display: block;
    width: auto;
    height: 1.0625rem;
}

.ss-title-03 .text-container {
    width: calc(100% - 10rem);
    padding-left: 1rem;
}

@media screen and (max-width:991.98px) {
    .ss-title-03 .wrapper {
        flex-direction: column;
    }

    .ss-title-03 .text-container {
        width: 100%;
        padding-left: 0;
    }

    .ss-title-03 .date-container {
        width: 100%;
        padding: 1rem 1rem;
    }

    .ss-title-03 .date-container.muti-date {
        padding: 0;
    }
}


/* Special Title 04 */
.ss-title-04 {
    height: 3rem;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: .375rem;
    border: 1px solid transparent;
}

.ss-title-04.bradius {
    border-radius: 1000em !important;
}


/* Special Search 01 */
.ss-search-01 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    padding-bottom: .5rem;
}


/* Gallery */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 10px;
}

.image-item {
    position: relative;
    overflow: hidden;
}

.image-item.large {
    grid-column: span 2;
    grid-row: span 2;
}


/* Special Image */
.ss-img {
    display: block;
    position: relative;
    width: 100%;
    padding: 65% 0 0 0;
    overflow: hidden;
}

.ss-img.square {
    padding: 100% 0 0 0;
}

.ss-img.square-2 {
    padding: 70% 0 0 0;
}

.ss-img.square-3 {
    padding: 75% 0 0 0;
}

.ss-img.horizontal {
    padding: 55% 0 0 0;
}

.ss-img.horizontal-2 {
    padding: 50% 0 0 0;
}

.ss-img.horizontal-3 {
    padding: 60% 0 0 0;
}

.ss-img.vertical {
    padding: 150% 0 0 0;
}

.ss-img.vertical-2 {
    padding: 120% 0 0 0;
}

.ss-img>.img-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .3s;
}

.ss-img:hover>.img-bg,
.ss-card:hover .ss-img>.img-bg {
    transform: scale(1.1);
}

.ss-img.no-hover>.img-bg,
.ss-card .ss-img.no-hover>.img-bg {
    transform: none !important;
}

.ss-img .hover-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .25s, background .25s;
}

.ss-img:hover .hover-container,
.ss-card:hover .ss-img .hover-container {
    opacity: 1;
}

.ss-img .hover-container .icon {
    display: block;
    width: 4rem;
}

.ss-img .hover-container .icon.md {
    display: block;
    width: 3rem;
}

.ss-img .hover-container .icon>img {
    display: block;
    width: 100%;
    height: auto;
}

.ss-img .hover-container .icon>em {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
}


/* Special Stat */
.ss-stats {
    display: flex;
    flex-wrap: wrap;
    margin: .25rem 0 0 0;
}

.ss-stats .stat {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: .1875rem .625rem 0 0;
    font-size: .875rem;
    font-weight: 400;
    transition: color .25s;
}

.ss-stats .stat .title {
    font-size: .875rem;
}

.ss-stats .stat .icon {
    display: flex;
    align-items: center;
    font-size: .8125rem;
    justify-content: start;
    width: 1.25rem;
    height: 1.25rem;
}

.ss-stats .stat .icon img {
    display: block;
    width: .875rem;
    height: auto;
}


/* Socials */
.socials-01 {
    margin-top: 1.25rem;
}

.socials-01 .wrapper {
    display: flex;
    align-items: center;
}

.socials-01 .social {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 50%;
    margin-right: .4375rem;
    transition: background .25s, color .25s;
}



/* Table */
table.table {
    width: 100%;
    border-spacing: 0;
    border: 0;
    margin: 0;
}

table.table th,
table.table td {
    vertical-align: middle;
    border-color: transparent;
    border-left: 0 !important;
    border-right: 0 !important;
}

table.table td {
    padding: .5625rem .625rem .5625rem 0;
    font-size: .9375rem;
    font-weight: 300;
    border: 0;
    border-bottom: 1px solid transparent;
}

table.table td:first-child {
    padding: 0 0 .5625rem 0;
}

table.table tr:last-child>td {
    border-bottom: 0;
}

table.table td:last-child {
    padding: .5625rem 0 .5625rem .625rem;
    text-align: right;
}

table.table .sep {
    display: inline-block;
    width: 1px;
    height: .8125rem;
    margin: 0 .5rem;
    transform: translateY(.125rem);
}

table.table .ticon {
    display: block;
    width: 2rem;
    height: 2rem;
    line-height: 2.125rem;
    border-radius: 50%;
    text-align: center;
    font-size: 1rem;
    margin: .3125rem 0 0 0;
}

table.table .profile-card {
    display: flex;
    align-items: center;
}

table.table .profile-card>.profile-icon {
    position: relative;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
    padding: .0625rem;
    margin: 0 .5rem 0 0;
}

table.table .profile-card .img-bg {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

table.table .profile-card>.text-container {
    width: calc(100% - 3rem);
    text-align: left;
    font-size: .8125rem;
    font-weight: 400;
    white-space: nowrap;
}

table.table .profile-card .date {
    transition: color .25s;
}

table.table .title-wrap {
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

table.oit {
    border-collapse: collapse;
    border-spacing: 0;
    font-weight: 400;
    font-family: "Noto Sans Thai", sans-serif;
    min-width: 600px;
}

table.oit th {
    padding: 1rem;
}

table.oit th>* {
    font-weight: 500;
}

table.oit tr td:nth-child(2) {
    line-height: 1.5;
}

table.oit th:first-child {
    min-width: 5rem;
    border-radius: .5rem 0 0 0;
}

table.oit th:last-child {
    border-radius: 0 .5rem 0 0;
}

table.oit tr:nth-child(odd) {
    background: #f8f8f8;
}

table.oit tr:nth-child(even) {
    background: #ffffff;
}

table.oit tr td:first-child {
    text-align: center;
    padding: 0;
    text-align: center;
}

table.oit tr td {
    border: 1px solid #EAEAEA;
    padding: 1.5rem;
}

table.oit ul {
    padding: 0 0 0 1rem;
    margin: 0 0 .25rem 0;
}


/* Table Download */
.table.table .title,
.table.table .desc {
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

table.table.table-download {
    border: 0;
}

table.table.table-download tr {
    display: block;
    transition: background .25s;
}

table.table.table-download td {
    border: 0;
    position: relative;
}

table.table.table-download td:nth-child(1) {
    border-radius: .5rem 0 0 .5rem;
    overflow: hidden;
}

table.table.table-download td:nth-child(2) {
    width: 100%;
}

table.table.table-download td:last-child {
    padding: 1rem;
}

table.table.table-download .text-container {
    position: relative;
}

table.table.table-download .text-container .file-pattern {
    position: absolute;
    top: 0;
    right: 1rem;
}

table.table.table-download .text-container .file-pattern svg {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 3rem;
}

table.table.table-download .file-container .icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    border-radius: .75rem 0 .75rem 0;
    justify-content: center;
    align-items: center;
    transition: background .25s;
}

table.table.table-download .file-container img,
table.table.table-download .file-container svg {
    display: block;
    width: 1.5rem;
    height: auto;
    transition: all .25s;
}

table.table.table-download.style-01 tr {
    display: flex;
    min-height: 6rem;
    border: 1px solid transparent;
    justify-content: space-between;
    border-radius: var(--bradius);
    overflow: hidden;
    position: relative;
}

table.table.table-download.style-01.card-01 tr {
    border-radius: 1.5rem 1.5rem 1.5rem 0 !important;
    min-height: unset;
}

table.table.table-download.card-01 td:last-child {
    padding: .25rem;
}

table.table.table-download.card-01 .file-container .icon {
    height: 100%;
    width: 5rem;
}

table.table.table-download.card-01 .file-container svg {
    width: 2rem;
}


table.table.card-01 td:first-child {
    padding: 0 0 0 0;
}

table.table.table-download.style-01 tr>td.file-container {
    border-radius: 0;
    height: auto;
    width: 4rem;
    transition: background .25s;
}

table.table.table-download.card-01 tr>td.file-container {
    width: 5rem;
    border-radius: 1.5rem 0 1.5rem 0;
}

table.table.table-download.style-01 tr>td.text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 10.75rem);
}

table.table.table-download.card-01 tr>td.text-container {
    width: calc(100% - 11.25rem);
    padding-left: 1rem;
}

table.table.table-download.style-01 tr>td.text-container .title {
    -webkit-line-clamp: 2;
    transition: .25s;
}

table.table.table-download.style-01 tr>td.text-container .title.size-01 {
    max-width: 55rem;
}

table.table.table-download.style-01 tr>td.text-container .file-size {
    padding: 0 1rem;
}

table.table.table-download.style-01 tr>td.text-container .options,
table.table.table-download.style-01 tr>td.text-container .option,
table.table.table-download.style-01 tr>td.text-container .option .icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: .75rem;
    margin-bottom: .125rem;
}

table.table.table-download.style-01 tr>td.button-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 6.25rem;
}

table.table.table-download.style-01 tr>td.button-container:before {
    content: '';
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    width: .0625rem;
    height: calc(100% - 2.5rem);
    transform: translateY(-50%);
}

table.table.table-download.style-01 tr>td.button-container svg path {
    transition: fill .25s;
}

table.table.table-download.style-01 tr>td.button-container .title {
    transition: color .25s;
}

@media screen and (max-width:1299.98px) {
    table.table.table-download .text-container .file-pattern {
        right: -1rem;
        max-width: 26rem;
    }

    table.table.table-download.card-01 tr>td.text-container .title {
        max-width: 27rem;
    }

    table.table.table-download.card-01 .text-container .file-pattern {
        opacity: .5;
    }
}

@media screen and (max-width:542.98px) {
    table.table.table-download.style-01 tr>td.text-container {
        width: calc(100% - 6.75rem);
    }

    table.table.table-download.style-01 tr>td.button-container {
        min-width: 4rem;
    }
}

@media screen and (max-width:991.98px) {
    table.table.table-download.style-01 tr>td.text-container {
        width: calc(100% - 4rem);
    }

    table.table.table-download.style-01 tr>td.button-container {
        position: absolute;
        display: none;
    }

    table.table.table-download .file-container {
        align-items: start;
    }

    table.table.table-download .show-mobile {
        display: block !important;
    }

    table.table.table-download.style-01 tr>td.text-container .options {
        margin-top: .125rem !important;
    }

    table.table.table-download .file-pattern {
        opacity: .3;
    }

    table.table.table-download.style-01.responsive-01 tr>td.text-container {
        width: calc(100% - 11.0625rem);
    }

    table.table.table-download.style-01.responsive-01 tr>td.file-container {
        width: 5rem
    }

    table.table.table-download.style-01.responsive-01 tr>td.button-container {
        position: relative;
        display: flex;
    }

    table.table.table-download .file-container img,
    table.table.table-download .file-container .icon.doc svg {
        width: 1.25rem !important;
    }

    table.table.table-download.card-01 tr>td.text-container {
        width: calc(100% - 5rem);
    }
}

@media screen and (max-width:490.98px) {
    table.table.table-download.style-01 tr>td.text-container {
        width: calc(100% - 3rem);
    }

    table.table.table-download.style-01 tr>td.file-container {
        width: 4rem;
    }

    table.table.table-download .file-container img,
    table.table.table-download .file-container svg {
        width: 1.5rem;
    }

    table.table.table-download.style-01.responsive-01 tr>td.file-container {
        width: 4rem
    }

    table.table.table-download.style-01.responsive-01 tr>td.text-container {
        width: calc(100% - 10.25rem);
    }

    table.table.table-download.card-01 tr>td.file-container {
        width: 5rem;
    }

}

@media screen and (max-width:399.98px) {
    table.table.table-download.style-01 tr>td.text-container {
        width: calc(100% - 2.5rem);
    }

    table.table.table-download.style-01 tr>td.file-container {
        width: 4rem;
    }

    table.table.table-download .file-container img,
    table.table.table-download .file-container svg {
        width: 1.25rem;
    }


    table.table.table-download.card-01 tr>td.file-container {
        width: 5rem;
    }

    table.table.table-download.card-01 .file-container .icon {
        width: 100%;
    }
}


table.table.table-download.style-02 tr {
    display: flex;
    min-height: 6rem;
    border: 1px solid transparent;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

table.table.table-download.style-02 tr>td.file-container {
    border-radius: 0;
    height: auto;
    width: 4rem;
    transition: background .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

table.table.table-download.style-02 tr>td.file-container .pinned {
    position: absolute;
    top: -2.5rem;
    left: -2.4375rem;
    width: 4rem;
    height: 4rem;
    transform: rotate(135deg);
}

table.table.table-download.style-02 tr>td.file-container .pinned .pin-icon {
    display: flex;
    justify-content: center;
}

table.table.table-download.style-02 tr>td.file-container .pinned .pin-icon svg {
    display: block;
    width: auto;
    height: .875rem;
    transform: rotate(225deg) translateY(.0625rem) translateX(-.1625rem);
}

table.table.table-download.style-02 tr>td.file-container .icon {
    background: transparent !important;
}

table.table.table-download.style-02 tr>td.text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 10.75rem);
}

table.table.table-download.style-02 tr>td.text-container .title {
    -webkit-line-clamp: 2;
    transition: .25s;
}

table.table.table-download.style-02 tr>td.text-container .title.size-01 {
    max-width: 55rem;
}

table.table.table-download.style-02 tr>td.text-container .file-size {
    padding: 0 1rem;
}

table.table.table-download.style-02 tr>td.text-container .options,
table.table.table-download.style-02 tr>td.text-container .option,
table.table.table-download.style-02 tr>td.text-container .option .icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: .75rem;
    margin-bottom: .125rem;
}

table.table.table-download.style-02 .btn-collap {
    margin-left: unset;
}

table.table.table-download.style-02 tr>td.button-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 6.25rem;
}

table.table.table-download.sub.style-02 tr>td.button-container {
    background: transparent !important;
}

table.table.table-download.style-02 tr>td.button-container:before {
    content: '';
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    width: .0625rem;
    height: calc(100% - 2.5rem);
    transform: translateY(-50%);
}

table.table.table-download.sub.style-02 .file-container img,
table.table.table-download.sub.style-02 .file-container svg {
    width: 2rem;
}

table.table.table-download.style-02 .file-container img,
table.table.table-download.style-02 .file-container svg {
    width: 2.5rem;
}

table.table.table-download.style-02 tr>td.button-container svg path {
    transition: fill .25s;
}

table.table.table-download.style-02 tr>td.button-container .title {
    transition: color .25s;
}

table.table.table-download.style-03 .file-container svg {
    width: 2.25rem;
}

table.table.table-download.style-02.minisite td.text-container {
    padding-left: .5rem;
}

table.table.table-download.style-02.minisite tr {
    border-radius: .75rem;
}

table.table.table-download.style-02.minisite .file-container {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    border-radius: .75rem 0 .75rem .75rem;
}

table.table.table-download.style-02.minisite .file-container .icon {
    height: 100%;
    width: 100%;
    border-radius: .75rem 0 .75rem .75rem;
}

table.table.table-download.style-02.minisite tr {
    min-height: 0;
}

table.table.table-download.style-02.minisite td:last-child {
    padding: .25rem 1rem;
}


@media screen and (max-width:1299.98px) {
    table.table.table-download .text-container .file-pattern {
        right: -1rem;
        max-width: 26rem;
    }
}

@media screen and (max-width:991.98px) {
    table.table.table-download.style-02 tr>td.text-container {
        width: calc(100% - 4rem);
    }

    table.table.table-download.style-02 .show-mobile {
        display: none !important;
    }

    table.table.table-download .file-container {
        align-items: start;
    }

    table.table.table-download.style-02 tr>td.text-container .options {
        margin-top: .125rem !important;
    }

    table.table.table-download .file-pattern {
        opacity: .3;
    }

    table.table.table-download.style-02.responsive-01 tr>td.text-container {
        width: calc(100% - 11.0625rem);
    }

    table.table.table-download.style-02.responsive-01 tr>td.file-container {
        width: 5rem
    }

    table.table.table-download.style-02.responsive-01 tr>td.button-container {
        position: relative;
        display: flex;
    }
}

@media screen and (max-width:542.98px) {
    table.table.table-download.style-02 tr>td.text-container {
        width: calc(100% - 6.75rem);
    }

    table.table.table-download.style-02 tr>td.button-container {
        min-width: 4rem;
    }

    table.table.table-download.style-02.size-02 tr>td.button-container {
        min-width: 5.25rem;
    }

    table.table.table-download.style-02.size-02 tr>td.text-container .title {
        -webkit-line-clamp: 1;
    }

    table.table.table-download.style-02 tr>td.button-container {
        position: absolute;
        display: none;
    }

    table.table.table-download.style-02 .show-mobile {
        display: block !important;
    }
}

@media screen and (max-width:490.98px) {
    table.table.table-download.style-02 tr>td.text-container {
        width: calc(100% - 3rem);
    }

    table.table.table-download.style-02 tr>td.file-container {
        width: 4rem;
    }

    table.table.table-download .file-container img,
    table.table.table-download .file-container svg {
        width: 1.5rem;
    }

    table.table.table-download.style-02.responsive-01 tr>td.file-container {
        width: 4rem
    }

    table.table.table-download.style-02.responsive-01 tr>td.text-container {
        width: calc(100% - 10.25rem);
    }

}

@media screen and (max-width:399.98px) {
    table.table.table-download.style-02 tr>td.text-container {
        width: calc(100% - 2.5rem);
    }

    table.table.table-download.style-02 tr>td.file-container {
        width: 4rem;
    }

    table.table.table-download .file-container img,
    table.table.table-download .file-container svg {
        width: 1.25rem;
    }
}

@media screen and (max-width:375.98px) {
    table.table.table-download.style-02.minisite .option:nth-child(2).ml-5 {
        width: 100%;
    }
}



/* Table Sizes */
table.table.table-lg td,
table.table.table-lg th {
    padding: .6875rem .625rem;
}

table.table.table-lg td:first-child,
table.table.table-lg th:first-child {
    padding: .6875rem .625rem .6875rem 0;
}

table.table.table-lg td:last-child,
table.table.table-lg th:last-child {
    padding: .6875rem 0 .6875rem .625rem;
}

table.table.table-sm td,
table.table.table-sm th {
    padding: .4375rem .5625rem;
}

table.table.table-sm td:first-child,
table.table.table-sm th:first-child {
    padding: .4375rem .5625rem .4375rem 0;
}

table.table.table-sm td:last-child,
table.table.table-sm th:last-child {
    padding: .4375rem 0 .4375rem .5625rem;
}


/* Spacing */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: .25rem !important;
}

.p-2 {
    padding: .5rem !important;
}

.p-3 {
    padding: .75rem !important;
}

.p-4 {
    padding: 1rem !important;
}

.p-5 {
    padding: 1.25rem !important;
}

.p-6 {
    padding: 1.5rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: .25rem !important;
}

.pt-2 {
    padding-top: .5rem !important;
}

.pt-3 {
    padding-top: .75rem !important;
}

.pt-4 {
    padding-top: 1rem !important;
}

.pt-5 {
    padding-top: 1.25rem !important;
}

.pt-6 {
    padding-top: 1.5rem !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-1 {
    padding-right: .25rem !important;
}

.pr-2 {
    padding-right: .5rem !important;
}

.pr-3 {
    padding-right: .75rem !important;
}

.pr-4 {
    padding-right: 1rem !important;
}

.pr-5 {
    padding-right: 1.25rem !important;
}

.pr-6 {
    padding-right: 1.5rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: .25rem !important;
}

.pb-2 {
    padding-bottom: .5rem !important;
}

.pb-3 {
    padding-bottom: .75rem !important;
}

.pb-4 {
    padding-bottom: 1rem !important;
}

.pb-5 {
    padding-bottom: 1.25rem !important;
}

.pb-6 {
    padding-bottom: 1.5rem !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-1 {
    padding-left: .25rem !important;
}

.pl-2 {
    padding-left: .5rem !important;
}

.pl-3 {
    padding-left: .75rem !important;
}

.pl-4 {
    padding-left: 1rem !important;
}

.pl-5 {
    padding-left: 1.25rem !important;
}

.pl-6 {
    padding-left: 1.5rem !important;
}

@media screen and (max-width:1299.98px) {
    .lg-pr-3 {
        padding-right: .75rem !important;
    }

    .lg-pl-3 {
        padding-left: .75rem !important;
    }
}

@media screen and (max-width:991.98px) {
    .md-pr-3 {
        padding-right: .75rem !important;
    }

    .md-pl-3 {
        padding-left: .75rem !important;
    }

    .md-pl-0 {
        padding-left: 0 !important;
    }
}

.m-0 {
    margin: 0 !important;
}

.m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.m-1 {
    margin: .25rem !important;
}

.m-2 {
    margin: .5rem !important;
}

.m-3 {
    margin: .75rem !important;
}

.m-4 {
    margin: 1rem !important;
}

.m-5 {
    margin: 1.25rem !important;
}

.m-6 {
    margin: 1.5rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: .25rem !important;
}

.mt-2 {
    margin-top: .5rem !important;
}

.mt-3 {
    margin-top: .75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 1.25rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

.mt-adaptive {
    margin-top: 3rem !important;
}

.mr-auto {
    margin-right: auto !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: .25rem !important;
}

.mr-2 {
    margin-right: .5rem !important;
}

.mr-3 {
    margin-right: .75rem !important;
}

.mr-4 {
    margin-right: 1rem !important;
}

.mr-5 {
    margin-right: 1.25rem !important;
}

.mr-6 {
    margin-right: 1.5rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: .25rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: .75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: .25rem !important;
}

.ml-2 {
    margin-left: .5rem !important;
}

.ml-3 {
    margin-left: .75rem !important;
}

.ml-4 {
    margin-left: 1rem !important;
}

.ml-5 {
    margin-left: 1.25rem !important;
}

.ml-6 {
    margin-left: 1.5rem !important;
}

@media screen and (max-width:1299.98px) {
    .lg-mt-6 {
        margin-top: 1.5rem !important;
    }

    .lg-mb-6 {
        margin-bottom: 1.5rem !important;
    }
}

@media screen and (max-width:991.98px) {
    .md-mt-5 {
        margin-top: 1.5rem !important;
    }

    .md-mt-4 {
        margin-top: 1rem !important;
    }

    .md-mt-3 {
        margin-top: .75rem !important;
    }

    .md-mt-2 {
        margin-top: .5rem !important;
    }
}

@media screen and (max-width:767.98px) {
    .sm-mt-3 {
        margin-top: .75rem !important;
    }

    .sm-mt-4 {
        margin-top: 1rem !important;
    }

    .sm-mt-6 {
        margin-top: 1.5rem !important;
    }
}

@media screen and (max-width:575.98px) {
    .xs-mt-0 {
        margin-top: 0 !important;
    }

    .xs-mt-1 {
        margin-top: .25rem !important;
    }

    .xs-mt-3 {
        margin-top: .75rem !important;
    }

    .xs-mt-4 {
        margin-top: 1rem !important;
    }

    .xs-mb-7 {
        margin-bottom: 2rem !important;
    }
}

@media screen and (max-width:575.98px) {
    .xs-mt-0 {
        margin-top: 0 !important;
    }

    .xs-mt-1 {
        margin-top: .25rem !important;
    }

    .xs-mt-3 {
        margin-top: .75rem !important;
    }

    .xs-mt-4 {
        margin-top: 1rem !important;
    }

    .xs-mb-7 {
        margin-bottom: 2rem !important;
    }
}

@media screen and (max-width:392.98px) {
    .xxs-mr-0 {
        margin-right: 0 !important;
    }
}


/* Utility */
.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.lh-xl {
    line-height: 1.32;
}

.lh-lg {
    line-height: 1.22;
}

.lh-nm {
    line-height: 1.12;
}

.lh-sm {
    line-height: 1.1;
}

.lh-xs {
    line-height: .92;
}

.lh-2xs {
    line-height: .82;
}

.lh-3xs {
    line-height: .72;
}

.text-sm {
    font-size: 75%;
}

.text-xs {
    font-size: 50%;
}

.tt-unset {
    text-transform: unset !important;
}

.ls-0 {
    letter-spacing: 0 !important;
}

.ls-1 {
    letter-spacing: -.06 !important;
}

.ls-2 {
    letter-spacing: -.12 !important;
}

.op-100 {
    opacity: 1 !important;
}

.op-0 {
    opacity: 0 !important;
}

.op-10 {
    opacity: .1 !important;
}

.op-20 {
    opacity: .2 !important;
}

.op-30 {
    opacity: .3 !important;
}

.op-40 {
    opacity: .4 !important;
}

.op-50 {
    opacity: .5 !important;
}

.op-60 {
    opacity: .6 !important;
}

.op-70 {
    opacity: .7 !important;
}

.op-80 {
    opacity: .8 !important;
}

.op-90 {
    opacity: .9 !important;
}

.h-op-90 {
    transition: .25s;
}

.h-op-70:hover {
    opacity: .7 !important;
}

.h-op-90:hover {
    opacity: .9 !important;
}

.pos-absolute {
    position: absolute !important;
}

.pos-relative {
    position: relative !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-none {
    display: none !important;
}

@media screen and (max-width:575.98px) {
    .sm-d-none {
        display: none;
    }
}

.jc-start {
    justify-content: flex-start !important;
}

.jc-center {
    justify-content: center !important;
}

.jc-end {
    justify-content: flex-end !important;
}

.jc-space-between {
    justify-content: space-between !important;
}

.jc-space-evenly {
    justify-content: space-evenly !important;
}

.ai-center {
    align-items: center !important;
}

.ai-start {
    align-items: flex-start !important;
}

.ai-end {
    align-items: flex-end !important;
}

.ai-stretch {
    align-items: stretch !important;
}

.ai-unset {
    align-items: unset !important;
}

.fw-wrap {
    flex-wrap: wrap !important;
}

.fw-unset {
    flex-wrap: unset !important;
}

.flex-column {
    flex-direction: column;
}

@media screen and (max-width:991.98px) {
    .flex-row-reverse-md {
        flex-direction: row-reverse !important;
    }

    .flex-column-reverse-md {
        flex-direction: column-reverse !important;
    }

    .jc-start-md {
        justify-content: flex-start !important;
    }

    .jc-end-md {
        justify-content: flex-end !important;
    }
}

@media screen and (max-width:767.98px) {
    .flex-row-reverse-sm {
        flex-direction: row-reverse !important;
    }

    .jc-start-sm {
        justify-content: flex-start !important;
    }
}

@media screen and (max-width:575.98px) {
    .flex-col-reverse-xs {
        flex-direction: column-reverse !important;
    }

    .flex-col-xs {
        flex-direction: column !important;
    }

    .jc-start-xs {
        justify-content: flex-start !important;
    }

    .jc-center-xs {
        justify-content: center !important;
    }
}

.w-auto {
    width: auto !important;
    min-width: 0 !important
}

.w-full {
    width: 100% !important;
    max-width: 100% !important;
}

.h-auto {
    height: auto !important;
    min-height: 0 !important;
}

.h-full {
    height: 100% !important;
    max-height: 100% !important;
}

@media screen and (max-width:375.98px) {
    .xxxs-w-auto {
        width: auto !important;
        min-width: 0 !important
    }
}

.ws-nowrap {
    white-space: nowrap !important;
}

.ws-normal {
    white-space: normal !important;
}

.ws-prewrap {
    white-space: pre-wrap !important;
}

.ws-preline {
    white-space: pre-line !important;
}

.pe-none {
    pointer-events: none !important;
}

.pe-auto {
    pointer-events: auto !important;
}

.c-pointer {
    cursor: pointer !important;
}

.c-unset {
    cursor: unset !important;
}

.border-0 {
    border: 0 !important;
}

.border-1 {
    border: 1px solid transparent !important;
}

.border-2 {
    border: 2px solid transparent !important;
}

.border-3 {
    border: 3px solid transparent !important;
}

.border-4 {
    border: 4px solid transparent !important;
}

.border-top-0 {
    border-top: 0px solid transparent !important;
}

.border-top-1 {
    border-top: 1px solid transparent !important;
}

.border-top-2 {
    border-top: 2px solid transparent !important;
}

.border-top-3 {
    border-top: 3px solid transparent !important;
}

.border-top-4 {
    border-top: 4px solid transparent !important;
}

.border-bottom-0 {
    border-bottom: 0px solid transparent !important;
}

.border-bottom-1 {
    border-bottom: 1px solid transparent !important;
}

.border-bottom-2 {
    border-bottom: 2px solid transparent !important;
}

.border-bottom-3 {
    border-bottom: 3px solid transparent !important;
}

.border-bottom-4 {
    border-bottom: 4px solid transparent !important;
}

.border-left-0 {
    border-left: 0px solid transparent !important;
}

.border-left-1 {
    border-left: 1px solid transparent !important;
}

.border-left-2 {
    border-left: 2px solid transparent !important;
}

.border-left-3 {
    border-left: 3px solid transparent !important;
}

.border-left-4 {
    border-left: 4px solid transparent !important;
}

.border-right-0 {
    border-right: 0px solid transparent !important;
}

.border-right-1 {
    border-right: 1px solid transparent !important;
}

.border-right-2 {
    border-right: 2px solid transparent !important;
}

.border-right-3 {
    border-right: 3px solid transparent !important;
}

.border-right-4 {
    border-right: 4px solid transparent !important;
}

@media screen and (max-width:767.98px) {
    .sm-border-left-0 {
        border-left: 0px solid transparent !important;
    }
}

.bradius {
    border-radius: var(--bradius) !important;
}

.bradius-0 {
    border-radius: 0 !important;
}

.bradius-1 {
    border-radius: 4px !important;
}

.bradius-2 {
    border-radius: 8px !important;
}

.bradius-3 {
    border-radius: 12px !important;
}

.bradius-4 {
    border-radius: 16px !important;
}

.bradius-round {
    border-radius: 1000em !important;
}

.box-shadow {
    box-shadow: rgb(0 0 0 / 7%) 0px 10px 20px;
}

.ovf-unset {
    overflow: unset !important;
}

.ovf-hidden {
    overflow: hidden !important;
}

.ovf-visible {
    overflow: visible !important;
}

.clear-both {
    clear: both !important;
}

.va-top {
    vertical-align: top !important;
}

.va-baseline,
.va-bl {
    vertical-align: baseline !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

@media screen and (max-width:991.98px) {
    .md-text-center {
        text-align: center !important;
    }
}

@media screen and (max-width:767.98px) {
    .sm-text-center {
        text-align: center !important;
    }
}

@media screen and (max-width:575.98px) {
    .xs-text-center {
        text-align: center !important;
    }
}

.all-no-br>br {
    display: none;
}

.all-hide {
    display: none;
}

@media screen and (max-width:1199.98px) {
    .lg-text-center {
        text-align: center !important;
    }

    .lg-text-left {
        text-align: left !important;
    }

    .lg-text-right {
        text-align: right !important;
    }

    .lg-jc-center {
        justify-content: center !important;
    }

    .lg-no-br>br {
        display: none;
    }

    .lg-hide {
        display: none;
    }
}

@media screen and (max-width:991.98px) {
    .md-text-center {
        text-align: center !important;
    }

    .md-text-left {
        text-align: left !important;
    }

    .md-text-right {
        text-align: right !important;
    }

    .md-jc-center {
        justify-content: center !important;
    }

    .md-no-br>br {
        display: none;
    }

    .md-hide {
        display: none;
    }
}

@media screen and (max-width:767.98px) {
    .sm-text-center {
        text-align: center !important;
    }

    .sm-text-left {
        text-align: left !important;
    }

    .sm-text-right {
        text-align: right !important;
    }

    .sm-jc-center {
        justify-content: center !important;
    }

    .sm-jc-start {
        justify-content: start !important;
    }

    .sm-no-br>br {
        display: none;
    }

    .sm-hide {
        display: none;
    }

    .sm-ws-unset {
        white-space: unset !important;
    }
}

@media screen and (max-width:575.98px) {
    .xs-text-center {
        text-align: center !important;
    }

    .xs-text-left {
        text-align: left !important;
    }

    .xs-text-right {
        text-align: right !important;
    }

    .xs-jc-center {
        justify-content: center !important;
    }

    .xs-no-br>br {
        display: none;
    }

    .xs-hide {
        display: none;
    }

    .xs-hide {
        display: none;
    }

    .xs-ws-unset {
        white-space: unset !important;
    }
}


/* Input Form Check */
.form-check {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    margin: .25rem 0;
}

.form-check label {
    font-size: .9375rem;
    font-weight: 300;
    margin: .1875rem 0 0 0;
    cursor: pointer;
}

.form-check>input[type="checkbox"],
.form-check>input[type="radio"] {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.form-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: .25rem;
    height: 1.375rem;
    width: 1.375rem;
    cursor: pointer;
}

.form-check.style-02 {
    padding-left: 1.25rem !important;
}

.form-check.style-02 .checkmark {
    height: 1rem;
    width: 1rem;
    top: .3125rem;
    border: 1px solid transparent;
}

.form-check.style-02 .checkmark::after {
    left: .25rem;
    top: .0125rem;
}

.form-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-check .checkmark:after {
    left: .46875rem;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid transparent;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-check:not(.form-check-container-02) .checkmark:after {
    left: .25rem;
    top: 1px;
}

.form-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-check input:checked~.checkmark:after {
    display: block;
}

/* List Header */
.list-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .125rem 0;
    margin: 0;
}

.list-header>.block {
    display: block;
}

.list-header .option {
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    text-align: center;
    line-height: 2.3125rem;
    font-size: 1.0625rem;
    margin: 0;
    padding: 0;
    border-radius: 1000em;
    border: 1px solid transparent;
    transition: color .25s, border-color .25s, background .25s;
}

.list-header .option.search input,
.list-header .option.date input {
    min-height: 2.775rem;
    width: 100%;
    border-radius: .375rem;
}

.list-header .option.search,
.list-header .option.cate,
.list-header .option.order,
.list-header .option.date {
    width: 28.5%;
}

.list-header.style-02 .option.search,
.list-header.style-02 .option.cate,
.list-header.style-02 .option.order,
.list-header.style-02 .option.calendar,
.list-header.style-02 .option.date,
.list-header.style-02 .option.sub-cate {
    width: calc(100% / 4);
}

.list-header.style-03 .option.search {
    width: 43%;
}

.list-header .option.cate,
.list-header .option.order,
.list-header .option.date,
.list-header .option.calendar,
.list-header.style-02 .option.sub-cate {
    padding-left: 1rem;
}

.list-header .option.view {
    width: 14.5%;
    display: flex;
    justify-content: flex-end;
}

.list-header.minisite .option.view.view-grid {
    width: 13.25%;
}

.list-header .option .icon-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.875rem;
    height: 2.875rem;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 50%;
    font-size: 1.125rem;
    transition: all .25s;
    border-radius: .75rem 0 .75rem 0;
}

.list-header .option .icon-view.style-02 {
    border-radius: .375rem;
}

.list-header .option.view>.wrapper {
    position: relative;
    display: flex;
}

.list-header .option {
    position: relative;
    min-height: 2.875rem;
}

.list-header .option>.ui.icon.input input {
    min-height: 2.875rem !important;
    border: none;
}

.list-header .option>select,
.list-header .option>input {
    position: relative;
    border-radius: .375rem;
    appearance: none;
    cursor: pointer;
    height: 100%;
    border: 1px solid transparent;
    width: 100%;
}

.list-header .option .dropdown-icon {
    position: absolute;
    right: 0;
    pointer-events: none;
    width: 2.5rem;
    height: 100%;
    border-radius: 0 .375rem .375rem 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
}

.list-header .option.search .dropdown-icon {
    pointer-events: all;
}

.list-header .options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
}

.list-header .option {
    display: flex;
    align-items: center;
}

.list-header .option>.ui.icon.input input {
    background: #eeeeee !important;
    border: 1px solid transparent;
}

.list-header .option .icon-view img,
.list-header .option .icon-view svg {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 1.5rem;
}

.list-header .option .icon-view.disable {
    pointer-events: none;
}

@media screen and (max-width:1199.98px) {
    .list-header .option.search {
        width: 33.33%;
    }

    .list-header .option.cate,
    .list-header .option.order,
    .list-header .option.date,
    .list-header .option.calendar,
    .list-header .option.sub-cate,
    .list-header.style-03 .option.search {
        width: 33.33%;
    }

    .list-header .option.view {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .list-header.minisite .option.view.view-grid {
        width: 100%;
    }
}

@media screen and (max-width:991.98px) {

    .list-header .option.search,
    .list-header.style-03 .option.search {
        width: 100%;
    }

    .list-header.style-02 .option.search,
    .list-header .option.cate,
    .list-header .option.order,
    .list-header .option.date {
        width: 50%;
        margin-top: 1rem;
    }

    .list-header .option.rss {
        width: 100%;
        margin-top: 1rem !important;
        justify-content: center;
    }

    .list-header .option.cate {
        padding-left: 0;
    }

    .list-header.style-02 .option.cate {
        padding-left: 1rem;
    }

    .list-header.style-02 .option.cate,
    .list-header.style-02 .option.order,
    .list-header.style-02 .option.date,
    .list-header.style-02 .option.calendar,
    .list-header.style-02 .option.sub-cate {
        width: 50%;
        margin-top: 1rem;
    }

    .list-header.style-02.sub-cate-md-pl-0 .option.sub-cate,
    .list-header.style-02.order-md-pl-0 .option.order,
    .list-header.style-02.cate-md-pl-0 .option.cate {
        padding-left: 0;
    }

    .list-header.style-02 .option.rss {
        width: 100%;
        margin-top: 1rem !important;
        justify-content: center;
    }
}

@media screen and (max-width:575.98px) {
    .list-header .option {
        width: 100%;
    }

    .list-header .option.cate,
    .list-header .option.order,
    .list-header .option.date {
        width: 100%;
        padding-left: 0;
    }

    .list-header.style-02 .option.search,
    .list-header.style-02 .option.cate,
    .list-header.style-02 .option.order,
    .list-header.style-02 .option.date,
    .list-header.style-02 .option.calendar,
    .list-header.style-02 .option.sub-cate {
        width: 100%;
        padding-left: 0;
    }

    .list-header .option.view {
        justify-content: center;
    }

    .list-header .option>span {
        display: none;
    }
}


/* List Header Calendar */
.list-header-calendar {
    display: flex;
}

.list-header-calendar .options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    width: 70%;
}

.list-header-calendar .options #search {
    border: 1px solid transparent;
}

.list-header-calendar select.ui.dropdown {
    border: 1px solid transparent;
}

.list-header-calendar .option.search {
    width: 50%;
}

.list-header-calendar .option {
    display: flex;
    align-items: center;
}

.list-header-calendar .option.cate {
    width: 50%;
    padding-left: 1rem;
}

.list-header-calendar .option.cate.size-02 {
    width: 25%;
}

.list-header-calendar .option.order.size-02 {
    width: 25%;
    padding-left: 1rem;
}

.list-header-calendar .button-container {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.list-header-calendar .button-container>.button-wrapper {
    display: flex;
    align-items: center;
}

.list-header-calendar .button-container>.button-wrapper span {
    white-space: nowrap;
}

@media screen and (max-width:991.98px) {
    .list-header-calendar.size-02 {
        flex-wrap: wrap;
    }

    .list-header-calendar.size-02 .options {
        width: 100%;
    }

    .list-header-calendar.size-02 .button-container {
        width: 100%;
        margin-top: 1rem;
    }
}

@media screen and (max-width:575.98px) {
    .list-header-calendar.size-02 .option.cate.size-02 {
        width: 100%;
    }

    .list-header-calendar.size-02 .option.order.size-02 {
        width: 100%;
        padding-left: 0;
    }

    .list-header-calendar.size-02 .option.cate.size-02,
    .list-header-calendar .option.order.size-02 {
        width: 100%;
        margin-top: 1rem;
        padding-left: 0;
    }
}

.list-header-calendar .option {
    position: relative;
}

.list-header-calendar .option .dropdown-icon {
    position: absolute;
    right: 0;
    pointer-events: none;
    width: 2.5rem;
    height: 100%;
    border-radius: 0 .375rem .375rem 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    background: transparent;
}

.list-header-calendar .option>select,
.list-header-calendar .option>input {
    position: relative;
    border-radius: .375rem;
    appearance: none;
    cursor: pointer;
    height: 100%;
    border: 1px solid transparent;
    width: 100%;
}

.calendar-header .button-container {
    border: 1px solid transparent;
}

.calendar-header select {
    appearance: none;
    cursor: pointer;
}

.calendar-header select.year {
    min-width: 7rem;
}

.calendar-header select.day {
    min-width: 8rem;
}

fieldset {
    border: 0;
    padding: 0;
}

.form-check-container {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: .4375rem;
    border: 1px solid transparent;
    transition: background .5s;
}

.form-check-container .checkmark {
    position: absolute;
    top: 1.75rem;
    left: 1rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: .1875rem;
    border: 1px solid transparent;
}

.form-check-container-02 {
    position: relative;
    padding-left: 2rem;
}


/* Rating Container */
.rating-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-option {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: .375rem;
    cursor: pointer;
    text-align: center;
    font-size: .875rem;
    transition: background-color .2s, border-color .2s;
    min-width: 7rem;
}

.rating-option input[type="radio"] {
    display: none;
}

.rating-option label {
    display: block;
    cursor: pointer;
    position: relative;
    font-size: .875rem;
    padding-left: 1.625rem;
}

.rating-option label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-radius: 50%;
    background-color: #fff;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4z"/%3E%3C/svg%3E');
    background-color: #D8D8D8;
    border-color: #D8D8D8;
    transition: background-color 0.2s, border-color 0.2s;
}

.rating-option input[type="radio"]:checked+label::before {
    background-color: #0E3A81;
    border-color: #0E3A81;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
}

.rating-option.result {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 8.5rem;
}

@media screen and (max-width:767.98px) {
    .rating-container {
        justify-content: center;
    }
}


.list-header-calendar.style-02 {
    display: flex;
    flex-wrap: wrap;
}

.list-header-calendar.style-02 .options {
    width: 75%;
}

.list-header-calendar.style-02 .option.search,
.list-header-calendar.style-02 .option.cate,
.list-header-calendar.style-02 .option.sort {
    width: 33.33%;
}

.list-header-calendar.style-02 .option.cate,
.list-header-calendar.style-02 .option.sort {
    padding-left: 1rem;
}

.list-header-calendar.style-02 .button-container {
    width: 25%;
}

@media screen and (max-width:1199.98px) {

    .list-header-calendar.style-02 .options,
    .list-header-calendar.style-02 .button-container {
        width: 100%;
    }

    .list-header-calendar.style-02 .button-container {
        margin-top: 1.5rem;
        justify-content: flex-start;
    }
}

@media screen and (max-width:767.98px) {
    .list-header-calendar {
        flex-wrap: wrap;
    }

    .list-header-calendar .options,
    .list-header-calendar .button-container {
        width: 100%;
    }

    .list-header-calendar .button-container {
        margin-top: 1rem;
        justify-content: center;
    }

    .calendar-header .button-container .btns {
        justify-content: center;
    }

    .list-header-calendar.style-02 .option.search {
        width: 100%;
    }

    .list-header-calendar.style-02 .option.cate {
        padding-left: 0;
    }

    .list-header-calendar.style-02 .option.cate,
    .list-header-calendar.style-02 .option.sort {
        width: 50%;
        margin-top: 1rem;
    }
}

@media screen and (max-width:575.98px) {

    .list-header-calendar.style-02 .option.cate,
    .list-header-calendar.style-02 .option.sort {
        width: 100%;
    }

    .list-header-calendar.style-02 .option.cate>span,
    .list-header-calendar.style-02 .option.sort>span {
        display: none;
    }

    .list-header-calendar.style-02 .option.sort {
        padding-left: 0;
    }

    .list-header-calendar.style-02 .button-container {
        justify-content: center;
    }
}

@media screen and (max-width:543.98px) {

    .list-header-calendar .option.search,
    .list-header-calendar .option.cate {
        width: 100%;
        margin-top: 1rem;
        padding-left: 0;
    }
}

@media screen and (max-width:375.98px) {
    .calendar-header .text-wrapper {
        flex-direction: column;
    }

    .calendar-header .wrapper {
        margin-left: 0 !important;
    }
}


.list-footer {
    margin: -.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 300;
    white-space: nowrap;
}

.list-footer .option {
    display: flex;
    align-items: center;
    margin: .5rem 0;
}

@media screen and (max-width:991.98px) {
    .list-footer {
        display: block;
    }

    .list-footer .option {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width:435.98px) {
    .list-footer .option {
        flex-direction: column;
    }
}



/* Main Container - Member Pages */
.main-container {
    position: relative;
    top: 0;
    left: 5rem;
    width: calc(100% - 5rem);
    transition: all .5s ease;
    z-index: 99;
}

.main-container .main-header {
    position: relative;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    padding: .5rem 3rem .5rem 3.5rem;
    justify-content: flex-end;
}

.main-container .main-header>.main-header-menu {
    display: flex;
    align-items: center;
}

.main-container .main-header>.main-header-menu .icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container .main-header>.main-header-menu .icon>em {
    margin: .0625rem .125rem 0 .125rem;
    transition: margin .25s;
}

.main-container .main-header>.main-header-menu:hover .icon>em {
    margin: .0625rem 0 0 .25rem;
}

.main-container .main-header>.main-header-menu:hover .title {
    transition: color .25s;
}

.main-container .main-header>.main-header-menu img,
.main-container .main-header>.main-header-menu svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 1rem;
    transition: all .25s;
}

.main-container .main-header>.main-header-menu img.active {
    opacity: 0;
}

.main-container .main-header>.main-header-menu:hover img.active {
    opacity: 1;
}

.main-container .main-header #openBtn {
    opacity: 0;
}

.main-container .main-content .tab-content>.wrapper {
    padding: 1.5rem;
}

.main-container .main-content>.wrapper .ss-box.style-02 {
    border: 1px solid transparent;
}

.main-container .main-content>.wrapper .ss-box.all-bradius {
    border-radius: .375rem .375rem .375rem .375rem;
}

.main-container .main-content .profile-edit>.img-container {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
}

.main-container .main-content .profile-edit {
    position: relative;
}

.main-container .main-content .profile-edit>.photo-upload {
    position: absolute;
    bottom: -.25rem;
    left: auto;
    right: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .6125rem;
    cursor: pointer;
}

.main-container .main-content .profile-edit>input[type="file"] {
    position: absolute;
    bottom: -.25rem;
    left: auto;
    right: 0;
    opacity: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.main-container .ss-box>.ss-box-content {
    border: 1px solid transparent;
}

.main-container .ss-box>.ss-box-content {
    min-height: 32rem;
}

.main-container .ss-box>.ss-box-content.size-02 {
    min-height: 31rem;
}

.main-container .ss-box>.ss-box-content.size-unset {
    min-height: 0;
}

.block-content-01 .block-header {
    padding: .625rem;
    border-radius: .5rem .5rem 0 0;
    display: flex;
    justify-content: space-between;
}

.block-content-01 .block-body {
    padding: .5rem .5rem .5rem .5rem;
    border-radius: 0 0 .5rem .5rem;
    border: 1px solid transparent;
    border-top: 0;
}

.block-content-01 .block-header .more-icon {
    cursor: pointer;
    transition: opacity .25s
}

.block-content-01 .block-header .more-icon:hover {
    opacity: .75;
}


/* Map Container */
.map-container {
    display: block;
    position: relative;
    height: 100%;
    height: 20rem;
}

.map-container.adaptive {
    height: auto;
}

@media screen and (max-width:767.98px) {
    .map-container {
        min-height: 18rem;
    }
}

@media screen and (max-width:575.98px) {
    .map-container {
        min-height: 15rem;
    }
}


/* Password Level */
.password-level {
    display: block;
    width: 100%;
}

.password-level>.levels {
    width: calc(100% - 12rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .4375rem 0 .3125rem 0;
}

.password-level>.levels>* {
    display: block;
    width: calc((100% - 1.25rem) / 3);
    height: .3125rem;
    transition: background .25s;
}

.password-level>.levels.bradius>* {
    border-radius: .3rem;
}

.password-level>p>span {
    transition: color .25s;
}


/* Password Criteria */
.password-criteria {
    list-style-type: none;
    margin: .625rem 0 0 .125rem;
    padding: 0;
}

.password-criteria .criteria-item {
    position: relative;
    padding-left: 1.5625rem;
    font-size: .875rem;
}

.password-criteria .criteria-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.125rem;
}

.password-criteria.style-02 .criteria-item.valid::before {
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
}

.password-criteria.style-02 .criteria-item::before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    font-size: .75rem;
}

.password-criteria.style-02 .criteria-item {
    padding-left: 1.25rem;
}

.password-criteria .criteria-item.valid::before {
    content: "✔";
}

.password-criteria.minisite .criteria-item {
    padding-left: 1.375rem;
}


/* Popup Container */
.popup-container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    border: 1px solid transparent;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, .6);
    transition: opacity .45s;
}


/* Popup Container */
.popup-container.active {
    opacity: 1;
    pointer-events: all;
}

.popup-container .box-body {
    position: relative;
    width: 100%;
    border-radius: .375rem;
}

.popup-container .box-body .icon {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: 5.5rem;
    margin: 0 auto;
}

.popup-container .box-body .icon.size-02 {
    height: 16rem;
}

.popup-container .box-body {
    background: #ffffff;
}

.popup-container .box-body {
    width: 100%;
    padding: 1.75rem;
    max-height: calc(100vh - 7rem);
    overflow-x: hidden;
    overflow-y: auto;
}

.popup-container .popup-box {
    display: block;
    position: relative;
    width: 25.3125rem;
    padding: 0;
    margin: 0 auto;
    max-width: 470px;
    border-radius: .3125rem;
}

.popup-container.size-02 .popup-box {
    width: 100%;
    max-width: 600px;
}

.popup-container .popup-box.size-02 {
    width: 42rem;
}

.popup-container>.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 1rem;
}

.popup-container>.wrapper {
    top: -50rem;
    transition: all .75s;
}

.popup-container.active>.wrapper {
    top: 0;
}

.popup-container .box-body .close-popup {
    position: absolute;
    top: .875rem;
    right: .875rem;
}

.popup-container .popup-box .rating {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.popup-container .popup-box .rating>.rating-item {
    display: flex;
    align-items: center;
}

.popup-container .popup-box .rating .rating-desc {
    display: flex;
    align-items: center;
    margin: .25rem 0;
}

.popup-container .popup-box .rating .rating-item {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    margin: .25rem .125rem;
    font-weight: 400;
    justify-content: center;
    border-radius: 50%;
    transition: background .25s;
    cursor: pointer;
}

.popup-container .popup-box .rating .rating-desc .icon {
    display: block;
    width: auto;
    height: 2rem;
    max-width: 100%;
    max-height: 100%;
}

.popup-container .popup-box .rating .title {
    font-size: .625rem;
    font-weight: 400;
}

.popup-container .popup-box .code-inputs {
    display: flex;
    justify-content: center;
    width: 25rem;
    gap: .625rem;
    margin: 1rem auto 0;
}

.popup-container .popup-box .code-input {
    width: 2.5rem;
    height: 3.125rem;
    text-align: center;
    font-size: 1.125rem;
    border: 1px solid transparent;
    border-radius: .3125rem;
    outline: none;
}

.popup-container.report-file>.wrapper {
    position: relative
}

.popup-container.report-file.active>.wrapper {
    top: unset;
}

.popup-container.report-file .pattern-01 {
    position: absolute;
    top: 3rem;
    left: 0;
    display: block;
    pointer-events: none;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 13rem;
    opacity: .2;
}

.popup-container.report-file .pattern-02 {
    position: absolute;
    bottom: 2rem;
    right: 0;
    display: block;
    pointer-events: none;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 15rem;
}


/* Embed code */
.popup-embed {
    display: none;
    position: absolute;
    z-index: 999;
    width: 300px;
    border: 1px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem;
}

.popup-embed .popup-inner {
    position: relative;
}

.popup-embed .popup-close {
    position: absolute;
    right: -.5rem;
    top: -.75rem;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.popup-embed .embed-code {
    width: 100%;
    min-height: 60px;
    resize: none;
    margin-bottom: .5rem;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: .5rem;
    font-family: monospace;
}


/* Youtube Embed */
.youtube-embed #code-box {
    padding: 1.5rem;
    width: calc(100% - 8rem);
    font-size: .875rem;
    font-weight: 400;
}

@media screen and (max-width:991.98px) {
    .youtube-embed #code-box {
        width: 100%;
    }
}