#icoder_platform {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #f3f3f3;
}

.ico-welcome {
  padding: 100px;
  text-align: center;
  direction: ltr;
  font-size: 16pt;
  font-weight: bold;
  color: #00ffad;
  background: #000518;
}

.ico-btn {
  width: fit-content;
  margin: auto;
  font-size: 10pt;
  padding: 6px 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 100ms;
}

.btn-default {
  background: #f5f5f5;
}

.ico-btn:hover {
  background: #ff4c8a;
  color: #fff;
}

[data-action="copy"] {
  cursor: copy;
}

/* alert start */
#icoder_show_alert {
  position: fixed;
  top: 40px;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  z-index: 100000000000000;
  direction: ltr;
}

#icoder_show_alert p {
  width: fit-content;
  padding: 8px 20px;
  font-size: 12pt;
  border-radius: 5px;
  text-align: center;
  line-height: 28px;
  direction: ltr;
  display: none;
}

#icoder_show_alert._success p {
  background: #1fff1f;
}

#icoder_show_alert._danger p {
  background: #ff1f7c;
}

#icoder_show_alert._warning p {
  background: #ffb01f;
}

#icoder_show_alert._info p {
  background: #00dcff;
}

@media screen and (max-width: 768px) {
  #icoder_show_alert {
    top: 0;
  }

  #icoder_show_alert._success p {
    font-size: 11pt;
    line-height: 20px;
  }
}

/* alert end */

/* COMPONENTS: */
/* component btn start */

.icoder-cmp-btn {
  background: #f1f1f1 !important;
  text-align: center !important;
  padding: 3px 16px !important;
  height: 40px;
  width: fit-content !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  line-height: 30px !important;
  color: #000 !important;
  font-size: 10pt;
}

.icoder-cmp-btn[data-action="custom"]:hover,
.icoder-cmp-btn[data-action="custom"].select {
  background: #dedcdc !important;
}
.icoder-cmp-btn[data-action="success"]:hover,
.icoder-cmp-btn[data-action="success"].select {
  background: #05ff7e !important;
  border: 1px solid #04b158 !important;
}

.icoder-cmp-btn[data-action="warning"]:hover,
.icoder-cmp-btn[data-action="warning"].select {
  background: #fff705 !important;
  border: 1px solid #b19504 !important;
}

.icoder-cmp-btn[data-action="danger"]:hover,
.icoder-cmp-btn[data-action="danger"].select {
  background: #ff3434 !important;
  border: 1px solid #ff0000 !important;
  color: #fff !important;
}

.icoder-cmp-btn[data-action="info"]:hover,
.icoder-cmp-btn[data-action="info"].select {
  background: #05daff !important;
  border: 1px solid #04b19b !important;
}

/* component btn end */
/* component tab start */

.icoder-cmp-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 94%;
  margin: auto;
  direction: ltr;
}

.icoder-cmp-tab .icoder-cmp-tab-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  padding: 10px 30px;
  border-radius: 8px;
  width: 100%;
  justify-content: space-around;
  border: 1px solid #ddd;
}

.icoder-cmp-tab .icoder-cmp-tab-menu .icoder-cmp-tab-item {
  cursor: pointer;
  width: 100%;
  max-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
  transition: all 100ms;
  margin-top: 20px;
  font-size: 10pt;
}
.icoder-cmp-tab .icoder-cmp-tab-menu .icoder-cmp-tab-item[data-type="submit"] {
  margin-top: 20px;
  margin-bottom: 10px;
}

.icoder-cmp-tab .icoder-cmp-tab-menu .icoder-cmp-tab-item:hover,
.icoder-cmp-tab .icoder-cmp-tab-menu .icoder-cmp-tab-item.select {
  border-bottom: 2px solid #0066ff;
}

.icoder-cmp-tab .icoder-cmp-tab-page {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 2px 18px 50px 0px rgba(0, 0, 0, 0.15);
  padding: 10px 30px;
  border-radius: 8px;
  width: 100%;
  justify-content: space-around;
  border-bottom: 1px solid #ddd;
  margin-top: 7px;
  border: 1px solid #ddd;
}

.icoder-cmp-tab .icoder-cmp-tab-page .icoder-cmp-tab-item {
  display: none;
  overflow-y: auto;
  align-items: start;
  width: 100%;
}

.icoder-cmp-tab .icoder-cmp-tab-page .icoder-cmp-tab-item.select {
  display: flex;
}

/* component tab end */

/* component form start */
.icoder-cmp-form {
  width: calc(100% - 33px);
  display: flex;
  align-items: start;
  direction: ltr;
  gap: 25px;
  justify-content: start;
  flex-direction: column;
  padding: 10px;
}
.icoder-cmp-tab
  .icoder-cmp-tab-page
  .icoder-cmp-tab-item[data-tabname="login"] {
  overflow: hidden;
}
.icoder-cmp-form .icf-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: start;
  width: 100%;
  font-size: 10pt;
}

.icoder-cmp-form .icf-row label {
  color: #1a1a1a;
  line-height: 20px;
}

.icoder-cmp-form .icf-row input {
  width: 100%;
  margin: 0 5px;
  border: 1px solid #cccccc;
  background: #fdfdfd;
  height: 30px;
  border-radius: 5px;
  padding: 0 10px;
  text-align: left;
}

.icoder-cmp-form .icf-row textarea {
  width: 100%;
  margin: 0 5px;
  border: 1px solid #cccccc;
  background: #fdfdfd;
  border-radius: 5px;
  text-align: left;
  min-height: 80px;
  padding: 10px;
}

.icoder-cmp-form .icf-row input[type="radio"],
.icoder-cmp-form .icf-row input[type="checkbox"] {
  width: auto;
  height: auto;
  border: none !important;
  outline: none !important;
  min-width: 16px;
  min-height: 16px;
  cursor: pointer;
}

.icoder-cmp-form .icf-row input[type="range"] {
  border: none !important;
  outline: none !important;
  cursor: move;
}

.icoder-cmp-form .icf-row input[type="file"] {
  padding-top: 9px;
}

.icoder-cmp-form .icf-row input[type="color"] {
  width: auto;
  min-width: 100px;
  cursor: pointer;
}

.icoder-cmp-form .icf-row input:focus,
.icoder-cmp-form .icf-row textarea:focus {
  background: #e7f2fe;
  outline: 1px solid rgb(0, 81, 255);
}

.icoder-cmp-form .icf-row[data-action="danger"] input,
.icoder-cmp-form .icf-row[data-action="danger"] textarea {
  outline: 1px solid red;
  background: #fff3f3;
}

.icoder-cmp-form .icf-row[data-action="success"] input,
.icoder-cmp-form .icf-row[data-action="success"] textarea {
  outline: 1px solid #0fbc00;
  background: #f5fff3;
}

.icoder-cmp-form .icf-row[data-action="warning"] input,
.icoder-cmp-form .icf-row[data-action="warning"] textarea {
  outline: 1px solid #ffeb00;
  background: #fffce7;
}

.icoder-cmp-form .icf-row[data-action="select"] input,
.icoder-cmp-form .icf-row[data-action="select"] textarea {
  outline: 1px solid #ffeb00;
  background: #fffce7;
}
@media screen and (min-width: 840px) {
  .icoder-cmp-form .icf-row textarea,
  .icoder-cmp-form .icf-row input {
    width: 60%;
  }
}
/* component form end */

/* use case */

.ico-boxshadow {
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
}

.ico-margin-a {
  margin: auto;
}

.ico-flex {
  display: flex;
}

.ico-flex-center {
  justify-content: center;
}

.ico-align-center {
  align-items: center;
}

.ico-width-fit {
  width: fit-content;
}

.ico-pointer {
  cursor: pointer;
}

.ico-radius-5 {
  border-radius: 5px;
}

.ico-radius-10 {
  border-radius: 10px;
}

.ico-radius-15 {
  border-radius: 15px;
}
.ico-cmp-modal-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #00000021;
  display: none;
}

.ico-cmp-modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #d3d3d3;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  padding: 32px 5px 5px 5px;
}

.ico-cmp-modal .modal-body {
  width: 100%;
}

.ico-cmp-modal[data-name="user_plans"] {
  width: 100%;
  height: 100%;
  top: 0;
  transform: unset;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 11;
}
table td {
  vertical-align: middle !important;
}
.ico-cmp-modal[data-name="profile"] .modal-body {
  overflow-y: auto;
}

.ico-cmp-modal .modal-close {
  position: absolute;
  left: 0;
  top: 0;
  margin: 5px;
  opacity: 0.7;
  cursor: pointer;
  transition: all 300ms;
}
.ico-cmp-modal .modal-close img {
  background: #fff;
  padding: 1px;
  border-radius: 4px;
  border: 1px solid #00000094;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
}

#site-header,
.page-header,
#site-footer {
  display: none;
}

#icoder_chatbot {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f5f7fa;
}

textarea:focus,
input:focus {
  border: unset;
  outline: unset;
}

textarea::placeholder,
input::placeholder {
  opacity: 0.5;
  font-size: 10.5pt;
  font-weight: normal;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  background-color: transparent;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 4px;
  cursor: move;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #8f8f8f;
}

.ico-container {
  display: flex;
  justify-content: start;
  align-items: center;
  direction: ltr;
  width: 100%;
  height: 100%;
  transition: all 1s;
}

.ico-chatroom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.ico-chatroom .ico-chat {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  overflow-y: scroll;
  direction: ltr;
  margin: 0;
  width: 84%;
  margin-top: 40px;
  margin-bottom: 10px;
  height: calc(100% - 100px);
  padding: 17px;
  max-width: 1200px;
}

.ico-chatroom .ico-chat-welcome {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 12px;
  width: 100%;
  margin: auto;
  direction: ltr;
}

.ico-chatroom .ico-chat-welcome .t1 {
  font-size: 18pt;
  font-weight: bold;
  color: #6b7280;
}

.ico-chatroom .ico-chat-welcome .t2 {
  font-size: 22pt;
  text-align: center;
  line-height: 41px;
  font-weight: bold;
  color: #555961;
}

.ico-chatroom .ico-chat-welcome .t3 {
  color: #646262;
  font-size: 11pt;
  height: 24px;
  line-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin: 0;
}

.ico-chatroom .ico-chat-welcome img {
  width: 28px;
  height: auto;
}

.ico-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.ico-row-right {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.ico-chatroom .ico-enterchat {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 10%);
  margin-bottom: 10px;
}

.ico-chatroom .ico-enterchat textarea {
  border: unset;
  font-size: 11pt;
  height: 50px;
  transition: all 300ms;
}

.ico-chatroom .ico-enterchat textarea:focus {
  border: unset;
  font-size: 10pt;
  height: 85px;
}

.ico-chatroom .ico-enterchat .warning {
  font-size: 8pt;
  color: #989898;
}

.ico-sidebar .handler-sidebar {
  position: relative;
  display: none;
  top: calc(50% - 30px);
  right: -15px;
  flex-direction: column;
  height: fit-content;
  cursor: pointer;
}

.ico-sidebar.open .handler-sidebar {
  right: -10px;
}

.ico-sidebar .handler-sidebar span {
  width: 5px;
  height: 30px;
  background: #ccc;
  transition: all 100ms;
}

.ico-sidebar .handler-sidebar:hover span {
  height: 40px;
  background: #969595;
}

.ico-sidebar .handler-sidebar .line1 {
  border-radius: 3px 3px 0 0;
}

.ico-sidebar .handler-sidebar .line2 {
  border-radius: 0 0 3px 3px;
}

.ico-sidebar.open .handler-sidebar:hover .line1 {
  transform: rotate(6deg);
}

.ico-sidebar.open .handler-sidebar:hover .line2 {
  transform: rotate(-6deg);
}

.ico-sidebar .handler-sidebar:hover .line1 {
  transform: rotate(-6deg);
}

.ico-sidebar .handler-sidebar:hover .line2 {
  transform: rotate(6deg);
}

.ico-enterchat-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 10px;
  position: relative;
}

.ico-enterchat-panel .ico-panel-right {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  width: 50%;
}

.ico-enterchat-panel .ico-panel-left {
  display: flex;
  justify-content: end;
  align-items: center;
  width: fit-content;
  gap: 2px;
}

.ico-enterchat-panel .submit {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  padding: 0;
  background: #eff0f2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
}

.ico-enterchat-panel .submit:hover {
  background: #bdc3ce;
}

.ico-enterchat-panel .submit:hover img {
  opacity: 1;
}

.ico-enterchat-panel .submit img {
  opacity: 0.7;
  width: 20px;
  height: auto;
  cursor: pointer;
}

.ico-enterchat-panel .submit img.process {
  display: none;
}

.ico-enterchat-panel .submit img.send {
  display: block;
}

.ico-enterchat-panel .submit.process img.send {
  display: none;
}

.ico-enterchat-panel .submit.process img.process {
  border-radius: 100%;
  width: 40px;
  cursor: progress;
  display: block;
}

.ico-enterchat-panel .ico-icon-left {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
  cursor: pointer;
}

.ico-enterchat-panel .ico-icon-left input {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}

.ico-enterchat-panel .ico-icon-left img {
  opacity: 0.7;
  width: 20px;
  height: auto;
  cursor: pointer;
}

.ico-enterchat-panel .ico-icon-left:hover {
  background: #eff0f2;
}

.ico-enterchat-panel .ico-icon-left.select {
  background: #b8f7ff;
}

.ico-enterchat-panel .icoder-toolbar {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: fit-content;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  direction: ltr;
  opacity: 0.5;
  display: none;
}

.ico-enterchat-panel .icoder-toolbar img {
  width: 18px;
  opacity: 0.7;
  cursor: pointer;
}

.ico-enterchat-panel .icoder-toolbar .copy {
  width: 16px;
}

.icoder-toolbar:hover {
  opacity: 1;
}

.icoder-toolbar img:hover {
  opacity: 1;
}

.ico-enterchat-panel .ico-cmp-select {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 40px;
  border-radius: 9px;
  padding: 0 5px;
  transition: all 300ms;
  cursor: pointer;
  position: relative;
}

.ico-cmp-select-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.ico-cmp-select-options {
  z-index: 2;
}

.ico-enterchat-panel .ico-cmp-select:hover {
  background: #eff0f2;
}

.ico-enterchat-panel .ico-cmp-select .arrow {
  width: 18px;
  margin-left: 8px;
  opacity: 0.6;
}

.ico-enterchat-panel .ico-cmp-select .ico-cmp-select-choose {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.ico-enterchat-panel .ico-cmp-select .ico-cmp-select-choose .ico-selected {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.ico-enterchat-panel .ico-cmp-select .ico-cmp-select-choose .t {
  height: 40px;
  line-height: 43px;
  font-size: 9pt;
  color: #373737;
  overflow: hidden;
}

.ico-enterchat-panel .ico-cmp-select .ico-cmp-select-choose img {
  width: 18px;
}

.ico-enterchat-panel .ico-cmp-select-options {
  position: absolute;
  background: #fff;
  bottom: 46px;
  max-height: calc(100vh - 200px);
  border-radius: 15px;
  padding: 10px;
  right: -18px;
  left: 0;
  margin: auto;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  width: 250px;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.ico-enterchat-panel .ico-cmp-select-options .ico-cmp-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  overflow-y: auto;
  padding: 6px;
}

.ico-enterchat-panel .ico-cmp-select-options .ico-row {
  padding: 3px 10px;
  border-radius: 5px;
  margin: 0;
  border: 1px solid #ffffff;
}

.ico-enterchat-panel .ico-cmp-select-options .ico-row.select,
.ico-enterchat-panel .ico-cmp-select-options .ico-row:hover {
  border: 1px solid #6e6969;
  background: #e8feff;
}

.ico-enterchat-panel .ico-cmp-select-options .ico-row .t {
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  direction: ltr;
  font-size: 10pt;
}

.ico-chatroom-header {
  display: flex;
  align-items: center;
  height: 35px;
  width: calc(100% - 20px);
  position: absolute;
  top: 0;
  right: 0;
  justify-content: space-between;
  margin: 10px;
}

.ico-chatroom-header .ico-header-left {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 90%;
  gap: 13px;
  height: 100%;
}

.ico-feature-plugins {
  display: flex;
  height: 100%;
  justify-content: start;
  align-items: center;
  cursor: pointer;
}

.ico-feature-plugins:hover .ico-cmp-select {
  background: #e5e5e5;
}

.ico-chatroom-header .ico-cmp-select {
  justify-content: start;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  height: 30px;
  padding: 0 21px;
  transition: all 300ms;
  display: flex;
}

.ico-chatroom-header .ico-cmp-select img {
  width: 15px;
}

.ico-feature-plugins .ico-cmp-select img {
  width: 24px;
}

.ico-feature-plugins .ico-selected {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}

.ico-feature-plugins .ico-selected > img {
  width: 16px;
}

.ico-chatroom-header .ico-cmp-select .ico-label {
  font-size: 11pt;
  color: #515151;
}

.ico-chatroom-header .ico-cmp-select-options {
  display: none;
}

.ico-chatroom-header .ico-login {
  margin: 0;
  background: #e5e5e5;
  border-radius: 8px;
  height: 30px;
  padding: 0 21px;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
  cursor: pointer;
  font-size: 10pt;
  display: none;
}

.ico-chatroom-header .ico-login:hover {
  background: #c5c5c5;
}

.ico-chatroom-header .ico-header-right {
  width: 10%;
  height: 100%;
}

.ico-feature-plugins .ico-cmp-select-options {
  position: absolute;
  background: #fff;
  top: 38px;
  max-height: calc(100vh - 200px);
  border-radius: 15px;
  padding: 10px;
  left: 0;
  right: unset;
  margin: auto;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  width: 220px;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.ico-feature-plugins .ico-cmp-select-options .ico-cmp-list {
  overflow-y: auto;
}

.ico-feature-plugins .ico-cmp-select-options .ico-row {
  margin: 5px;
  padding: 6px 10px;
  border-radius: 9px;
  border: 1px solid #ffffff;
}

.ico-feature-plugins .ico-cmp-select-options .ico-row:hover,
.ico-feature-plugins .ico-cmp-select-options .ico-row.select {
  background: #e8feff;
  border: 1px solid #6e6969;
}

.ico-feature-plugins .ico-cmp-select-options .ico-sec {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2px;
}

.ico-feature-plugins .ico-cmp-select-options .ico-sec .ico-plugin-name {
  font-size: 9pt;
}

.ico-feature-plugins .ico-cmp-select-options .ico-sec img {
  display: none;
}

.ico-chatroom-header .ico-newpage {
  margin: 0;
  border-radius: 8px;
  height: 30px;
  padding: 0 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
  cursor: pointer;
  font-size: 10pt;
}

.ico-chatroom-header .ico-newpage:hover {
  background: #e5e5e5;
}

.ico-header-right .ico-cmp-select {
  margin-top: 3px;
  display: none;
}

.ico-header-right .ico-selected {
  height: auto;
  width: auto;
  padding: 0;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin-right: 8px;
  background: #fff;
  cursor: pointer;
  transition: all 200ms;
}

.ico-header-right .ico-selected:hover {
  box-shadow: 0px 0px 50px 8px rgb(0 0 0 / 12%);
}

.ico-header-right .ico-selected img {
  width: 40px;
  border-radius: 100%;
}

.ico-header-right .ico-cmp-select-options {
  top: 45px;
  right: 30px;
  position: absolute;
  background: rgb(255, 255, 255);
  max-height: calc(-200px + 100vh);
  border-radius: 15px;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 50px 0px;
  width: 220px;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.ico-header-right .ico-cmp-select-options .ico-cmp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  font-size: 10pt;
}

.ico-header-right .ico-cmp-select-options .ico-cmp-list .ir1 {
  border-bottom: 1px solid #e3dddd;
  padding: 20px 9px;
  margin: 0;
}

.ico-header-right .ico-cmp-select-options .ico-cmp-list .ir1 img {
  border-radius: 100%;
  width: 34px;
}

.ico-header-right .ico-cmp-select-options .ico-cmp-list .ir1 .t {
  color: #787878;
}

.ico-header-right .ico-cmp-select-options .ico-cmp-list .ir2 {
  padding: 11px 9px;
  margin: 0;
  transition: all 300ms;
  cursor: pointer;
}

.ico-header-right .ico-cmp-select-options .ico-cmp-list .ir2:hover {
  background: #eee;
}

.ico-header-right .ico-cmp-select-options .ico-cmp-list .ir2 img {
  width: 24px;
  opacity: 0.7;
}

.ico-header-right .ico-cmp-select-options .ico-cmp-list .ir2 .t {
  color: #232323;
}

.ico-sidebar {
  background: #ffffff;
  display: flex;
  width: 0;
  transition: all 100ms;
  height: 96%;
  margin: 1%;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 10%);
  position: absolute;
  left: 3px;
  z-index: 2;
}

.ico-slide-mobile-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #00000021;
  display: none;
}

.ico-sidebar.open {
  width: 250px;
}

.ico-sidebar.mobile {
  background: #ffffff;
  display: flex;
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ico-sidebar-body {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.ico-sidebar-body .ico-btn.il {
  width: 95%;
  text-align: center;
  margin: 5px;
  background: #e3e3e3;
  transition: all 300ms;
  padding: 10px;
  border-radius: 9px;
  font-size: 10pt;
}

.ico-sidebar-body .ico-btn.il:hover {
  background: #d0cfcf;
}

.ico-sidebar-body .ico-feature-newpage {
  margin: 0;
  border-radius: 8px;
  height: 30px;
  padding: 0 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
  cursor: pointer;
  font-size: 10pt;
  opacity: 0.8;
}

.ico-sidebar-body .ico-feature-newpage img {
  width: 21px;
}

.ico-sidebar-body .ico-feature-newpage:hover {
  opacity: 1;
}

.ico-sidebar-body .ico-row {
  margin: 0;
}

.ico-sidebar-body .ico-feature-plugins {
  width: 190px;
  margin: 0;
  height: 30px;
  padding: 0 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
  cursor: pointer;
}

.ico-sidebar-body .ico-feature-plugins .ico-cmp-select {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  border-radius: 8px;
}

.ico-sidebar-body .ico-feature-plugins .ico-selected img {
  opacity: 0.7;
}

.ico-sidebar-body .ico-feature-plugins .ico-selected .ico-label {
  font-size: 11pt;
}

.ico-sidebar-body .ico-feature-plugins .ico-cmp-select-options {
  display: none;
  top: 47px;
  right: 0px;
  left: 0px;
  margin: auto;
}

.ico-sidebar-body .ico-feature-search {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
  cursor: pointer;
  font-size: 10pt;
  opacity: 0.8;
}

.ico-sidebar-body .ico-feature-search .ico-search-open:hover {
  opacity: 1;
}

.ico-sidebar-body .ico-feature-search img {
  width: 25px;
}

.ico-sidebar-top[data-action="search"] .ico-feature-newpage {
  display: none;
}

.ico-sidebar-top[data-action="search"] .ico-feature-plugins {
  display: none;
}

.ico-sidebar-top[data-action="search"] .ico-search-open {
  display: none;
}

.ico-sidebar-top .ico-history-search {
  display: none;
}

.ico-sidebar-top[data-action="search"] .ico-history-search {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.ico-sidebar-top[data-action="search"] .ico-history-search input {
  font-size: 10pt;
  border-radius: 7px;
  padding: 9px 5px;
  border: 1px solid #ddd;
  color: #262626;
  width: 220px;
}

.ico-sidebar-top[data-action="search"] .ico-history-search input::placeholder {
  font-size: 8.5pt;
}

.ico-sidebar-top[data-action="search"] .ico-history-search img {
  opacity: 0.7;
}

.ico-sidebar-top[data-action="search"] .ico-history-search img:hover {
  opacity: 1;
}

.ico-sidebar-top {
  height: calc(100% - 55px);
}

.ico-sidebar-top .ic-chat {
  margin-top: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  height: calc(100% - 54px);
  padding: 5px;
}

.ico-sidebar-top .ico-conversations-list {
  width: 100%;
  height: 100%;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.ico-sidebar-top .ico-conversations-list input {
  padding: 10px;
  border-radius: 8px;
  border: unset;
  background: #f1f1f9;
  font-size: 10pt;
  cursor: pointer;
  color: #3b3b3b;
  transition: all 300ms;
  border: 1px solid #e8feff;
}

.ico-sidebar-top .ico-conversations-list input.select,
.ico-sidebar-top .ico-conversations-list input:hover {
  border: 1px solid #6e6969;
  background: #e8feff;
}

.ico-cmp-modal .modal-close:hover {
  opacity: 1;
}

.ico-chating {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 12px;
  width: 100%;
  direction: ltr;
  gap: 30px;
}

.ico-chating .ico-ai[data-action="pending"] {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.ico-chating .ico-ai[data-action="pending"] span {
  height: 12px;
  background: #ddd;
  border-radius: 10px;
  animation: ai_pending 1s linear infinite;
}

@keyframes ai_pending {
  0% {
    background: #ddd;
  }

  50% {
    background: #c2c2c2;
  }

  100% {
    background: #ddd;
  }
}

.ico-chating .ico-user {
  width: fit-content;
  background: #efeded;
  border-radius: 9px;
  border: 1px solid #9e9b9b;
  font-size: 10pt;
  padding: 13px 15px;
  line-height: 28px;
}

.ico-chating .ico-ai {
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  border: 1px solid #9e9b9b;
  font-size: 10pt;
  padding: 13px 15px;
  line-height: 28px;
  overflow: auto;
}

.handler-mobile-sidebar img {
  cursor: pointer;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 8px;
  transition: all 300ms;
}

.handler-mobile-sidebar img:hover {
  background: #e5e5e5;
}

.handler-mobile-sidebar[data-action="open"] .ms-close {
  display: none;
}

.handler-mobile-sidebar[data-action="open"] .ms-open {
  display: block;
}

.handler-mobile-sidebar[data-action="close"] .ms-open {
  display: none;
}

.handler-mobile-sidebar[data-action="close"] .ms-close {
  display: block;
}

#icoder_module_login input[type="submit"]:hover {
  background: #d9d9d9 !important;
  border: #fff !important;
}

.ico-ai code {
  width: calc(100% - 20px);
  display: block;
  background: #e3e3e3;
  border-radius: 5px;
  direction: ltr;
  text-align: left;
  padding: 10px;
  margin: 5px;
}

.ico-ai h1 {
  font-size: 15pt;
  margin-top: 35px;
  font-weight: bold;
  line-height: 28px;
}

.ico-ai h2 {
  font-size: 14pt;
  margin-top: 35px;
  font-weight: bold;
  line-height: 28px;
}

.ico-ai h2 {
  font-size: 14pt;
  margin-top: 35px;
  font-weight: bold;
  line-height: 28px;
}

.ico-ai h3 {
  font-size: 13pt;
  margin-top: 35px;
  font-weight: bold;
  line-height: 28px;
}

.ico-ai p {
  font-size: 10pt;
  line-height: 32px;
  margin: 10px;
  color: #363535;
}

.ico-ai button {
  padding: 7px 30px;
  background: #defffe;
  border: 1px solid #000;
  color: #000;
  margin: 30px auto;
  display: block;
  border-radius: 9px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  transition: all 300ms;
}

.ico-ai button:hover {
  background: #bcfffd;
  color: #000;
}

.ico-ai li {
  background: #dddddd69;
  padding: 5px;
  border-radius: 5px;
  font-size: 9pt;
  margin: 20px 0;
}

.ico-ai strong {
  color: red;
  font-size: 10pt;
}

.ico-ai img {
  max-width: 150px;
  border-radius: 12px;
  border: 1px solid #000;
  box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 10%);
  margin: 10px 0;
}

.ico-ai ol,
.ico-ai ul {
  padding-right: 13px;
}

.ico-ai .ico-msg-warning {
  background: #ffdb00;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}

.ico-cmp-modal[data-name="admin"] .modal-body {
  height: 100%;
}
.ico-cmp-modal[data-name="admin"] .icoder-admin-panel {
  height: 100%;
}
.ico-cmp-modal[data-name="admin"] .icoder-cmp-tab {
  height: 100%;
  align-items: start;
  justify-content: start;
}
.ico-cmp-modal[data-name="admin"] .ico-login-pages {
  height: calc(100% - 78px);
  justify-content: start;
  align-items: start;
}
.ico-cmp-modal[data-name="admin"] .icoder-cmp-tab-item {
  overflow: auto;
  max-height: 100%;
  padding: 5px;
}

/* >864 */
@media screen and (min-width: 864px) {
  .ico-chating {
    gap: 50px;
  }

  .ico-chatroom .ico-chat {
    margin: 10px;
    width: calc(80% - 20px);
    padding: 17px;
    margin-top: 50px;
  }

  .ico-ai ol,
  .ico-ai ul {
    padding-right: 25px;
  }

  .ico-ai img {
    max-width: 350px;
    margin: 30px 0;
  }

  .ico-ai strong {
    color: red;
    font-size: 13pt;
  }

  .ico-ai li {
    font-size: 12pt;
  }

  .ico-ai h1 {
    font-size: 17pt;
  }

  .ico-ai h2 {
    font-size: 16pt;
  }

  .ico-ai h3 {
    font-size: 14pt;
  }

  .ico-ai p {
    font-size: 12pt;
  }

  .ico-chatroom .ico-enterchat textarea {
    font-size: 13pt;
  }

  .ico-chatroom .ico-chat-welcome img {
    width: 32px;
  }

  .ico-chatroom .ico-chat-welcome .t3 {
    font-size: 18pt;
    margin-top: 6px;
  }

  .ico-chatroom .ico-chat-welcome .t2 {
    font-size: 32pt;
    text-align: center;
    line-height: 41px;
  }

  .ico-chatroom .ico-chat-welcome .t1 {
    font-size: 30pt;
  }

  .ico-chatroom .ico-chat-welcome {
    width: 80%;
    gap: 20px;
  }

  .ico-enterchat-panel .ico-cmp-select-options {
    width: 125%;
  }

  .ico-enterchat-panel .ico-cmp-select .ico-cmp-select-choose img {
    width: 18px;
  }

  .ico-enterchat-panel .ico-cmp-select .ico-cmp-select-choose .t {
    font-size: 9pt;
  }

  .ico-enterchat-panel .ico-cmp-select {
    padding: 0 5px;
  }

  .ico-enterchat-panel .submit {
    width: 40px;
    height: 40px;
  }

  .ico-enterchat-panel .submit img {
    width: 26px;
  }

  .ico-enterchat-panel .ico-icon-left img {
    width: 26px;
  }

  .ico-enterchat-panel .ico-icon-left {
    width: 40px;
    height: 40px;
  }

  .ico-enterchat-panel .ico-panel-left {
    gap: 10px;
    width: 50%;
  }

  textarea::placeholder,
  input::placeholder {
    font-size: 12pt;
  }

  .ico-chatroom .ico-chat {
    justify-content: start;
  }

  .ico-chating .ico-user,
  .ico-chating .ico-ai {
    font-size: 11pt;
    padding: 20px 30px;
    line-height: 31px;
  }

  .ico-sidebar {
    transition: all 500ms;
  }

  .ico-feature-plugins .ico-cmp-select-options .ico-sec .ico-plugin-name {
    font-size: 10pt;
  }

  .ico-sidebar-body .ico-btn.il {
    font-size: 11px;
  }

  .ico-sidebar-top[data-action="search"]
    .ico-history-search
    input::placeholder {
    font-size: 9.5pt;
  }

  .ico-header-right .ico-cmp-select {
    display: flex;
  }

  .ico-chatroom-header .ico-header-right {
    width: 50%;
  }

  .ico-chatroom-header .ico-header-left {
    width: 50%;
  }

  .ico-chatroom-header .ico-login {
    display: flex;
  }

  .ico-slide-mobile-bg {
    display: none !important;
    background: transparent !important;
  }

  .ico-sidebar {
    position: relative;
    left: unset;
    z-index: unset;
  }

  .ico-sidebar.open {
    width: 340px;
  }

  .ico-sidebar .handler-sidebar {
    display: flex;
  }

  .handler-mobile-sidebar {
    display: none;
  }

  .ico-chatroom-header .ico-cmp-select {
    display: flex;
  }
}

.icoder-admin-panel {
  width: calc(100% - 20px);
  margin: 10px;
}

.icoder-admin-panel .icoder-cmp-tab {
  width: 100%;
}
.ico-cmp-table td {
  text-align: center;
  direction: ltr;
  vertical-align: middle;
  font-size: 9pt;
  color: #000;
}
.ico-cmp-table .cmp-table-header td {
  font-weight: bold;
}
.ico-cmp-table td input {
  text-align: center;
  direction: ltr;
}

.icoder-admin-panel .ico-cmp-table .cmp-table-items input {
  width: 100px;
  height: 32px;
}

.icoder-admin-panel .ico-admin-models .ico-btn {
  margin: unset;
}

.icoder-admin-panel .ico-admin-models td.checkbox {
  width: 10px;
}

.icoder-admin-panel .ico-admin-models td.checkbox input {
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
}

.icoder-admin-panel .ico-admin-models input.display {
  min-width: 300px !important;
  direction: ltr;
}

.icoder-admin-panel .ico-admin-models {
  height: 400px;
  overflow-y: auto;
  padding: 10px;
}

.icoder-admin-panel .ico-admin-models tbody {
  position: sticky;
  top: 25px;
}

.icoder-admin-panel .icoder-cmp-tab-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.icoder-admin-panel .header-models {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: -5px;
  padding-bottom: 5px;
  background: #fff;
  width: 100%;
}

.icoder-admin-panel .header-models input {
  width: 300px;
  border-radius: 5px;
  background: #f9fdff;
  border: 1px solid #ddd;
}

.icoder-admin-panel .header-models input::placeholder {
  font-size: 10pt;
  color: #000;
}

.icoder-admin-panel .key {
  width: 20px;
}

.icoder-admin-panel .ico-admin-set-modal-img .link input {
  width: 100% !important;
  direction: ltr !important;
  min-width: 450px;
}

.icoder-admin-panel .ico-admin-set-modal-img table img {
  height: 25px;
}

.ico-cmp-modal[data-name="user_chat"] {
  width: 99%;
  height: 99%;
  background: #d8d8d8de;
}

.ico-cmp-modal[data-name="user_chat"] .ico-show-chat {
  width: 100%;
  height: 100%;
}

.icoder-admin-panel .ico-chating {
  width: 100%;
}
.ico-ai img {
  max-width: 250px;
  border-radius: 12px;
  border: 1px solid #000;
  box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 10%);
  margin: 30px 0;
}
.ico-admin-back {
  margin: 18px;
  background: #ddd;
  display: flex;
  padding: 10px;
  border-radius: 5px;
}

/* Login */
#icoder_module_login {
  max-width: 530px;
}

#icoder_module_login form {
  position: relative;
}

#icoder_module_login .ico-submit {
  margin: 15px auto;
  min-width: 100px;
}

#icoder_module_login input::placeholder {
  font-size: 10pt;
}

#icoder_module_login .icf-remember-me {
  flex-direction: row;
  justify-content: end;
  direction: rtl;
  align-items: center;
  gap: 5px;
}

#icoder_module_login [data-tabname="login"] [data-tabname="reset_password"] {
  position: absolute;
  bottom: -3px;
  right: -21px;
  color: blue;
  cursor: pointer;
  font-size: 10pt;
}
#icoder_module_login
  [data-tabname="login"]
  [data-tabname="reset_password"]:hover {
  color: rgb(0, 17, 255);
}
.ico-cmp-modal[data-name="login"] .modal-body {
  width: 100%;
  margin-top: 10px;
}
/* >768 */
@media screen and (width >= 768px) {
  .ico-cmp-modal[data-name="profile"] .modal-body {
    max-height: 86vh;
  }
  .ico-cmp-table td {
    font-size: 10pt;
  }
  .icoder-cmp-tab .icoder-cmp-tab-menu .icoder-cmp-tab-item {
    font-size: 12pt;
  }
  .icoder-cmp-form .icf-row {
    font-size: 11pt;
  }
  .icoder-cmp-btn {
    font-size: 11pt;
  }
  .ico-cmp-modal {
    width: auto;
    height: auto;
    top: 52%;
    padding: 40px 30px;
  }

  .ico-cmp-modal[data-name="login"] .modal-body {
    min-width: 500px;
  }

  .ico-cmp-modal .modal-close img {
    padding: 3px;
  }
}
