@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@charset "UTF-8";

/**
    Support for SASS is deprecated as of v3.18.

    The files remain here if your build is dependent on them
    but they will not receive updates in future releases. All
    SASS variables have been translated into CSS variables, so
    migration should be quite simple if you'd like to move over.

    In v4, these files will be removed.
 */

.v-select {
  position: relative;
  font-family: inherit;
}

.v-select,
.v-select * {
  box-sizing: border-box;
}

/* KeyFrames */

@keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Dropdown Default Transition */

.vs__fade-enter-active,
.vs__fade-leave-active {
  pointer-events: none;
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}

.vs__fade-enter,
.vs__fade-leave-to {
  opacity: 0;
}

/** Component States */

/*
 * Disabled
 *
 * When the component is disabled, all interaction
 * should be prevented. Here we modify the bg color,
 * and change the cursor displayed on the interactive
 * components.
 */

.vs--disabled .vs__dropdown-toggle,
.vs--disabled .vs__clear,
.vs--disabled .vs__search,
.vs--disabled .vs__selected,
.vs--disabled .vs__open-indicator {
  cursor: not-allowed;
  background-color: rgb(248, 248, 248);
}

/*
 *  RTL - Right to Left Support
 *
 *  Because we're using a flexbox layout, the `dir="rtl"`
 *  HTML attribute does most of the work for us by
 *  rearranging the child elements visually.
 */

.v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px;
}

.v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}

.v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}

.v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right;
}

/**
    Dropdown Toggle

    The dropdown toggle is the primary wrapper of the component. It
    has two direct descendants: .vs__selected-options, and .vs__actions.

    .vs__selected-options holds the .vs__selected's as well as the
    main search input.

    .vs__actions holds the clear button and dropdown toggle.
 */

.vs__dropdown-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  padding: 0 0 4px 0;
  background: none;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  white-space: normal;
}

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative;
}

.vs__actions {
  display: flex;
  align-items: center;
  padding: 4px 6px 0 3px;
}

/* Dropdown Toggle States */

.vs--searchable .vs__dropdown-toggle {
  cursor: text;
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vs__open-indicator {
  fill: rgba(60, 60, 60, 0.5);
  transform: scale(1);
  transition: transform 150ms cubic-bezier(1, -0.115, 0.975, 0.855);
  transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
}

.vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(1);
}

.vs--loading .vs__open-indicator {
  opacity: 0;
}

/* Clear Button */

.vs__clear {
  fill: rgba(60, 60, 60, 0.5);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}

/* Dropdown Menu */

.vs__dropdown-menu {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-top-style: none;
  border-radius: 0 0 4px 4px;
  text-align: left;
  list-style: none;
  background: #fff;
}

.vs__no-options {
  text-align: center;
}

/* List Items */

.vs__dropdown-option {
  line-height: 1.42857143; /* Normalize line height */
  display: block;
  padding: 3px 20px;
  clear: both;
  color: #333; /* Overrides most CSS frameworks */
  white-space: nowrap;
  cursor: pointer;
}

.vs__dropdown-option--highlight {
  background: #5897fb;
  color: #fff;
}

.vs__dropdown-option--deselect {
  background: #fb5858;
  color: #fff;
}

.vs__dropdown-option--disabled {
  background: inherit;
  color: rgba(60, 60, 60, 0.5);
  cursor: inherit;
}

/* Selected Tags */

.vs__selected {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  color: #333;
  line-height: 1.4;
  margin: 4px 2px 0px 2px;
  padding: 0 0.25em;
  z-index: 0;
}

.vs__deselect {
  display: inline-flex;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, 0.5);
  text-shadow: 0 1px 0 #fff;
}

/* States */

.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}

.vs--single.vs--open .vs__selected, .vs--single.vs--loading .vs__selected {
  position: absolute;
  opacity: 0.4;
}

.vs--single.vs--searching .vs__selected {
  display: none;
}

/* Search Input */

/**
 * Super weird bug... If this declaration is grouped
 * below, the cancel button will still appear in chrome.
 * If it's up here on it's own, it'll hide it.
 */

.vs__search::-webkit-search-cancel-button {
  display: none;
}

.vs__search::-webkit-search-decoration,
.vs__search::-webkit-search-results-button,
.vs__search::-webkit-search-results-decoration,
.vs__search::-ms-clear {
  display: none;
}

.vs__search,
.vs__search:focus {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1;
  z-index: 1;
}

.vs__search::-moz-placeholder {
  color: inherit;
}

.vs__search::placeholder {
  color: inherit;
}

/**
    States
 */

.vs--unsearchable .vs__search {
  opacity: 1;
}

.vs--unsearchable:not(.vs--disabled) .vs__search {
  cursor: pointer;
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: 0.2;
}

/* Loading Spinner */

.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border-top: 0.9em solid rgba(100, 100, 100, 0.1);
  border-right: 0.9em solid rgba(100, 100, 100, 0.1);
  border-bottom: 0.9em solid rgba(100, 100, 100, 0.1);
  border-left: 0.9em solid rgba(60, 60, 60, 0.45);
  transform: translateZ(0);
  animation: vSelectSpinner 1.1s infinite linear;
  transition: opacity 0.1s;
}

.vs__spinner,
.vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

/* Loading Spinner States */

.vs--loading .vs__spinner {
  opacity: 1;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

input {
  outline: none;
}

@media (pointer: coarse) {
  .mobile-disable {
    display: none !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a.decoration {
  text-decoration: underline;
  color: #003E92;
}

a.opacity:hover {
  opacity: 0.7;
}

a[disabled] {
  pointer-events: none;
}

h1,
h2 {
  font-size: 22px;
  color: #003E92;
  font-weight: 700;
}

h3 {
  font-size: 17px;
  color: #003E92;
  font-weight: 700;
}

h4 {
  font-size: 17px;
  color: #003E92;
}

.fa.invisible {
  visibility: hidden;
}

.fa.primary-color {
  color: #003E92;
}

input[disabled],
select[disabled] {
  opacity: 0.5;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

html,
body {
  box-sizing: border-box;
}

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

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

#new_password_container {
  overflow: hidden;
  height: 0px;
}

html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: auto;
  line-height: 1.45;
}

@media (max-width: 979px) {
  body.nav-open {
    overflow: hidden;
  }
}

body > header,
body > nav,
body > main,
body > footer {
  flex-shrink: 0;
  width: 100%;
  margin: auto;
}

body > main {
  flex: 1 0 auto;
  position: relative;
}

.header {
  height: 80px;
  padding: 20px 44px;
  background-color: #003E92;
  box-shadow: 0px 3px 3px rgba(0, 61, 146, 0.2);
}

.header__inner {
  display: flex;
  justify-content: space-between;
}

.header__section {
  display: flex;
}

.header__section--pc {
  display: flex;
}

.header__section--mobile {
  display: none;
}

.header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0px 16px;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 600;
}

.header__link__icon {
  margin-right: 5px;
}

.header__link__text {
  font-size: 13px;
  color: white;
}

.header__link--logo {
  padding: 0px;
  border: none;
}

.header__link--logo__icon {
  margin-right: 0px;
}

.header__link--logo:hover {
  background: none;
}

.header__link--dropdown:hover {
  border-color: white;
  background-color: #003E92;
}

.header__link--dropdown:after {
  content: "▼︎";
  color: white;
  font-size: 9px;
  vertical-align: middle;
  margin-left: 0.5em;
}

.header__link--dropdown:hover:after {
  content: "▲︎";
}

.header__link--dropdown {
  position: relative;
}

.header__dropdown {
  list-style: none;
  position: absolute;
  overflow: hidden;
  top: calc(100% + 1px);
  right: -1px;
  width: calc(100% + 2px);
  border: 1px solid #003E92;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.header__link--dropdown:hover .header__dropdown {
  opacity: 1;
  pointer-events: all;
}

.header__dropdown .header__link {
  margin: 0px;
  padding: 10px 5px;
}

.header__dropdown .header__link__text {
  color: #003E92;
}

.header__nav-toggle__bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: 0.4s;
}

.nav-open .header__nav-toggle__bar--1 {
  transform: translateY(8px) rotate(-45deg);
}

.nav-open .header__nav-toggle__bar--2 {
  opacity: 0;
}

.nav-open .header__nav-toggle__bar--3 {
  transform: translateY(-8px) rotate(45deg);
}

@media (max-width: 979px) {
  .header__section--pc {
    display: none;
  }

  .header__section--mobile {
    display: block;
  }
}

.footer {
  padding: 10px;
  background-color: white;
}

.footer__copyright {
  text-align: center;
}

.nav {
  z-index: 8;
  border-right: 1px solid #DDEDFF;
  color: #003E92;
  background-color: #ffffff;
}

.nav__inner {
  margin-top: 30px;
}

.nav__group__header {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 12px 20px;
  border-radius: 10px 0px 0px 10px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.nav__group__header__icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.nav__group__header::after {
  content: "▶︎";
  margin-left: 15px;
  font-size: 11px;
  z-index: 11;
}

.nav__group__header.expanded::after {
  content: "▼︎";
}

.nav__group__header:hover {
  background-color: #DDEDFF;
}

.nav__group__header--open::after {
  content: "▼︎";
}

.nav__group--no-dropdown .nav__group__header::after {
  content: none;
}

.nav__group__inner {
  overflow: hidden;
}

.nav__group__inner.collapsed {
  height: 0px;
}

.nav__group--mobile {
  display: none;
}

.nav__links__header {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 12px 20px;
  padding-left: 56px;
  border-radius: 10px 0px 0px 10px;
  cursor: pointer;
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.nav__links__header__icon {
  position: absolute;
  width: 9px;
  height: 9px;
  left: 40px;
}

.nav__links__header__v {
  position: absolute;
  width: 0px;
  height: calc(50% - 5px);
  left: 44px;
  bottom: 0px;
  border-left: thin solid #003E92;
}

.nav__links__header:hover {
  background-color: #DDEDFF;
}

.nav__links__list li {
  font-size: 0px;
}

.nav__links__list li a {
  display: block;
}

.nav__link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 12px 20px;
  padding-left: 56px;
  border-radius: 10px 0px 0px 10px;
  cursor: pointer;
  position: relative;
  font-size: 13px;
}

.nav__link:hover {
  background-color: #DDEDFF;
}

.nav__link__v {
  position: absolute;
  width: 0px;
  height: 100%;
  left: 44px;
  top: 0px;
  border-left: thin solid #003E92;
}

.nav__link__h {
  position: absolute;
  width: 9px;
  height: 0px;
  left: 44px;
  border-top: thin solid #003E92;
}

.nav__links__list .nav__links__item:last-child .nav__link__v {
  height: 50%;
}

@media (max-width: 979px) {
  .nav {
    position: fixed;
    width: 265px;
    top: 80px;
    bottom: 0px;
    right: -265px;
    transition-timing-function: ease-in;
    transition-property: transform;
    transition-duration: 0.2s;
    box-shadow: -3px 0px 3px rgba(0, 61, 146, 0.2);
    border: none;
    overflow-y: auto;
  }

  .nav-open .nav {
    transition-timing-function: ease-out;
    transition-duration: 0.25s;
    transform: translateX(-265px);
  }

  .nav__inner {
    margin: 30px 0px;
  }

  .nav__group__header {
    padding-left: 50px;
    border-radius: 0px;
    font-size: 19px;
  }

  .nav__group__header__icon {
    margin-right: 14px;
  }

  .nav__group__header--small {
    font-size: 17px;
  }

  .nav__group__header::after {
    margin-left: 12px;
  }

  .nav__group--mobile {
    display: block;
  }

  .nav__group--user {
    margin-bottom: 20px;
  }

  .nav__links {
    padding-left: 25px;
  }

  .nav__links__header {
    min-height: 36px;
    padding-left: 54px;
    border-radius: 0px;
    font-size: 17px;
  }

  .nav__links__header__icon {
    top: calc(50% - 13px);
  }

  .nav__link {
    min-height: 36px;
    padding-left: 54px;
    border-radius: 0px;
    font-size: 17px;
  }

  .nav__link__h {
    width: 9px;
  }
}

.main {
  display: flex;
}

.main__content__overlay {
  position: fixed;
  top: 80px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(112, 112, 112, 0.3);
  display: none;
}

.nav-open .main__content__overlay {
  display: block;
}

.main__breadcrumbs {
  padding: 10px 20px;
  flex: 0 0 40px;
  background: #DDEDFF;
  padding: 15px 20px;
  font-weight: 600;
  color: #003E92;
  font-size: 13px;
}

.main__breadcrumbs .breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.main__breadcrumbs .breadcrumb .breadcrumb-item {
  margin-right: 0.5em;
}

.main__breadcrumbs .breadcrumb .breadcrumb-item:not(:first-child)::before {
  content: "＞";
  display: inline-block;
  margin-right: 0.5em;
}

.main__breadcrumbs .breadcrumb .breadcrumb-item a {
  font-size: inherit;
  font-weight: inherit;
}

.main__content {
  width: auto;
  flex-grow: 1;
  background-image: url("/images/bg.png");
}

.main__content--auth, .main__content--error {
  max-width: 100%;
  padding: 20px;
}

.main__content__container {
  padding: 20px;
  flex: 1 0 auto;
}

@media (max-width: 979px) {
  .main__content {
    max-width: 100%;
  }
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  list-style: none;
  display: inline-flex;
}

.pagination li {
  margin: 0px 15px;
}

.pagination li:first-child, .pagination li:last-child {
  display: none;
}

.pagination li span, .pagination li a {
  font-size: 17px;
  text-decoration: none;
  color: #003E92;
}

.pagination li.active span {
  text-decoration: underline;
}

.pagination__input {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
}

.pagination__input input, .pagination__input span {
  display: inline;
  outline: none;
  text-align: center;
}

.pagination__input input {
  max-width: 32px;
  border-radius: 10px;
  border: 1px solid #003E92;
}

@media (max-width: 599px) {
  .pagination li {
    margin: 0px 5px;
  }

  .pagination li:first-child, .pagination li:last-child {
    display: none;
  }

  .pagination li span, .pagination li a {
    font-size: 12px;
    text-decoration: none;
    color: #003E92;
  }

  .pagination li.active span {
    text-decoration: underline;
  }

  .pagination__input {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
  }

  .pagination__input input, .pagination__input span {
    display: inline;
    outline: none;
    text-align: center;
  }

  .pagination__input input {
    max-width: 32px;
    border-radius: 10px;
    border: 1px solid #003E92;
  }
}

.search-result-buttons {
  margin-top: 20px;
}

.search-result-count {
  font-weight: 700;
}

.search-result-count-number {
  font-size: 32px;
}

svg .fg {
  fill: #003E92;
  stroke: #003E92;
}

svg .fg--no-fill {
  fill: none;
}

svg .fg--no-stroke {
  fill: none;
}

svg .bg {
  fill: white;
  stroke: white;
}

svg .bg--no-fill {
  fill: none;
}

svg .bg--no-stroke {
  fill: none;
}

.inverted svg.fg {
  fill: white;
  stroke: white;
}

.inverted svg .bg {
  fill: #003E92;
  stroke: #003E92;
}

.button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: solid 1px transparent;
  border-radius: 20px;
  margin: 2px 16px;
  padding: 0.5em 1em;
  background-color: #003E92;
  color: white;
  font-size: 13px;
  padding: 6px 18px;
}

.button:active {
  transform: translateY(1px);
}

.button:hover {
  opacity: 0.8;
}

.button[disabled] {
  background: gray;
  pointer-events: none;
}

.button[disabled]:hover {
  opacity: 1;
}

.button--secondary {
  background-color: white;
  border-color: #003E92;
  color: #003E92;
}

.button-small {
  font-size: 10px;
  padding: 0px 10px;
  margin: 0px;
  vertical-align: middle;
}

.button--svg {
  background: none !important;
  border: none !important;
  color: #003E92 !important;
  width: 66px;
  padding: 0px;
  margin: 15px 3px;
}

.button--svg svg {
  width: 50px;
  height: 50px;
}

.button--svg span {
  font-size: 11px;
  display: block;
  margin-top: 15px;
}

.button.not_taxed {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 15px;
  height: 15px;
  margin: 3px;
  padding: 0px;
  font-size: 9px;
  background-color: white;
  border-color: gray;
  color: gray;
}

.button.not_taxed.active {
  background-color: #003E92;
  border-color: #003E92;
  color: white;
}

.button.highlight_red {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 3px 0px 0px 3px;
  padding: 0px;
  font-size: 5px;
  line-height: 5px;
  border-radius: 0px;
  background-color: white;
  border-color: gray;
  color: gray;
}

.button.highlight_red.active {
  background-color: red;
  border-color: red;
  color: white;
}

.button.left-align {
  margin-left: 0;
}

.button:focus {
  border: 1px solid #003E92;
}

@media (max-width: 979px) {
  .button {
    width: 200px;
  }

  .button--svg {
    width: 60px;
  }
}

.container {
  flex: 1 0 auto;
  background-color: white;
  border: 1px solid #DDEDFF;
  border-radius: 10px;
  box-shadow: 0px 3px 3px rgba(0, 61, 146, 0.2);
  padding: 40px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  word-break: break-all;
  overflow-x: auto;
}

.container--full-width {
  max-width: 100%;
}

.container--full-height {
  min-height: calc(100vh - (10px + 80px + 40px + 2 * (20px + 40px)));
}

.container--messages {
  padding: 0px;
  margin: 0px auto;
  background: none;
  border: none;
  box-shadow: none;
}

.container--messages .messages-list {
  list-style: none;
}

.container--auth {
  border-color: transparent;
  background-color: transparent;
  box-shadow: none;
}

@media (min-width: 979px) {
  .container--auth {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
  }
}

.container__header {
  display: flex;
  margin-bottom: 40px;
}

.container__header__block {
  flex: 1;
  display: flex;
  justify-content: center;
}

.container__header__block--left {
  justify-content: flex-start;
}

.container__header__block--right {
  justify-content: flex-end;
}

.container__header .button {
  min-width: 100px;
  height: -moz-min-content;
  height: min-content;
}

.container__header .header-buttons {
  display: flex;
}

.container__content {
  flex: 1 0 auto;
}

.container__footer {
  display: flex;
  position: relative;
  margin-top: 40px;
}

.container__footer:empty {
  display: none;
}

.container__footer__block {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.container__footer__block--left {
  justify-content: flex-start;
  text-align: left;
}

.container__footer__block--right {
  justify-content: flex-end;
  text-align: right;
}

.container__footer__block--export {
  position: absolute;
  right: 0;
}

.container__footer .footer-buttons {
  display: flex;
  justify-content: center;
}

.container__footer .svg-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .container {
    padding: 40px 20px;
  }

  .container__header {
    flex-direction: column;
  }

  .container__header__block {
    justify-content: center;
  }

  .container__header__block--left, .container__header__block--right {
    justify-content: center;
  }

  .container__header__block--right {
    margin-top: 10px;
  }

  .container__footer {
    flex-direction: column;
  }

  .container__footer__block {
    justify-content: center;
  }

  .container__footer__block--right {
    margin-top: 45px;
  }

  .container__footer__block--export {
    position: static;
  }

  .container__footer .svg-buttons {
    justify-content: center;
  }
}

@media (max-width: 979px) {
  .container__header .header-buttons {
    flex-direction: column;
    align-items: center;
  }

  .container__footer .footer-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  text-align: left;
}

.table thead {
  background: #DDEDFF;
}

.table thead th {
  border-left: 1px solid #ffffff;
  white-space: nowrap;
}

.table thead th i {
  margin-left: 3px;
}

.table th, .table td {
  padding: 10px;
  font-size: 13px;
}

.table th {
  color: #003E92;
  font-weight: bold;
}

.table td {
  border-bottom: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  position: relative;
}

.table td:last-child {
  border-right: none;
}

.table .product-color-variant button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 34px;
  height: 22px;
  margin: 0;
  padding: 1.5px;
  border: 0.5px solid #003E92;
  border-radius: 0;
  font-size: 8px;
  color: #003E92;
  background-color: #ffffff;
}

.table .product-color-variant button svg {
  width: auto;
  height: 10px;
}

.table .table-input {
  border: none;
  outline: none;
  margin: 5px 0px;
  border-radius: 0px;
  border-bottom: 1px dashed #003E92;
  text-align: inherit;
  background-color: transparent;
  width: 100%;
  box-shadow: none !important;
}

.table .product .table-input {
  background: none;
}

.table .es-list {
  top: 100% !important;
  width: 200px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  text-align: left;
}

.table .product .es-list {
  min-width: 250px;
}

.project-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  text-align: left;
}

.project-table thead {
  background: rgba(0, 160, 255, 0.1);
}

.project-table thead th {
  white-space: nowrap;
}

.project-table thead th i {
  margin-left: 3px;
}

.project-table th, .project-table td {
  padding: 10px;
  font-size: 13px;
}

.project-table th {
  color: #323232;
  font-weight: bold;
}

.project-table td {
  border-bottom: 0.25px solid rgba(50, 50, 50, 0.2);
  position: relative;
}

.project-table td:last-child {
  border-right: none;
}

.project-table .product-color-variant button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 34px;
  height: 22px;
  margin: 0;
  padding: 1.5px;
  border: 0.5px solid #323232;
  border-radius: 0;
  font-size: 8px;
  color: #323232;
  background-color: #ffffff;
}

.project-table .product-color-variant button svg {
  width: auto;
  height: 10px;
}

.project-table .table-input {
  border: none;
  outline: none;
  margin: 5px 0px;
  border-radius: 0px;
  border-bottom: 1px dashed #003E92;
  text-align: inherit;
  background-color: transparent;
  width: 100%;
  box-shadow: none !important;
}

.project-table .product .table-input {
  background: none;
}

.project-table .es-list {
  top: 100% !important;
  width: 200px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  text-align: left;
}

.project-table .product .es-list {
  min-width: 250px;
}

.estimate-tabs .buttons,
.bill-tabs .buttons,
.estimate-table .buttons,
.bill-table .buttons {
  min-width: 10px;
  width: 10px;
  padding: 10px 5px;
}

.estimate-tabs .buttons-container,
.bill-tabs .buttons-container,
.estimate-table .buttons-container,
.bill-table .buttons-container {
  display: flex;
}

.estimate-tabs .buttons-wrapper,
.bill-tabs .buttons-wrapper,
.estimate-table .buttons-wrapper,
.bill-table .buttons-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.estimate-tabs .buttons-wrapper:not(:first-child),
.bill-tabs .buttons-wrapper:not(:first-child),
.estimate-table .buttons-wrapper:not(:first-child),
.bill-table .buttons-wrapper:not(:first-child) {
  margin-left: 5px;
}

.estimate-tabs .buttons-wrapper button,
.bill-tabs .buttons-wrapper button,
.estimate-table .buttons-wrapper button,
.bill-table .buttons-wrapper button {
  width: 9px;
  height: 9px;
  padding: 0px;
  line-height: 0px;
  font-size: 8px;
  font-weight: 700;
  border: 1px solid #003E92;
  background-color: white;
  color: #003E92;
  margin-bottom: 5px;
}

.estimate-tabs .buttons-wrapper button.no-border,
.bill-tabs .buttons-wrapper button.no-border,
.estimate-table .buttons-wrapper button.no-border,
.bill-table .buttons-wrapper button.no-border {
  border: none;
}

.estimate-tabs .buttons-wrapper button.secondary,
.bill-tabs .buttons-wrapper button.secondary,
.estimate-table .buttons-wrapper button.secondary,
.bill-table .buttons-wrapper button.secondary {
  background-color: #003E92;
  color: white;
}

.estimate-tabs,
.bill-tabs {
  padding: 0px 1px;
  display: flex;
  overflow: auto;
}

.estimate-tabs .tab,
.bill-tabs .tab {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid #003E92;
  border-bottom: none;
  background-color: #003E92;
  color: white;
  font-size: 11px;
  padding: 3px 9px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.estimate-tabs .tab:not(:last-child),
.bill-tabs .tab:not(:last-child) {
  margin-right: 8px;
}

.estimate-tabs .tab.active,
.bill-tabs .tab.active {
  background-color: white;
  color: #003E92;
}

.estimate-tabs .tab .buttons-wrapper,
.bill-tabs .tab .buttons-wrapper {
  margin-right: 9px;
}

.estimate-tabs .tab:first-child .buttons-wrapper,
.bill-tabs .tab:first-child .buttons-wrapper {
  display: none;
}

.project-tabs {
  padding: 0px 1px;
  display: flex;
  overflow: auto;
}

.project-tabs .tab {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid #323232;
  border-bottom: none;
  background-color: #323232;
  color: white;
  font-size: 11px;
  padding: 3px 9px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.project-tabs .tab:not(:last-child) {
  margin-right: 8px;
}

.project-tabs .tab.active {
  background-color: white;
  color: #323232;
}

.project-tabs .tab .buttons-wrapper {
  margin-right: 9px;
}

.project-tabs .tab:first-child .buttons-wrapper {
  display: none;
}

.estimate-table,
.bill-table,
.sale-bill-table {
  border-top: 1px solid #003E92;
}

.estimate-table td,
.bill-table td,
.sale-bill-table td {
  min-width: 20px;
  max-width: 250px;
  word-break: break-all;
}

.estimate-table td .buttons,
.bill-table td .buttons,
.sale-bill-table td .buttons {
  min-width: 0px;
}

.estimate-table td span,
.bill-table td span,
.sale-bill-table td span {
  display: block;
}

.estimate-table td.bg-secondary,
.bill-table td.bg-secondary,
.sale-bill-table td.bg-secondary {
  background-color: #F2F8FF;
}

.estimate-table td.tax-button,
.bill-table td.tax-button,
.sale-bill-table td.tax-button {
  position: relative;
}

.estimate-table td.tax-button span,
.bill-table td.tax-button span,
.sale-bill-table td.tax-button span {
  margin-right: 15px;
}

.estimate-table td.row-modifiers,
.bill-table td.row-modifiers,
.sale-bill-table td.row-modifiers {
  position: relative;
}

.estimate-table td.row-modifiers .row-modifiers,
.bill-table td.row-modifiers .row-modifiers,
.sale-bill-table td.row-modifiers .row-modifiers {
  position: absolute;
  top: 0px;
  left: 0px;
}

.estimate-table td.highlight-red span, .estimate-table td.highlight-red input,
.bill-table td.highlight-red span,
.bill-table td.highlight-red input,
.sale-bill-table td.highlight-red span,
.sale-bill-table td.highlight-red input {
  color: red;
}

.estimate-table .estimate-child-row,
.estimate-table .bill-child-row,
.estimate-table .sale-bill-child-row,
.bill-table .estimate-child-row,
.bill-table .bill-child-row,
.bill-table .sale-bill-child-row,
.sale-bill-table .estimate-child-row,
.sale-bill-table .bill-child-row,
.sale-bill-table .sale-bill-child-row {
  background-color: #F2F8FF;
}

.estimate-table .estimate-group-cell,
.estimate-table .bill-group-cell,
.estimate-table .sale-bill-group-cell,
.bill-table .estimate-group-cell,
.bill-table .bill-group-cell,
.bill-table .sale-bill-group-cell,
.sale-bill-table .estimate-group-cell,
.sale-bill-table .bill-group-cell,
.sale-bill-table .sale-bill-group-cell {
  color: #003E92;
  width: 0px;
  min-width: 0px;
  max-width: 0px;
  padding: 0px;
  cursor: pointer;
}

.estimate-table .estimate-group-cell::after,
.estimate-table .bill-group-cell::after,
.estimate-table .sale-bill-group-cell::after,
.bill-table .estimate-group-cell::after,
.bill-table .bill-group-cell::after,
.bill-table .sale-bill-group-cell::after,
.sale-bill-table .estimate-group-cell::after,
.sale-bill-table .bill-group-cell::after,
.sale-bill-table .sale-bill-group-cell::after {
  content: "▼︎";
}

.estimate-table .estimate-group-cell.collapsed::after,
.estimate-table .bill-group-cell.collapsed::after,
.estimate-table .sale-bill-group-cell.collapsed::after,
.bill-table .estimate-group-cell.collapsed::after,
.bill-table .bill-group-cell.collapsed::after,
.bill-table .sale-bill-group-cell.collapsed::after,
.sale-bill-table .estimate-group-cell.collapsed::after,
.sale-bill-table .bill-group-cell.collapsed::after,
.sale-bill-table .sale-bill-group-cell.collapsed::after {
  content: "▶︎";
}

.estimate-table .estimate-child-cell,
.estimate-table .bill-child-cell,
.estimate-table .sale-bill-child-cell,
.bill-table .estimate-child-cell,
.bill-table .bill-child-cell,
.bill-table .sale-bill-child-cell,
.sale-bill-table .estimate-child-cell,
.sale-bill-table .bill-child-cell,
.sale-bill-table .sale-bill-child-cell {
  min-width: 0px;
  max-width: 0px;
  padding: 0px;
}

.estimate-table .estimate-child-cell::after,
.estimate-table .bill-child-cell::after,
.estimate-table .sale-bill-child-cell::after,
.bill-table .estimate-child-cell::after,
.bill-table .bill-child-cell::after,
.bill-table .sale-bill-child-cell::after,
.sale-bill-table .estimate-child-cell::after,
.sale-bill-table .bill-child-cell::after,
.sale-bill-table .sale-bill-child-cell::after {
  content: "↳︎";
}

.project-table {
  border-top: 1px solid #323232;
}

.project-table td {
  word-break: break-all;
}

.project-table td .buttons {
  min-width: 0px;
}

.project-table td span {
  display: block;
}

.project-table td.bg-secondary {
  background-color: #F2F8FF;
}

.project-table td.tax-button {
  position: relative;
}

.project-table td.tax-button span {
  margin-right: 15px;
}

.project-table td.row-modifiers {
  position: relative;
}

.project-table td.row-modifiers .row-modifiers {
  position: absolute;
  top: 0px;
  left: 0px;
}

.project-table td.highlight-red span, .project-table td.highlight-red input {
  color: red;
}

.project-table .project-child-row {
  background-color: #F2F8FF;
}

.project-table .project-group-cell {
  color: #323232;
  width: 0px;
  min-width: 0px;
  max-width: 0px;
  padding: 0px;
  cursor: pointer;
}

.project-table .project-group-cell::after {
  content: "▼︎";
}

.project-table .project-group-cell.collapsed::after {
  content: "▶︎";
}

.project-table .project-child-cell {
  min-width: 0px;
  max-width: 0px;
  padding: 0px;
}

.project-table .project-child-cell::after {
  content: "↳︎";
}

.estimate-totals,
.bill-totals {
  border-collapse: collapse;
}

.estimate-totals td,
.bill-totals td {
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
}

.estimate-totals .separation,
.bill-totals .separation {
  padding-left: 30px;
}

.estimate-totals .quantity,
.bill-totals .quantity {
  font-size: 17px;
}

.estimate-totals-border td,
.bill-totals-border td {
  border-top: 2px solid #707070;
}

.estimate-totals tr:nth-child(even) td,
.bill-totals tr:nth-child(even) td {
  padding-top: 0;
}

.estimate-totals tr:nth-child(odd) td,
.bill-totals tr:nth-child(odd) td {
  padding-bottom: 0;
}

.estimate-totals tr.discount_row td,
.bill-totals tr.discount_row td {
  padding: 6px 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal__background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal.shown {
  display: block;
}

.modal__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  margin: auto;
  max-width: calc(100% - 20px);
  width: 544px;
}

.modal .popup {
  border-radius: 10px;
  overflow: hidden;
}

.modal .popup__header {
  height: 36px;
  background-color: #003E92;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal .popup__header h3 {
  color: white;
  vertical-align: middle;
}

.modal .popup__header__close {
  background-color: white;
  color: #003E92;
  font-size: 17px;
  padding: 4px;
  margin: 0px;
  border-radius: 50px;
  width: 16px;
  height: 16px;
  line-height: 0px;
  position: absolute;
  top: 10px;
  right: 15px;
  border: none !important;
}

.modal .popup__content {
  padding: 40px 75px 0;
}

.modal .popup__content .messages-list {
  margin-bottom: 10px;
}

.modal .popup__content .radio-button input {
  vertical-align: middle;
}

.modal .popup__footer {
  padding: 40px;
  text-align: center;
}

.input-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.v-select .vs__search {
  border: none !important;
  box-shadow: none !important;
  font-size: 12px;
  line-height: 1;
  height: 17px;
}

.vs__selected {
  line-height: 1 !important;
  align-items: baseline;
  font-size: 12px;
}

.vs__dropdown-toggle {
  border: 1px solid #003E92;
  border-radius: 12px;
  max-height: 24px;
}

.vs__clear {
  display: none;
}

.vs__actions::after {
  content: "▼";
  color: #00a0ff;
  font-size: 12px;
}

.vs__open-indicator {
  display: none;
}

.select2-container--default .select2-selection--single {
  border-radius: 15px;
  border-color: #003E92;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #003E92 transparent transparent transparent;
}

.select2-container--open .select2-container--default .select2-selection--single {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #003E92 transparent;
}

.projects .form input {
  border-color: #323232;
}

.projects .vs__dropdown-toggle {
  border-color: #323232;
}

.project-container {
  font-family: "Yu Gothic", "Noto Sans JP", sans-serif;
}

.project-container .form.project-form {
  margin-bottom: 32px;
  font-size: 17px;
}

.project-container .form.project-form .estimate-form-upper,
.project-container .form.project-form .bill-form-upper,
.project-container .form.project-form .project-form-upper {
  margin-bottom: 32px;
}

.project-container .form.project-form .estimate-form-upper-left, .project-container .form.project-form .estimate-form-upper-right,
.project-container .form.project-form .bill-form-upper-left,
.project-container .form.project-form .bill-form-upper-right,
.project-container .form.project-form .project-form-upper-left,
.project-container .form.project-form .project-form-upper-right {
  flex: 1 1 50%;
}

.project-container .form.project-form .form-field {
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 8px;
}

.project-container .form.project-form .form-field.half-width {
  width: 45%;
  margin-right: 5%;
}

.project-container .form.project-form .form-field .label-container {
  flex: 0 0 auto;
  margin-right: 9px;
  width: 100px;
  display: flex;
}

.project-container .form.project-form .form-field .label-container label {
  margin-right: 0px;
}

.project-container .form.project-form .form-field label {
  flex: 0 0 auto;
  width: 100px;
  height: 24px;
  margin-right: 9px;
  border: 1px solid #323232;
  border-radius: 15px;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  color: #323232;
}

.project-container .form.project-form .form-field label.empty {
  border: none;
}

.project-container .form.project-form .form-field input {
  width: 100%;
}

.project-container .form.project-form .form-field textarea {
  width: 100%;
}

.project-container .form.project-form .form-field.half-width .form-field-content {
  width: 100%;
}

.project-container .form.project-form .form-field.full-width .form-field-content {
  width: 100%;
}

.project-container .form.project-form .form-field .estimate_name,
.project-container .form.project-form .form-field .project_name {
  font-weight: 600;
}

.project-container .form.project-form .form-field .summary_sale_total {
  font-size: 22px;
  font-weight: 600;
}

.form {
  font-size: 17px;
}

.form ul {
  list-style: none;
}

.form input {
  padding: 0 15px;
}

.form .custom-select {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
}

.form input,
.form select,
.form .custom-select {
  min-width: 0;
  height: 24px;
  border: 1px solid #003E92;
  border-radius: 12px;
  line-height: 1;
}

.form input:focus,
.form select:focus,
.form .custom-select:focus {
  box-shadow: 0 0 5px #80B6FF;
}

.form input:focus-within,
.form select:focus-within,
.form .custom-select:focus-within {
  box-shadow: 0 0 5px #80B6FF;
}

.form input.es-input {
  background: url("/images/svg/arrowdown.svg") right 8px center/10px no-repeat;
}

.form .custom-checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid #003E92;
  color: #003E92;
  vertical-align: middle;
}

.form .custom-checkbox:focus-within {
  box-shadow: 0 0 5px #80B6FF;
}

.form-field {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 16px;
}

.form-field--table {
  margin: 0px;
}

.form-field label {
  flex: 0 0 auto;
  width: 120px;
  color: #003E92;
  font-weight: 600;
}

.form-field-select2-input {
  flex: 0 1 275px;
  max-width: 275px;
}

.form-field-content-auto {
  width: auto;
}

.form-field-content {
  width: 70px;
}

.form-field-content.multiple-inputs {
  flex-grow: 1;
  display: flex;
}

.form-field-content.multiple-inputs > input, .form-field-content.multiple-inputs > .input-wrapper {
  flex: 0 1 auto;
  width: 60px;
}

.form-field-content.multiple-inputs .separator {
  color: #003E92;
  margin: 0 4px;
}

.form-field-content.full-width {
  flex-grow: 1;
}

.c-projects {
  color: #323232;
}

.c-projects.container {
  border-color: #e9e9e9;
}

.c-projects h1,
.c-projects label {
  color: #323232;
}

.c-projects .button {
  display: block;
  color: white;
  font-size: 12px;
  line-height: 2em;
  padding: 0 20px;
  background-color: #323232;
  border-radius: 20px;
  margin-right: 10px;
}

.c-projects .table thead {
  background-color: rgba(0, 160, 255, 0.1);
}

.c-projects .table thead th {
  color: #323232;
}

.c-projects a.decoration {
  color: #323232;
}

.c-projects .form input.es-input {
  background: url("/images/svg/arrowdown-01.svg") right 8px center/10px no-repeat;
}

.c-projects .form input,
.c-projects .form select,
.c-projects .form .custom-select {
  border-color: #323232;
}

.c-projects .form .custom-checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid #323232;
  color: #323232;
  vertical-align: middle;
}

.c-projects .form .custom-select::after {
  color: #00a0ff;
}

.c-projects .form.edition-form .form-sections-secondary {
  padding: 0 30px;
  border-left: 1px solid #e9e9e9;
}

.c-projects .form.edition-form .form-checkboxes > label {
  color: #323232;
}

.c-projects .info-content.about-us .info-content-field label {
  background-color: #e5f5ff;
  color: #323232;
}

.form.edition-form .form-field-content {
  width: 100%;
}

.form.edition-form .form-field-content input,
.form.edition-form .form-field-content .custom-select {
  max-width: 248px;
  width: 100%;
}

.form.edition-form .form-field-content.multiple-inputs {
  flex: 0 1 auto;
  justify-content: space-between;
  max-width: 248px;
}

.form.edition-form .form-field-content.multiple-inputs .input-wrapper {
  flex: 0 1 auto;
  width: 116px;
}

.form.edition-form .form-field-content .radio_buttons input, .form.edition-form .form-field-content .radio_buttons label, .form.edition-form .form-field-content .radio_buttons span {
  width: auto;
}

.form.edition-form .form-field-content .radio_buttons input {
  vertical-align: middle;
}

.form.edition-form .form-field-content .radio_buttons input:not(:first-child) {
  margin-left: 30px;
}

.form.edition-form .form-field.company-address, .form.edition-form .form-field.change-password {
  align-items: flex-start;
}

.form.edition-form .form-field.company-address .multiple-inputs, .form.edition-form .form-field.change-password .multiple-inputs {
  flex-direction: column;
  max-width: 100%;
}

.form.edition-form .form-field.company-address .multiple-inputs .input-wrapper, .form.edition-form .form-field.change-password .multiple-inputs .input-wrapper {
  width: 100%;
  margin-bottom: 8px;
}

.form.edition-form .form-field.company-address .multiple-inputs .post-code, .form.edition-form .form-field.change-password .multiple-inputs .post-code {
  display: inline-flex;
  max-width: 248px;
}

.form.edition-form .form-field.company-address .multiple-inputs .address, .form.edition-form .form-field.change-password .multiple-inputs .address {
  max-width: 500px;
}

.form.edition-form .form-field.company-address .multiple-inputs .password-container, .form.edition-form .form-field.change-password .multiple-inputs .password-container {
  width: 100%;
}

.form.edition-form .form-field.company-address .multiple-inputs .password-field, .form.edition-form .form-field.change-password .multiple-inputs .password-field {
  margin-bottom: 5px;
}

.form.edition-form .form-field.company-address .multiple-inputs .password-input, .form.edition-form .form-field.change-password .multiple-inputs .password-input {
  max-width: 248px;
}

.form.edition-form .form-field.vertical {
  align-items: flex-start;
  flex-direction: column;
}

.form.edition-form .form-field.vertical .form-field-content {
  margin-top: 10px;
}

.form.edition-form .form-field.vertical .form-field-content.multiple-inputs {
  flex-direction: column;
}

.form.edition-form .form-field.vertical .form-field-content.multiple-inputs .input-wrapper {
  flex-grow: 1;
  max-width: 248px;
  width: 100%;
  margin-bottom: 12px;
}

.form.edition-form .form-checkboxes > label {
  font-weight: 600;
  color: #003E92;
}

.form.edition-form .form-checkboxes-container {
  margin-top: 28px;
}

.form.edition-form .form-checkboxes-item {
  margin-bottom: 15px;
}

.form.edition-form .button {
  display: blocK;
  margin: 0 auto;
}

.form.edition-form .form-sections {
  display: flex;
}

.form.edition-form .form-sections-secondary {
  padding: 0 30px;
  border-left: 1px solid #ddedff;
}

.form.edition-form .form-sections-big {
  width: 60%;
}

.form.edition-form .form-sections-small {
  width: 40%;
}

.form.edition-form .form-sections-column {
  flex: 1 1 auto;
  width: 33%;
}

.form.edition-form .form-sections-subsection {
  padding-bottom: 30px;
}

.form.estimate-form,
.form.bill-form,
.form.project-form {
  margin-bottom: 32px;
  font-size: 17px;
}

.form.estimate-form .estimate-form-upper,
.form.estimate-form .bill-form-upper,
.form.estimate-form .project-form-upper,
.form.bill-form .estimate-form-upper,
.form.bill-form .bill-form-upper,
.form.bill-form .project-form-upper,
.form.project-form .estimate-form-upper,
.form.project-form .bill-form-upper,
.form.project-form .project-form-upper {
  display: flex;
  margin-bottom: 32px;
}

.form.estimate-form .estimate-form-upper-left, .form.estimate-form .estimate-form-upper-right,
.form.estimate-form .bill-form-upper-left,
.form.estimate-form .bill-form-upper-right,
.form.estimate-form .project-form-upper-left,
.form.estimate-form .project-form-upper-right,
.form.bill-form .estimate-form-upper-left,
.form.bill-form .estimate-form-upper-right,
.form.bill-form .bill-form-upper-left,
.form.bill-form .bill-form-upper-right,
.form.bill-form .project-form-upper-left,
.form.bill-form .project-form-upper-right,
.form.project-form .estimate-form-upper-left,
.form.project-form .estimate-form-upper-right,
.form.project-form .bill-form-upper-left,
.form.project-form .bill-form-upper-right,
.form.project-form .project-form-upper-left,
.form.project-form .project-form-upper-right {
  flex: 1 1 50%;
}

.form.estimate-form .form-field,
.form.bill-form .form-field,
.form.project-form .form-field {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 8px;
}

.form.estimate-form .form-field.half-width,
.form.bill-form .form-field.half-width,
.form.project-form .form-field.half-width {
  width: 45%;
  margin-right: 5%;
}

.form.estimate-form .form-field label,
.form.bill-form .form-field label,
.form.project-form .form-field label {
  flex: 0 0 auto;
  width: 100px;
  height: 24px;
  margin-right: 9px;
  border: 1px solid #000000;
  border-radius: 15px;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
  color: #000000;
}

.form.estimate-form .form-field label.empty,
.form.bill-form .form-field label.empty,
.form.project-form .form-field label.empty {
  border: none;
}

.form.estimate-form .form-field input,
.form.bill-form .form-field input,
.form.project-form .form-field input {
  width: 100%;
}

.form.estimate-form .form-field textarea,
.form.bill-form .form-field textarea,
.form.project-form .form-field textarea {
  width: 100%;
}

.form.estimate-form .form-field.half-width .form-field-content,
.form.bill-form .form-field.half-width .form-field-content,
.form.project-form .form-field.half-width .form-field-content {
  width: 100%;
}

.form.estimate-form .form-field.full-width .form-field-content,
.form.bill-form .form-field.full-width .form-field-content,
.form.project-form .form-field.full-width .form-field-content {
  width: 100%;
}

.form.estimate-form .form-field .estimate_name,
.form.estimate-form .form-field .project_name,
.form.bill-form .form-field .estimate_name,
.form.bill-form .form-field .project_name,
.form.project-form .form-field .estimate_name,
.form.project-form .form-field .project_name {
  font-weight: 600;
}

.form.estimate-form .form-field .summary_sale_total,
.form.bill-form .form-field .summary_sale_total,
.form.project-form .form-field .summary_sale_total {
  font-size: 22px;
  font-weight: 600;
}

.bill_projects .info-field-content,
.bill_projects .form-field-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.bill_projects .bill_project_links a {
  display: block;
  margin-right: 10px;
}

.bill_projects .bill_project_buttons {
  margin-left: 10px;
}

.bill_projects .bill_project_buttons .button {
  width: 80px;
}

@media (max-width: 979px) {
  .form-field {
    display: block;
  }

  .form-field-content {
    display: block;
  }

  .form-field-content.custom-select {
    display: flex;
  }

  .form.edition-form .form-sections-big, .form.edition-form .form-sections-small {
    width: 50%;
  }

  .form.edition-form .form-sections-column {
    width: 100%;
  }

  .form.estimate-form .form-field.half-width,
  .form.bill-form .form-field.half-width,
  .form.project-form .form-field.half-width {
    width: 100%;
    margin-right: 0px;
  }

  .form.estimate-form .estimate-form-upper,
  .form.estimate-form .bill-form-upper,
  .form.estimate-form .project-form-upper,
  .form.bill-form .estimate-form-upper,
  .form.bill-form .bill-form-upper,
  .form.bill-form .project-form-upper,
  .form.project-form .estimate-form-upper,
  .form.project-form .bill-form-upper,
  .form.project-form .project-form-upper {
    display: block;
    margin-bottom: 0;
  }
}

@media (max-width: 599px) {
  .form.edition-form .form-sections {
    flex-direction: column;
  }

  .form.edition-form .form-sections-big, .form.edition-form .form-sections-small {
    width: 100%;
  }

  .form.edition-form .form-sections-secondary {
    margin-top: 40px;
    padding: 0;
    border-left: none;
  }

  .form.edition-form .form-sections-column {
    width: 100%;
  }
}

.users-create .form.edition-form .input-wrapper {
  display: flex;
}

.users-create .form.edition-form .form-field {
  display: block;
}

.users-create .form.edition-form .form-field-content {
  margin-top: 12px;
}

.info-content {
  display: flex;
  padding: 20px 0;
  border-radius: 10px;
  background-color: #f2f8ff;
  font-size: 17px;
}

.info-content ul {
  list-style: none;
}

.info-content-column {
  flex-grow: 1;
  padding: 30px 40px;
  border-right: 1px solid #d8e3f2;
}

.info-content-column:last-child {
  border-right: none;
}

.info-content-field {
  margin-bottom: 25px;
}

.info-content-field label {
  color: #003E92;
  font-weight: 600;
}

.info-content-field .child-label {
  color: #003E92;
  font-size: 13px;
  font-weight: 600;
}

.info-content-field-content {
  margin-top: 5px;
}

.info-content-field:last-child {
  margin-bottom: 0;
}

.info-content-list li::before {
  content: "";
  display: block;
  height: 0;
  border-top: 1px solid #d8e3f2;
  margin: 30px 0;
}

.info-content-list li:first-child::before {
  display: none;
}

.info-content.about-us {
  display: block;
  padding: 0;
  background-color: inherit;
}

.info-content.about-us .info-content-field {
  margin: 0;
}

.info-content.about-us .info-content-field label {
  display: block;
  padding: 7px 21px;
  line-height: 1;
  background-color: #ddedff;
}

.info-content.about-us .info-content-field-content {
  margin: 0;
  padding: 13px 21px;
}

.info-content.about-us .info-content-field-content .post-code {
  margin-right: 10px;
}

.info-table-heading {
  margin-top: 30px;
}

.info-table-heading h2 {
  font-size: 17px;
}

.info-table-content {
  margin-top: 13px;
}

.estimate-info,
.bill-info,
.project-info {
  margin-bottom: 32px;
  font-size: 17px;
}

.estimate-info-upper,
.bill-info-upper,
.project-info-upper {
  display: flex;
  margin-bottom: 32px;
}

.estimate-info-upper-left, .estimate-info-upper-right,
.bill-info-upper-left,
.bill-info-upper-right,
.project-info-upper-left,
.project-info-upper-right {
  flex: 1 1 50%;
}

.estimate-info .info-field,
.bill-info .info-field,
.project-info .info-field {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 8px;
}

.estimate-info .info-field label,
.bill-info .info-field label,
.project-info .info-field label {
  flex: 0 0 auto;
  width: 100px;
  height: 24px;
  margin-right: 9px;
  border: 1px solid #000000;
  border-radius: 15px;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
}

.estimate-info .info-field label.empty,
.bill-info .info-field label.empty,
.project-info .info-field label.empty {
  border: none;
}

.estimate-info .info-field-content,
.bill-info .info-field-content,
.project-info .info-field-content {
  line-height: 24px;
}

.estimate-info .info-field .estimate_name,
.estimate-info .info-field .project_name,
.bill-info .info-field .estimate_name,
.bill-info .info-field .project_name,
.project-info .info-field .estimate_name,
.project-info .info-field .project_name {
  font-weight: 600;
}

.estimate-info .info-field .summary_sale_total,
.bill-info .info-field .summary_sale_total,
.project-info .info-field .summary_sale_total {
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 979px) {
  .info-content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .info-content-column {
    padding: 0 20px;
    border-right: none;
  }

  .estimate-info-upper,
  .bill-info-upper,
  .project-info-upper {
    display: block;
    margin-bottom: 0;
  }
}

.form--auth h1 {
  margin-bottom: 20px;
}

.form--auth .form-field {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
}

.form--auth label {
  width: 100%;
  color: #003E92;
  font-weight: 700;
}

.form--auth .input-wrapper {
  position: relative;
  width: 100%;
}

.form--auth input {
  width: 100%;
  margin-top: 15px;
  font-size: 17px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 62, 146, 0.3);
}

.form--auth .auth-forgot-password {
  margin-top: 5px;
  font-size: 13px;
  text-decoration: underline;
  color: #003E92;
}

.form--auth .button--submit {
  width: 100%;
  margin: 0px;
  margin-top: 5px;
  font-size: 17px;
  height: 50px;
  border-radius: 50px;
  line-height: 35px;
}

.form--auth .login-password-wrapper {
  width: 100%;
  margin-top: 15px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 62, 146, 0.3);
  padding: 0px;
  border: 1px solid #003E92;
  display: flex;
  background-color: white;
}

.form--auth .login-password {
  border: none;
  box-shadow: none;
  outline: none;
  margin: 0px;
  border-radius: 50px 0px 0px 50px;
}

.form--auth .toggle-show-password {
  width: 50px;
  height: 50px;
  margin: 0px;
  padding: 0px;
  background: none;
  border: none;
  border-radius: 0px 50px 50px 0px;
  outline: none;
  color: gray;
}

.form--auth .toggle-show-password:hover {
  color: #003E92;
}

.form--auth .message {
  width: 100%;
}

.news-list {
  border-collapse: collapse;
  width: 100%;
}

.news-item__info {
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: baseline;
  border-bottom: 1px solid #dcdcdc;
}

.news-item__info--category {
  width: 1%;
  white-space: nowrap;
  padding-right: 10px;
}

.news-item__info--category span {
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #003E92;
  font-size: 9px;
  color: #003E92;
  text-align: center;
  min-width: 90px;
  padding: 5px 15px;
}

.news-item__info--category span:hover {
  opacity: 0.8;
}

.news-item__info--date {
  width: 1%;
  white-space: nowrap;
  padding-right: 15px;
}

.news-item__info--date span {
  display: inline-block;
  font-size: 11px;
  text-align: center;
  min-width: 60px;
}

.news_article .news-item__info--date span {
  font-size: 13px;
}

.news-item__info--title span {
  display: inline-block;
  font-size: 13px;
  text-align: left;
}

.news_article .news-item__info--title span {
  font-size: 17px;
  font-weight: 700;
}

.news-item__info--title a span {
  text-decoration: underline;
  color: #003E92;
}

.news-item__info--title a span:hover {
  opacity: 0.8;
}

.news-item:last-child .news-item__info {
  border-bottom: none;
}

.product_variants tbody tr:not(:first-child) .product_color_delete, .product_variants tbody tr:not(:first-child) .product_color_name {
  display: none;
}

.product_add_product_color {
  width: 100%;
  margin: 5px 0px;
}

.container__content--customers .form-field label {
  width: 100%;
}

@media (max-width: 979px) {
  .container__content--customers .form-sections {
    max-width: 300px;
    margin: auto;
  }

  .container__content--customers .form-sections .form-field-content.multiple-inputs,
  .container__content--customers .form-sections .form-field-content.multiple-inputs .input-wrapper,
  .container__content--customers .form-sections .form-field-content input,
  .container__content--customers .form-sections .form-field-content .custom-select,
  .container__content--customers .form-sections .input-wrapper {
    max-width: 100% !important;
  }
}

.message {
  position: relative;
  border-radius: 10px;
  padding: 5px 10px;
  margin-top: 5px;
  font-size: 13px;
  list-style: none;
}

.message--info {
  border: 1px solid #003E92;
  background: #DDEDFF;
  color: #003E92;
}

.message--error {
  border: 1px solid #62090d;
  background: #fcd9d5;
  color: #62090d;
}

.message--input {
  margin-top: 15px;
  font-size: 17px;
}

.project-form .message--input {
  white-space: pre-line;
}

.message--input:after, .message--input:before {
  bottom: calc(100% - 1px);
  left: 25px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  transform: translateY(-1px);
}

.message--input:after {
  border-color: transparent;
  border-bottom-color: #fcd9d5;
  border-width: 10px;
  margin-left: -10px;
  transform: translateY(1px);
}

.message--input:before {
  border-color: transparent;
  border-bottom-color: inherit;
  border-width: 10px;
  margin-left: -10px;
}

.message--absolute {
  position: absolute;
  top: 100%;
  word-break: keep-all;
  white-space: nowrap;
}

.custom-select {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 5px 7px;
  border: 1px solid gray;
  box-sizing: border-box;
  font-size: inherit;
  overflow: hidden;
  white-space: nowrap;
}

.custom-select span {
  flex-grow: 1;
}

.custom-select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  opacity: 0;
}

.custom-select::after {
  margin-left: 10px;
  color: #003E92;
  font-size: 11px;
  content: "▼︎";
}

.custom-checkbox {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid gray;
  box-sizing: border-box;
  overflow: hidden;
  vertical-align: bottom;
}

.custom-checkbox svg {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 1px;
  margin-left: 1px;
}

.custom-checkbox svg path {
  opacity: 0;
}

.custom-checkbox svg.checked path {
  opacity: 1;
}

.custom-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

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

.projects_radio {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  padding-left: 25px;
}

.projects_radio::before {
  background: #fff;
  border: 1px solid #231815;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
}

.projects_radio::after {
  background: #00a0ff;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  opacity: 0;
  height: 10px;
  width: 10px;
}

input[type=radio]:checked + .projects_radio::brfore {
  border-color: #00a0ff;
}

input[type=radio]:checked + .projects_radio::after {
  opacity: 1;
}

.estimates_radio {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  padding-left: 25px;
}

.estimates_radio::before {
  background: #fff;
  border: 1px solid #231815;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
}

.estimates_radio::after {
  background: #1c3c92;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  opacity: 0;
  height: 10px;
  width: 10px;
}

input[type=radio]:checked + .estimates_radio::brfore {
  border-color: #1c3c92;
}

input[type=radio]:checked + .estimates_radio::after {
  opacity: 1;
}

.print-button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}


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