/* css active class

show
active
collapsed


*/


body {
    overflow: hidden;
    font-family: "Manrope", sans-serif;
    box-sizing: border-box;
}

:root {
    --color-primary: #0D6EFD;
    --color-secondary: rgba(14, 14, 17, 0.05);
    --color-warning: #FFC107;
    --color-light-black: rgba(14, 14, 11, 0.05);
    --color-black: #202022;
    --color-success: #16C47F;
    --color-heading-dark: #0E0E11;
    --color-body-dark: #39393C;
    --color-star-deactive: #FFF3CD;
    --color-star-active: #FFDA6A;
    --col-conversation-z-index: 9998;
    --col-info-z-index: 9999;
}

/* element */
a,
a:hover,
a:focus {
    text-decoration: none;
}

input,
input:focus,
textarea,
textarea:focus {
    border: none;
}

.svg-icon svg {
    vertical-align: middle;
}

.avatar {
    border-radius: 50%;
}

.avatar img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
}

.avatar-user {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    position: relative;
}

.avatar-user img {
    vertical-align: top;
}

.avatar-user .user-status {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-success);
    border: solid 2px #FFF;
}

.avatar-chat {
    width: 32px;
    height: 32px;
    border: solid 2px var(--color-light-black);
}

.avatar-profile {
    width: 160px;
    height: 160px;
    border: solid 4px #FFF;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08),
        0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.avatar-mheader {
    width: 48px;
    height: 48px;
    margin-right: 8px;
    position: relative;
    border: solid 2px #DBDBDE;
    line-height: normal;
}

.d-inline-block {
    display: inline-block;
}

.vertical-middle {
    vertical-align: middle;
}

.cursor-pointer {
    cursor: pointer;
}

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

.float-right {
    float: right;
}

.position-relative {
    position: relative;
}

button.button {
    border: none;
}

.button {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    font-weight: 500;
}

.button-shadow {
    box-shadow: inset 0 0 12px rgba(14, 14, 17, 0.2), inset 0 -3px 0 rgba(14, 14, 17, 0.2);
}

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

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

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

.text-upper {
    text-transform: uppercase;
}

.rotate-180 {
    transform: rotateZ(180deg);
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                    supported by Chrome, Edge, Opera and Firefox */
}

.tab-border {
    border-bottom: solid 1px var(--color-light-black);
}

/* block history */
.history-tab {
    height: 53px;
    line-height: 53px;
    padding: 0 16px;
    font-weight: 700;
    cursor: pointer;
}

.history-container {
    overflow-x: hidden;
    overflow-y: hidden;
    /* overflow-y: scroll; */
    height: 0;
    transition: all .2s ease-in;
}

.history-tab .icon-show-list {
    transition: all .2s linear;
}

.history-tab.show .icon-show-list {
    transform: rotateZ(180deg);
}

.history-container .history-item {
    height: 53px;
    line-height: 53px;
    padding: 0 16px 0 16px;
    font-weight: 500;
}

.history-container .history-item .history-text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    float: left;
    width: 245px;
    font-weight: 600;
    font-size: 14px;
}

.history-container .history-item .change_title {
    position: absolute;
    top: 50%;
    left: 16px;
    width: calc(100% - 32px);
    height: 34px;
    transform: translateY(-50%);
}

/* main */
.main-view {
    width: 100%;
    position: relative;
}

.main-view .main-wrap {
    max-width: 100%;
    margin: 0 auto;
}

.main-view .main-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    z-index: 999;
}

.main-view .col-conversation {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    transition: all .2s ease-in-out;
    background-color: #FFF;
}

.main-view .col-chat {
    height: 100vh;
    margin: 0 300px;
    background-color: #E6E6E9;
    transition: all .2s ease-in-out;
    padding: 0 100px;
    overflow: hidden;
}

.main-view .col-chat-box {
    position: relative;
    width: 100%;
    height: 100vh;
}

.main-view .chat-enter {
    width: 100%;
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color: #F0F0F2;
    padding: 24px;
    border-radius: 12px;
}

.main-view .chat-enter textarea {
    background-color: transparent;
    border: none;
    font-size: 16px;
    width: 100%;
    resize: none;
}

.main-view .chat-enter textarea:focus {
    outline: none;
}

.main-view .chat-list {
    position: absolute;
    bottom: 200px;
    width: 100%;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    padding-right: 15px;
    margin-right: -15px;
}

.main-view .chat-list .cl-bot {
    position: relative;
    padding: 10px 100px 10px 50px;
    min-height: 62px;
    width: 100%;
}

.main-view .chat-list .cl-bot img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 15px;
}

.main-view .chat-list .cl-bot .cl-text {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px 12px;
    white-space: pre-wrap;
}

.main-view .chat-list .cl-client {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.main-view .chat-list .cl-client .cl-text {
    float: right;
    background-color: #F0F0F2;
    border-radius: 8px;
    padding: 10px 12px;
    white-space: pre-wrap;
}

.main-view .ce-item svg {
    float: left;
    margin-right: 15px;
    transform: translateY(5px);
}

.main-view .ce-item svg.ce-svg2 {
    transform: translateY(6px);
}

.main-view .ce-item button {
    float: right;
    background: #0D6EFD;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 8px;
}

.main-view .col-info {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    background: #FFF;
    transition: all .2s linear;
}

.main-view.collapsed .col-conversation {
    width: 52px;
}

.main-view.collapsed .col-chat {
    margin-left: 52px;
}

.main-view .menu-collapsed {
    display: none;
    height: 100%;
}

.main-view.collapsed .menu {
    display: none;
}

.main-view.collapsed .menu-collapsed {
    display: block;
}

.main-view .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    line-height: 64px;
    background-color: #FFF;
    padding: 0 16px;
    display: none;
    z-index: 100;
}

.main-view .main-nav .main-nav-menu {
    /* display: inline-block; */
    float: left;
}

.main-view .main-nav .main-nav-admin {
    float: left;
    position: relative;
    min-height: 48px;
    padding-left: 55px;
    transform: translateY(8px);
    margin-left: 10px;
}

.main-view .main-nav .main-nav-admin img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.main-view .main-nav .main-nav-admin .mna-text {
    position: relative;
    line-height: normal;
    padding-top: 6px;
}

.main-view .main-nav .main-nav-admin .mna-text p {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin: 0 0 5px;
}

.main-view .main-nav .main-nav-admin .mna-text span {
    font-size: 12px;
    color: #0D6EFD;
    text-transform: uppercase;
    line-height: 16px;
}

.main-view .main-nav .main-nav-icon {
    float: right;
}

.main-view .main-nav .main-nav-icon .svg-icon:not(:last-of-type) {
    margin-right: 24px;
}

/* col left */
.col-conversation .icon-right {
    float: right;
}

.icon-item {
    margin-right: 12px;
}

.col-conversation .tab-item {
    position: relative;
}

.col-conversation .tab-item.active {
    color: var(--color-primary);
    font-weight: 600;
}

.col-conversation .tab-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-primary);
    visibility: hidden;
}

.col-conversation .tab-item:hover::before,
.col-conversation .tab-item.active::before {
    visibility: visible;
}

.col-conversation .col-conversation-header {
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    height: 53px;
    line-height: 53px;
    cursor: pointer;
}

.col-conversation .col-conversation-mheader {
    display: none;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    height: 65px;
    line-height: 65px;
    position: relative;
}

.mheader-profile-text {
    display: inline-block;
    line-height: normal;
    vertical-align: middle;
}

.mheader-profile-text p {
    margin: 0 0 5px;
}

.mheader-profile-text span {
    color: #0D6EFD;
}

.col-conversation .col-conversation-mheader .svg-toother {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.col-conversation .col-conversation-mheader .mheader-profile {
    display: inline-block;
    vertical-align: middle;
}

.col-conversation .new-conversation-tab {
    height: 53px;
    line-height: 53px;
    padding: 0 16px;
    font-weight: 600;
    cursor: pointer;
}

.col-conversation .new-conversation-tab .icon-plus {
    fill: #717174;
}

.col-conversation .new-conversation-tab.active .icon-plus {
    fill: var(--color-primary);
}

.col-conversation .history-tab.show+.history-container {
    /* check this */
    /* height: 500px; */
    height: calc(100vh - 250px);
    overflow-y: auto;
}

.history-container .history-item .history-more-action {
    display: none;
    position: relative;
}

.history-container .history-item:hover .history-more-action,
.history-container .history-item .history-more-action.open {
    display: inline;
}

.history-container .history-item .dropdown-menu {
    right: 0;
    left: unset;
}

.col-conversation .user-tab {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 72px;
    line-height: 72px;
    padding: 0 16px;
}

.main-view .menu-collapsed .user-tab {
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

.main-view .menu-collapsed .user-tab .avatar-user {
    margin-right: 0;
}

.col-conversation .user_info {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.col-conversation .user-tab * {
    line-height: normal;
}

.user-tab .user-fullname {
    font-weight: 600;
    margin-bottom: 0;
}

.user-tab .user-email {
    font-weight: 400;
    margin-bottom: 0;
    color: var(--color-primary);
}

/* col info */
.col-info .col-info-action {
    padding: 0 16px;
    font-size: 14px;
    height: 64px;
    line-height: 64px;
    text-align: right;
    display: none;
}

.col-info .col-info-action .btn-new-chat {
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
}

.col-info .col-info-action ._close_col_info {
    float: left;
}

.col-info .col-info-action .btn-new-chat-text {
    margin-right: 8px;
}

.col-info .col-info-action .btn-new-chat .svg-icon svg {
    fill: var(--color-black);
    vertical-align: top;
}

.col-info .col-info-header {
    padding: 0 16px;
    font-size: 14px;
    height: 52px;
    line-height: 52px;
}

.col-info .col-info-header .info-header-text {
    color: var(--color-primary);
    font-weight: 600;
    margin-left: 8px;
}

.col-info .profile-container {
    padding: 20px 16px;
    text-align: center;
    background: radial-gradient(circle at top left,
            rgba(0, 123, 255, 0.3) 0%,
            rgba(0, 123, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.5) 60%,
            #ffffff 100%);
}

.col-info .profile-name {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 8px 0;
    color: var(--color-heading-dark);
}

.col-info .profile-role {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--color-body-dark);
}

.col-info .profile-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.col-info .profile-icon img {
    width: 100%;
    height: 100%;
    vertical-align: top;
}

.col-info .profile-contact {
    padding: 0 16px;
}

.col-info .profile-contact .profile-contact-item {
    height: 52px;
    line-height: 52px;
    display: inline-block;
}

.col-info .profile-contact .profile-contact-item .profile-contact-item-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-body-dark);
    margin-left: 12px;
}

.col-info .history-tab.show+.history-container {
    height: 500px;
}

.col-info .rating-tab {
    padding: 16px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.form-rating {
    font-size: 16px;
    font-weight: 400;
}

.form-rating .form-item:not(:last-of-type) {
    margin-bottom: 8px;
}

.form-rating .form-item textarea {
    width: 100%;
    resize: none;
    height: 27px;
    transition: all .2s linear;
}

.form-rating .form-item textarea:focus-visible {
    height: 108px;
}

/* .form-rating .form-rating-action {
    height: 36px;
    line-height: 36px;
} */

.form-rating .rating-star-container {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 36px;
    float: left;
    line-height: 36px;
}

.form-rating .form-rating-action {
    text-align: right;
}

.form-rating .form-rating-action .rating-star svg {
    vertical-align: text-top;
}

.form-rating .rating-star-container .rating-star {
    display: inline-block;
}

.form-rating .rating-star-container .rating-star svg {
    color: var(--color-star-deactive);
}

.form-rating .rating-star-container .rating-star._active svg {
    color: var(--color-star-active);
}

.btn-action {
    text-align: center;
    height: 100%;
    width: 100%;
}

.btn-action button,
.btn-action a {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* congaf  */
#autoResizeTextarea {
    width: 100%;
    min-height: 40px;
    max-height: 300px;
    /* tùy chỉnh chiều cao tối đa nếu muốn */
    overflow-y: auto;
    resize: none;
    /* tắt resize bằng chuột */
    padding: 0;
    box-sizing: border-box;
    transition: all .3s linear;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#myqr_modal,
#myinfor_modal {
    z-index: 999999;
}

.modal-backdrop {
    z-index: 9999;
}

#myqr_modal .modal-dialog {
    width: 420px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#myqr_modal .modal-content {
    padding: 32px 48px;
    position: relative;
    border-radius: 16px;
    box-shadow: none;
    width: 100%;
}

#myqr_modal .myqr-close {
    background: transparent;
    border: none;
    position: absolute;
    right: 20px;
    padding: 0;
    top: 20px;
}

#myqr_modal .title {
    margin: 0px 0 25px;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}

#myqr_modal .myqr-img {
    width: 100%;
    border: 1px solid #E6E6E9;
    padding: 24px;
    margin-bottom: 8px;
}

#myqr_modal .myqr-img img {
    width: 100%;
    height: auto;
}

#myqr_modal .myqr-down {
    width: 100%;
    border: 1px solid #E6E6E9;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
}

#myqr_modal .myqr-down svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    cursor: pointer;
}

#myqr_modal .myqr-down p {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

#myqr_modal .myqr-share {
    margin-top: 24px;
    text-align: center;
}

#myqr_modal .myqr-share p {
    color: #0E0E11;
}

#myqr_modal .myqr-share ul {
    list-style: none;
    padding: 0;
}

#myqr_modal .myqr-share ul li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0 5px;
    vertical-align: middle;
}

#myqr_modal .myqr-share ul li img {
    width: 28px;
}

#myinfor_modal .modal-dialog {
    width: 612px;
    max-width: 90%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

#myinfor_modal .modal-content {
    border-radius: 16px;
}

#myinfor_modal .myinfor-head-box {
    position: relative;
    padding: 36px 48px;
    background: radial-gradient(circle at top left, rgba(0, 123, 255, 0.3) 0%, rgba(0, 123, 255, 0.55) 0%, rgba(255, 255, 255, 0.5) 100%, rgba(0, 123, 255, 0.0)100%);
}

#myinfor_modal .myqr-close {
    background: transparent;
    border: none;
    position: absolute;
    right: 20px;
    padding: 0;
    top: 20px;
    z-index: 10;
}

#myinfor_modal .myinfor-head-box .mhb-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    background-color: #ffffff;
    margin-right: 15px;
}

#myinfor_modal .myinfor-head-box .mhb-img img {
    width: 100%;
    height: 100%;
}

#myinfor_modal .myinfor-head-box .mhb-text {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 180px);
}

#myinfor_modal .myinfor-head-box .mhb-text h2 {
    font-size: 26px;
    margin: 0 0 10px;
    font-weight: 700;
}

#myinfor_modal .myinfor-head-box .mhb-text p {
    font-size: 16px;
    margin: 0 0 20px;
}

#myinfor_modal .myinfor-head-box .mhb-text span {
    display: block;
    font-weight: 600;
    margin: 0 0 10px;
}

#myinfor_modal .myinfor-head-box .mhb-text span img {
    width: 17px;
    height: 17px;
    display: inline-block;
    margin-right: 5px;
}

#myinfor_modal .myinfor-body-box {
    position: relative;
    padding: 36px 48px;
}

#myinfor_modal .myinfor-body-box .mbb-sach {
    background-color: #0E0E110D;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 24px;
}

#myinfor_modal .myinfor-body-box .mbb-sach p {
    margin: 0;
    font-size: 16px;
}

#myinfor_modal .myinfor-body-box .mbb-des {
    margin-bottom: 24px;
}

#myinfor_modal .myinfor-body-box .mbb-des h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

#myinfor_modal .myinfor-body-box .mbb-des p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

#myinfor_modal .myinfor-body-box .btn-share {
    background: transparent;
    border: 1px solid #0D6EFD;
    font-size: 16px;
    color: #0D6EFD;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: 600;
    padding: 11px 25px 11px;
}

#myinfor_modal .myinfor-body-box .btn-share svg {
    transform: translateY(7px);
    margin-left: 8px;
}

.new-conversation-screen {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 200px;
    max-height: calc(100vh - 210px);
    text-align: center;
}

.new-conversation-screen .new-conversation-screen-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.new-conversation-screen .new-conversation-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

.loader span {
    display: inline-block;
    /* vertical-align: middle; */
    width: 10px;
    height: 10px;
    /* margin-bottom: 10px;
    margin-top: -10px; */
    background: #556ee6;
    border-radius: 20px;
    animation: loader 0.8s infinite alternate;
}

.loader span:nth-of-type(2) {
    animation-delay: 0.2s;
}

.loader span:nth-of-type(3) {
    animation-delay: 0.6s;
}

@keyframes loader {
    0% {
      opacity: 0.9;
      transform: scale(0.5);
    }
    100% {
      opacity: 0.1;
      transform: scale(1);
    }
  }
  
/* congaf end */

/* fix swal */
.swal2-popup {
    width: 34em;
}

.swal2-title {
    font-size: 24px;
}

.swal2-content {
    font-size: 14px;
}

.swal2-actions button {
    font-size: 13px;
}

@media screen and (max-width: 1400px) {
    .main-view .col-chat {
        padding: 0 30px;
    }
}

@media screen and (max-width: 991px) {
    .main-view .col-chat {
        margin: 0;
    }

    .main-view .col-conversation {
        position: fixed;
        top: 0;
        left: -300px;
        /* left: 0; */
        z-index: var(--col-conversation-z-index);
    }

    .main-view .col-info {
        position: fixed;
        top: 0;
        left: -300px;
        /* left: 0; */
        z-index: var(--col-info-z-index);
    }

    .col-info .col-info-wrap {
        position: relative;
        z-index: 100;
    }

    .main-view .main-overlay.show,
    .col-info .col-info-action,
    .col-conversation .col-conversation-mheader {
        display: block;
    }

    .col-info .history-tab,
    .col-info .history-container,
    .col-info ._show_modal_profile,
    .col-conversation .col-conversation-header {
        display: none;
    }

    .col-info .profile-container {
        text-align: left;
    }

    .col-conversation.mmenu-show,
    .col-info.mmenu-show {
        left: 0;
    }

    .main-view .col-chat {
        padding: 0 20px;
    }

    .main-view .chat-list .cl-bot {
        padding: 10px 60px 10px 40px;
    }

    .main-view .chat-enter {
        padding: 20px;
        bottom: 25px;
    }

    .main-view .chat-list {
        bottom: 160px;
        max-height: calc(100vh - 230px);
    }

    .main-view .main-nav {
        display: block;
    }

    #myinfor_modal .myinfor-head-box {
        padding: 20px 25px;
    }

    #myinfor_modal .myinfor-body-box {
        padding: 20px 25px;
    }

    #myinfor_modal .myinfor-head-box .mhb-img {
        display: block;
        margin: 0 auto 15px;
    }

    #myinfor_modal .myinfor-head-box .mhb-text {
        width: 100%;
    }

    #myinfor_modal .myinfor-head-box .mhb-text h2 {
        font-size: 20px;
    }

    #myinfor_modal .myinfor-head-box .mhb-text p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    #myinfor_modal .myinfor-body-box button {
        font-size: 14px;
        padding: 5px 20px 8px;
    }

    #myinfor_modal .myinfor-head-box .mhb-img {
        width: 140px;
        height: 140px;
    }

    #myinfor_modal .myinfor-body-box .mbb-sach p {
        font-size: 14px;
    }

    #myinfor_modal .myinfor-body-box .mbb-des p {
        font-size: 14px;
    }
}