.app-main {
    flex: 3;
    height: 100%;
    background-color: var(--box-color);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}

.app-main-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: var(--box-color);
    border: 1px solid var(--box-border);
}

.chat-wrapper {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    font-family: "DM Sans", sans-serif;
    --chat-box-dark: #1b243b;
    --chat-box-light: #fff;
    --button-text: #fff;
    --toggle-ball: #fff;
    --list-item-active: #e5effb;
    --number-bg: #6895a3;
    --chat-input: #060415;
    --border-light: #8187a2;
    --info-box-color-1: #004dfc;
    --info-box-color-2: #00ba9d;
    --info-box-color-3: #715fc2;
    --info-box-color-4: #ff562d;
    --info-icon-bg-1: #b1c7fc;
    --info-icon-bg-2: #c6f0ea;
    --info-icon-bg-3: #d9d3ff;
    --info-icon-bg-4: #ffe1d4;
    --app-bg: #060415;
    --box-color: #12172d;
    --box-border: #477eff;
    --button-bg: #477eff;
    --text-dark: rgba(255, 255, 255, 1);
    --text-light: rgba(255, 255, 255, .6);
    --info-box-1: rgba(160, 186, 242, 0.5);
    --info-box-2: rgba(168, 240, 229, 0.55);
    --info-box-3: rgba(194, 168, 240, 0.34);
    --info-box-4: rgba(240, 185, 168, 0.34);
    --toggle-bg: #477eff;
    --toggle-bg-off: #6895a3;
    --message-box-2: #477eff;
    --message-box-1: #576c99;
    --logo-path-1: #477eff;
    --logo-path-2: #576c99;
    --box-shadow: rgba(18, 23, 45, .6) 0px 8px 24px;
    box-sizing: border-box;
    overflow: auto;
}

.chat-input {
    outline: none;
    height: 32px;
    flex: 1;
    margin-right: 4px;
    background-color: var(--chat-input);
    color: var(--text-dark);
    border-color: #c0c0ff;
    border-width: 1px;
    border-style: Solid;
}

.chat-input:placeholder {
    color: var(--text-light);
    font-size: 12px;
}

.chat-input-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow);
    margin-top: auto;
    border-radius: 6px;
    padding: 12px;
    background-color: var(--chat-input);
}

.input-wrapper {
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    flex: 1;
    overflow: hidden;
    padding: 0 6px 0 12px;
    justify-content: space-between;
    margin: 0 8px;
    background-color: var(--chat-input);
}

.emoji-btn {
    border: none;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    color: #ffca3e;
}

.chat-send-btn {
    height: 32px;
    color: #000;
    background-color: var(--button-bg);
    border: none;
    border-radius: 4px;
    padding: 0 32px 0 10px;
    font-size: 12px;
    background-position: center right 8px;
    background-repeat: no-repeat;
    background-size: 14px;
    line-height: 16px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs/%3E%3Cpath fill='%23000' d='M481.508 210.336L68.414 38.926c-17.403-7.222-37.064-4.045-51.309 8.287C2.86 59.547-3.098 78.551 1.558 96.808L38.327 241h180.026c8.284 0 15.001 6.716 15.001 15.001 0 8.284-6.716 15.001-15.001 15.001H38.327L1.558 415.193c-4.656 18.258 1.301 37.262 15.547 49.595 14.274 12.357 33.937 15.495 51.31 8.287l413.094-171.409C500.317 293.862 512 276.364 512 256.001s-11.683-37.862-30.492-45.665z'/%3E%3C/svg%3E");
}

.chat-attachment-btn {
    border: none;
    padding: 0;
    background-color: transparent;
    color: var(--text-light);
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.message-wrapper {
    display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
}

.message-wrapper.reverse {
    justify-content: flex-end;
}

.message-wrapper.reverse .message-box {
    background-color: var(--message-box-2);
    color: #fff;
}

.message-wrapper.reverse .message-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.message-wrapper.reverse .message-pp {
    order: 2;
}

.message-pp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    flex-shrink: 0;
}

.message-box {
    background-color: var(--message-box-1);
    box-shadow: var(--box-shadow);
    border-radius: 4px;
    padding: 10px;
    font-size: 12px;
    line-height: 16px;
    width: auto;
    max-width: 80%;
    color: var(--text-dark);
}

.message-box-wrapper {
    margin: 0 12px;
}

.message-box-wrapper span {
    font-size: 10px;
    line-height: 16px;
    color: var(--text-light);
    opacity: 0.6;
}

.app-right {
    flex-basis: 320px;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 24px;
    transition: 0.2s;
    overflow: auto;
}

.app-right .app-profile-box img {
    margin-bottom: 16px;
}

.app-right .app-profile-box-title {
    width: 100%;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.app-right .app-profile-box-title svg {
    width: 16px;
    margin-right: 6px;
}

.archive-btn {
    color: #fff;
    height: 32px;
    margin-top: 16px;
    border-radius: 4px;
    background-color: var(--button-bg);
    display: flex;
    align-items: center;
    font-size: 14px;
    border: none;
}

.archive-btn svg {
    margin-left: 6px;
}

.app-activity-box {
    border-radius: 10px;
    padding: 16px 16px 8px 16px;
    border: 1px solid var(--box-border);
    background-color: var(--box-color);
}

.activity-info-boxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.activity-info-box {
    width: 48%;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    display: flex;
}

.activity-info-box.time {
    background-color: var(--info-box-1);
    color: var(--info-box-color-1);
}

.activity-info-box.time .info-icon-wrapper {
    background-color: var(--info-icon-bg-1);
}

.activity-info-box.atendee {
    background-color: var(--info-box-2);
    color: var(--info-box-color-2);
}

.activity-info-box.atendee .info-icon-wrapper {
    background-color: var(--info-icon-bg-2);
}

.activity-info-box.meeting {
    background-color: var(--info-box-3);
    color: var(--info-box-color-3);
}

.activity-info-box.meeting .info-icon-wrapper {
    background-color: var(--info-icon-bg-3);
}

.activity-info-box.reject {
    background-color: var(--info-box-4);
    color: var(--info-box-color-4);
}

.activity-info-box.reject .info-icon-wrapper {
    background-color: var(--info-icon-bg-4);
}

.info-icon-wrapper {
    border-radius: 50%;
    margin-right: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-wrapper svg {
    width: 16px;
    height: 16px;
}

.info-text-wrapper span {
    display: block;
}

.info-text-upper {
    font-size: 14px;
    font-weight: 700;
}

.info-text-bottom {
    font-size: 10px;
    color: var(--text-light);
}

.activity-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
    margin-top: 16px;
}

.info-header-bold {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--text-dark);
}

.info-header-light {
    color: var(--text-light);
    font-size: 12px;
    line-height: 24px;
}

.activity-days-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 64px;
}

.day.current .chart {
    opacity: 1;
    transform: scale(1.2);
    transform-origin: bottom;
}

.day:first-child .chart {
    height: 20%;
}

.day:nth-child(3) .chart {
    height: 100%;
}

.day .chart {
    border-radius: 6px;
    height: 50%;
    width: 6px;
    background-color: var(--button-bg);
    opacity: 0.5;
    position: relative;
}

.day .chart::before {
    content: "";
    position: absolute;
    background-color: var(--button-bg);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: calc(100% + 4px);
}

.day span {
    margin-top: 20px;
    display: block;
    font-size: 10px;
    color: var(--text-light);
}

.app-right-bottom {
    position: fixed;
    bottom: 0;
    right: 24px;
    z-index: 1;
    background-color: var(--app-bg);
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-bottom: 10px;
}

.app-theme-selector {
    background-color: var(--box-color);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--box-border);
    display: flex;
    justify-content: flex-end;
    width: auto;
    padding: 10px;
    border-radius: 6px;
}

.theme-color {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #fff;
    cursor: pointer;
}

.theme-color.active {
    border: 1px solid #477eff;
    box-shadow: 0 0 0 3px rgba(71, 126, 255, 0.2);
}

.theme-color svg {
    width: 14px;
    height: 14px;
}

.theme-color.indigo {
    background-color: #18689c;
}

.theme-color.pink {
    background-color: #e8d5db;
}

.theme-color.dark {
    background-color: #060415;
}

.theme-color.navy-dark {
    background-color: #192734;
    color: #fff;
}

.open-left,
.open-right {
    position: absolute;
    padding: 0;
    display: none;
    width: 20px;
    height: 20px;
    background-color: var(--box-color);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--box-border);
    border-radius: 4px;
    top: 24px;
}

.open-left {
    left: 0;
}

.open-right {
    right: 0;
}

@media screen and (max-width: 1025px) {
    .app-left {
        transform: translateX(-100%);
        position: absolute;
        opacity: 0;
        top: 0;
        z-index: 2;
        height: 100%;
        width: 100%;
        transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
    }

    .app-left.open {
        transform: translateX(0);
        opacity: 1;
    }

    .open-left {
        display: block;
    }
}
@media screen and (max-width: 680px) {
    .app-right {
        transform: translateX(100%);
        position: absolute;
        opacity: 0;
        top: 0;
        z-index: 2;
        height: 100%;
        width: 100%;
        transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
    }

    .app-right.open {
        transform: translateX(0);
        opacity: 1;
    }

    .open-right {
        display: block;
    }

    .app-theme-selector {
        position: fixed;
        bottom: 0;
    }

    .app-main {
        height: calc(100% - 48px);
    }
}

.hide {
    display: none !important;
}

.m-netcall-video {
    position: absolute;
    width: 1x;
    height: 1px;
    background-color: #000;
}

.button {
    display: inline-block;
    position: relative;
    margin: 10px;
    padding: 0 20px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, .22);
    font: bold 12px/25px Arial, sans-serif;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .29), inset 1px 1px 1px rgba(255, 255, 255, .44);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .29), inset 1px 1px 1px rgba(255, 255, 255, .44);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .29), inset 1px 1px 1px rgba(255, 255, 255, .44);
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    -ms-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.button:hover {
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .29), inset 0px 0px 2px rgba(0, 0, 0, .5);
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .29), inset 0px 0px 2px rgba(0, 0, 0, .5);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .29), inset 0px 0px 2px rgba(0, 0, 0, .5);
}

.button:active {
    -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, .8);
    -moz-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, .8);
    box-shadow: inset 0px 0px 3px rgba(0, 0, 0, .8);
}

/* Big Button Style */

.big {
    padding: 0 40px;
    padding-top: 5px;
    height: 38px;
    text-transform: uppercase;
    font: 16px/18px Arial, sans-serif;
    margin: 5px;
}

.big span {
    display: block;
    text-transform: none;
    font: italic normal 12px/18px Georgia, sans-serif;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, .12);
}

/* Blue Color */
.blue {
    color: #fff;
    background: #4d66fe; /* Old browsers */
}

.rtc-input-line {
    border-bottom: 2px solid #4d66fe;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-size: 16px;
    color: #4d66fe;
    outline: 0;
    width: 250px;
}

.rtc-font-color {
    font-size: 12px;
    color: #4d66fe;
}

.rtc-title-font-color {
    font-size: 20px;
    color: #1a1c47;
}

table,
table tr th,
table tr td { border: 1px solid #0094ff; }

table {
    width: 800px;
    min-height: 25px;
    line-height: 25px;
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
}

.s-bottom-layer {
    color: #000;
    --bubble-width: 140px;
    --bubble-padding-left: 164px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    text-align: center;
    cursor: default;
    position: fixed;
    z-index: 302;
    bottom: 0;
    left: 0;
    height: 29px;
    padding-top: 1px;
    zoom: 1;
    margin: 0;
    line-height: 29px;
    background: #fff;
}

.s-bottom-layer-content {
    color: #000;
    --bubble-width: 140px;
    --bubble-padding-left: 164px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    cursor: default;
    line-height: 29px;
    visibility: visible;
    margin: 0 17px;
    text-align: center;
}

.lh {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font: 12px/1.14 "PingFang-SC-Medium";
    color: #000;
    --bubble-width: 140px;
    --bubble-padding-left: 164px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    cursor: default;
    line-height: 29px;
    visibility: visible;
    text-align: center;
    box-sizing: border-box;
    margin: 0 0 10px;
}

.text-color {
    --bubble-width: 140px;
    --bubble-padding-left: 164px;
    font-family: Arial, sans-serif;
    line-height: 29px;
    visibility: visible;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    color: #bbb;
}

.my_button {
    --antd-wave-shadow-color: #2468f2;
    --scroll-bar: 0;
    --s-icon-button-hover-color: #144bcc;
    -webkit-font-smoothing: antialiased;
    font: 14px/16px Arial, sans-serif;
    margin: 5;
    height: 30px;
    line-height: 30px;
    border: 2px solid #d4d6d9;
    outline: none;
    cursor: pointer;
    padding: 0 12px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    box-sizing: content-box;
    border-radius: 4px;
    transition: all .3s;
    color: #fff;
    background: #2468f2;
    border-color: transparent;
    margin-right: 5px;
}

body,
textarea,
input,
button,
select,
keygen,
legend {
    font: 12px/1.14 "PingFang-SC-Medium";
    color: #333;
    outline: 0;
}

a {
    color: #2fa4e7;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #157ab5;
    text-decoration: underline;
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

td,
th {
    padding: 0;
}
