@charset "UTF-8";
/* основные стили */
/* определения */
html, body {
  font-family: 'Roboto','Arial',sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.1em;
  color: #2b2a29;
  margin: 0;
  padding: 0;
  background: #fff; }

.content-center {
  justify-content: center;
  align-items: center; }

.clear {
  clear: both; }

.disabled {
  opacity: 0.4; }

.corners {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px; }

.button {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  background: #ddd; }
  .button:not([disabled]):hover {
    background: #12376a;
    color: #fff; }
  .button[disabled] {
    background: #2b2a29;
    color: #ccc; }

.button_primary {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  background: #ddd;
  background: #276b98;
  color: #fff; }
  .button_primary:not([disabled]):hover {
    background: #12376a;
    color: #fff; }
  .button_primary[disabled] {
    background: #2b2a29;
    color: #ccc; }

.reset {
  margin: 0;
  padding: 0;
  border: none; }

.field_required {
  color: #2b2a29;
  border-color: #2b2a29;
  border-left-color: orangered; }

.field_valid {
  background: #fff;
  border-left-color: green; }

.content > *:not(:first-child) {
  margin-top: 2rem; }
.content a {
  cursor: pointer;
  color: #276b98;
  border-bottom: 1px dashed rgba(68, 109, 155, 0.4);
  text-decoration: none;
  font-weight: 400; }
  .content a:hover {
    color: #276b98;
    border-bottom: 1px dashed #c32026; }

section {
  transition: all 0.5s ease;
  width: 100vw; }
  section.active {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; }
    section.active > * {
      margin-top: -10vh;
      display: inline-flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center; }
  section:not(.active) {
    min-height: 0; }
    section:not(.active) > * {
      display: none; }

fieldset {
  width: 18rem;
  margin: 0;
  padding: 0;
  border: none;
  /*&.loading:before {
    top: -0.5em !important;
  }*/
  position: relative; }
  fieldset h3 {
    margin: 0; }
  fieldset > * {
    display: block; }
    fieldset > *:not(:first-child) {
      margin-top: 0.9rem; 
      width: 100%;
    }
  fieldset > input, fieldset > button, fieldset > select {
    display: block;
    width: 100%; }
  fieldset input, fieldset button, fieldset select {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    font-size: inherit;
    outline: none;
    padding: 0.5rem 0.9rem;
    box-sizing: border-box;
    transition: all 0.3s ease; }
    fieldset input[disabled], fieldset button[disabled], fieldset select[disabled] {
      opacity: 0.4; }
  fieldset input, fieldset select {
    color: #2b2a29;
    border: 1px solid #2b2a29;
    border-left-width: 3px;
    background: #ebecec; }
    fieldset input:focus, fieldset select:focus {
      background: #f7f8f8;
      border-color: #276b98; }
    fieldset input:invalid, fieldset select:invalid {
      color: #c32026;
      border-color: #c32026; }
      fieldset input:invalid:required:not([value]), fieldset input:invalid:required[value=""], fieldset select:invalid:required:not([value]), fieldset select:invalid:required[value=""] {
        color: #2b2a29;
        border-color: #2b2a29;
        border-left-color: orangered; }
    fieldset input:valid[value]:not([value=""]), fieldset select:valid[value]:not([value=""]) {
      background: #fff;
      border-left-color: green; }
  fieldset #partnername {
    font-size: 0.8rem; }
    fieldset #partnername strong {
      font-size: 1.1em; }
  fieldset #citySelect[value]:not([value=""]) {
    background: #fff;
    border-left-color: green;
    font-size: 0.8em; }
  fieldset #citySelect:not([value]), fieldset #citySelect[value=""] {
    color: #2b2a29;
    border-color: #2b2a29;
    border-left-color: orangered; }
  fieldset label > input {
    display: inline-block; }
  fieldset label.checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    fieldset label.checkbox input[type="checkbox"] {
      display: none; }
      fieldset label.checkbox input[type="checkbox"][disabled] + * {
        opacity: 0.4; }
      fieldset label.checkbox input[type="checkbox"] + * {
        position: relative;
        display: inline-block;
        width: 1.65rem;
        height: 1.65rem;
        border: 1px solid #2b2a29;
        cursor: pointer; }
      fieldset label.checkbox input[type="checkbox"]:first-child + * {
        margin-right: 0.7rem; }
      fieldset label.checkbox input[type="checkbox"] + *:before {
        position: absolute;
        vertical-align: middle;
        color: transparent;
        font-size: 0;
        content: "";
        height: .3125rem;
        width: .565rem;
        background-color: transparent;
        border-left: .1875rem solid;
        border-bottom: .1875rem solid;
        border-color: transparent;
        left: 50%;
        top: 50%;
        margin-left: -0.325rem;
        margin-top: -0.365rem;
        display: block;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        transition: all 0.2s linear; }
      fieldset label.checkbox input[type="checkbox"]:checked + *:before {
        border-color: #2b2a29;
        transition: all 0.2s linear; }
  fieldset button {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    background: #ddd;
    background: #276b98;
    color: #fff; }
    fieldset button:not([disabled]):hover {
      background: #12376a;
      color: #fff; }
    fieldset button[disabled] {
      background: #2b2a29;
      color: #ccc; }
  fieldset .links {
    font-size: 0.9em;
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  fieldset .note {
    font-size: 0.7em;
    margin-top: 0.9rem;
    font-weight: 400; }
  fieldset .errormessage, fieldset .successmessage {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500; }
    fieldset .errormessage:empty, fieldset .successmessage:empty {
      display: none; }
  fieldset .successmessage {
    color: green; }
  fieldset .errormessage {
    color: red; }
  fieldset > .alert {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; }

#citydialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #aaaaaa;
  opacity: 0.6; }

.ui-dialog {
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border: 1px solid #555; }
  .ui-dialog input, .ui-dialog select, .ui-dialog button {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.4rem 0.7rem; }
  .ui-dialog button {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    background: #ddd; }
    .ui-dialog button:not([disabled]):hover {
      background: #12376a;
      color: #fff; }
    .ui-dialog button[disabled] {
      background: #2b2a29;
      color: #ccc; }
    .ui-dialog button.primary {
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      background: #ddd;
      background: #276b98;
      color: #fff; }
      .ui-dialog button.primary:not([disabled]):hover {
        background: #12376a;
        color: #fff; }
      .ui-dialog button.primary[disabled] {
        background: #2b2a29;
        color: #ccc; }
  .ui-dialog .ui-dialog-content, .ui-dialog .ui-dialog-buttonpane {
    box-sizing: border-box;
    margin-top: 0.9rem;
    margin-left: 0.9rem;
    margin-right: 0.9rem; }
  .ui-dialog .ui-dialog-buttonpane {
    margin-bottom: 0.9rem; }
  .ui-dialog .ui-dialog-buttonset {
    display: flex;
    justify-content: space-between; }
  .ui-dialog .ui-dialog-titlebar {
    box-sizing: border-box;
    padding: 0.45rem 0.9rem;
    background: #555;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8em;
    line-height: 1em; }
    .ui-dialog .ui-dialog-titlebar button {
      display: none; }

.contain-servers {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .contain-servers .pusher {
    position: relative; }
    .contain-servers .pusher a {
      border-bottom: none; }
    .contain-servers .pusher .choice {
      transition: all 0.3s ease;
      background: #fff;
      box-sizing: border-box;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      border: 1px solid #555;
      position: absolute;
      bottom: 1em;
      right: 0;
      overflow: hidden;
      box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5); }
      .contain-servers .pusher .choice > * {
        padding: 0.25rem 1rem;
        display: block; }
        .contain-servers .pusher .choice > *:not(:last-child) {
          border-bottom: 1px solid #555; }
      .contain-servers .pusher .choice a:hover {
        background: #555;
        color: #fff; }
    .contain-servers .pusher:not(.switch-on) .choice {
      height: 0;
      overflow: hidden;
      border: none;
      box-shadow: none; }
      .contain-servers .pusher:not(.switch-on) .choice > * {
        display: none; }

.loading {
  position: relative;
  box-sizing: border-box;
  border: 1px solid #fff; }
  .loading:before {
    content: "";
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    border: 1px solid #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    background-image: url(/company/images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 100;
    opacity: 0.9; }

.palomalogoPOS{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.palomalogo > *:first-child {
  display: block;
  background-image: url(/images/PalomaLogo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 9.5rem;
  height: 9.5rem; }
.palomalogoPOS > *:first-child {
  display: block;
  background-image: url(/images/Logo_PalomaPOS.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 9.5rem;
  height: 9.5rem; }
.palomalogo .slogan {
  width: 9.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
  display: block;
  font-weight: 300;
  color: #9d9e9e;
  text-align: justify;
  text-align-last: justify;
  line-height: 1em;
  margin-top: 0.5em; }

@media screen and (max-height: 500px) and (min-width: 400px) {
  html section.active > * {
    width: 95vw;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: -10vh; }
  html section.active .content {
    max-width: 40.5rem;
    margin-top: 0; }
    html section.active .content > *:not(:first-child) {
      margin-left: 1vw;
      margin-top: 0vw; } }
@media screen and (min-width: 1401px) {
  html, body {
    font-size: 110%; } }
@media screen and (max-width: 1400px) {
  html, body {
    font-size: 110%; } }
@media screen and (max-width: 1200px) {
  html {
    font-size: 100%; } }
@media screen and (max-width: 768px) {
  html {
    font-size: 100%; } }
@media screen and (max-width: 640px) {
  html {
    font-size: 85%; } }
@media screen and (max-height: 640px) {
  html {
    font-size: 85%; }
    html section.active .content {
      margin-top: 0; } }
@media screen and (max-width: 320px) {
  html {
    font-size: 75%; } }
@media screen and (max-height: 320px) {
  html {
    font-size: 75%; } }

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