@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-Black.ttf);
  font-weight: 900;
}

html {
  margin: 0;
  padding: 0;
}

html body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  color: #878686;
}

html body h1, html body h2, html body h3, html body h4 {
  color: #3c3c3b;
  font-weight: 700;
}

html body h1 {
  font-size: 42px;
  font-weight: 900;
}

html body .btn {
  background: #002c5f;
  color: white;
  border: none;
  border-radius: 25px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 15px;
  text-decoration: none;
}

html body .btn-danger {
  background-color: #ff4631;
  color: white;
}

html body .btn-warning {
  background-color: #fccd00;
  color: white;
}

html body .btn-info {
  background-color: #186d8a;
  color: white;
}

html body .btn-success {
  background-color: #00c742;
  color: white;
}

html body .btm-primary {
  background: #002c5f;
  color: white;
}

html body .hidden {
  display: none !important;
}

html body div.alert {
  width: 500px;
  position: fixed;
  bottom: 0;
  left: calc(50vw - 500px / 2);
  padding: 25px;
}

html body div.alert .container {
  position: relative;
}

html body div.alert .container p {
  margin: 0;
}

html body div.alert .container span#close {
  position: absolute;
  top: -20px;
  right: -15px;
  font-size: 20px;
  cursor: pointer;
}

html body .alert-success {
  background-color: #002c5f;
  color: white;
}

html body .alert-danger {
  background-color: #ff4631;
  color: white;
}

html body div#login-card {
  width: 500px;
  position: relative;
  margin: 0 auto;
  margin-top: 150px;
  padding: 20px;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
}

html body div#login-card img#auth-logo {
  width: 80px;
  position: absolute;
  top: -45px;
  left: 210px;
  background-color: white;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
}

html body div#login-card h1 {
  text-align: center;
}

html body div#login-card form input {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  color: #878686;
  font-size: 16px;
}

html body div#login-card form button {
  display: block;
  margin: 10px auto;
  min-width: 150px;
}

html body div#login-card form div.row {
  margin-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html body div#login-card form div.row input {
  margin: 5px 0;
}

html body div#login-card form div.row-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

html body div#login-card form span.invalid-login {
  position: absolute;
  bottom: -70px;
  width: 400px;
  left: 50px;
  text-align: center;
  border: 1px solid #ff4631;
  background-color: #ff4631;
  border-radius: 3px;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  -webkit-box-shadow: 0 0 25px rgba(255, 70, 49, 0.3);
  box-shadow: 0 0 25px rgba(255, 70, 49, 0.3);
}

html body form.crud {
  margin: 25px 0;
}

html body form.crud .not_valid {
  border: 1px solid #ff4631 !important;
  -webkit-box-shadow: 0 0 25px rgba(255, 70, 49, 0.3);
  box-shadow: 0 0 25px rgba(255, 70, 49, 0.3);
  position: relative;
}

html body form.crud input[type=text] {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  color: #878686;
  font-size: 16px;
}

html body form.crud textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  color: #878686;
  font-size: 16px;
  display: block;
}

html body form.crud input#next_contact_time {
  width: auto;
  display: block;
}

html body form.crud select.select {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  color: #878686;
  font-weight: 600;
  margin: 10px 0;
}

html body form.crud select.select:disabled {
  background-color: #eee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html body form.crud button {
  display: block;
  margin: 15px 0;
}

html body form.crud div#prev-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 10px;
  margin-bottom: 15px;
}

html body form.crud div#prev-data div.info {
  width: 32%;
  text-align: center;
  border: 2px solid #eaeaea;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin: 7px;
}

html body form.crud div#prev-data div.info p.label {
  font-weight: 800;
}

html body table.table {
  margin: 50px 0;
  width: 100%;
}

html body table.table thead tr {
  background: #e4f0ff;
  text-align: left;
  color: #3c3c3b;
  font-weight: bold;
}

html body table.table thead tr th {
  vertical-align: top;
  border-top: 1px solid #e4f0ff;
  padding: 0 15px;
  line-height: 40px;
}

html body table.table tbody tr {
  position: relative;
}

html body table.table tbody tr:nth-child(2n) {
  background: #e4f0ff;
}

html body table.table tbody tr.missed {
  background-color: rgba(255, 70, 49, 0.15);
}

html body table.table tbody tr.new {
  font-weight: bold;
  color: black;
}

html body table.table tbody tr.katya {
  background-color: rgba(16, 0, 255, 0.15);
}

html body table.table td {
  padding: 5px 15px;
}

html body table.table td.actions {
  width: 357px;
}

html body table.table td.actions-claims {
  width: 222px;
}

html body table.table td.actions-claims-single {
  width: 107px;
}

html body div#claim-filters {
  width: 400px;
}

html body div#claim-filters div#toggle-filters {
  border: 1px solid #ccc;
  padding: 15px;
}

html body div#claim-filters div#filter-body {
  border: 1px solid #ccc;
  padding: 15px;
  margin-top: -1px;
}

html body div#claim-filters div#filter-body form.filter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
}

html body div#claim-filters div#filter-body form.filter-form select.select {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  color: #878686;
  font-weight: 600;
  margin: 10px 0;
}

html body div#claim-filters div#filter-body form.filter-form input.datepicker-here {
  display: block;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  color: #878686;
  font-weight: 600;
  margin: 10px 0;
}

html body div#claim-filters div#filter-body form.filter-form div.row-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 15px;
}

html body div#claim-filters div#filter-body form.filter-form div.row-button button {
  display: block;
}

html body a#excel-button img {
  height: 11px;
  margin-top: 15px;
  margin-right: 7px;
}

html body a#refresh_claims {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 50%;
  background-color: #186d8a;
  line-height: 100px;
  text-align: center;
  text-decoration: none;
  color: white;
}

html body ul.pagination {
  list-style-type: none;
}

html body ul.pagination li.page-item {
  padding: 0 10px;
  display: inline-block;
  font-size: 15px;
}

html body ul.pagination li.page-item.active {
  border-radius: 50%;
  background-color: #186d8a;
  height: 30px;
  line-height: 30px;
  width: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  text-align: center;
}

html body ul.pagination li.page-item a.page-link {
  color: #002c5f;
  text-decoration: none;
}

html body ul.pagination li.page-item a.page-link:visited {
  color: #002c5f;
}

html body header#header {
  width: 100%;
  height: 100px;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
}

html body header#header .container {
  width: 1100px;
  height: inherit;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

html body header#header .container #logo img {
  width: 160px;
}

html body header#header .container nav#nav {
  height: 100%;
}

html body header#header .container nav#nav ul {
  list-style-type: none;
  height: inherit;
  margin: 0;
}

html body header#header .container nav#nav ul li {
  padding: 0 10px;
  display: inline-block;
  height: inherit;
  font-size: 13px;
  color: #002c5f;
}

html body header#header .container nav#nav ul li a {
  text-decoration: none;
  line-height: 100px;
  font-size: 13px;
  color: #002c5f;
}

html body header#header .container nav#nav ul li a:visited {
  color: #002c5f !important;
}

html body header#header .container nav#nav ul li.has-submenu {
  position: relative;
}

html body header#header .container nav#nav ul li.has-submenu > ul.submenu {
  display: none;
  position: absolute;
  top: 58px;
  left: 0;
  background-color: white;
  padding: 0;
  width: 200px;
  height: auto;
  webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

html body header#header .container nav#nav ul li.has-submenu > ul.submenu li {
  display: block;
  padding: 10px 10px 10px 25px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 32px;
}

html body header#header .container nav#nav ul li.has-submenu > ul.submenu li a {
  line-height: unset;
}

html body header#header .container nav#nav ul li.has-submenu:hover > ul.submenu {
  display: block;
}

html body header#header .container div#user-menu {
  width: 200px;
  position: relative;
  min-height: 30px;
  font-size: 13px;
  color: #002c5f;
}

html body header#header .container div#user-menu img#auth-logo-header {
  height: 30px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  background: white;
  webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

html body header#header .container div#user-menu div#logout {
  display: none;
  position: absolute;
  webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

html body header#header .container div#user-menu div#logout a.btn {
  font-size: 13px;
  display: block;
}

html body header#header .container div#user-menu:hover > img#auth-logo-header {
  position: absolute;
  z-index: 2;
  left: 85px;
}

html body header#header .container div#user-menu:hover > div#logout {
  z-index: 1;
  display: block;
  top: 15px;
  background: white;
  z-index: 1;
  padding: 15px;
}

html body main#main.container {
  max-width: 1100px;
  padding: 5px;
  margin: 0 auto;
}

html body div.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
/*# sourceMappingURL=app.css.map */