/*
	HTML5 Reset :: style.css
-------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:
#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* sample markup

  <div class="burger">
    <span></span>
  </div>
*/
.burger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  width: 30px;
  height: 35px;
  cursor: pointer;
  outline: none;
  border: none;
  z-index: 100;
  margin-left: 20px;
}
@media (min-width: 769px) {
  .burger {
    display: none;
  }
}
.burger span {
  position: absolute;
  display: block;
  left: 0;
  height: 2px;
  width: 100%;
  background: #173253;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.495, -0.495, 0.44, 1.445);
          transition-timing-function: cubic-bezier(0.495, -0.495, 0.44, 1.445);
}
.burger span:before, .burger span:after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 100%;
  background: #173253;
  left: 0;
}
.burger span:before {
  top: -8px;
  -webkit-transition-property: width, margin-left, margin-top, height;
  transition-property: width, margin-left, margin-top, height;
  -webkit-transition-duration: 200ms, 200ms, 200ms, 200ms;
          transition-duration: 200ms, 200ms, 200ms, 200ms;
  -webkit-transition-delay: 400ms, 400ms, 200ms, 200ms;
          transition-delay: 400ms, 400ms, 200ms, 200ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.burger span:after {
  bottom: -8px;
  -webkit-transition-property: width, margin-left;
  transition-property: width, margin-left;
  -webkit-transition-duration: 200ms, 200ms;
          transition-duration: 200ms, 200ms;
  -webkit-transition-delay: 400ms, 400ms;
          transition-delay: 400ms, 400ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.burger.open span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.burger.open span:after {
  width: 0;
  margin-left: 14px;
  -webkit-transition-delay: 0s, 0s;
          transition-delay: 0s, 0s;
}
.burger.open span:before {
  width: 2px;
  margin-left: 14px;
  margin-top: -6px;
  height: 30px;
  -webkit-transition-delay: 0s, 0s, 200ms, 400ms;
          transition-delay: 0s, 0s, 200ms, 400ms;
}

a {
  text-decoration: none;
  color: #173253;
}

.grey {
  color: #A9B9C6;
}

.main {
  width: calc(100% - 212px);
  margin: 60px 0 100px auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .main {
    width: 100%;
  }
}

.section {
  margin-bottom: 40px;
}
.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px auto;
}
.section__head .title {
  margin-bottom: 5px;
}
.section__head__logo img {
  max-height: 30px;
  margin-bottom: 5px;
}
.section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section__block {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .section__block {
    width: 100%;
  }
}

.breadcrumb {
  display: block;
  min-height: 40px;
}
.breadcrumb ul.breadcrumb-menu {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb ul.breadcrumb-menu li {
  list-style: none;
  opacity: 0.3;
}
.breadcrumb ul.breadcrumb-menu li.active, .breadcrumb ul.breadcrumb-menu li:hover {
  opacity: 1;
}
.breadcrumb ul.breadcrumb-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb ul.breadcrumb-menu li a img {
  margin-right: 10px;
}

.title {
  font-weight: 700;
  font-size: 22px;
}
.title--lg {
  font-size: 30px;
}
.title--md {
  font-size: 18px;
}
.title--sm {
  font-size: 14px;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 212px);
  background-color: #fff;
  z-index: 10;
}
@media (max-width: 768px) {
  .header {
    width: 100%;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 10px 20px;
}

.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: calc(100% - 212px);
  background-color: #fff;
  z-index: 10;
}
@media (max-width: 768px) {
  .footer {
    width: 100%;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 10px 20px;
}

.copyright {
  font-size: 12px;
  margin: 10px 0;
}

.btn {
  background-color: #173253;
  color: #fff;
  padding: 10px 15px;
  min-width: 190px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
.btn img {
  margin-right: 10px;
}
.btn span {
  font-weight: 500;
  font-size: 15px;
}
.btn--full {
  width: 100%;
}

.upload-btn label {
  width: 100px;
  height: 100px;
  background-color: #F1F4FA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 40px auto;
  border-radius: 50%;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 212px;
  height: 100%;
  background-color: #fff;
  border-right: 2px solid #D6DEE5;
  z-index: 100;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
@media (max-width: 768px) {
  .sidebar {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.sidebar.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sidebar__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 20px;
}

ul.sidebar-menu {
  margin-top: 40px;
}
ul.sidebar-menu li {
  list-style: none;
  margin-bottom: 20px;
  opacity: 0.3;
}
ul.sidebar-menu li.active, ul.sidebar-menu li:hover {
  opacity: 1;
}
ul.sidebar-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
ul.sidebar-menu li a img {
  margin-right: 10px;
}
ul.sidebar-menu li a span {
  font-weight: 700;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card {
  width: calc(20% - 20px);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  min-height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 1280px) {
  .card {
    width: calc(33.3% - 20px);
  }
}
@media (max-width: 768px) {
  .card {
    width: calc(33.3% - 10px);
  }
}
.card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.card__image {
  margin-bottom: 10px;
  width: 111px;
  max-width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card .title {
  margin-bottom: 10px;
}
.card__icon {
  position: absolute;
  top: 10px;
  cursor: pointer;
}
.card__icon--left {
  left: 10px;
}
.card__icon--right {
  right: 10px;
}
.card--2col {
  width: calc(40% - 20px);
}
@media (max-width: 1280px) {
  .card--2col {
    width: 100%;
  }
}
.card--33 {
  width: calc(33.3% - 20px);
}
@media (max-width: 1280px) {
  .card--33 {
    width: calc(33.3% - 10px);
  }
}

.status {
  text-align: left;
  width: 100%;
}
.status__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.status__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
}
.status__list li {
  width: calc(33.3% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.status__list__color {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 5px;
  margin-right: 10px;
}
.status__list__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.status__diagram {
  width: 125px;
}

table {
  border-collapse: separate !important;
  border-spacing: 0 20px !important;
  min-width: 800px;
}
table thead th {
  color: #A9B9C6 !important;
  border-bottom: 0 !important;
}
table tbody tr {
  background-color: #fff !important;
}
table tbody td {
  padding: 30px 10px !important;
  text-align: center;
  vertical-align: middle;
}
table tbody td.priority span {
  background-color: rgba(169, 185, 198, 0.3);
  padding: 5px 15px;
  border-radius: 10px;
  font-weight: 700;
  color: #A9B9C6;
}
table tbody td .icons img {
  margin: 3px 10px;
  max-height: 38px;
}
table tbody td .delete-icon {
  margin-right: 25px;
}

table.dataTable.no-footer {
  border-bottom: 0 !important;
}

.dataTables_wrapper {
  margin: 0 auto 20px auto !important;
  overflow: auto;
}
.dataTables_wrapper .dataTables_paginate {
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .dataTables_wrapper .dataTables_paginate {
    position: sticky;
    bottom: 0;
    left: 0;
  }
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #173253 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #173253 !important;
  color: #fff !important;
  border-radius: 50% !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: none;
  color: #A9B9C6 !important;
  border-color: #A9B9C6 !important;
}

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filters--vertical {
  display: block;
  max-width: 800px;
}
.filters--vertical .filters__block {
  width: 100%;
  padding-right: 0px;
}
.filters__block {
  width: 20%;
  padding-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .filters__block {
    width: 33.3%;
  }
}
@media (max-width: 576px) {
  .filters__block {
    width: 50%;
  }
}
.filters__block--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filters .title {
  margin-bottom: 10px;
}

.select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px;
  padding-right: 30px;
  background-color: #fff;
  border: 0;
  border-radius: 10px;
  background-image: url(../../assets/images/icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: 95% center;
  width: 100%;
  max-width: 360px;
  font-size: 13px;
  outline: 0;
}
.select--background {
  background-color: #F1F4FA;
}

.textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px;
  padding-right: 30px;
  background-color: #fff;
  border: 0;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: 95% center;
  width: 100%;
  font-size: 13px;
  outline: 0;
}
.textarea--background {
  background-color: #F1F4FA;
  padding-right: 30px;
}

input[type=text],
input[type=password] {
  background-color: #F1F4FA;
  border: 0;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  font-size: 13px;
  outline: 0;
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 10px;
  line-height: 1.2;
  margin: 10px 20px 40px 20px;
}
.info p {
  padding-left: 10px;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
  outline: 0;
}

/* Text color for the label */
input[type=checkbox] + span {
  cursor: pointer;
  color: black;
}

/* Checkbox un-checked style */
input[type=checkbox] + span:before {
  content: "";
  border: 1px solid #173253;
  border-radius: 3px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 0.5em;
  margin-top: 0.5em;
  vertical-align: -2px;
}

/* Checked checkbox style (in this case the background is green #e7ffba, change this to change the color) */
input[type=checkbox]:checked + span:before {
  /* NOTE: Replace the url with a path to an SVG of a checkmark to get a checkmark icon */
  background-image: url("../../assets/images/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  /* The size of the checkmark icon, you may/may not need this */
  background-size: 12px;
  border-radius: 2px;
  background-color: #173253;
  color: white;
}

/* Disabled checkbox styles */
input[type=checkbox]:disabled + span {
  cursor: default;
  color: black;
  opacity: 0.5;
}

.file-area {
  width: 100%;
  position: relative;
  font-size: 18px;
}

.file-area input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.file-area .file-dummy {
  width: 100%;
  padding: 50px 30px;
  background-color: #fff;
  text-align: center;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  border-radius: 10px;
  font-size: 12px;
}
.file-area .file-dummy--background {
  background-color: #F1F4FA;
}
.file-area .file-dummy img {
  margin-bottom: 15px;
}

.file-area .file-dummy .success {
  display: none;
}

.file-area input[type=file]:valid + .file-dummy .success {
  display: inline-block;
}

.file-area input[type=file]:valid + .file-dummy .default {
  display: none;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 370px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 200;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  overflow: auto;
}
.offcanvas.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.offcanvas__wrapper {
  margin: 80px 20px 40px 20px;
  position: relative;
}
.offcanvas #close-offcanvas {
  position: absolute;
  top: 0;
  left: 0;
}
.offcanvas__head {
  padding: 0 40px;
  text-align: center;
}
.offcanvas__head .title {
  margin-bottom: 40px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: none;
  overflow-y: auto;
  height: 100vh;
}
.modal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 20px;
}
.modal__inner {
  background-color: #fff;
  padding: 40px;
  position: relative;
}
.modal a.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
}

.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  min-height: 100vh;
}

.home-col-left {
  width: 50%;
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1500px) {
  .home-col-left {
    background-size: cover;
  }
}
@media (max-width: 576px) {
  .home-col-left {
    display: none;
  }
}

.home-col-right {
  width: 50%;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 576px) {
  .home-col-right {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.home-col-right__wrapper {
  max-width: 350px;
  width: 100%;
  padding: 100px 20px 40px 20px;
}
.home-col-right__top {
  text-align: center;
  margin-bottom: 50px;
}
.home-col-right__top img {
  margin-bottom: 10px;
}
.home-col-right__footer {
  position: relative;
  text-align: center;
  border-top: 1px solid #A9B9C6;
  padding: 40px 20px;
  max-width: 380px;
  width: 100%;
  background-color: #fff;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  background-color: #F2F2F2;
  color: #173253;
}