@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap");
html,
body {
    height: 100%;
}

body {
    font-family: "SF UI Display";
    font-weight: var(--fw-normal);
    font-size: var(--typo-default);
    color: var(--color-black);
    background: url("../img/background/main.svg") center top;
    background-size: cover;
    background-attachment: fixed;
    background-color: #e1ebff;
    line-height: 1.4;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: antialiased;
}

.container {
    max-width: 1210px;
}

.gutters-10 {
    margin: 0 -5px;
}

.gutters-10>div {
    padding: 0 5px;
}

.gutters-15 {
    margin: 0 -7.5px;
}

.gutters-15>div {
    padding: 0 7.5px;
}

.gutters-20 {
    margin: 0 -10px;
}

.gutters-20>div {
    padding: 0 10px;
}

a:focus {
    outline: none;
}

a.link:hover {
    text-decoration: none;
}

input,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.item-list {
    margin: 0;
    padding: 0;
}

.item-list>li {
    list-style: none;
    float: left;
}

.item-list.fluid>li {
    width: 100%;
}

.item-list:before,
.item-list:after {
    content: " ";
    display: table;
}

.item-list:after {
    clear: both;
}

figure.cover {
    position: relative;
    overflow: hidden;
    margin: 0;
}

figure.cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

figure.contain {
    position: relative;
    overflow: hidden;
    margin: 0;
}

figure.contain img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.text-limit,
.bookmark-wrapper .title {
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.4em;
    max-height: calc(1.4em * 1);
    -webkit-line-clamp: 1;
}

.text-limit.-x2,
.bookmark-wrapper .-x2.title {
    max-height: calc(1.4em * 2);
    -webkit-line-clamp: 2;
}

.h-title {
    margin: 0;
    line-height: 1.5em;
}

.title {
    margin: 0;
    line-height: 1.5em;
}

.desc {
    margin: 0;
    line-height: 1.5em;
}

.subtitle {
    margin: 0;
    line-height: 1.5em;
}

.hidden {
    display: none;
    visibility: hidden;
}

.dropdown-item {
    padding: 0.5rem 1rem;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #c3d0ea;
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

@font-face {
    font-family: 'SF UI Display';
    font-style: normal;
    font-weight: normal;
    src: local("SF UI Display"), url("../font/sf-ui-display-medium-58646be638f96.woff") format("woff");
}

@font-face {
    font-family: 'SF UI Display';
    font-style: normal;
    font-weight: 500;
    src: local("SF UI Display"), url("../font/sf-ui-display-semibold-58646eddcae92.woff") format("woff");
}

@font-face {
    font-family: 'SF UI Display';
    font-style: normal;
    font-weight: bold;
    src: local("SF UI Display"), url("../font/sf-ui-display-bold-58646a511e3d9.woff") format("woff");
}

:root {
    --color-primary: #3963DA;
    --color-secondary: #6c757d;
    --color-success: #8CC641;
    --color-info: #0A529D;
    --color-warning: #FFC306;
    --color-danger: #EE3A48;
    --color-light: #f8f9fa;
    --color-dark: #212529;
    --color-border: #cccccc;
    --color-light-primary: #E1EBFF;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray: #91949B;
    --color-gray-100: #8A95AC;
    --rounded-0: 0;
    --rounded-xs: 6px;
    --rounded: 12px;
    --rounded-circle: 50%;
    --shadow-none: none;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.16);
    --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    --fw-normal: normal;
    --fw-medium: 500;
    --fw-bold: bold;
    --typo-xs: 12px;
    --typo-sm: 14px;
    --typo-default: 16px;
    --typo-md: 18px;
    --typo-lg: 26px;
    --typo-xl: 30px;
}

.typo-xs {
    font-size: var(--typo-xs);
}

.typo-sm {
    font-size: var(--typo-sm);
}

.typo-default {
    font-size: var(--typo-default);
}

.typo-md {
    font-size: var(--typo-md);
}

.typo-lg {
    font-size: var(--typo-lg);
}

.typo-xl {
    font-size: var(--typo-xl);
}

.fw-normal {
    font-weight: var(--fw-normal);
}

.fw-medium {
    font-weight: var(--fw-medium);
}

.fw-bold {
    font-weight: var(--fw-bold);
}

.shadow-none {
    -webkit-box-shadow: var(--shadow-none) !important;
    box-shadow: var(--shadow-none) !important;
}

.shadow-xs {
    -webkit-box-shadow: var(--shadow-xs) !important;
    box-shadow: var(--shadow-xs) !important;
}

.shadow {
    -webkit-box-shadow: var(--shadow) !important;
    box-shadow: var(--shadow) !important;
}

.rounded-0 {
    border-radius: var(--rounded-0) !important;
}

.rounded-xs {
    border-radius: var(--rounded-xs) !important;
}

.rounded {
    border-radius: var(--rounded) !important;
}

.rounded-circle {
    border-radius: var(--rounded-circle) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-success {
    color: var(--color-success) !important;
}

.text-info {
    color: var(--color-info) !important;
}

.text-warning {
    color: var(--color-warning) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

.text-light {
    color: var(--color-light) !important;
}

.text-dark {
    color: var(--color-dark) !important;
}

.text-black {
    color: var(--color-black) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-gray {
    color: var(--color-gray) !important;
}

.text-gray-100 {
    color: var(--color-gray-100) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-success {
    background-color: var(--color-success) !important;
}

.bg-info {
    background-color: var(--color-info) !important;
}

.bg-warning {
    background-color: var(--color-warning) !important;
}

.bg-danger {
    background-color: var(--color-danger) !important;
}

.bg-light {
    background-color: var(--color-light) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

.bg-black {
    background-color: var(--color-black) !important;
}

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-gray {
    background-color: var(--color-gray) !important;
}

.bg-light-primary {
    background-color: var(--color-light-primary) !important;
}

.btn {
    background: none;
    position: relative;
    padding: 0 30px;
    min-width: 120px;
    height: 60px;
    line-height: 58px;
    border: 1px solid transparent;
    font-size: var(--typo-md);
    font-weight: var(--fw-bold);
    border-radius: var(--rounded);
}

.btn.fluid {
    min-width: inherit;
    width: 100%;
}

.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.btn-xs {
    height: 44px;
    line-height: 42px;
}

.btn.btn-sm {
    height: 50px;
    line-height: 48px;
}

.btn span {
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus,
.show>.btn.dropdown-toggle:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-primary,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: transparent;
}

.btn-primary:hover,
.btn-primary:active:hover,
.btn-primary.active:hover,
.btn-primary:active:focus,
.btn-primary.actitve:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.btn-primary:focus:hover,
.btn-primary.focus:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: transparent;
}

.btn-primary.disabled,
.btn-primary.disabled:hover,
.btn-primary:disabled,
.btn-primary:disabled:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: transparent;
    opacity: 0.5;
}

.btn-border,
.btn-border:focus,
.btn-border.focus,
.btn-border:not(:disabled):not(.disabled).active,
.btn-border:not(:disabled):not(.disabled):active,
.show>.btn-border.dropdown-toggle {
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid #c3d0ea;
}

.btn-border:hover,
.btn-border:active:hover,
.btn-border.active:hover,
.btn-border:active:focus,
.btn-border.actitve:focus,
.btn-border:active.focus,
.btn-border.active.focus,
.btn-border:focus:hover,
.btn-border.focus:hover {
    color: var(--color-dark);
    background-color: #c3d0ea;
    border-color: transparent;
}

.btn-border.disabled,
.btn-border.disabled:hover,
.btn-border:disabled,
.btn-border:disabled:hover {
    color: #c3d0ea;
    background-color: var(--color-white);
    border: 1px solid #c3d0ea;
    opacity: 0.5;
}

.btn-success,
.btn-success:focus,
.btn-success.focus,
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    color: var(--color-white);
    background-color: var(--color-success);
    border-color: transparent;
}

.btn-success:hover,
.btn-success:active:hover,
.btn-success.active:hover,
.btn-success:active:focus,
.btn-success.actitve:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.btn-success:focus:hover,
.btn-success.focus:hover {
    color: var(--color-white);
    background-color: #66B500;
    border-color: transparent;
}

.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success:disabled,
.btn-success:disabled:hover {
    color: var(--color-white);
    background-color: var(--color-gray-100);
    border-color: transparent;
    opacity: 0.5;
}

.btn-secondary,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: var(--color-black);
    background-color: #ebeff7;
    border-color: transparent;
}

.btn-secondary:hover,
.btn-secondary:active:hover,
.btn-secondary.active:hover,
.btn-secondary:active:focus,
.btn-secondary.actitve:focus,
.btn-secondary:active.focus,
.btn-secondary.active.focus,
.btn-secondary:focus:hover,
.btn-secondary.focus:hover {
    color: var(--color-black);
    background-color: #c3d0ea;
    border-color: transparent;
}

.btn-secondary.disabled,
.btn-secondary.disabled:hover,
.btn-secondary:disabled,
.btn-secondary:disabled:hover {
    color: var(--color-black);
    background-color: #ebeff7;
    border-color: transparent;
    opacity: 0.5;
}

.editor-content {
    font-size: var(--typo-sm);
    line-height: 1.5em;
}

.editor-content p {
    margin-bottom: 0.7em;
}

.editor-content p:last-child {
    margin-bottom: 0;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group.has-danger .form-control {
    border-color: var(--color-danger);
}

.form-group .help-block {
    margin-top: 0.5rem;
    font-size: var(--typo-xs);
}

.form-group .help-block.with-errors {
    color: var(--color-danger);
}

.block-control {
    position: relative;
}

.control-label {
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 14px;
    color: #333;
    line-height: 1.5em;
}

.form-control {
    line-height: 1.5em;
    padding: 10px 22px;
    font-size: var(--typo-default);
    color: var(--color-black);
    min-height: 60px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--rounded);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--color-black);
    border-color: var(--color-border);
}

.form-control::-webkit-input-placeholder {
    color: var(--color-gray);
}

.form-control:-ms-input-placeholder {
    color: var(--color-gray);
}

.form-control::-ms-input-placeholder {
    color: var(--color-gray);
}

.form-control::placeholder {
    color: var(--color-gray);
}

.form-group.has-error .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-group.has-success .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control-feedback {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-size: 100%;
}

.form-control-feedback:before {
    display: none;
}

.form-control-feedback.glyphicon-ok {
    background: url("../img/icon/checked.png") center no-repeat;
    background-size: 16px;
}

.form-control-feedback.glyphicon-remove {
    background: url("../img/icon/cancel.png") center no-repeat;
    background-size: 16px;
}

.modal .close {
    position: absolute;
    z-index: 20;
    top: 20px;
    right: 20px;
    opacity: 1;
    color: var(--color-black);
}

.modal .close span {
    font-size: 28px;
}

.modal .close:focus,
.modal .close:hover {
    outline: none;
}

.modal-content {
    border-radius: var(--rounded);
    border: none;
}

.modal-login .modal-dialog {
    margin: auto;
    max-width: 520px;
}

.modal-login .modal-body {
    padding: 60px 0;
}

.modal-login .wrapper {
    max-width: 400px;
    width: auto;
    margin: auto;
}

.modal-login .wrapper form {
    margin-top: 1.2em;
}

.modal-ads .modal-body {
    padding: 0;
}

.modal-ads .ads {
    width: 100%;
    border-radius: var(--rounded);
    overflow: hidden;
}

.modal-ads .ads .cover {
    padding-top: 70%;
}

.modal .category .btn {
    padding: 0 10px;
}

.modal .category .dropdown-item .custom-control-label {
    font-size: var(--typo-md);
    color: var(--color-dark);
}

.modal .profile-auth {
    padding: 20px 0;
}

.modal .profile-auth .cover {
    width: 50px;
    padding-top: 100%;
    border-radius: 50%;
}

.modal .profile-auth .inner {
    padding-left: 15px;
}

.modal .profile-auth .inner .title {
    font-size: var(--typo-md);
    font-weight: var(--fw-medium);
}

.modal .profile-auth .inner .link {
    display: inline-block;
    color: var(--color-dark);
}

.modal .profile-auth .inner .info {
    margin-top: 4px;
    font-size: var(--typo-xs);
    color: var(--color-gray);
}

.modal textarea.form-control {
    border: none;
}

.modal hr {
    border-top: 1px solid #dae2f2;
}

.modal .btn.tool {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    min-width: 46px;
    width: 46px;
    height: 46px;
    margin-right: 10px;
}

.modal .btn.tool .img-fluid {
    width: 26px;
}

.modal .btn.tool:hover {
    background-color: var(--color-light-primary);
}

.modal .action .btn::before {
    content: "";
    position: absolute;
    height: 26px;
    width: 1px;
    background-color: #d3d9e6;
    right: -15px;
    top: 10px;
}

.modal .next .btn {
    min-width: 140px;
}

.modal .select2-container .select2-selection--multiple {
    height: 50px;
}

.modal .select2-container--default .select2-selection--multiple .select2-selection__choice {
    height: 100%;
    margin: 2px;
    line-height: 44px;
    border: none;
    background-color: var(--color-light-primary);
}

.modal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    line-height: 44px;
}

.modal .popup-bg {
    opacity: 0.35;
    width: 100%;
    top: 20px;
    position: absolute;
    left: 0;
    padding: 0 24%;
}

.modal .popup-bg.-I,
.modal .popup-bg.-II {
    padding: 0 35%;
}

.modal .popup-bg.-I {
    top: 40px;
    -webkit-transform: rotate(-124deg);
    transform: rotate(-124deg);
    left: -150px;
}

.modal .popup-bg.-II {
    left: auto;
    right: -150px;
    top: auto;
    bottom: 20px;
}

.modal .popup-bg .cover {
    padding-top: 79%;
}

.modal .graphic {
    margin: 46px 0 30px 0;
    z-index: 1;
    position: relative;
    text-align: center;
}

.modal .graphic img {
    width: 100px;
}

.modal .title {
    position: relative;
    z-index: 1;
}

.modal .link span,
.modal .icon span {
    font-size: 24px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    color: #566481;
    margin-right: 5px;
}

.modal-contact-reward .link,
.modal-contact-reward .icon,
.modal-contact-reward .link span,
.modal-contact-reward .icon span {
    color: var(--color-primary);
}

.modal-contact-reward .qr-code {
    text-align: center;
    max-width: 200px;
    margin: 10px auto;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.modal-contact-reward .qr-code img {
    max-width: 100%;
}

.modal-post .modal-dialog {
    max-width: 678px;
}

.modal-post .dropdown-menu.dropdown-menu-sm {
    min-width: 200px;
}

@media (max-width: 991px) {
    .modal {
        padding-left: 15px;
        padding-right: 15px;
    }
    .modal .close {
        top: 10px;
        right: 10px;
    }
    .modal .close span {
        font-size: 24px;
    }
    .modal-login .modal-body {
        padding: 40px 30px;
    }
    .modal .btn.tool {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }
    .modal .btn.tool .img-fluid {
        width: 22px;
    }
    .modal .action .btn::before {
        top: 4px;
    }
}

@media (max-width: 767px) {
    .modal .graphic img {
        width: 80px;
    }
    .modal-contact-reward .qr-code {
        width: 80px;
    }
}

@media (max-width: 575px) {
    .modal .btn.tool {
        margin-right: 5px;
        min-width: 40px;
        width: 40px;
        height: 40px;
    }
    .modal .btn.next {
        margin-top: 15px;
    }
    .modal .popup-bg {
        padding: 0 14%;
    }
    .modal .popup-bg.-I,
    .modal .popup-bg.-II {
        display: none;
    }
}

.dropdown-menu {
    border: none;
    background-color: var(--color-white);
    border-radius: var(--rounded-xs);
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    padding: 20px;
    min-width: 305px;
}

.dropdown-menu.dropdown-menu-sm {
    min-width: 160px;
    padding: 10px 0;
    font-size: var(--typo-sm);
}

.dropdown-menu.dropdown-menu-sm .link {
    padding: 3px 10px;
}

.dropdown-menu.dropdown-menu-sm .link:hover {
    background-color: var(--color-light-primary);
}

.dropdown-menu.dropdown-menu-sm .icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

.dropdown-menu.dropdown-menu-sm .icon span {
    font-size: 22px;
}

.menu-wrapper .item-list+.item-list {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ebebeb;
}

.menu-wrapper .link {
    display: block;
    padding: 2px 0;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-black);
}

.menu-wrapper .cover {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
}

.menu-wrapper .icon {
    width: 40px;
    height: 40px;
    text-align: center;
    margin-right: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu-wrapper .icon span {
    font-size: 30px;
    color: #8A95AC;
}

.ui-autocomplete {
    position: fixed;
    top: 90px !important;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

* html .ui-autocomplete {
    height: 400px;
}

.ui-widget.ui-widget-content {
    width: 200px;
    border: none;
    background-color: var(--color-white);
    border-radius: var(--rounded-xs);
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    padding: 10px 0;
}

.ui-menu .ui-menu-item-wrapper {
    border: none;
    padding: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--typo-sm);
    color: var(--color-black);
}

.ui-menu .ui-menu-item-wrapper.ui-state-active {
    border: none;
    background-color: #E1EBFF;
    margin: 0;
    color: var(--color-black);
}

.ui-menu .ui-menu-item-wrapper img {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.layout-content .content-side-left {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    width: 360px;
    padding: 30px;
    height: calc(100vh - 90px);
    overflow: auto;
}

.layout-content .content-side-left .menu li+li {
    margin-top: 20px;
}

.layout-content .content-side-left .menu .link {
    font-size: var(--typo-default);
    color: var(--color-black);
}

.layout-content .content-side-left .menu .link span {
    font-size: 30px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    color: #8A95AC;
    margin-right: 5px;
}

.layout-content .content-side-left .menu .link.active span {
    color: var(--color-primary);
}

.layout-content .content-side-left .ads {
    margin-top: 30px;
}

.layout-content .content-side-left .ads .link {
    display: block;
    margin-bottom: 15px;
}

.layout-content .content-side-left .ads figure {
    margin: 0;
    border-radius: var(--rounded);
    overflow: hidden;
    position: relative;
}

.layout-content .content-side-left .ads figure img {
    width: 100%;
}

.layout-content .content-side-left .action {
    margin-top: 30px;
}

.layout-content .content-side-left .action .btn {
    font-size: var(--typo-default);
    font-weight: var(--fw-normal);
}

.layout-content .content-body {
    margin-top: 90px;
}

.layout-content .content-side-right {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    width: 360px;
    padding: 30px;
    height: calc(100vh - 90px);
    overflow: auto;
}

.layout-content .content-side-right .widget {
    margin-bottom: 30px;
}

.wg-menu li+li {
    margin-top: 15px;
}

.wg-menu .link {
    font-weight: var(--fw-bold);
    font-size: var(--typo-md);
    color: var(--color-black);
}

.wg-menu .card {
    margin: 15px 0 5px 0;
    padding: 15px 20px;
    background-color: #E1E8F4;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: var(--rounded);
}

@media (max-width: 991px) {
    .layout-content .content-side-left {
        width: auto;
        height: auto;
        padding: 15px;
    }
    .layout-content .content-side-left .menu {
        display: none;
    }
    .layout-content .content-side-left .ads {
        display: none;
    }
    .layout-content .content-side-left .action {
        margin-top: 0;
    }
    .layout-content .content-side-right {
        width: auto;
        display: none;
    }
    .layout-content .content-body {
        margin-top: 0;
    }
}

.auth-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    background: url("../img/background/auth.jpg") center;
    background-size: cover;
}

.auth-block .obj {
    position: absolute;
    bottom: 0;
    right: 40px;
}

.auth-block .obj img {
    width: 100%;
}

.auth-wrapper {
    position: relative;
    z-index: 10;
}

.auth-wrapper .header {
    text-align: center;
}

.auth-wrapper .header .logo {
    margin-bottom: 20px;
}

.auth-wrapper .header .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 27px;
}

.auth-wrapper .header .desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.auth-wrapper .body {
    width: 650px;
    margin-top: 50px;
    padding: 60px 80px 80px 80px;
    background-color: var(--color-white);
    border-radius: 20px;
    -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.16);
}

.auth-wrapper .body form {
    margin-top: 30px;
}

.feed-block {
    min-height: calc(100vh - 90px);
    max-width: 680px;
    width: auto;
    margin: 0 auto;
    padding-bottom: 30px;
    background-color: #E4EAF6;
    border-left: 1px solid #C3D0EA;
    border-right: 1px solid #C3D0EA;
}

.feed-block .card {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    /* min-height: 600px; */
    margin-bottom: 15px;
}

.feed-auth {
    padding: 20px;
}

.feed-auth .auth .cover {
    width: 50px;
    padding-top: 100%;
    border-radius: 50%;
}

.feed-auth .auth .inner {
    padding-left: 15px;
}

.feed-auth .auth .inner .link {
    display: inline-block;
    color: var(--color-dark);
}

.feed-auth .auth .inner .link:hover {
    text-decoration: underline;
}

.feed-auth .auth .inner .title {
    font-size: var(--typo-md);
    font-weight: var(--fw-medium);
}

.feed-auth .auth .inner .info {
    margin-top: 4px;
    font-size: var(--typo-xs);
    color: var(--color-gray);
}

.feed-auth .auth .inner .info .link {
    padding-left: 8px;
    display: block;
    position: relative;
    color: var(--color-gray);
}

.feed-auth .auth .inner .info .link:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--color-gray);
}

.feed-auth .action>.link {
    display: block;
    padding: 6px;
    width: 36px;
    height: 36px;
    border-radius: var(--rounded-xs);
}

.feed-auth .action>.link:hover {
    background-color: var(--color-light-primary);
}

.feed-auth .action .dropdown-menu {
    margin-top: 5px;
}

.feed-content {
    padding: 0 20px;
    margin-bottom: 20px;
}

.feed-content .link {
    color: var(--color-dark);
}

.feed-content .link:hover {
    text-decoration: underline;
}

.feed-thumb {
    margin-bottom: 0px;
    position: relative;
    padding-top: 100%;
}

.feed-thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.feed-comment .topbar {
    padding: 15px 20px;
}

.feed-comment .topbar .feel .icon {
    margin-right: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feed-comment .topbar .feel .icon img {
    width: 22px;
}

.feed-comment .topbar .feel .icon img+img {
    margin-left: -8px;
}

.feed-comment .header {
    padding: 0 10px;
}

.feed-comment .header .link {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--typo-sm);
    color: var(--color-dark);
}

.feed-comment .header .link .icon {
    width: 22px;
    margin-right: 6px;
}

.feed-comment .header .link:hover~.dropdown-feel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feed-comment .header .dropdown-feel {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    padding: 5px;
    border-radius: 30px;
}

.feed-comment .header .dropdown-feel:hover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feed-comment .header .dropdown-feel:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    top: 100%;
    left: 0;
}

.feed-comment .header .dropdown-feel .link {
    padding: 0;
    display: block;
    width: 20px;
    position: relative;
}

.feed-comment .header .dropdown-feel .link+.link {
    margin-left: 5px;
}

.feed-comment .header .dropdown-feel .link:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.feed-comment .header .dropdown-feel .link:hover .text {
    display: block;
}

.feed-comment .header .dropdown-feel .link .text {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
    background-color: black;
    border-radius: 15px;
    padding: 1px 7px;
    color: var(--color-white);
    font-size: var(--typo-xs);
    white-space: nowrap;
}

.feed-comment .body {
    padding: 20px;
}

.feed-comment-list .item {
    margin-top: 5px;
}

.feed-comment-list .item+.item {
    margin-top: 15px;
}

.feed-comment-list .cover {
    width: 40px;
    padding-top: 100%;
    border-radius: 50%;
}

.feed-comment-list .inner {
    padding-left: 12px;
    padding-top: 8px;
}

.feed-comment-list .inner .link {
    display: inline-block;
    color: var(--color-dark);
}

.feed-comment-list .inner .link:hover {
    text-decoration: underline;
}

.feed-comment-list .inner .title {
    font-size: var(--typo-default);
    font-weight: var(--fw-medium);
}

.feed-comment-list .inner .editor-content {
    margin-top: 5px;
}

.feed-comment-more {
    margin-top: 20px;
    padding-left: 52px;
}

.feed-comment-more .link {
    color: var(--color-primary);
}

.feed-comment-more .link:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .feed-block {
        min-height: inherit;
        padding-bottom: 72px;
    }
    .feed-block .card {
        min-height: 200px;
        margin-bottom: 6px;
    }
}

.bookmark-wrapper {
    margin-bottom: 15px;
}

.bookmark-wrapper .link {
    color: var(--color-black);
}

.bookmark-wrapper .cover {
    width: 80px;
    padding-top: 100%;
    border-radius: var(--rounded-xs);
}

.bookmark-wrapper .inner {
    margin-left: 15px;
}

.bookmark-wrapper .title {
    max-height: calc(1.4em * 2);
    -webkit-line-clamp: 2;
}

.institute-list .link {
    color: var(--color-black);
}

.institute-list .card {
    background-color: var(--color-white);
    padding: 15px;
    border-radius: var(--rounded);
}

.institute-list .cover {
    width: 46px;
    padding-top: 100%;
    border-radius: var(--rounded-circle);
}

.institute-list .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.institute-list .inner {
    margin-left: 15px;
}

.institute-list .link span {
    font-size: 30px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    color: #8a95ac;
    margin-right: 5px;
}

.institute-list .institute-item {
    background-color: rgba(227, 232, 244, 0.4);
    border-radius: var(--rounded);
    padding: 6px 12px;
    margin-bottom: 15px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.institute-list .institute-item.-add span {
    color: var(--color-black);
    font-size: 57px;
    top: 0;
    margin-right: 0;
}

.institute-list .institute-item:hover {
    background-color: #e3e8f4;
}

.institute-list .institute-more {
    margin-top: 15px;
}

.institute-list .institute-more span {
    font-size: 45px;
    top: 0;
    margin-left: 5px;
}

.institute-block {
    min-height: calc(100vh - 90px);
    max-width: 680px;
    width: auto;
    margin: 0 auto;
    padding-bottom: 30px;
    background-color: #e4eaf6;
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
}

.institute-card {
    background-color: var(--color-white);
    padding: 15px;
    border-bottom: 1px solid #c3d0ea;
}

.institute-card>.cover {
    padding-top: 50%;
    overflow: hidden;
    border-radius: 15px 15px 0px 0px;
}

.institute-card .link {
    color: var(--color-black);
}

.institute-card .link span {
    font-size: 24px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

.institute-card .auth {
    margin-top: -55px;
    padding: 0 15px;
}

.institute-card .auth .star {
    position: relative;
    top: 2px;
    margin-right: 15px;
}

.institute-card .auth .cover {
    width: 90px;
    border-radius: var(--rounded-circle);
    padding-top: 100%;
    border: 1px solid #c3d0ea;
}

.institute-card .auth .subtitle {
    color: var(--color-gray-100);
    margin-bottom: 10px;
}

.institute-card .auth .engagement {
    margin-bottom: 15px;
}

.institute-card .auth .btn-primary {
    -webkit-box-shadow: var(--shadow-xs);
    box-shadow: var(--shadow-xs);
    width: 140px;
    padding: 0 10px;
}

.institute-card .auth .btn.active {
    -webkit-box-shadow: var(--shadow-xs);
    box-shadow: var(--shadow-xs);
    background-color: var(--color-success);
}

.institute-card.-detail {
    padding: 0 0 30px 0;
}

.institute-card.-detail>.cover {
    padding-top: 50%;
    overflow: hidden;
    border-radius: 0;
}

.institute-card.-detail .auth {
    padding: 0 60px;
}

.institute-card.-detail .auth .head-auth {
    margin-bottom: 30px;
}

.institute-card.-detail .auth .cover {
    width: 120px;
}

.institute-card.-detail .auth .engagement {
    margin: 30px 0;
}

.institute-card.-detail .auth .engagement>.row {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.institute-card.-detail .auth .related .btn-border {
    width: auto;
    padding: 0 15px;
    color: var(--color-black);
    border: 1px solid #c3d0ea;
    margin-bottom: 10px;
}

.institute-card.-detail .auth .related>.row {
    margin: -7.5px;
}

.institute-card.-detail .auth .related>.row .col-auto {
    padding: 0 7.5px;
}

.institute-card.-detail .auth .info span {
    font-size: 30px;
    vertical-align: middle;
    position: relative;
    top: -4px;
    margin-right: 10px;
}

.institute-card.-detail .auth .follow-share {
    text-align: center;
}

.institute-card.-detail .auth .follow-share .follow>.btn-success {
    margin-right: 15px;
}

.institute-card.-detail .auth .follow-share .share>.btn-secondary {
    min-width: 50px;
    padding: 0;
}

@media (max-width: 1440px) {
    .institute-card .auth {
        margin-top: -45px;
    }
    .institute-card .auth .cover {
        width: 70px;
    }
    .institute-card .auth .star {
        margin-right: 0;
    }
    .institute-card .auth .btnbtn-primary {
        width: 120px;
    }
    .institute-card .auth .btn-primary {
        height: 46px;
        line-height: 44px;
    }
    .institute-card.-detail .auth {
        margin-top: -20px;
        padding: 0 30px;
    }
    .institute-card.-detail .auth .cover {
        width: 90px;
    }
}

@media (max-width: 1199px) {
    .institute-card.-detail .auth .cover {
        margin-bottom: 15px;
    }
    .institute-card.-detail .auth {
        margin-top: -60px;
    }
    .institute-card.-detail .auth .cover {
        width: 120px;
    }
    .institute-card.-detail .auth .title {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .institute-card .auth {
        margin-top: -55px;
    }
    .institute-card .auth .cover {
        width: 90px;
    }
    .institute-card .auth .star {
        margin-right: 15px;
    }
    .institute-card .auth .btn-primary {
        height: 50px;
        line-height: 48px;
    }
    .institute-block {
        margin-bottom: 52px;
    }
}

@media (max-width: 767px) {
    .institute-card .auth {
        margin-top: -45px;
    }
    .institute-card .auth .cover {
        width: 70px;
    }
    .institute-card .auth .star {
        margin-right: 0;
    }
    .institute-card .auth .btn-primary {
        height: 46px;
        line-height: 44px;
    }
}

.user-block {
    max-width: 680px;
    width: auto;
    margin: 0 auto;
    background-color: #e4eaf6;
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
    border-bottom: 1px solid #c3d0ea;
}

.auth-card {
    min-height: 190px;
    background-color: var(--color-white);
    padding: 20px;
}

.auth-card .cover {
    width: 120px;
    padding-top: 100%;
    border-radius: var(--rounded-circle);
}

.auth-card .auth-cover {
    position: relative;
}

.auth-card .change-image-badge {
    position: absolute;
    right: -4px;
    bottom: 6px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--color-gray-100);
    background: #ebeff7;
    border-radius: var(--rounded-circle);
}

.auth-card .change-image-badge .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}

.auth-card .inner {
    padding-left: 20px;
}

.auth-card .inner .link {
    display: inline-block;
    color: var(--color-dark);
}

.auth-card .inner .link:hover {
    text-decoration: underline;
}

.auth-card .inner .name .title {
    font-size: var(--typo-lg);
    font-weight: var(--fw-medium);
}

.auth-card .inner .subtitle {
    font-size: var(--typo-md);
    color: var(--color-gray);
    margin-bottom: 15px;
}

.auth-card .inner .engagement {
    margin-right: 30px;
}

.auth-card .inner .engagement .title {
    font-size: var(--typo-md);
}

.auth-card .inner .engagement .subtitle {
    font-size: var(--typo-sm);
    margin-bottom: 0;
}

.auth-card .inner .info {
    margin-top: 4px;
    font-size: var(--typo-);
    color: var(--color-gray);
}

.auth-card .inner .info .link {
    padding-left: 8px;
    display: block;
    position: relative;
    color: var(--color-gray);
}

.auth-card .inner .info .link:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--color-gray);
}

.auth-card .action>.link {
    display: block;
    padding: 6px;
    width: 36px;
    height: 36px;
    border-radius: var(--rounded-xs);
}

.auth-card .action>.link:hover {
    background-color: var(--color-light-primary);
}

.no-feed-block {
    min-height: calc(100vh - 280px);
    max-width: 680px;
    width: auto;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 30px;
    background-color: #e4eaf6;
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
}

.no-feed-block .link span {
    font-size: 120px;
    color: rgba(138, 149, 172, 0.4);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.no-feed-block .link:hover span {
    color: #8a95ac;
}

.no-feed-block .material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}

.no-feed-block .title {
    color: var(--color-gray-100);
}

.no-feed-block .subtitle {
    color: rgba(138, 149, 172, 0.7);
}

@media (max-width: 1440px) {
    .auth-card .cover {
        width: 100px;
    }
    .no-feed-block .link span {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .auth-card .inner .name,
    .auth-card .inner .engagement {
        text-align: center;
    }
    .auth-card .inner .engagement {
        margin-right: 0;
    }
    .no-feed-block .link span {
        font-size: 80px;
    }
    .no-feed-block {
        min-height: calc(100vh - 360px);
        max-width: 680px;
        padding-top: 30px;
    }
}

.reward-block {
    min-height: calc(100vh - 90px);
    max-width: 680px;
    width: auto;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: url(../img/background/reward-bg@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    background-color: var(--color-white);
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
}

.reward-block .card {
    border: none;
    margin: 20px 20px 30px 20px;
    background: transparent;
}

.reward-block .card .cover .desc {
    display: none;
}

.reward-block .card.coming-soon .cover {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.reward-block .card.coming-soon .cover .desc {
    position: absolute;
    font-size: var(--typo-md);
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--color-white);
    background-color: rgba(24, 31, 54, 0.55);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.reward-block .card.coming-soon .cover .desc span {
    color: var(--color-white);
}

.reward-block .cover {
    padding-top: 50%;
    border-radius: var(--rounded);
    margin-bottom: 15px;
}

.reward-block .info {
    color: #566481;
    margin-bottom: 15px;
    font-size: var(--typo-sm);
}

.reward-block .icon span {
    font-size: 24px;
    vertical-align: middle;
    position: relative;
    top: 0;
    color: #566481;
    margin-right: 5px;
}

.reward-block .progress {
    border: 1px solid #8e99af;
    border-radius: var(--rounded);
    height: 44px;
    font-size: var(--typo-md);
    margin-right: 10px;
}

.reward-block .progress .progress-bar {
    background: var(--color-primary);
    border-top-right-radius: var(--rounded);
    border-bottom-right-radius: var(--rounded);
}

.reward-block .get-reward {
    margin-left: 10px;
}

@media (max-width: 1199px) {
    .reward-block .progress {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .reward-block .get-reward {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .reward-block {
        min-height: calc(100vh - 139px);
        margin-bottom: 52px;
    }
}

.public-block {
    max-width: 680px;
    width: auto;
    margin: 0 auto;
    padding-bottom: 15px;
    background-color: #e4eaf6;
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
}

.public-block .public-relations {
    background-color: var(--color-white);
    padding: 20px;
}

.widget .public-relations .pr-wrapper {
    padding: 15px;
    border-radius: var(--rounded);
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.widget .public-relations .link {
    color: var(--color-black);
}

.widget .public-relations .pr-wrapper:hover {
    background: rgba(138, 149, 172, 0.16);
}

.widget .public-relations .inner {
    margin-left: 15px;
}

.widget .public-relations .circle {
    width: 70px;
    height: 70px;
    border-radius: var(--rounded-circle);
    background: #fcfdfd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.widget .public-relations .inner-circle {
    width: 62px;
    height: 62px;
    border-radius: var(--rounded-circle);
    background: #f45068;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.widget .public-relations .inner-circle img {
    width: 36px;
}

.widget .public-relations .badge {
    position: absolute;
    bottom: -6px;
    right: -10px;
}

.widget .public-relations .badge .circle {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #c3d0ea;
}

.widget .public-relations .badge .inner-circle {
    width: 26px;
    height: 26px;
    background: #c3d0ea;
}

.category {
    margin-bottom: 15px;
}

.category .item {
    margin-bottom: 15px;
    width: 100%;
}

.category .link {
    color: var(--color-black);
}

.category .link .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--rounded-xs);
    background: var(--color-white);
}

.category .link .icon img {
    max-width: 29px;
}

.category .link.active .cate-wrapper {
    background-color: var(--color-success);
    color: var(--color-white);
}

.category .link.active:hover .cate-wrapper {
    background-color: #66b500;
}

.category .link:hover .cate-wrapper {
    background-color: #e3e8f4;
}

.category .cate-wrapper {
    border-radius: var(--rounded);
    padding: 10px;
    border: 1px solid #c3d0ea;
    background-color: rgba(227, 232, 244, 0.4);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.category .inner {
    margin-left: 15px;
}

.category-block {
    min-height: calc(100vh - 90px);
    width: auto;
    padding-bottom: 30px;
    background-color: var(--color-white);
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
}

.category-block .wrapper {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto 0 0;
    padding: 30px;
}

.category-block .filter-btn {
    margin-bottom: 20px;
}

.category-block .filter-btn .btn {
    font-size: var(--typo-default);
    font-weight: var(--fw-normal);
    border-radius: 32px;
    margin-bottom: 10px;
}

.category-block .filter-btn .btn.active {
    background-color: var(--color-success);
    color: var(--color-white);
}

.category-block .filter-btn .btn:not(:last-child) {
    margin-right: 10px;
}

.category-block .filter-btn .btn:hover.active {
    background-color: #66b500;
}

.category-block .link {
    color: var(--color-black);
}

.category-block .card {
    border: none;
    margin-bottom: 15px;
}

.category-block .card .thumb {
    margin-bottom: 15px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.category-block .card .cover {
    padding-top: 100%;
}

.category-block .card.vdo .player {
    position: absolute;
    font-size: var(--typo-md);
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--color-white);
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.category-block .card.vdo .player span {
    font-size: 50px;
    color: var(--color-white);
}

.category-block .card.vdo .player .material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}

.category-block .card.e-book .thumb {
    width: 100%;
    height: 100%;
    padding: 0 14.25%;
}

.category-block .card.e-book .cover {
    padding-top: 140%;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    margin: 0 auto;
}

.category-block .link:hover .card .thumb {
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

@media (max-width: 1600px) {
    .category-block .wrapper {
        max-width: 1150px;
    }
}

@media (max-width: 1440px) {
    .category-block .wrapper {
        max-width: 990px;
    }
}

@media (max-width: 991px) {
    .layout-content .content-side-left .category {
        display: none;
    }
    .category-block .wrapper {
        max-width: 990px;
        padding: 15px;
        margin-bottom: 60px;
    }
    .category-block .filter-btn {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .category-block .filter-btn .btn {
        padding: 0 10px;
        min-width: 90px;
    }
}

.member-system {
    margin-bottom: 15px;
    margin-right: 40px;
}

.member-system .item {
    margin-bottom: 15px;
    width: 100%;
}

.member-system .link {
    color: var(--color-black);
}

.member-system .link .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 42px;
    height: 42px;
}

.member-system .link .icon span {
    font-size: 30px;
}

.member-system .link.active {
    font-weight: var(--fw-bold);
}

.member-system .link.active .cate-wrapper {
    background-color: rgba(138, 149, 172, 0.2);
}

.member-system .link.active .icon span {
    color: var(--color-primary);
}

.member-system .link.active:hover .cate-wrapper {
    background-color: rgba(138, 149, 172, 0.4);
}

.member-system .link:hover .cate-wrapper {
    background-color: rgba(138, 149, 172, 0.1);
}

.member-system .cate-wrapper {
    border-radius: var(--rounded);
    padding: 10px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.member-system .inner {
    margin-left: 15px;
}

.logout {
    margin-right: 40px;
}

.logout .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--rounded-circle);
    background-color: var(--color-white);
}

.logout .btn {
    padding: 0 20px;
    text-align: left;
}

.logout .btn span {
    top: 0;
    color: var(--color-primary);
    font-size: 30px;
}

.logout .inner {
    margin-left: 15px;
}

.account-block {
    position: relative;
    min-height: calc(100vh - 90px);
    max-width: 680px;
    width: auto;
    margin: 0 auto;
    background-color: var(--color-white);
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
    border-bottom: 1px solid #c3d0ea;
}

.account-block .h-title {
    padding: 20px;
    border-bottom: 1px solid #c3d0ea;
}

.account-block .title,
.account-block .subtitle {
    font-weight: var(--fw-normal);
    font-size: var(--typo-md);
}

.account-block .desc {
    color: var(--color-secondary);
}

.account-block .link {
    color: var(--color-black);
}

.account-block .form-group {
    margin-bottom: 0;
}

.account-block .label {
    display: block;
    margin-bottom: 0;
}

.account-block .label,
.account-block .wrapper {
    border-bottom: 1px solid #c3d0ea;
    padding: 12px 20px;
}

.account-block .input-group {
    padding: 20px;
    border-bottom: 1px solid #c3d0ea;
}

.account-block .form-control {
    padding: 12px 15px;
    min-height: 48px;
}

.account-block .submit {
    text-align: center;
    padding: 20px;
}

.account-block .tab-content {
    position: absolute;
    top: 0;
    right: -350px;
    width: 350px;
    z-index: 99;
}

.account-block .edit-account {
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
    min-height: calc(100vh - 90px);
    background-color: var(--color-white);
}

.account-block .icon.back {
    position: absolute;
    left: 12px;
    height: 70px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.account-block .icon.back span {
    font-size: 30px;
}

.account {
    min-height: calc(100vh - 90px);
}

.account .auth-card {
    padding: 20px;
    min-height: auto;
}

.account .nav-tabs {
    border-bottom: none;
}

.account .nav-tabs .pd .wrapper {
    padding: 4.5px 20px;
}

.account .nav-tabs .space .wrapper {
    padding: 4.5px 20px;
    background: #e3e8f4;
}

.account .nav-tabs .link {
    font-size: var(--typo-md);
}

.account .nav-tabs .link span {
    font-size: 30px;
    vertical-align: middle;
    position: relative;
    top: 1px;
    color: #8a95ac;
    margin-right: -8px;
    margin-left: 10px;
}

.account .nav-tabs .link.active .wrapper {
    background-color: #e3e8f4;
}

.account .nav-tabs .link:hover .wrapper {
    background-color: rgba(227, 232, 244, 0.4);
}

.account .nav-tabs .link:hover.active .wrapper {
    background-color: #ccd3e5;
}

@media (max-width: 1199px) {
    .account-block .tab-content {
        right: -300px;
        width: 300px;
    }
}

@media (max-width: 991px) {
    .account-block .tab-content {
        right: 0;
        width: 100%;
        max-width: 100%;
    }
    .account-block .icon.back {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 60px;
    }
    .account-block .edit-account {
        border-left: none;
        border-right: none;
    }
    .account-block .input-group,
    .account-block .submit,
    .account-block .h-title,
    .account .auth-card {
        padding: 15px;
    }
    .account-block .label,
    .account-block .wrapper {
        padding: 12px 15px;
    }
    .account .nav-tabs .pd .wrapper {
        padding: 4.5px 15px;
    }
    .account-block .form-control {
        padding: 10px 15px;
        min-height: 44px;
    }
    .account-block .submit .btn {
        width: 100%;
    }
    .layout-content .content-side-left .member-system {
        display: none;
    }
    .layout-content .content-side-left .logout {
        display: none;
    }
    .account-block {
        min-height: inherit;
        padding-bottom: 72px;
    }
    .account-block .edit-account {
        padding-bottom: 72px;
    }
}

@media (max-width: 575px) {
    .account-block {
        margin-bottom: 30px;
    }
    .account-block .edit-account {
        margin-bottom: 75px;
    }
}

.track-history-block {
    position: relative;
    min-height: calc(100vh - 90px);
    max-width: 680px;
    width: auto;
    margin: 0 auto;
    background-color: var(--color-white);
    border-left: 1px solid #c3d0ea;
    border-right: 1px solid #c3d0ea;
    border-bottom: 1px solid #c3d0ea;
}

.track-history-block .h-title {
    padding: 20px;
    border-bottom: 1px solid #c3d0ea;
}

.track-history-block .title {
    font-size: var(--typo-md);
    font-weight: var(--fw-bold);
}

.track-history-block .th-wrapper {
    padding: 20px;
}

.track-history-block .th-wrapper>.title {
    margin-bottom: 20px;
}

.track-history-block .inner {
    font-size: var(--typo-md);
}

.track-history-block .inner span {
    margin: 0 8px;
}

.track-history-block .cover {
    width: 50px;
    padding-top: 100%;
    border-radius: var(--rounded-circle);
}

.track-history-block .tracking {
    padding-top: 10px;
    padding-bottom: 3px;
}

.track-history-block .item-list>li {
    width: 100%;
}

.track-history-block .item-list>li:not(:last-child) {
    border-bottom: 1px solid #c3d0ea;
}

@media (max-width: 991px) {
    .track-history-block {
        min-height: inherit;
        padding-bottom: 72px;
    }
}

.layout-header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    border-bottom: 1px solid #C3D0EA;
}

.layout-header .container-fluid {
    padding: 0 25px;
}

.layout-header .container-fluid>.row {
    height: 89px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.layout-header .side-left {
    width: 480px;
}

.layout-header .side-right {
    width: 480px;
}

.layout-header .brand .link {
    color: var(--color-black);
}

.layout-header .brand .icon {
    margin-right: 10px;
}

.layout-header .brand .icon img {
    height: 50px;
}

.layout-header .brand .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.layout-header .brand .desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 11px;
}

.layout-header .search {
    position: relative;
}

.layout-header .search .form-control {
    min-height: inherit;
    height: 50px;
    border-radius: 27px;
    border: 1px solid #C3D0EA;
    font-size: var(--typo-default);
}

.layout-header .menu {
    width: 400px;
    margin: 0 auto;
}

.layout-header .menu .icon {
    width: 34px;
    margin: 0 auto 2px;
    position: relative;
    color: var(--color-black);
}

.layout-header .menu .icon span {
    font-size: 34px;
    vertical-align: top;
}

.layout-header .menu .icon.notified:after {
    content: '';
    position: absolute;
    z-index: 10;
    bottom: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    border-radius: var(--rounded-circle);
    background-color: var(--color-success);
}

.layout-header .menu .link {
    padding: 10px;
    border-radius: var(--rounded-xs);
    display: block;
    text-align: center;
    color: var(--color-gray-100);
    font-size: var(--typo-sm);
}

.layout-header .menu .link.active {
    color: var(--color-primary);
}

.layout-header .menu .link.active .icon {
    color: var(--color-primary);
}

.layout-header .star {
    margin-left: 15px;
}

.layout-header .star .link {
    line-height: 50px;
    padding: 0 8px;
    display: block;
    border-radius: var(--rounded-xs);
    color: var(--color-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 32px;
}

.layout-header .star .icon {
    width: 32px;
    margin-right: 6px;
}

.layout-header .star .icon img {
    width: 100%;
}

.layout-header .star .count {
    font-size: var(--typo-sm);
}

.layout-header .noti .link {
    line-height: 50px;
    padding: 0 8px;
    display: block;
    border-radius: var(--rounded-xs);
    color: var(--color-black);
    position: relative;
}

.layout-header .noti .link span {
    font-size: 34px;
    vertical-align: middle;
}

.layout-header .noti .link .count {
    position: absolute;
    white-space: nowrap;
    top: 8px;
    left: 50%;
    margin-left: 2px;
    padding: 0 6px;
    min-width: 20px;
    height: 20px;
    line-height: 22px;
    border-radius: 10px;
    background-color: var(--color-success);
    color: var(--color-white);
    font-size: 12px;
    text-align: center;
}

.layout-header .member {
    margin-left: 12px;
}

.layout-header .member>.link {
    display: block;
    border-radius: var(--rounded-xs);
    color: var(--color-black);
}

.layout-header .member>.link .cover {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.layout-header .member .dropdown-menu {
    margin-top: 20px;
}

.layout-header .menu-mobile {
    display: none;
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-color: var(--color-white);
    border-top: 1px solid #C3D0EA;
}

.layout-header .menu-mobile .item>.link {
    padding-top: 6px;
    display: block;
    text-align: center;
    color: var(--color-dark);
    font-size: 10px;
}

.layout-header .menu-mobile .item>.link span {
    color: var(--color-gray);
}

.layout-header .menu-mobile .item>.link.active {
    color: var(--color-primary);
}

.layout-header .menu-mobile .item>.link.active span {
    color: var(--color-primary);
}

.layout-header .menu-mobile .item>.link .icon {
    margin: 0 auto 1px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.layout-header .menu-mobile .item>.link .icon span {
    font-size: 30px;
}

.layout-header .menu-mobile .item>.link .icon.notified:after {
    content: '';
    position: absolute;
    z-index: 10;
    margin-left: 6px;
    top: 25px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: var(--rounded-circle);
    background-color: var(--color-success);
}

.layout-header .menu-mobile .item>.link .cover {
    margin: 2px auto 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.layout-header .menu-mobile .item>.link .count {
    position: absolute;
    white-space: nowrap;
    top: 6px;
    left: 50%;
    margin-left: 2px;
    padding: 0 6px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 9px;
    background-color: var(--color-success);
    color: var(--color-white);
    font-size: 11px;
    text-align: center;
}

.layout-header .menu-mobile .dropdown-menu {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 72px;
    -webkit-transform: inherit !important;
    transform: inherit !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .layout-header {
        position: relative;
    }
    .layout-header .container-fluid {
        padding: 0 15px;
    }
    .layout-header .container-fluid>.row {
        height: 59px;
    }
    .layout-header .brand .icon img {
        height: 36px;
    }
    .layout-header .brand .title,
    .layout-header .brand .desc {
        display: none;
    }
    .layout-header .menu {
        display: none;
    }
    .layout-header .side-left {
        width: auto;
    }
    .layout-header .side-right {
        width: auto;
    }
    .layout-header .star {
        margin-left: 10px;
    }
    .layout-header .star .icon {
        width: 32px;
    }
    .layout-header .star .link {
        line-height: 32px;
        padding: 0;
    }
    .layout-header .search .link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #E1EBFF;
        color: var(--color-black);
    }
    .layout-header .search .link span {
        font-size: 22px;
    }
    .layout-header .menu-mobile {
        display: block;
    }
}

@media (max-width: 1440px) {
     :root {
        --typo-xs: 12px;
        --typo-sm: 14px;
        --typo-default: 16px;
        --typo-md: 18px;
        --typo-lg: 20px;
        --typo-xl: 22px;
    }
    .btn {
        height: 54px;
        line-height: 52px;
    }
    .form-control {
        border-radius: 10px;
        min-height: 54px;
        padding: 10px 15px;
    }
    .auth-block .obj {
        width: 380px;
    }
    .auth-wrapper .header .logo {
        margin-bottom: 25px;
    }
    .auth-wrapper .header .logo img {
        width: 160px;
    }
    .auth-wrapper .header .title {
        font-size: 20px;
    }
    .auth-wrapper .header .desc {
        font-size: 14.8px;
    }
    .auth-wrapper .body {
        width: 500px;
        margin-top: 30px;
        padding: 40px 60px 60px 60px;
    }
    .auth-wrapper .body form {
        margin-top: 1.2em;
    }
}

@media (max-width: 991px) {
     :root {
        --typo-default: 14px;
        --typo-md: 18px;
        --typo-xl: 18px;
    }
    .btn {
        height: 50px;
        line-height: 48px;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .form-control {
        min-height: 50px;
    }
    .auth-block {
        padding: 30px 15px;
    }
    .auth-block .obj {
        display: none;
    }
    .auth-wrapper {
        width: 100%;
    }
    .auth-wrapper .header .logo {
        margin-bottom: 15px;
    }
    .auth-wrapper .header .logo img {
        width: 110px;
    }
    .auth-wrapper .header .title {
        font-size: 12px;
    }
    .auth-wrapper .header .desc {
        font-size: 9px;
    }
    .auth-wrapper .body {
        padding: 20px 30px 30px 30px;
        width: 100%;
        border-radius: 15px;
        margin-top: 20px;
    }
}


/*# sourceMappingURL=style.css.map */

.time_comment {
    font-size: var(--typo-xs);
    color: var(--color-gray);
}

.progress-bar .limit {
    position: absolute;
    left: 45%;
    color: #333;
}

.refcode {
    text-align: center;
    width: 100%;
    display: block;
}