@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200);

@import url(https://fonts.googleapis.com/css2?family=Lato&display=swap);

@import url(https://fonts.googleapis.com/css2?family=Open+Sans&display=swap);

@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200);

/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Inter", serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --select-border: rgb(255, 203, 0);
  --select-focus: rgb(255, 203, 0);
  --select-arrow: var(--select-border);
  --warn: #FF7676FF;
  --accent: #FFCB00FF;
  --accent-shadow: #D6AB03FF;


}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}

a {
  color: #2b3134;
  text-decoration: none;
}

select::-ms-expand {
  display: none;
}

::-webkit-scrollbar {
  width: 0;
}

.select {
  display: grid;
  grid-template-areas:
    "select";
  align-items: center;
  position: relative;
  border: 1px solid var(--select-border);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25em 0.5em;
  line-height: 1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}

.select {
  scrollbar-color: var(--select-arrow) rgba(255, 165, 0, 0);
  scrollbar-width: thin;
  border-radius: 8px;
  margin: 8px 0px;
  font-size: 0.8rem;
  width: 90%;
}

.select select,
.select::after {
  grid-area: select;
}

.select:not(.select--multiple)::after {
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select:focus+.focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

select[multiple] {
  padding-right: 0;
  /*
         * Safari will not reveal an option
         * unless the select height has room to
         * show all of it
         * Firefox and Chrome allow showing
         * a partial option
         */
  height: 10rem;
  /*
         * Experimental - styling of selected options
         * in the multiselect
         * Not supported crossbrowser
         */
}

select[multiple] option {
  white-space: normal;
  outline-color: var(--select-focus);
  border-radius: 8px;
  padding: 2px 6px;
  margin: 4px 0;
}

input {
  outline: none;
  border: none;
}

.select--disabled {
  cursor: not-allowed;
  background-color: #eee;
  background-image: linear-gradient(to top, #ddd, #eee 33%);
}

option:checked {
  background: #f9f4f7 linear-gradient(87deg, var(--select-focus), #ffe071 100%);
}

option:hover {
  background-color: var(--select-focus);
}

label {
  font-size: 1.125rem;
  font-weight: 500;
}

.select+label {
  margin-top: 2rem;
}

.container_datepick {
  display: flex;
  margin: 24px 0;
  flex-wrap: wrap;
  /* flex-direction: row; */
}

.datepick-highlight {
  background-color: #2b3134 !important;
  color: white !important;
  border-radius: 8px !important;
}

.datepick-month td .datepick-today {
  background-color: #ffa600 !important;
  border-radius: 8px !important;
}

.text_info > pre{
  white-space: pre-wrap;
}


.datepick-month td .datepick-selected {
  background-color: #ffea99 !important;
  color: black !important;
  border-radius: 8px !important;
}

.datepick-month td {
  background-color: #eee;
  border: 1px solid rgba(170, 170, 170, 0) !important;
  border-radius: 8px !important;
}

.date-interval {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  /* width: 100%; */
  max-width: 700px;
  /* min-width: 300px; */
  /* max-width: 100%; */
  margin: 8px 0;
}

.interaction_buttons {
  display: flex;
  align-items: center;
}

.cursor_pointer {
  cursor: pointer;
}

.color_info {
  color: #ff7676;
}

.color_neutral {
  color: #ffa600;
}

.is-datepick {
  min-width: 75%;
}

.container_timepick {
  margin: 0px 0;
  gap: 5%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  border: 1px solid var(--select-border);
  padding: 0 10px;
  border-radius: 8px;
}

.box_comment {
  width: calc(100% - 20px);
  min-height: 100px;
  border: 1px solid var(--select-border);
  padding: 10px;
  border-radius: 8px;
}

.warning_ic {
  font-size: 1em;
  color: #777
}

.menu {
  display: flex;
  flex-direction: column;
}

.hide {
  display: none !important;
}

.menu_container {
  position: fixed;
  z-index: 9999;
  height: 100%;
  display: flex;
}

#menu_close {
  background-color: #e5e5e5c9;
}

#modal-delete_item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 99999;
  height: 100%;
  width: 100%;
  background-color: #000000c7;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.modal-delete_container {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 40px 44px;
  border-radius: 12px;
  height: 200px;

}

.modal_button {
  padding: 6px 24px;
  border-radius: 12px;
  cursor: pointer;
  width: 120px;
  background-color: var(--select-arrow);
  color: #fff;
  text-align: center;

}

.color_warning {
  background-color: #ff5757 !important;
  color: #fff;
}

.button_container {
  display: flex;
  width: 100%;
  gap: 8px;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: space-between;

}

.tg_auth {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;

}

.tg_button {
  background-color: #0b95ff;
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 1em;
  text-align: center;
  gap: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.tg_button svg {
  width: 34px;

}

.search {
  width: 100%;

}

.multi_info{
  display: flex;
  align-items: center;
  background: rgb(255 203 0 / 38%);
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.top-elem-round {
  padding: 0 10px 0 0px !important;
}
.select > select{
  padding: 6px;
}

.container_datepick-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin-bottom: 24px;
  margin-top: 10px;
}

.container_datepick-box_grid {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: flex-start;
  align-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.date-time-box {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  width: 100%;
}

.container_timepick_grid {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid var(--select-arrow);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 14px;
}

.place-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr 2fr 1fr 1fr 0.5fr;
  gap: 10px;
  flex-direction: row;
  align-items: center;
  justify-items: center;
  font-size: 0.8em;
  border-bottom: solid 1px var(--select-border);
  padding: 8px;
}

.bg-neutral-100 {
  background-color: #555555;
  color: white;
}

.font-title {
  font-size: 1.3em;
  margin: 16px 0;
}

.head-flex-box {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

#affilate-name {}

.head-btn-box {
  z-index: 3;
}

.copy-phone {
  font-size: 16px;
  color: #c84c10;
}

.info-block {
  max-width: 400px;
  font-size: 0.8rem;
  color: #565656;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-direction: row;
}

.navigation a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 8px;
  font-size: 0.9em;
}

.affilate {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 8px 0;
}

.nav_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
}

color_warn {
  background-color: rgb(255, 118, 118);
}

.nav_elem {
  border-radius: 8px;
  margin: 0 6px;
  transition-duration: 0.3s;
}

.button-menu {
  background-color: #e4e4e4;
}

.button-menu:hover {
  box-shadow: 0px 0px 10px var(--accent-shadow);
}

.button-exit {
  background-color: #808080;
  color: white;
}

.button-exit:hover {
  box-shadow: 0px 0px 10px var(--warn);
}

.button-add {
  margin-top: 20px;
  background-color: #ffa500;
  border-radius: 8px;
  color: white;
}

.button-add:hover {
  box-shadow: 0px 0px 10px #ffa500;
}

.table_overflow {
  width: 100%;
  min-width: 900px;
}

.container_client_info {
  display: flex;
  gap: 8px;
}

.container_left-box {
  display: flex;
  /* margin-bottom: 24px; */
}

.list_nav {
  margin-top: 16px;
}

.select_date {
  display: flex;
  user-select: none;
  margin: 16px 0;
}

.delete_user{
  background-color: #ff4545!important;
  width: 30%;
}

#category_scrollable {
  user-select: none;
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: scroll;
  scrollbar-color: rgba(255, 0, 0, 0) rgba(255, 165, 0, 0);
  scrollbar-width: none;
}

#names_scrollable {
  user-select: none;
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: scroll;
  scrollbar-color: rgba(255, 0, 0, 0) rgba(255, 165, 0, 0);
  scrollbar-width: none;
}

.scroll_elem {
  min-width: 130px;
  background-color: #C7C5C6;
  color: #212020;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  border-radius: 999px;
  cursor: pointer;
  transition-duration: 0.3s;
}

.scroll_elem_active {
  background-color: #FF69AF !important;
  color: white;
}

.main_right{
  align-items: end!important;
}

.save-btn{
  padding: 12px 48px!important;
}

.scroll_elem .first {
  font-size: 0.9em;
}

.scroll_elem .second {
  font-size: 0.7em;
}

.scroll_elem:hover {
  background-color: rgba(255, 105, 175, 0.82);
  color: white;
}

.name_elem:hover {
  color: white;
  background-color: rgba(255, 105, 175, 0.82);
}

.name_elem {
  min-width: 130px;
  background-color: #C7C5C6;
  color: #212020;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  border-radius: 999px;
  cursor: pointer;
  transition-duration: 0.3s;
}

.scroll_elem_active {
  background-color: #FF69AF !important;
  color: white;
}

.name_elem .first {
  font-size: 0.9em;
}

.name_elem .second {
  font-size: 0.7em;
}

.nav_buttons {
  color: #FF69AF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

input[type=time] {
  background: #EAEFF1;
  margin-right: 24px;
  border: none;
  border-bottom: 4px solid #C9D6DA;
  display: block;
  margin-bottom: 0.625em;
  margin-top: 0.3em;
  outline-offset: 3px;
  padding: 0.45em 0.45em 0.45em 0.65em;
  max-width: 180px;
  color: inherit;
  font: inherit;
}

.message {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: solid 2px #000000;
  padding: 12px 20px;
  margin: 16px 0;
}

.message_buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.close-btn {
  float: right;
  cursor: pointer;
}

.setting_users{
  padding: 12px 0 12px 0;
  list-style: none;
  cursor: pointer;
}

.add-container{
  display: flex;
  width: 90%;
  justify-content: center;
}

.open-modal-btn {
  background-color: #ffa500!important;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 1em;
  text-align: center;
  gap: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.layout_menu{
  display: flex;
  height: 80%;
  flex-direction: column;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.open {
  display: flex;
}

.form_add-container {
  background-color: white;
  padding: 30px 0;
  display: flex;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  /* max-width: 500px; */
  /* width: 100%; */
  justify-content: center;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

.modal.open {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

summary.setting_users {
  list-style: none;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

summary.setting_users::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s;
}

details[open] summary.setting_users::after {
  transform: rotate(270deg);
}

.container_users .elem_settings {
  display: flex;
  justify-content: space-between;
}

.dropdown-button {
  width: 100%;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
}

.dropdown-button::after {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.container_users{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.message_container {
  display: flex;
  flex-direction: column;
}


#menu__toggle {
  opacity: 0;
  z-index: 1000;
}

#menu__toggle:checked~.menu__btn>span {
  transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn>span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked~.menu__btn>span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked~.menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1000;
}

.menu__btn>span,
.menu__btn>span::before,
.menu__btn>span::after {
  display: block;
  position: absolute;

  width: 100%;
  height: 2px;

  background-color: #616161;

  transition-duration: 0.25s;
}

.menu__btn>span::before {
  content: "";
  top: -8px;
}

.menu__btn>span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #eceff1;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
  transition-duration: 0.25s;
  z-index: 999;
}

.menu__item {
  display: block;
  padding: 12px 24px;

  color: #333;

  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;

  text-decoration: none;

  transition-duration: 0.25s;
}

.menu__item:hover {
  background-color: #cfd8dc;
}

.hamburger-menu {
  height: 65px;
}

.menu__box li {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}

.nav_elem_burger {
  display: flex;
  width: 90%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  user-select: none;
}

.tab {
  width: 100%;
  display: flex;
  overflow-x: scroll;
}



.active {
  border-bottom: solid 2px black !important;
}

.tablinks {
  background-color: #cacaca;
  width: 100%;
  border: none;
  color: #000000;
  height: 50px;
  cursor: pointer;
}

.checkbox-wrapper-7 .tgl {
  display: none;
}

.checkbox-wrapper-7 .tgl,
.checkbox-wrapper-7 .tgl:after,
.checkbox-wrapper-7 .tgl:before,
.checkbox-wrapper-7 .tgl *,
.checkbox-wrapper-7 .tgl *:after,
.checkbox-wrapper-7 .tgl *:before,
.checkbox-wrapper-7 .tgl+.tgl-btn {
  box-sizing: border-box;
}

.checkbox-wrapper-7 .tgl::-moz-selection,
.checkbox-wrapper-7 .tgl:after::-moz-selection,
.checkbox-wrapper-7 .tgl:before::-moz-selection,
.checkbox-wrapper-7 .tgl *::-moz-selection,
.checkbox-wrapper-7 .tgl *:after::-moz-selection,
.checkbox-wrapper-7 .tgl *:before::-moz-selection,
.checkbox-wrapper-7 .tgl+.tgl-btn::-moz-selection,
.checkbox-wrapper-7 .tgl::selection,
.checkbox-wrapper-7 .tgl:after::selection,
.checkbox-wrapper-7 .tgl:before::selection,
.checkbox-wrapper-7 .tgl *::selection,
.checkbox-wrapper-7 .tgl *:after::selection,
.checkbox-wrapper-7 .tgl *:before::selection,
.checkbox-wrapper-7 .tgl+.tgl-btn::selection {
  background: none;
}

.checkbox-wrapper-7 .tgl+.tgl-btn {
  outline: 0;
  display: block;
  width: 2em;
  height: 1em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-wrapper-7 .tgl+.tgl-btn:after,
.checkbox-wrapper-7 .tgl+.tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
}

.checkbox-wrapper-7 .tgl+.tgl-btn:after {
  left: 0;
}

.checkbox-wrapper-7 .tgl+.tgl-btn:before {
  display: none;
}

.checkbox-wrapper-7 .tgl:checked+.tgl-btn:after {
  left: 50%;
}

.checkbox-wrapper-7 .tgl-ios+.tgl-btn {
  background: #8a8a8a;
  border-radius: 2em;
  padding: 2px;
  transition: all 0.4s ease;
  border: 1px solid #e8eae9;
}

.checkbox-wrapper-7 .tgl-ios+.tgl-btn:after {
  border-radius: 2em;
  background: #fbfbfb;
  transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
}

.checkbox-wrapper-7 .tgl-ios+.tgl-btn:hover:after {
  will-change: padding;
}

.checkbox-wrapper-7 .tgl-ios+.tgl-btn:active {
  box-shadow: inset 0 0 0 2em #e8eae9;
}

.checkbox-wrapper-7 .tgl-ios+.tgl-btn:active:after {
  padding-right: 0.8em;
}

.checkbox-wrapper-7 .tgl-ios:checked+.tgl-btn {
  background: var(--accent);
}

.checkbox-wrapper-7 .tgl-ios:checked+.tgl-btn:active {
  box-shadow: none;
}

.checkbox-wrapper-7 .tgl-ios:checked+.tgl-btn:active:after {
  margin-left: -0.8em;
}

.scroll_elem a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.name_elem a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.border_warning {
  border-color: #D10003;
}

.border_alert {
  border-color: #FF9A27;
}

.link_active {
  text-decoration: underline;
}

[data-tooltip] {
  position: relative;
  /* Относительное позиционирование */
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  /* Выводим текст */
  position: absolute;
  /* Абсолютное позиционирование */
  width: 300px;
  /* Ширина подсказки */
  right: 50%;
  top: 0;
  /* Положение подсказки */
  background: #3989c9;
  /* Синий цвет фона */
  color: #fff;
  /* Цвет текста */
  padding: 0.5em;
  /* Поля вокруг текста */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  /* Параметры тени */
  pointer-events: none;
  /* Подсказка */
  opacity: 0;
  /* Подсказка невидима */
  transition: 0.5s;
  /* Время появления подсказки */
}

[data-tooltip]:hover::after {
  opacity: 1;
  /* Показываем подсказку */
  top: 2em;
  /* Положение подсказки */
}

.info_settings {
  display: none;
}

.tabcontent {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  margin-top: 12px;
  gap: 12px;
  user-select: none;
}

.elem_settings {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 12px;
  width: calc(100% - 20px);
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper label {
  display: inline-block;
}

.checkbox-wrapper .cbx {
  position: relative;
  top: 1px;
  width: 17px;
  height: 17px;
  background-color: #cacaca;
  border: 1px solid #c8ccd4;
  border-radius: 3px;
  vertical-align: middle;
  transition: background 0.1s ease;
  cursor: pointer;
}

.checkbox-wrapper .cbx:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 11px;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease;
  transition-delay: 0.15s;
}

.checkbox-wrapper .lbl {
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"]:checked~.cbx {
  border-color: transparent;
  background: var(--accent);
  <!-- animation: jelly-42 0.6s ease; -->
}

.checkbox-wrapper input[type="checkbox"]:checked~.cbx:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.checkbox-wrapper .cntr {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
}

@-moz-keyframes jelly-42 {
  from {
    transform: scale(1, 1);
  }

  30% {
    transform: scale(1.25, 0.75);
  }

  40% {
    transform: scale(0.75, 1.25);
  }

  50% {
    transform: scale(1.15, 0.85);
  }

  65% {
    transform: scale(0.95, 1.05);
  }

  75% {
    transform: scale(1.05, 0.95);
  }

  to {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes jelly-42 {
  from {
    transform: scale(1, 1);
  }

  30% {
    transform: scale(1.25, 0.75);
  }

  40% {
    transform: scale(0.75, 1.25);
  }

  50% {
    transform: scale(1.15, 0.85);
  }

  65% {
    transform: scale(0.95, 1.05);
  }

  75% {
    transform: scale(1.05, 0.95);
  }

  to {
    transform: scale(1, 1);
  }
}

@-o-keyframes jelly-42 {
  from {
    transform: scale(1, 1);
  }

  30% {
    transform: scale(1.25, 0.75);
  }

  40% {
    transform: scale(0.75, 1.25);
  }

  50% {
    transform: scale(1.15, 0.85);
  }

  65% {
    transform: scale(0.95, 1.05);
  }

  75% {
    transform: scale(1.05, 0.95);
  }

  to {
    transform: scale(1, 1);
  }
}

@keyframes jelly-42 {
  from {
    transform: scale(1, 1);
  }

  30% {
    transform: scale(1.25, 0.75);
  }

  40% {
    transform: scale(0.75, 1.25);
  }

  50% {
    transform: scale(1.15, 0.85);
  }

  65% {
    transform: scale(0.95, 1.05);
  }

  75% {
    transform: scale(1.05, 0.95);
  }

  to {
    transform: scale(1, 1);
  }
}

.main_category {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  width: 95%;
  align-content: center;
}

.main_box {
  display: flex;
  margin-bottom: 6px;
}

.child_box {
  display: flex;
  margin-left: 20px;
  margin-bottom: 6px;
}

.message_unactive {
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  border: solid 2px #939393;
  padding: 8px;
  margin: 16px 0;
  color: #676666;
}

.reaction_info {
  color: black !important;
  font-weight: bold;
  margin-bottom: 12px;
}

.button_reaction {
  background-color: #C7C5C6;
  border-radius: 999px;
  height: 30px;
  margin-bottom: 8px;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  cursor: pointer;
  user-select: none;
  padding: 6px 12px;
  transition-duration: 0.3s;
}

.button_reaction:hover {
  background-color: #a1a1a1;
  color: white;
  box-shadow: 0px 0px 10px #C7C5C6;
}
.notify_title_wrapper{
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.notify_s{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 12px;
  width: 95%;
}
.notify_data{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.notify_time_set{
  width: 50px;
  margin: 0 6px;
  font-weight: bold;
  background-color: #c7c7c7;
  border-radius: 5px;
}
.inactive{
  background-color: #6e6e6e !important;
  cursor: not-allowed;
  color: white;
}
.integration_container{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.control_container{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 95%;
}
.tab_info_wrapper{
  background-color: #ffa500;
  padding: 16px 6px;
  border-radius: 12px;
  width: 95%;
  text-align: left;
  white-space: pre-line;
}
.title_settings{
  display: flex;
  margin-bottom: 6px;
}
.tooltip_box{
  background-color: #8BC34A;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9em;
}
.btn_yc{
  background-color: var(--accent);
  padding: 12px 24px;
  border-radius: 12px;
  text-align: center;
}

.text_bold {
  font-weight: bold;
  margin-bottom: 16px
}
.settings_container{
  display: flex;
  width: 95%;
  flex-direction: column;
}

.elem_settings svg{
  opacity: 0.5;
  cursor: pointer;

}
.notify_s svg{
  opacity: 0.5;
  cursor: pointer;
}

.text_info {
  margin-bottom: 13px;
}
.prompts{
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.day_datetime{
  display: flex;
  width: 100%;
  margin-top: 12px;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.week_datetime{
  display: flex;
  width: 100%;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 12px;
}
.tg_code{
  height: 30px;
  background-color: #d8d8d8;
  border-radius: 6px;
  padding: 6px;
  font-size: 0.9em;
}
.day_prompt{
 display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 400px;
}
.week_prompt{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 400px;
}
.week_prompt textarea{
  width: 45%;
    height: 100%;
    resize: none;
    overflow-y: scroll;
    padding: 0 12px;
}
.week_prompt span{
      width: 45%;
      height: 100%;
      user-select: all;
      overflow-y: scroll;
      word-break: break-word;
      white-space: pre-line;
}
.day_prompt textarea{
   width: 45%;
    height: 100%;
    resize: none;
    overflow-y: scroll;
    padding: 0 12px;
}
.day_prompt span{
    width: 45%;
      height: 100%;
      user-select: all;
      overflow-y: scroll;
      word-break: break-word;
      white-space: pre-line;
}
.day_datetime input{
  background-color: transparent;
}
.week_datetime input{
  background-color: transparent;
}
details > summary:first-of-type {
    list-style: none;
}
.checkbox-wrapper{
  margin: 0px 6px 0px 6px;
}

.checkbox-center{
  display: flex;
  align-items: center;
}

.toggle-icon {
    margin: 0 6px;
    font-size: 12px;
}
.child_services {
    padding-left: 20px;
}
.main_box {
    display: flex;
    align-items: center;
}

.selectdiv {
  position: relative;
  /*Don't really need this just for demo styling*/
  float: left;
  min-width: 200px;
  margin-right: 12px;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
  display: none;
}

.selectdiv:after {
  content: "<>";
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  /*Adjust for position however you want*/
  top: 5px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  /*left line */
  position: absolute;
  pointer-events: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  display: block;
  width: 100%;
  max-width: 320px;
  height: 33px;
  float: right;
  padding: 0px 24px;
  font-size: 0.9em;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff00;
  border: 1px solid #8a8a8a;
  border-radius: 12px;
  -ms-word-break: normal;
  word-break: normal;
}







.auth_form{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 65vh;
}
#signIn{
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}
#signIn form{
  min-width: 300px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: stretch;
  gap: 3px;
}
.auth__title{
  font-size: 1.2em;
  font-weight: bold;
}
.input__wrap input{
  background-color: #dcdcdc;
  height: 30px;
  border-radius: 6px;
  padding: 0px 6px;
  margin: 6px 0;
}
.input__wrap .input{
  display: flex;
    flex-direction: column;
    align-items: stretch;
}
.btn_auth{
  background-color: #3ec569;
  width: 100%;
  border: none;
  border-radius: 6px;
  height: 32px;
  font-weight: bold;
  cursor: pointer;
  transition-duration: 0.3s;
}
.btn_auth:hover{
  background-color:#319852;
  transition: ease-in-out;
  transition-duration: 0.3s;
}
.input__wrap__info__text{
  font-size: 0.8em;
}
.reg_acc{
  background-color: transparent;
    border: none;
    cursor: pointer;
}
.input__wrap__info__green{
  font-size: 0.8em;
  cursor: pointer;
}
.input__wrap__info{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.autocomplete-items{
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    /* justify-content: center; */
    /* align-items: center; */
    /* top: 174px; */
    background-color: #eeeeee;
    width: 171px;
    border-top: solid 2px var(--select-border);
    border-radius: 0px 0px 4px 4px;
    padding-top: 5px;
    font-size: 0.9em;
    max-height: 120px;
    overflow-y: scroll;
    margin-top: 30px;
}

div#autocompleteField {}

.hidden_s{
    display: none !important;
}

@media (max-width:900px) {
  .overflow-x-scroll {
    overflow-x: scroll;
  }
}

@media (max-width:800px) {
  .button_reaction {
    width: 100%;
  }
}
