@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-main: "Montserrat", sans-serif;
  --font-title: "Montserrat", sans-serif;
  --color-black: #000000;
  --color-ocean: #44C6FE;
  --color-primary: #10A7F8;
  --color-primary-light: rgb(126, 221, 255, 0.1);
  --color-primary-dark: #10419b;
  --color-secondary: #FDE0A2;
  --color-secondary-dark: #F9B306;
  --color-grey: #C1C1C1;
  --color-grey-dark: #484848;
  --color-red: #E42A1E;
  --color-white: #ffffff;
  --color-green: #0dd149;
  --color-purple: #5546FF;
  --color-purple-light: #EFEDFF;
  --color-grey: #8FBDCD;
  --color-grey-light: #F4F9FA;
  --color-error: #b06363;
  --color-border: #F2F2F2;
  --color-alt: #818181;
  --color-bg: #FFE9AF;
  --color-success: #08C440;
  --color-success-light: #E7FAEC;
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a, a:link, a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

*,
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body.noscroll {
  position: fixed;
  left: 0;
  right: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  height: auto;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizespeed;
  position: relative;
  font-weight: 500;
  background: #fff;
}
body.no-scroll {
  height: 100vh;
  overflow: hidden;
}
body.bg-dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

main {
  display: block;
  width: 100%;
  flex-grow: 1;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

section {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1470px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.form-group {
  width: 100%;
  padding: 10px 0;
}
.form-group label {
  font-weight: 600;
}
.form-group label.radio {
  font-weight: 400;
}

.form-password {
  position: relative;
}
.form-password__toggle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  --size: 24px;
  width: var(--size);
  height: var(--size);
}
@media (max-width: 767px) {
  .form-password__toggle {
    --size: 14px;
  }
}

.form-control {
  display: inline-block;
  font-weight: 500;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--color-white);
  border-radius: 5px;
  outline: none;
  user-select: none;
  height: unset;
}
@media (max-width: 767px) {
  .form-control {
    padding: 8px 8px 8px 8px;
  }
}
.form-control--icon {
  padding: 16px 16px 16px 64px;
  background-image: var(--icon);
  background-position: left 30px top 18px;
  background-size: 24px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .form-control--icon {
    padding: 8px 8px 8px 40px;
    background-size: 14px;
    background-position: left 20px top 12px;
  }
}
.form-control::placeholder {
  color: rgb(0, 0, 0);
}
.form-control:focus {
  border-color: var(--color-black);
}
.form-control:focus::placeholder {
  opacity: 0;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.form-submit {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .form-submit {
    margin-top: 30px;
  }
}

.form-file {
  position: relative;
}
.form-file__input {
  position: absolute;
  width: 0;
  min-width: 0;
}
.form-file__label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-file__text {
  font-size: 16px;
}
@media (max-width: 767px) {
  .form-file__text {
    font-size: 14px;
  }
}
.form-file__icon {
  --size: 24px;
  width: var(--size);
  height: var(--size);
}
@media (max-width: 767px) {
  .form-file__icon {
    --size: 16px;
  }
}

.form-controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 767px) {
  .form-controls {
    margin-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .form-controls > * {
    width: 100%;
  }
}

.form-comments {
  border: 1px solid var(--color-border);
  border-radius: 8px;
}
.form-comments__title {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 767px) {
  .form-comments__title {
    padding: 12px 16px;
    font-size: 14px;
  }
}
.form-comments__list {
  padding: 16px 24px;
  height: 300px;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .form-comments__list {
    padding: 12px 16px;
  }
}
.form-comments__list::-webkit-scrollbar {
  display: none;
}
.form-comments__item {
  padding-left: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .form-comments__item {
    padding-left: 0;
  }
}
.form-comments__item::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 10px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  border: 7px solid var(--color-primary-light);
  background-color: var(--color-primary);
}
@media (max-width: 767px) {
  .form-comments__item::before {
    display: none;
  }
}
.form-comments__item:not(:last-of-type) {
  margin-bottom: 16px;
}
.form-comments__item-date {
  font-size: 14px;
  font-weight: 500;
}
.form-comments__item-text {
  font-size: 16px;
  margin-bottom: 8px;
}
.form-comments__item-images {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
}
.form-comments__item-images::-webkit-scrollbar {
  display: none;
}
.form-comments__item-images img {
  max-width: 160px;
  height: 100px;
  object-fit: cover;
  display: block;
}
.form-comments__item-audio {
  width: 100%;
}
.form-comments__item-audio audio {
  display: block;
  width: 100%;
}

input[type=file] {
  display: none;
}

.custom-file-upload {
  display: inline-block;
  cursor: pointer;
}

.form-text {
  font-size: 16px;
}

label.bx-form-error {
  font-size: 11px;
  color: #e22;
  font-weight: 500;
}

.bx-filter input, .bx-filter select {
  height: 40px;
  padding: 0 25px;
  border-radius: 20px;
}
.bx-filter .data-range {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
}

.no-select {
  border: 0;
  color: #007bff;
  background: none;
  padding: 0;
  height: auto;
  font-size: 14px;
  font-weight: bold;
}

.no-select option {
  font-weight: normal;
}

.custom-select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom-select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.data-range {
  font-size: 11px;
  color: #007bff;
}

.color-primary {
  color: var(--color-primary);
}

.status {
  --size: 10px;
  padding: 5px 10px 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
  background-color: var(--color-success-light);
  color: var(--color-success);
}
@media (max-width: 1600px) {
  .status {
    --size: 6px;
    font-size: 14px;
    gap: 6px;
  }
}
.status--badge::before {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  content: "";
  display: block;
  background-color: var(--color-success);
}
.status--purple {
  background-color: var(--color-purple-light);
  color: var(--color-purple);
}
.status--grey {
  background-color: var(--color-grey-light);
  color: var(--color-grey);
}

.wrapper {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}
@media (max-width: 1200px) {
  .wrapper {
    padding-left: 40px;
  }
}

.navbar {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  padding: 40px 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  transition: width 0.5s ease-in-out;
  background-color: var(--color-white);
  z-index: 10;
}
@media (max-width: 1200px) {
  .navbar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 20px;
  }
}
.navbar.is-collapsed {
  width: 20px;
}
@media (max-width: 1200px) {
  .navbar.is-collapsed {
    width: 220px;
  }
}
.navbar.is-collapsed .navbar__inner {
  opacity: 0;
  width: 20px;
  overflow: hidden;
  transition-delay: 0s;
}
@media (max-width: 1200px) {
  .navbar.is-collapsed .navbar__inner {
    width: 172px;
    opacity: 1;
    transition-delay: 0.5s;
  }
}
.navbar.is-collapsed .navbar__toggler {
  transform: rotate(180deg);
}
.navbar__inner {
  width: 172px;
  opacity: 1;
  white-space: nowrap;
  transition-delay: 0.5s;
}
@media (max-width: 1200px) {
  .navbar__inner {
    width: 20px;
    opacity: 0;
    transition-delay: 0s;
  }
}
.navbar__logo {
  margin-bottom: 64px;
}
@media (max-width: 1200px) {
  .navbar__logo {
    margin-bottom: 40px;
  }
}
.navbar__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 1200px) {
  .navbar__items {
    gap: 16px;
  }
}
.navbar__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 6px;
  transition: 0.25s ease-in-out;
}
@media (max-width: 1200px) {
  .navbar__item {
    padding: 8px 12px;
  }
}
@media (any-hover: hover) {
  .navbar__item:hover {
    background-color: var(--color-primary-light);
  }
}
.navbar__item img {
  display: block;
  --size: 24px;
  width: var(--size);
  height: var(--size);
}
@media (max-width: 1200px) {
  .navbar__item img {
    --size: 16px;
  }
}
.navbar__toggler {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  right: -16px;
  top: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: 0.25s;
}
@media (any-hover: hover) {
  .navbar__toggler:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
  }
}

.content {
  width: 100%;
}
@media (max-width: 1440px) {
  .content {
    padding: 40px 20px;
  }
}
@media (max-width: 1200px) {
  .content {
    width: 100%;
  }
}

.status--grey {
  background-color: var(--color-grey-light);
  color: var(--color-grey);
}

.status--blue {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.status--red {
  background-color: var(--color-primary-light);
  color: var(--color-red);
}

.comment-text-right {
  text-align: right;
}

.form-comments__item.comment-text-right::before {
  left: auto;
  background-color: #43d569;
}

.form-select {
  width: 100%;
}

.bx-menu a.item-menu {
  margin: 16px 32px 16px 0;
  text-align: left;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 700;
  color: #198BC8;
  padding: 4px 0;
}

.bx-menu a {
  color: #198BC8;
}

.bx-menu a.active {
  border-bottom: 2px solid #198BC8;
}

.btn.btn-primary {
  padding: 10px 30px;
  border: 1px solid #10A7F8;
  border-radius: 50px;
  height: 40px;
  background-color: #10A7F8;
}

.cabinet__table {
  margin: 30px 0px;
}

.worktime.active > a {
  color: red;
  border: none;
}

.worktime .bx-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
}

.worktime.active .start-work {
  display: none;
}

.worktime .stop-work {
  display: none;
}

.worktime.active .stop-work {
  display: unset;
}

.worktime .stop-work, .worktime .start-work {
  padding: 0 10px;
}

.worktime ul {
  width: 180px;
}

.right-menu {
  float: right;
}

.tooltip-inner {
  font-weight: 500;
  background-color: #fff;
  border: 2px solid #10A7F8;
  color: #000;
}

.bx-info-icon {
  color: #10A7F8;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 50px;
  line-height: 1.5;
  font-weight: 700;
  font-style: normal;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  text-align: center;
  color: var(--color-white);
  cursor: pointer;
  transition: 0.3s;
  height: 40px;
}
@media (max-width: 767px) {
  .btn {
    padding: 8px 16px;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    box-shadow: none;
  }
}
.btn--wide {
  width: 100%;
}
.btn--outline {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--icon {
  --size: 24px;
}
.btn--icon::after {
  content: "";
  width: var(--size);
  height: var(--size);
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background-color: currentColor;
}
.btn--sm {
  padding: 8px 10px;
  font-size: 14px;
  gap: 10px;
}
.btn--sm .btn--icon {
  --size: 14px;
}

.btn-icon {
  --size: 40px;
  --icon-size: 24px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  transition: 0.25s ease-in-out;
}
@media (any-hover: hover) {
  .btn-icon:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
  }
}
.btn-icon::before {
  content: "";
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background-color: currentColor;
}
.btn-icon .btn-primary {
  color: #fff;
  background-color: #10A7F8;
  border-color: #007bff;
}

.daterangepicker .btn {
  border-radius: 15px;
  height: 30px;
}

.header {
  padding: 20px 0;
  background-color: var(--color-white);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .header__logo {
    width: 90px;
  }
}

.right-menu .dropdown {
  float: left;
  margin-right: 20px;
}

.avatar-img {
  font-size: 20px;
}

#list-worktime {
  margin-top: 4px;
}

.table {
  width: 100%;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .table {
    border-radius: 8px;
  }
}
.table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  min-width: 1200px;
}
.table table tr {
  width: 100%;
}
.table table th {
  padding: 20px 16px;
  background-color: var(--color-primary-light);
  text-align: left;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 700;
  color: #698797;
  vertical-align: middle !important;
}
@media (max-width: 1600px) {
  .table table th {
    font-size: 14px;
    padding: 10px;
  }
}
.table table th .btn {
  background-color: var(--color-primary-light);
}
.table table th:has(.custom-select) {
  padding-top: 10px;
  padding-bottom: 10px;
}
.table table td {
  padding: 20px 16px;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 500;
  vertical-align: middle !important;
}
@media (max-width: 1600px) {
  .table table td {
    font-size: 14px;
    padding: 16px 10px;
  }
}
.table table td .btn {
  background-color: var(--color-primary-light);
  border: 1px solid rgba(0, 66, 107, 0.05);
  color: #000;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(36, 79, 152);
  background-color: rgba(36, 79, 152, 0.15);
}

.modal-content {
  background-color: #fefefe;
  margin: 3% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 5px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.bx-icon-edit {
  background-image: url("/img/bx_partners/icons/edit.svg");
}

.bx-icon-delete {
  background-image: url("/img/bx_partners/icons/delete.svg");
}

.bx-icon-phone {
  background-image: url("/img/bx_partners/icons/phone.svg");
}

.bx-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.auth {
  width: 100%;
  min-height: calc(100vh - 70px);
  padding: 20px 0 0;
  background: url("../img/auth/auth-bg.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth__inner {
  max-width: 700px;
  width: 100%;
  border-radius: 16px;
  padding: 20px 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.01);
  box-shadow: 4px 4px 10px 0px rgba(8, 31, 77, 0.0509803922);
}
@media (max-width: 767px) {
  .auth__inner {
    padding: 48px 24px;
    border-radius: 10px;
  }
}
.auth__title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .auth__title {
    font-size: 20px;
  }
}
.auth__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cabinet {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 767px) {
  .cabinet {
    gap: 16px;
  }
}
.cabinet__logout {
  --icon-size: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--color-primary);
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 4px;
  transition: 0.25s ease-in-out;
}
.cabinet__logout::after {
  content: "";
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  background-color: currentColor;
}
@media (any-hover: hover) {
  .cabinet__logout:hover {
    background-color: var(--color-primary-light);
  }
}
.cabinet__details {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 4px 4px 10px 0px rgba(8, 31, 77, 0.0509803922);
  border-radius: 10px;
  font-weight: 600;
}
.cabinet__details-item:not(:last-of-type) {
  padding-right: 16px;
  border-right: 1px solid var(--color-border);
}
.cabinet__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 16px;
}
@media (max-width: 767px) {
  .cabinet__row {
    justify-content: flex-end;
  }
}
.cabinet__table {
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
