body {
  margin: auto;
  font-family: Montserrat, sans-serif !important;
}
.nav-steps {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
}
.nav-steps .nav-step {
  border: 1px solid #DDD;
  padding: 10px 20px;
  border-radius: 10px;
}
.nav-steps .nav-step a {
  text-decoration: none;
  color: #333;
}
.nav-steps .nav-step.active {
  background: #0d6efd;
  border-color: #0d6efd;
}
.nav-steps .nav-step.active a {
  color: #FFF;
}
input[readonly] {
  background: #EEE;
}
input[readonly]:active,
input[readonly]:focus {
  background: #EEE;
}
.well {
  padding: 10px;
}
.bg-gray-light {
  background: #FAFAFA;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
}
.notify {
  margin-top: 10px;
  color: #888;
  font-style: italic;
  font-size: 12px;
}
.practic-days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.parctic_day {
  padding: 5px;
  height: 64px;
  border: 1px solid #EEE;
}
.parctic_day .date {
  color: #888;
  text-align: right;
}
.parctic_day.green {
  background: #78eb36;
}
.parctic_day.yellow {
  background: #ffe354;
}
.parctic_day.red {
  background: #ff5454;
}
.navbar-dark {
  background: #F5F5F5;
}
.space-around {
  justify-content: space-around;
}
#content {
  display: flex;
  min-height: calc(100vh - 50px);
  height: 100%;
}
.left-sidebar {
  width: 300px;
  position: relative;
  background: #F5F5F5;
}
.left-sidebar .left-menu {
  margin-top: 50px;
  list-style: none;
  margin-left: 30px;
  margin-right: 30px;
  padding-left: 0;
}
.left-sidebar .left-menu a {
  padding: 8px 20px;
  display: block;
  margin: 5px 0 ;
  color: #333;
  text-decoration: none;
}
.left-sidebar .left-menu a:hover,
.left-sidebar .left-menu a.active {
  background: #0d6efd;
  border-radius: 8px;
  color: #FFF;
}
.wrapper-content {
  width: calc(100% - 300px);
  margin-left: 50px;
  margin-top: 50px;
}
.required:after {
  color: #CC0000;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 49;
  background-color: rgba(0, 0, 0, 0.5);
  /* Полупрозрачный фон */
  transition: all 0.3s linear 0s;
}
.modal-content {
  margin: 150px auto 0 auto;
  padding: 30px;
  width: fit-content;
  border-radius: 20px;
  background: #FFF;
  position: relative;
}
.close {
  color: #aaa;
  position: absolute;
  top: 0px;
  right: -50px;
  background: #EEE;
  width: 30px;
  height: 30px;
  padding: 5px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s linear 0s;
}
.close:hover {
  border-radius: 5px;
}
/* Затемнение фона и показ модального окна, когда оно отображается */
.modal.active {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear 0s;
}
.calendar {
  border: 1px solid #ccc;
  padding: 10px;
  width: 500px;
}
.calendar .header {
  overflow: hidden;
}
.calendar .cell {
  width: calc(100% / 7);
  text-align: center;
  float: left;
  padding: 10px;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
}
.calendar .week {
  overflow: hidden;
}
.calendar .empty-cell {
  width: calc(100% / 7);
  float: left;
  padding: 10px;
}
.green {
  background: #78eb36 !important;
}
.yellow {
  background: #ffe354 !important;
}
.red {
  background: #ff5454 !important;
}
label.required:after {
  content: " *";
  color: #CC0000;
}
legend.required:after {
  content: " *";
  color: #CC0000;
}
.chosen-container-single .chosen-single {
  height: 38px;
  line-height: 38px;
}
.chosen-container-single .chosen-single div b {
  background-position-y: 9px;
}
footer {
  padding: 40px 0;
  background: #e9e9e9;
}
.text-right {
  text-align: right;
}
@media (max-width: 767.98px) {
  .mob-text-center {
    text-align: center;
  }
  .left-sidebar {
    display: none;
  }
  .nav-steps {
    display: block;
  }
  .nav-steps .nav-step {
    margin-top: 5px;
  }
  .wrapper-content {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
  .menu {
    margin-top: 10px;
    width: 100%;
  }
}
/*# sourceMappingURL=common.css.map */