/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;

  cursor: pointer;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.7em;
  background-color: rgb(110, 110, 110);
  color: #eeeeee;
  padding: 8px;

  border-radius: 5px;
  font-weight: bold;

  top: 200%;
  left: 50%;

  transform: translateX(-50%);

  opacity: 0;

  transition: all 0.3s;

  pointer-events: none;

  z-index: 100;
}

.tooltip:hover:after {
  opacity: 1;
}

/* CheckBox */
/* The container */
.checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container label {
  height: 29px;
  line-height: 29px;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 29px;
  width: 29px;
  border: 2px solid #bbb;

  border-radius: 5px;

  scale: 0.8;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #2196f3;
  border: 2px solid #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.dialog-content {
  color: var(--primaryColor);
}

.dialog-content .title {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 20px;
  color: var(--tableDataColor);
  margin-bottom: 20px;
}

.dialog-box-2 .title {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 20px;
  color: var(--tableDataColor);
  margin-bottom: 20px;
}

.dialog-content .sub-title {
  font-size: 0.9em;
  line-height: 20px;
  color: var(--tableDataColor);
  margin-top: 30px;
  margin-bottom: 20px;
}

.text-container {
  position: relative;
  display: inline-block;

  width: 100%;
}

.text-container .label {
  position: absolute;

  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: var(--textFieldLabelColor);

  top: 50%;
  left: 10px;
  transform: translateY(-50%);

  background-color: var(--containerColor);
  padding: 5px;

  transition: all 0.2s;

  pointer-events: none;
}

.text-container .label-float {
  top: 0%;
  left: 2px;
  transform: translateY(-60%);
  scale: 0.85;
}

.text-container input {
  padding: 15px;

  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: var(--tableDataColor);

  border: 1px solid var(--tableBorderColor);
  border-radius: 5px;

  background-color: transparent;

  width: 100%;
}

.text-container input:active,
.text-container input:focus {
  outline: 2px solid #1789e6;
}

.select-container {
  display: inline-block;
  position: relative;
}

.select-container input {
  cursor: pointer;
}

.select-container::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 2px solid var(--textFieldLabelColor);
  position: absolute;
  z-index: 5;

  border-top: none;
  border-left: none;

  transform: translateY(-80%) rotate(45deg);

  top: 50%;
  right: 15px;

  transition: 0.2s;

  pointer-events: none;
}

.dropdown-view::before {
  transform: translateY(-20%) rotate(225deg);
}

.select-container .options {
  position: absolute;
  margin-top: 5px;
  width: 100%;

  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;

  background-color: var(--containerColor);

  display: none;

  z-index: 50;

  max-height: 200px;
  overflow: auto;

  border: 1px solid var(--tableBorderColor);
}

.dropdown-view .options {
  display: block;
}

.select-container .options div {
  padding: 10px;
  font-size: 13px;
  cursor: pointer;
}

.select-container .options div:hover {
  padding: 10px;
  font-size: 13px;

  background-color: var(--topIconHoverColor);
}

.search-select-container {
  display: inline-block;
  position: relative;
}

.search-select-container .text-field-search-dropdown {
  caret-color: transparent !important;
}

.search-select-container .text-container input {
  cursor: pointer;
}

.search-select-container::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 2px solid var(--textFieldLabelColor);
  position: absolute;
  z-index: 5;

  border-top: none;
  border-left: none;

  transform: translateY(-80%) rotate(45deg);

  top: 50%;
  right: 15px;

  transition: 0.2s;

  pointer-events: none;
}

.search-select-container .options {
  position: absolute;
  margin-top: 5px;
  width: 100%;

  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;

  background-color: var(--containerColor);

  display: none;

  z-index: 1000;

  border: 1px solid var(--tableBorderColor);
}

.search-select-container .options .option-list {
  max-height: 160px;
  overflow: auto;
}

.search-select-container .options input {
  margin: 5px;
  padding: 10px;
  width: calc(100% - 10px);
  cursor: text;
}

.search-select-container .options .option-list div {
  padding: 10px;
  font-size: 13px;
  cursor: pointer;
}

.search-select-container .options .option-list div:hover {
  padding: 10px;
  font-size: 13px;

  background-color: var(--topIconHoverColor);
}

.dropdown-view::before {
  transform: translateY(-20%) rotate(225deg);
}

.dropdown-view .options {
  display: block;
}

/* Radio Button */

/* The container */
.radio-container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 29px;
  width: 29px;
  background-color: transparent;
  border-radius: 50%;

  scale: 0.8;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  border: 2px solid #1789e6;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  top: 5px;
  left: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #1789e6;
}

.radio-container label {
  height: 29px;
  line-height: 29px;
}

/* Switch */
/* The switch - the box around the slider */
.switch-wrapper {
  display: inline-flex;
  align-items: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 25px;

  scale: 0.6;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--tableBorderColor);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;

  left: -7.5px;
  top: -7.5px;

  background-color: var(--switchColor);
  box-shadow: 1px 1px 5px 1px #00000037;

  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch input:checked + .slider {
  background-color: #abd6f8;
}

.switch input:checked + .slider::before {
  background-color: #1789e6;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
}

/* Rounded sliders */
.switch .slider.round {
  border-radius: 34px;
}

.switch .slider.round:before {
  border-radius: 50%;
}

/* Buttons */
button {
  padding: 10px 20px;
  background-color: #407ad6;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  cursor: pointer;
}

button:hover {
  background-color: rgb(38, 77, 145);
}

.button {
  padding: 10px 20px;
  background-color: #407ad6;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  cursor: pointer;
}

.button:hover {
  background-color: rgb(38, 77, 145);
}

.outline {
  background-color: transparent;
  border: 2px solid #407ad6;
  color: #407ad6;

  padding: 8px 18px;
}

.outline:hover {
  background-color: #407ad6;
  color: white;
}

.outline-red {
  background-color: transparent;
  border: 2px solid rgb(254, 63, 63);
  color: rgb(254, 63, 63);

  padding: 8px 18px;
}

.outline-red:hover {
  background-color: rgb(254, 63, 63);
  color: white;
}

.button-red {
  background-color: rgb(254, 63, 63);
}

.button-red:hover {
  background-color: rgb(255, 37, 37);
}

/* Dialog Boxes */

.dialog-overlay {
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 101;

  display: none;
}

.dialog-overlay-2 {
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;

  display: none;
}

.dialog-box-wrapper {
  position: fixed;
  background-color: var(--containerColor);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  max-height: 95%;
  max-width: 95%;

  z-index: 150;
  border-radius: 5px;
  padding: 20px;

  overflow-y: auto;
  overflow-x: hidden;

  display: none;
}

.dialog-overlay-view {
  display: block;
}

.dialog-box-wrapper-view {
  display: block;
}

.dialog-close-button {
  transition: all 0.2s;
  cursor: pointer;
}

.dialog-close-button:hover {
  font-size: 1.4em;
}

.dialog-close-button-2 {
  transition: all 0.2s;
  cursor: pointer;
}

.dialog-close-button-2:hover {
  font-size: 1.4em;
}

.badge {
  position: relative;
}

.badge::before {
  content: attr(data-badge);
  position: absolute;
  background-color: #1789e6;
  color: white;

  padding: 5px;
  border-radius: 15px;

  min-width: 15px;
  min-height: 15px;

  scale: 0.8;

  right: 0;
  top: 0;

  transform: translate(50%, -50%);

  z-index: 2;

  text-align: center;
}

.badge-red::before {
  background-color: red;
}

.badge-small::before {
  min-width: 20px;
  min-height: 20px;
  scale: 0.5;
}

.alert {
  background-color: rgba(255, 0, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
  font-size: 0.9em;
  display: flex;
  align-items: center;

  margin: 10px 0px;

  opacity: 1;
  transition: all 0.3s;
  transform-origin: top;
  height: 40px;
  
}

.alert i {
  margin-right: 10px;
  color: red;
  font-size: 1.3em;
}

.alert-success {
  background-color: rgba(55, 255, 0, 0.1);
}

.alert-success i {
  margin-right: 10px;
  color: rgb(1, 213, 9);
  font-size: 1.3em;
}

.snackbar {
  padding: 10px 20px;
  border-radius: 5px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: rgb(60, 60, 60);
  color: white;

  font-size: 0.85em;

  max-width: 90%;

  transform: translateX(-120%);

  transition: all 0.3s;

  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

.snackbar i {
  margin-left: 20px;
  cursor: pointer;
}

.snackbar-view {
  transform: translateX(0%);
}

.date-container {
  position: relative;

  display: inline-block;
}

.date-container .label {
  position: absolute;

  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: var(--textFieldLabelColor);

  top: 50%;
  left: 10px;
  transform: translateY(-50%);

  background-color: var(--containerColor);
  padding: 5px;

  transition: all 0.2s;

  pointer-events: none;

  min-width: calc(100% - 45px);
}

.date-container .label-float {
  top: 0%;
  left: 2px;
  transform: translateY(-60%);
  scale: 0.85;

  min-width: auto;
}

.date-container input {
  padding: 15px;

  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: var(--tableDataColor);

  border: 1px solid var(--tableBorderColor);
  border-radius: 5px;

  background-color: transparent;
}

.date-container input:active,
.date-container input:focus {
  outline: 2px solid #1789e6;
}

.pagination {
  display: inline-block;
  scale: 0.8;
}

.pagination span {
  display: inline-flex;
  padding: 10px;
  border-radius: 50%;
  min-width: 40px;
  min-height: 40px;
  color: var(--primaryColor);
  text-align: center;

  cursor: pointer;

  justify-content: center;
  align-items: center;
}

.pagination span:hover {
  background-color: var(--tableBorderColor);
}

.pagination .active:hover {
  background-color: #2196f3;
}

.pagination .active {
  background-color: #1789e6;
  color: white;
}

.pagination .disable {
  pointer-events: none;
}

.text-container textarea {
  padding: 15px;

  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: var(--tableDataColor);

  border: 1px solid var(--tableBorderColor);
  border-radius: 5px;

  background-color: transparent;

  width: 100%;
}

.text-container textarea:active,
.text-container textarea:focus {
  outline: 2px solid #1789e6;
}

.pagination-flex-box {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
  flex-flow: wrap;
}

.flex-break-pagination {
  width: 0px;
}

@media (max-width: 460px) {
  .flex-break-pagination {
    width: 100%;
  }

  .pagination-flex-box {
    margin-top: 20px;
    justify-content: center;
  }
}

.dialog-box-2 {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 2000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;

  display: none;
  align-items: center;
  justify-content: center;
}

.dialog-box-2-view {
  display: flex;
}

@keyframes modelPopupAnimation {
  0%   {scale: 0.5; opacity: 0.5;}
  100% {scale: 1; opacity: 1;}
}

.dialog-box-2 .container:first-child {
  max-width: 90%;
  max-height: 90%;
  overflow: auto;

  animation: modelPopupAnimation 0.15s linear alternate;
}


.tel-select-container {
  display: inline-block;
  position: relative;
}

.tel-select-container .text-container .flag {
  position: absolute;
  top: 5px;
  left: 5px;
  cursor: pointer;
  display: inline-flex;
  width: 60px;
  height: 40px;
  align-items: center;
  justify-content: center;

  padding-right: 20px;
}

.tel-select-container .text-container .flag span {
  display: inline-block;
}

.tel-select-container .text-container .code {
  font-size: 13px;
  position: absolute;
  top: 5px;
  left: 70px;
  display: inline-flex;
  width: 35px;
  height: 40px;
  align-items: center;
  justify-content: end;
  padding-right: 5px;

  color: var(--tableDataColor);
}

.tel-select-container .text-container .label {
  left: 120px;
}

.tel-select-container .text-container .label-float {
  top: 0%;
  left: 5px;
  transform: translateY(-60%);
  scale: 0.85;
}

.tel-select-container .text-container .text-field-tel-dropdown {
  padding-left: 105px;
}

.tel-select-container .text-container .flag::before {
  content: "";
  width: 4px;
  height: 4px;
  border: 2px solid var(--textFieldLabelColor);
  position: absolute;
  z-index: 5;

  border-top: none;
  border-left: none;

  transform: translateY(-50%) rotate(45deg);

  top: 50%;
  right: 10px;

  transition: 0.2s;

  pointer-events: none;
}

.tel-select-container .options {
  position: absolute;
  margin-top: 5px;
  width: 100%;

  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;

  background-color: var(--containerColor);

  display: none;

  z-index: 1000;

  border: 1px solid var(--tableBorderColor);
}

.tel-select-container .options .option-list {
  max-height: 160px;
  overflow: auto;
}

.tel-select-container .options input {
  margin: 5px;
  padding: 10px;
  width: calc(100% - 10px);
  cursor: text;
}

.tel-select-container .options .option-list .item {
  padding: 10px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tel-select-container .options .option-list .item div:nth-child(3) {
  color: #777;
}

.tel-select-container .options .option-list .item:hover {
  background-color: var(--topIconHoverColor);
}

.dropdown-view::before {
  transform: translateY(-20%) rotate(225deg);
}

.dropdown-view .options {
  display: block;
}

.view-form {
  font-size: 14px;
}

.view-form span {
  display: inline-block;
  min-width: 115px;
}

.view-form hr {
  margin-bottom: 15px;
}

.view-form .sub-title {
  margin-top: 40px;
  margin-bottom: 8px;
  font-size: 15px;
  /* font-weight: bold; */
}

@media print {
  .view-form {
    padding: 20px;
  }
}

.hide-input {
  border: none;
  outline: none;
  background-color: transparent;
  pointer-events: none;
  width: 0px;
  min-width: fit-content;
  text-align: left;
}

.disabled-button {
  color: #aaa;
  pointer-events: none;
}

.form-bottom-button {
  position: relative;
  margin: 15px 0px 50px 0px;
}

.form-bottom-button div {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 0px;
}

.calendar {
  table-layout: fixed;
}

.calendar tr:hover {
  background-color: white;
}

.calendar tr:first-child {
  background-color: #407ad6;
}

.calendar tr:first-child:hover {
  background-color: #407ad6;
}

.calendar td:hover {
  background-color: var(--tableHoverColor);
}

.calendar td {
  border: 1px solid var(--tableBorderColor);
  height: 150px;
  padding-top: 40px;

  position: relative;

  vertical-align: top;
}

.calendar th {
  border: 1px solid var(--tableBorderColor);
  padding: 5px;
  /* font-weight: bold; */
  text-align: center;

  cursor: auto;

  color: white;
}

.calendar td .day {
  position: absolute;
  top: 10px;
  right: 10px;
}

.calendar td ul {
  margin-left: 10px;
}

.calendar td ul li {
  margin-bottom: 5px;
}


.chip-blue, .chip-yellow, .chip-green, .chip-purple, .chip-orange, .chip-red{
  padding: 5px;
  border-radius: 5px;
  color: white;
}

.chip-blue{
  background-color: #007bff;
}

.chip-yellow{
  background-color: #ffc107;
}

.chip-green{
  background-color: #28a745;
}

.chip-purple{
  background-color: #6610f2;
}

.chip-orange{
  background-color: #f76f00;
}

.chip-red{
  background-color: red;
}



.multiple-selector .option-list div {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0px !important;
}

.multiple-selector .option-list div input {
  padding: unset;
  width: unset;
  cursor: unset;
  margin: unset;
  scale: 1.1;
  margin-left: 10px;
}

.multiple-selector .option-list div label {
  display: block;
  width: 100%;
  padding: 10px;
}




/* Tab Layout */
.tab-layout-wrapper {
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px #00000030;
}

.tab-layout-headers {
  display: flex;
}

.tab-layout-headers div {
  flex: 1;

  text-align: center;
  font-size: 1em;
  padding: 15px;
  font-weight: bold;

  background-color: #233044;
  color: white;

  cursor: pointer;

  transition: all 0.1s;
}

.tab-layout-headers div:first-child {
  border-radius: 5px 0px 0px 0px;
}
.tab-layout-headers div:last-child {
  border-radius: 0px 5px 0px 0px;
}

.tab-layout-headers div:hover {
  background-color: #0b1333d0;
}

.tab-layout-headers div.active {
  color: black;
  background-color: white;

  position: relative;
}

.tab-layout-headers div.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #407ad6;
}

.tab-layout-headers div i {
  margin-right: 10px;
}

.tab-layout-content {
  display: none;

  padding: 10px;
  padding-top: 25px;
}

.container-with-title {
  padding: 0px !important;
  margin-bottom: 15px;

  box-shadow: 0px 0px 5px 0px #00000040;
}

.container-content {
  padding: 15px;
}

.container-title {
  background-color: #233044;
  color: white;
  padding: 8px 15px;

  border-radius: 5px 5px 0px 0px;
}

.new-radio-button-wrapper {
  display: flex;

  border-radius: 5px;

  border: 1px solid #407ad6;
}

.new-radio-button-wrapper div {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-collapse: collapse;

  border-left: 1px solid #407ad6;

  cursor: pointer;
}

.new-radio-button-wrapper div:first-child {
  border-left: none;

  border-radius: 5px 0px 0px 5px;
}

.new-radio-button-wrapper div:last-child {
  border-radius: 0px 5px 5px 0px;
}

.new-radio-button-wrapper div i {
  margin-right: 10px;
  color: #00000020;
}

.new-radio-button-wrapper div.active {
  background-color: #407ad6;
  color: white;
}

.new-radio-button-wrapper div.active i {
  color: white;
}


.document-image-viewer {
  border: 1px solid var(--tableBorderColor);
  border-radius: 5px;
  padding: 10px;
  padding-top: 25px;
  position: relative;

  display: flex;
  align-items: center;

}

.document-image-viewer img {
  width: 100%;
  border-radius: 5px;
}

.document-image-viewer span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color: white;
  font-size: 0.8em;
  color: #000000bb;
}




.option-menu{
  position: relative;
  display: inline-block;
}

.option-menu i{
  text-align: center;
}

.option-menu-button {
  padding: 10px;

  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;

  transition: all 0.2s;

  font-size: 1em;
}

.option-menu-button:hover {
  background-color: #00000010;
}

.option-menu-content {

  box-shadow: 0px 0px 5px 0px #00000025;
  border-radius: 5px;

  flex-direction: column;

  min-width: 100px;

  display: none;

  position: absolute;

  user-select: none;

  top: 100%;
  right: 0%;

  background-color: white;
  z-index: 100;

  transform: scale(0);

  transition: all 0.1s;

  display: inline-flex;

  transform-origin: top right;
}

.option-menu-content.active {
  

  transform: scale(1);
}

.option-menu-item {
  padding: 5px 10px;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.2s;
  display: grid;
  grid-template-columns: 25px auto;
  align-items: center;
}

.option-menu-item i {
  font-size: 0.8em;
  text-align: left;
}

.option-menu-item:hover {
  background-color: #00000010;
}

.option-menu-item.red {
  color: red;
}

.option-menu-item.red i {
  color: red;
}

