html,
body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    color: #004C59;
}

div {
    box-sizing: border-box;
}

ul,
p {
    margin: 0;
}

.fx {
    display: flex;
}

.fx-c {
    justify-content: center;
}

.fx-end {
    justify-content: flex-end;
}

.fx-sa {
    justify-content: space-around;
}

.fx-sb {
    justify-content: space-between;
}

.fx-fw {
    flex-wrap: wrap;
}

.ai-fs {
    align-items: flex-start;
}

.ai-c {
    align-items: center;
}

.ai-fe {
    align-items: flex-end;
}

.ai-b {
    align-items: baseline;
}

.ai-str {
    align-items: stretch;
}

.fd-c {
    flex-direction: column;
}

.fd-row-reverse {
    flex-direction: row-reverse;
}

.al-c {
    align-content: center;
}

.fx-1 {
    flex: 1;
}

.list-area {
    overflow-y: scroll;
}

.list-area::-webkit-scrollbar {
    width: 0;
}

.list-area:hover::-webkit-scrollbar {
    background-color: #30A9BE;
}

.list-area:hover::-webkit-scrollbar-thumb:vertical {
    background-color: #30A9BE;
    border-radius: 4px;
}

.input-class {
    border: none;
    outline: none;
    font-size: 14px;
}

.default-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 46px;
    color: #fff;
    background: linear-gradient(158deg, #0197B0 0%, #004C59 100%), #0197B0;
    border-radius: 8px;
    box-sizing: border-box;
}

.toggle-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
}

.into-room-before {
    width: 300px;
    height: 300px;
}

.trans-show-item {
    width: 33.33%;
    height: 50vh;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-lang-box {
    width: fit-content;
    height: 32px;
    padding: 5px 20px;
    border-radius: 16px;
    color: #191919;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 76, 89, 0.5);
}

.pc-content {
    padding: 15px;
    max-width: 720px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 76, 89, 0.5);
}

.full-width-offcanvas.offcanvas {
    width: 100%;
    border-left: none;
}

.full-width-offcanvas.offcanvas {
    width: 100%;
    border-left: none;
}

.top-arrow-left {
    position: absolute;
    left: 24px;
}

.arrow-left {
    width: 20px;
    height: 20px;
    background: url('../img/arrow-left.svg');
    background-repeat: no-repeat;
}

.search-contact {
    width: 16px;
    height: 16px;
    background: url('../img/search-contact.svg');
}