@charset "UTF-8";
/* RSIT color library */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1780px) {
  .d-xxxl-none {
    display: none !important;
  }

  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
  font-family: "Circe";
  font-size: 15px;
}

body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #375fd9;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    /*  text-decoration: underline;*/
  }
}

button, .btn {
  border-radius: 20px;
  font-size: 16px;
  font-family: "Circe";
  line-height: 24px;
  font-weight: bold;
  height: 40px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media (max-width: 767.98px) {
  button, .btn {
    width: 100%;
    height: 32px;
  }
}
button.btn-blue, .btn.btn-blue {
  color: #ffffff;
  background-color: #375fd9;
  border: 1px solid #375fd9;
}
button.btn-white, .btn.btn-white {
  color: #375fd9;
  background-color: #ffffff;
  border: 1px solid #375fd9;
}
button:disabled, button.disabled, .btn:disabled, .btn.disabled {
  cursor: default;
  background-color: #bcbcbc;
  color: #ffffff;
  border-color: #bcbcbc;
}
@media (hover: hover) {
  button:hover:not(.disabled):not(:disabled), .btn:hover:not(.disabled):not(:disabled) {
    opacity: 0.7;
    text-decoration: none;
  }
}

.rsit-wrapper {
  display: flex;
  flex-direction: column;
  min-height: inherit;
  margin: 0 auto;
}

.page {
  flex: 1 0 auto;
  background-color: #f9f9fa;
  padding-bottom: 45px;
}
.page .nav {
  padding: 30px 0 10px;
}
.page .nav a {
  display: inline-flex;
  align-items: center;
}
.page .nav a .icon {
  padding-right: 10px;
  line-height: 12px;
}
.page .text {
  color: #444444;
  line-height: 24px;
}
.page .text-sm {
  font-size: 12px;
  line-height: 16px;
}
.page .text-light {
  color: #888888;
}
@media (max-width: 991.98px) {
  .page .item-nav {
    padding: 20px 0;
  }
}
@media (max-width: 767.98px) {
  .page .item-nav {
    padding-bottom: 0;
  }
}
.page .item-nav a {
  padding: 6px 14px;
  border-radius: 30px;
  margin-right: 7px;
  line-height: 14px;
}
.page .item-nav a:last-of-type {
  margin-right: 0;
}
.page .item-nav a.active {
  background-color: #f1f1f1;
  color: #444444;
  font-weight: bold;
}
@media (hover: hover) {
  .page .item-nav a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
@media (max-width: 767.98px) {
  .page .item-nav a {
    display: inline-block;
    margin-bottom: 8px;
    padding: 8px 14px;
  }
}

.container {
  width: 100%;
  max-width: 1384px;
  padding: 0 80px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .container {
    padding: 0 60px;
  }
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 16px;
  }
}
.container .title {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  padding: 33px 0 0;
}

header {
  height: 64px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  position: relative;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
header .container {
  display: flex;
  justify-content: space-between;
}
header .logo {
  margin: 0;
  font-size: 0;
}
header .logo a {
  display: flex;
  align-items: center;
}
header .links {
  display: flex;
}
header .links a {
  display: flex;
  align-items: center;
  line-height: 20px;
}
header .links a.data-mart {
  margin-right: 85px;
}
@media (max-width: 767.98px) {
  header .links a.data-mart {
    display: none;
  }
}
header .links a.data-mart .icon {
  margin-left: 9px;
  height: 12px;
  position: relative;
  top: -2px;
}
header .links a.log-in {
  margin-right: 8px;
}
header .links a.log-in .icon {
  padding-right: 9px;
  height: 16px;
  position: relative;
  top: -1px;
}
header .links .logged {
  display: block;
  position: relative;
}
header .links .logged .icon {
  position: absolute;
  left: 0;
  top: 2px;
}
header .links .logged .toggle-icon {
  position: absolute;
  right: -12px;
  top: -4px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
header .links .logged .username {
  max-width: 188px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 25px;
  cursor: pointer;
  display: block;
}
header .links .logged .contract {
  font-size: 10px;
  line-height: 16px;
  padding-left: 26px;
  position: absolute;
  margin-top: -1px;
  width: calc(100% + 10px);
  height: 24px;
}
header .links .logged .dropdown {
  position: absolute;
  width: 228px;
  background-color: #ffffff;
  box-shadow: 0px 13px 20px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 13px 20px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 13px 20px 0px rgba(0, 0, 0, 0.05);
  top: 0;
  right: -28px;
  z-index: 40;
  /*display: none;*/
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
header .links .logged .dropdown.open {
  /*display: block;*/
  opacity: 1;
  pointer-events: auto;
  top: 43px;
}
@media (max-width: 991.98px) {
  header .links .logged .dropdown {
    right: -16px;
    width: 200px;
  }
}
header .links .logged .dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .links .logged .dropdown ul li {
  padding: 16px;
  display: block;
  position: relative;
}
header .links .logged .dropdown ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #e9e9e9;
}
header .links .logged .dropdown ul li:last-of-type::before {
  display: none;
}
header .links .logged .dropdown ul li a {
  line-height: 24px;
}
header .links .logged .dropdown ul li a.logout {
  color: #d93737;
}
header .links .logged .dropdown ul li .data-mart {
  margin-right: 0;
}
@media (max-width: 767.98px) {
  header .links .logged .dropdown ul li .data-mart {
    display: block;
  }
}
header .links .logged .dropdown ul li .data-mart .icon {
  margin-left: 5px;
  position: relative;
  top: 2px;
  display: inline-block;
}

footer {
  background-color: #ffffff;
  border-top: 1px solid #e9e9e9;
  padding: 15px 0 26px;
  line-height: 24px;
}
@media (max-width: 991.98px) {
  footer {
    padding: 24px 0 25px;
  }
}
footer .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  footer .container {
    flex-direction: column-reverse;
  }
}
footer .column {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  footer .column:last-of-type {
    padding-bottom: 40px;
    flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  footer .column:last-of-type .block {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  footer .column:last-of-type .block:first-of-type {
    padding-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  footer .column:last-of-type .block a {
    width: auto;
    display: inline-block;
    margin-right: 14%;
  }
}
@media (max-width: 767.98px) {
  footer .column:last-of-type .block a:last-of-type {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  footer .column:first-of-type .block a {
    display: inline-block;
    padding: 8px 0 0;
    margin-right: 20%;
  }
}
@media (max-width: 767.98px) {
  footer .column:first-of-type .block a:last-of-type {
    padding-bottom: 0;
  }
}
footer .column .block {
  padding-right: 106px;
}
@media (max-width: 1199.98px) {
  footer .column .block {
    padding-right: 50px;
  }
}
footer .column .block.right {
  padding-right: 0;
  padding-left: 30px;
  text-align: right;
}
footer .column .block:last-of-type {
  padding-right: 35px;
}
@media (max-width: 1199.98px) {
  footer .column .block:last-of-type {
    padding-right: 0;
  }
}
footer .column .block a {
  margin-right: 22px;
}
@media (max-width: 991.98px) {
  footer .column .block a {
    margin-right: 50px;
  }
}

.block-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 12px;
  margin-bottom: 12px;
  position: relative;
}
@media (max-width: 767.98px) {
  .block-item {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.block-item .item-title {
  font-size: 16px;
  line-height: 32px;
  font-weight: bold;
  color: #444444;
}

.page .products {
  padding: 12px 0 4px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .page .products {
    padding: 8px 0 4px;
  }
}
.page .products .block-item {
  flex-basis: calc(50% - 12px);
}
@media (max-width: 991.98px) {
  .page .products .block-item {
    flex-basis: 100%;
  }
}
.page .products .block-item:nth-child(2n+1) {
  margin-right: 12px;
}
@media (max-width: 991.98px) {
  .page .products .block-item:nth-child(2n+1) {
    margin-right: 0;
  }
}
.page .products .block-item:nth-child(2n) {
  margin-left: 12px;
}
@media (max-width: 991.98px) {
  .page .products .block-item:nth-child(2n) {
    margin-left: 0;
  }
}
.page .products .block-item .item-icon {
  display: block;
}
@media (max-width: 767.98px) {
  .page .products .block-item .item-icon img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    position: relative;
    top: 4px;
    left: -6px;
  }
}
.page .products .block-item .item-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 7px;
  color: #444444;
  position: relative;
  top: -2px;
}
@media (max-width: 767.98px) {
  .page .products .block-item .item-title {
    font-size: 18px;
    padding-top: 0;
  }
}
.page .products .block-item .item-title-blue {
  font-size: 16px;
  padding-bottom: 7px;
  color: #375fd9;
  padding-top: 1px;
}
.page .products .block-item .item-version {
  line-height: 24px;
  padding-bottom: 16px;
  color: #888888;
}
@media (max-width: 767.98px) {
  .page .products .block-item .item-version {
    padding-bottom: 8px;
  }
}
.page .products .block-item .item-description {
  line-height: 24px;
  color: #444444;
}
.page .products .block-item .item-description-light {
  color: #888888;
}
.page .products .block-item .item-description-center {
  text-align: center;
}
.page .products .block-item .item-links {
  text-align: center;
  padding-top: 4px;
}
.page .products .block-item .item-links a {
  margin-right: 20px;
}
.page .products .block-item .item-links a .icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  line-height: 12px;
}
.page .products .block-item .item-links a:last-of-type {
  margin-right: 0;
}
.page .products .block-item .download-block .item-description {
  padding-right: 100px;
}
@media (max-width: 767.98px) {
  .page .products .block-item .download-block .item-description {
    padding-right: 80px;
  }
}
.page .products .block-item .download-block .download-icon {
  position: absolute;
  top: 50%;
  margin-top: 5px;
  right: 32px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.page .products .block-item .bottom {
  position: relative;
  padding-top: 100px;
}
.page .products .block-item .buttons {
  display: flex;
  position: absolute;
  width: calc(100% - 64px);
  left: auto;
  bottom: 40px;
}
@media (max-width: 991.98px) {
  .page .products .block-item .buttons {
    position: relative;
    bottom: auto;
    padding-top: 16px;
    width: 100%;
  }
}
.page .products .block-item .buttons > div {
  margin-right: 24px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .page .products .block-item .buttons > div {
    margin-right: 16px;
  }
}
@media (max-width: 767.98px) {
  .page .products .block-item .buttons > div {
    width: 50%;
  }
}
.page .products .block-item .buttons > div:last-of-type {
  margin-right: 0;
}
.page .products .block-item .buttons > div .note {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -25px;
  text-align: center;
  font-size: 10px;
  line-height: 24px;
  color: #444444;
}
.page .products .block-item .buttons button, .page .products .block-item .buttons .btn {
  width: 168px;
}
@media (max-width: 767.98px) {
  .page .products .block-item .buttons button, .page .products .block-item .buttons .btn {
    width: 100%;
  }
}
.page .products .block-item .state-register {
  position: absolute;
  top: 38px;
  right: 22px;
  font-size: 12px;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .page .products .block-item .state-register {
    top: 15px;
    right: 16px;
  }
}
.page .products .block-item .state-register .state-register--icon {
  position: absolute;
  top: -9px;
  left: -33px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .page .products .block-item .state-register .state-register--icon {
    -webkit-transform: scale(0.65);
    -ms-transform: scale(0.65);
    transform: scale(0.65);
    top: -8px;
  }
}
.page .products .block-item.item-with-buttons {
  padding: 32px 32px 111px;
}
@media (max-width: 991.98px) {
  .page .products .block-item.item-with-buttons {
    padding-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  .page .products .block-item.item-with-buttons {
    padding-top: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page[data-logged=true] .container {
  max-width: 968px;
}
@media (max-width: 767.98px) {
  .page[data-logged=true] .container .products {
    padding-top: 13px;
  }
}
.page[data-logged=true] .container .products .block-item.item-with-buttons {
  padding: 24px 24px 88px;
}
@media (max-width: 991.98px) {
  .page[data-logged=true] .container .products .block-item.item-with-buttons {
    padding-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  .page[data-logged=true] .container .products .block-item.item-with-buttons {
    padding-top: 16px;
  }
}
.page[data-logged=true] .container .products .block-item .item-icon {
  width: 40px;
  height: 40px;
  margin-right: 7px;
}
@media (max-width: 767.98px) {
  .page[data-logged=true] .container .products .block-item .item-icon {
    margin-right: 20px;
  }
}
.page[data-logged=true] .container .products .block-item .item-icon img {
  -webkit-transform: scale(0.67);
  -ms-transform: scale(0.67);
  transform: scale(0.67);
  position: relative;
  left: -10px;
  top: -8px;
}
@media (max-width: 991.98px) {
  .page[data-logged=true] .container .products .block-item .item-icon img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@media (max-width: 767.98px) {
  .page[data-logged=true] .container .products .block-item .item-icon img {
    left: -13px;
    top: -4px;
  }
}
.page[data-logged=true] .container .products .block-item .item-title {
  font-size: 16px;
  display: flex;
  align-items: center;
  padding-bottom: 9px;
}
@media (max-width: 991.98px) {
  .page[data-logged=true] .container .products .block-item .item-title {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .page[data-logged=true] .container .products .block-item .item-title {
    padding-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .page[data-logged=true] .container .products .block-item .item-table {
    padding-top: 0;
  }
}
.page[data-logged=true] .container .products .block-item .item-table .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.page[data-logged=true] .container .products .block-item .item-table .row .name {
  line-height: 24px;
  position: relative;
  padding-right: 25px;
  display: flex;
  align-items: center;
}
.page[data-logged=true] .container .products .block-item .item-table .row .name .info {
  cursor: pointer;
  position: relative;
  display: inline;
  top: 0;
  left: 8px;
  height: 16px;
}
.page[data-logged=true] .container .products .block-item .item-table .row .name .info::before {
  position: absolute;
  content: "i";
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #bbbbbb;
  color: #bbbbbb;
  font-weight: bold;
  line-height: 16px;
  text-align: center;
}
.page[data-logged=true] .container .products .block-item .item-table .row .name .info span {
  padding: 0 8px;
  border-radius: 8px;
  background-color: #eeeeee;
  margin-left: 20px;
  margin-top: -3px;
  color: #888888;
  display: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  white-space: nowrap;
  z-index: 30;
}
.page[data-logged=true] .container .products .block-item .item-table .row .name .info span b {
  color: #444444;
  font-weight: normal;
}
.page[data-logged=true] .container .products .block-item .item-table .row .name .info:hover span {
  display: inline;
}
.page[data-logged=true] .container .products .block-item .item-table .row .value {
  font-weight: bold;
  line-height: 24px;
}
.page[data-logged=true] .container .products .block-item .item-table .row .value.green {
  color: #47a027;
}
.page[data-logged=true] .container .products .block-item .item-table .row .value.orange {
  color: #c97800;
}
.page[data-logged=true] .container .products .block-item .item-description {
  padding-top: 8px;
  padding-bottom: 34px;
}
.page[data-logged=true] .container .products .block-item .item-description ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.page[data-logged=true] .container .products .block-item .item-description ul li {
  position: relative;
  padding-left: 11px;
}
.page[data-logged=true] .container .products .block-item .item-description ul li::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 1px;
  background-color: #888888;
  left: 0;
  top: 12px;
}
.page[data-logged=true] .container .products .block-item .item-description.item-description-center {
  padding-top: 62px;
}
@media (max-width: 767.98px) {
  .page[data-logged=true] .container .products .block-item .item-description.item-description-center {
    padding-top: 0;
    padding-bottom: 12px;
  }
}
.page[data-logged=true] .container .products .block-item .buttons {
  bottom: 32px;
}
@media (max-width: 991.98px) {
  .page[data-logged=true] .container .products .block-item .buttons {
    bottom: auto;
  }
}
.page[data-logged=true] .container .products .block-item .buttons > div {
  width: 100%;
}
.page[data-logged=true] .container .products .block-item .buttons > div .btn {
  width: 100%;
}

label {
  position: relative;
  padding-left: 24px;
  color: #444444;
  line-height: 16px;
}
label input[type=radio] {
  opacity: 0 !important;
  position: absolute;
  left: 0;
  top: 0;
}
label input[type=radio] + span {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  outline: 1px solid #ccc;
  outline-width: 1px;
}
label input[type=radio] + span::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  left: 2px;
  top: 2px;
  text-align: center;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  background-color: #375fd9;
  border-radius: 50%;
}
label input[type=radio]:checked + span::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
label input[type=radio]:checked ~ span {
  color: #375fd9;
}

label {
  position: relative;
  padding-left: 24px;
  color: #444444;
  line-height: 16px;
}
label input[type=checkbox] {
  opacity: 0 !important;
  position: absolute;
  left: 0;
  top: 0;
}
label input[type=checkbox] + span {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
label input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  text-align: center;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  color: #375fd9;
  width: 6px;
  height: 9px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  -webkit-transform: scale(0) rotate(45deg);
  -ms-transform: scale(0) rotate(45deg);
  transform: scale(0) rotate(45deg);
}
label input[type=checkbox]:checked + span::after {
  -webkit-transform: scale(1) rotate(45deg);
  -ms-transform: scale(1) rotate(45deg);
  transform: scale(1) rotate(45deg);
}
label input[type=checkbox]:checked ~ span {
  color: #375fd9;
}

.counter {
  position: relative;
}
.counter a {
  position: absolute;
  z-index: 4;
  top: 8px;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
@media (hover: hover) {
  .counter a:hover {
    text-decoration: none;
  }
}
.counter a.disabled::after {
  color: #888888;
}
.counter a::after {
  color: #375fd9;
  font-size: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  line-height: 19px;
}
.counter a.inc {
  left: -24px;
}
.counter a.inc::after {
  content: "+";
}
.counter a.dec {
  right: -24px;
}
.counter a.dec::after {
  content: "-";
}
.counter input[type=text], .counter input[type=number] {
  width: 48px;
  height: 33px;
  border-radius: 4px;
  font-family: "Circe";
  line-height: 33px;
  color: #444444;
  border: 1px solid #ccc;
  background-color: #ffffff;
  resize: none;
  padding: 0 8px;
  font-size: 15px;
  outline: none;
  -moz-appearance: textfield;
  text-align: center;
}
@media (max-width: 767.98px) {
  .counter input[type=text], .counter input[type=number] {
    font-size: 16px !important;
  }
}
.counter input[type=text]::-webkit-input-placeholder, .counter input[type=number]::-webkit-input-placeholder {
  color: #444444;
}
.counter input[type=text]::-moz-placeholder, .counter input[type=number]::-moz-placeholder {
  color: #444444;
}
.counter input[type=text]:-moz-placeholder, .counter input[type=number]:-moz-placeholder {
  color: #444444;
}
.counter input[type=text]:-ms-input-placeholder, .counter input[type=number]:-ms-input-placeholder {
  color: #444444;
}
.counter input[type=text].status-error, .counter input[type=number].status-error {
  border: 1px solid #eb001b;
}
.counter input[type=text]::-webkit-outer-spin-button, .counter input[type=text]::-webkit-inner-spin-button, .counter input[type=number]::-webkit-outer-spin-button, .counter input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.purchase-page .container {
  max-width: 968px;
}
.purchase-page .block-item {
  padding: 16px 24px;
  margin-bottom: 16px;
}
.purchase-page .product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
@media (max-width: 991.98px) {
  .purchase-page .product-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  .purchase-page .product-item {
    padding: 16px;
  }
}
.purchase-page .product-item.item-additional {
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 767.98px) {
  .purchase-page .product-item.item-additional {
    padding: 16px 24px;
  }
}
.purchase-page .product-item.item-additional .item-title {
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  .purchase-page .product-item.item-additional .item-title .item-icon img {
    left: -32px;
    top: -10px;
  }
}
.purchase-page .product-item.item-additional .list {
  padding-top: 12px;
}
.purchase-page .product-item .item-title {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .purchase-page .product-item .item-title {
    font-size: 18px;
    padding-left: 24px;
    padding-bottom: 12px;
    line-height: 24px;
  }
}
.purchase-page .product-item .item-title .item-icon {
  height: 40px;
  width: 37px;
}
.purchase-page .product-item .item-title .item-icon img {
  -webkit-transform: scale(0.67);
  -ms-transform: scale(0.67);
  transform: scale(0.67);
  position: relative;
  top: -6px;
  left: -20px;
}
@media (max-width: 991.98px) {
  .purchase-page .product-item .item-title .item-icon img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    top: -2px;
    left: -32px;
  }
}
@media (max-width: 767.98px) {
  .purchase-page .product-item .item-title .item-icon img {
    left: -30px;
    top: -8px;
  }
}
.purchase-page .select-version-item {
  padding-bottom: 0;
}
.purchase-page .select-version-item .list {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  position: relative;
}
.purchase-page .select-version-item .list::before {
  position: absolute;
  content: "";
  left: -24px;
  top: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .purchase-page .select-version-item .list::before {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .purchase-page .select-version-item .list {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.purchase-page .select-version-item .list .item {
  width: 33.33333333%;
  border-right: 1px solid #e9e9e9;
}
.purchase-page .select-version-item .list .item label {
  cursor: default;
  padding: 24px 24px 16px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .purchase-page .select-version-item .list .item label {
    padding-left: 0;
    padding-right: 0;
  }
}
.purchase-page .select-version-item .list .item:first-of-type label {
  padding-left: 0;
}
.purchase-page .select-version-item .list .item:first-of-type label input + span {
  left: 0;
}
.purchase-page .select-version-item .list .item:last-of-type {
  border-right: none;
}
.purchase-page .select-version-item .list .item:last-of-type label {
  padding-right: 0;
}
@media (max-width: 991.98px) {
  .purchase-page .select-version-item .list .item:last-of-type {
    border: none;
  }
}
@media (max-width: 991.98px) {
  .purchase-page .select-version-item .list .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    border-right: none;
    border: none;
    position: relative;
  }
  .purchase-page .select-version-item .list .item::before {
    position: absolute;
    content: "";
    left: -24px;
    top: 0;
    width: calc(100% + 48px);
    height: 1px;
    background-color: #e9e9e9;
  }
}
.purchase-page .select-version-item .list .item .item-head {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding-left: 24px;
}
.purchase-page .select-version-item .list .item .item-head input + span {
  top: 24px;
  left: 24px;
}
@media (max-width: 991.98px) {
  .purchase-page .select-version-item .list .item .item-head input + span {
    left: 0;
  }
}
.purchase-page .select-version-item .list .item .item-head input ~ span {
  margin-right: 10px;
  overflow: hidden;
}
.purchase-page .select-version-item .list .item .item-head .price {
  color: #444444;
  font-weight: bold;
  line-height: 16px;
  white-space: nowrap;
  margin-right: 0;
  overflow: initial;
}
.purchase-page .select-version-item .list .item .settings {
  padding-left: 25px;
  padding-top: 8px;
  display: block;
}
.purchase-page .select-version-item .list .item .settings .row {
  display: flex;
  justify-content: space-between;
}
.purchase-page .select-version-item .list .item .settings .row .name {
  font-size: 12px;
  line-height: 24px;
  position: relative;
  padding-right: 25px;
}
.purchase-page .select-version-item .list .item .settings .row .value {
  font-size: 12px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.purchase-page .item-additional {
  padding-bottom: 0;
}
.purchase-page .item-additional .list {
  padding-top: 15px;
}
.purchase-page .item-additional .list .item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 0;
  color: #444444;
  min-height: 65px;
}
@media (max-width: 991.98px) {
  .purchase-page .item-additional .list .item {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 24px 0;
    min-height: unset;
  }
}
.purchase-page .item-additional .list .item::before {
  position: absolute;
  content: "";
  left: -24px;
  top: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
.purchase-page .item-additional .list .item label, .purchase-page .item-additional .list .item .label {
  width: 50%;
}
@media (max-width: 991.98px) {
  .purchase-page .item-additional .list .item label, .purchase-page .item-additional .list .item .label {
    width: 100%;
  }
}
.purchase-page .item-additional .list .item .icon {
  height: 16px;
  padding-right: 5px;
  position: relative;
  top: 3px;
}
.purchase-page .item-additional .list .item .text.right {
  position: absolute;
  right: 0;
  width: 50%;
  text-align: right;
  margin-top: 1px;
}
@media (max-width: 991.98px) {
  .purchase-page .item-additional .list .item .text.right {
    width: 100%;
    position: relative;
    text-align: left;
    margin-top: 14px;
  }
}
@media (max-width: 991.98px) {
  .purchase-page .item-additional .list .item .text {
    margin-top: 24px;
  }
}
.purchase-page .item-additional .list .item .counter {
  margin-right: 50px;
}
@media (max-width: 991.98px) {
  .purchase-page .item-additional .list .item .counter {
    margin-right: 0;
    margin-left: 24px;
    margin-top: 24px;
  }
}
.purchase-page .item-additional .list .item .sum {
  position: absolute;
  right: 0;
}
@media (max-width: 991.98px) {
  .purchase-page .item-additional .list .item .sum {
    display: none;
  }
}
.purchase-page .item-total .item-head {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 32px;
  font-weight: bold;
  padding-bottom: 16px;
}
.purchase-page .item-total .agreement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 12px;
}
@media (max-width: 767.98px) {
  .purchase-page .item-total .agreement {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 24px;
    align-items: flex-start;
  }
}
.purchase-page .item-total .agreement::before {
  position: absolute;
  content: "";
  left: -24px;
  top: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
.purchase-page .item-total .agreement .errors {
  display: none;
}
.purchase-page .item-total .agreement .has-error input[type=checkbox] + span {
  border: 1px solid #eb001b;
}
.purchase-page .item-total .agreement .has-error .errors {
  display: block;
  position: relative;
  color: #eb001b;
  font-size: 10px;
  line-height: 12px;
  bottom: 0;
  left: 2px;
  font-weight: 600;
  padding-left: 22px;
}
.purchase-page .item-total .agreement .btn {
  padding-left: 58px;
  padding-right: 58px;
  height: 32px;
}
@media (max-width: 767.98px) {
  .purchase-page .item-total .agreement .btn {
    margin-top: 24px;
    padding-left: 0;
    padding-right: 0;
  }
}
.purchase-page .item-public-offers {
  display: flex;
}
@media (max-width: 767.98px) {
  .purchase-page .item-public-offers {
    flex-direction: column;
  }
}
.purchase-page .item-public-offers .item-title {
  padding-right: 40px;
}
@media (max-width: 991.98px) {
  .purchase-page .item-public-offers .item-title {
    padding-right: 30px;
  }
}
@media (max-width: 767.98px) {
  .purchase-page .item-public-offers .item-title {
    padding-right: 0;
    padding-bottom: 16px;
  }
}
.purchase-page .item-public-offers .list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
}
@media (max-width: 991.98px) {
  .purchase-page .item-public-offers .list {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .purchase-page .item-public-offers .list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    position: relative;
    padding-top: 16px;
  }
}
@media (max-width: 767.98px) {
  .purchase-page .item-public-offers .list::before {
    position: absolute;
    content: "";
    left: -24px;
    top: 0;
    width: calc(100% + 48px);
    height: 1px;
    background-color: #e9e9e9;
  }
}
.purchase-page .item-public-offers .list div {
  padding: 6px 0;
}

.registration-page .container {
  max-width: 968px;
}
.registration-page .block-item {
  padding: 16px 24px;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .registration-page .block-item {
    padding: 16px;
  }
}
.registration-page .buyer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 18px;
}
.registration-page .buyer-info::before {
  position: absolute;
  content: "";
  left: -24px;
  bottom: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .registration-page .buyer-info::before {
    left: -16px;
    width: calc(100% + 32px);
  }
}
@media (max-width: 991.98px) {
  .registration-page .buyer-info {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 9px;
  }
}
.registration-page .buyer-info .item-title {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .registration-page .buyer-info .item-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.registration-page .contact-info-item .item-title {
  position: relative;
  padding-bottom: 18px;
}
@media (max-width: 991.98px) {
  .registration-page .contact-info-item .item-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.registration-page .contact-info-item .item-title::before {
  position: absolute;
  content: "";
  left: -24px;
  bottom: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .registration-page .contact-info-item .item-title::before {
    left: -16px;
    width: calc(100% + 32px);
  }
}
.registration-page .form {
  display: flex;
  flex-wrap: wrap;
  padding-top: 28px;
}
@media (max-width: 991.98px) {
  .registration-page .form {
    flex-direction: column;
    padding-top: 21px;
  }
}
.registration-page .form .form-group {
  width: calc(33.333333333% - 45.33333333px);
  margin-right: 68px;
}
@media (max-width: 1199.98px) {
  .registration-page .form .form-group {
    margin-right: 58px;
    width: calc(33.333333333% - 38.6666666667px);
  }
}
@media (max-width: 991.98px) {
  .registration-page .form .form-group {
    margin-right: 0;
    width: 100%;
    padding-bottom: 28px;
  }
}
.registration-page .form .form-group:nth-child(3n) {
  margin-right: 0;
}
.registration-page .form .form-group:last-of-type {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .registration-page .form .form-group:last-of-type {
    padding-bottom: 14px;
  }
}
.registration-page .form .form-group label {
  padding-left: 0;
}
.registration-page .form .form-group.form-group-phone-number .code {
  position: absolute;
  left: 8px;
  bottom: 18px;
  width: 25px;
  height: 33px;
  white-space: nowrap;
  line-height: 35px;
  border-right: 1px solid #ccc;
}
@media (max-width: 991.98px) {
  .registration-page .form .form-group.form-group-phone-number .code {
    bottom: 28px;
  }
}
.registration-page .form .form-group.form-group-phone-number input {
  padding-left: 40px;
}
.registration-page .form .form-group.form-group-double {
  width: 66.6666666667%;
}
.registration-page .item-agreement .agreement {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .registration-page .item-agreement .agreement {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.registration-page .item-agreement .agreement label {
  padding-right: 30px;
}
.registration-page .item-agreement .agreement .errors {
  padding-left: 22px;
}
.registration-page .item-agreement .agreement .btn {
  padding-left: 20px;
  padding-right: 20px;
  height: 32px;
}

.payment-page .container {
  max-width: 968px;
}
.payment-page .block-item {
  padding: 16px 24px;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .payment-page .block-item {
    padding: 16px;
  }
}
.payment-page .block-item .item-title {
  position: relative;
  padding-bottom: 16px;
}
@media (max-width: 991.98px) {
  .payment-page .block-item .item-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.payment-page .block-item .item-title::before {
  position: absolute;
  content: "";
  left: -24px;
  bottom: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .payment-page .block-item .item-title::before {
    left: -16px;
    width: calc(100% + 32px);
  }
}
.payment-page .for-payment {
  display: flex;
  justify-content: space-between;
}
.payment-page .for-payment .item-title {
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  .payment-page .for-payment .item-title {
    padding-bottom: 24px;
  }
}
.payment-page .for-payment .item-title::before {
  display: none;
}
.payment-page .for-payment .sum {
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
}
.payment-page .choose-payment-method-item {
  display: flex;
  padding-top: 23px;
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item {
    flex-direction: column;
  }
}
.payment-page .choose-payment-method-item .form {
  flex-basis: 30%;
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .form {
    flex-basis: 100%;
    padding-bottom: 9px;
    position: relative;
  }
  .payment-page .choose-payment-method-item .form::before {
    position: absolute;
    content: "";
    left: -16px;
    width: calc(100% + 32px);
    bottom: 0;
    height: 1px;
    background-color: #e9e9e9;
  }
}
.payment-page .choose-payment-method-item .form .form-group {
  padding: 8px 0 22px;
}
.payment-page .choose-payment-method-item .form .form-group label {
  font-weight: bold;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.payment-page .choose-payment-method-item .payment-details {
  flex-basis: 70%;
  border-radius: 16px;
  background-color: #f9f9fa;
  min-height: 232px;
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details {
    flex-basis: 100%;
    margin-top: 16px;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-card {
  padding: 40px 60px;
}
@media (max-width: 991.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-card {
    padding: 32px 35px;
  }
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-card {
    padding: 32px 0;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-card .text {
  text-align: center;
}
.payment-page .choose-payment-method-item .payment-details .payment-by-card .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-card .list {
    justify-content: center;
    flex-wrap: wrap;
    padding: 12px 0;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-card .list a {
  height: 40px;
  width: 60px;
  border-radius: 6px;
  border: 1px solid #e9e9e9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-card .list a {
    margin: 12px 9px;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-card .btn-block {
  text-align: center;
  padding-top: 8px;
  padding: 0 16px;
}
@media (max-width: 991.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-card .btn-block {
    padding-top: 0;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-card .btn-block .btn {
  width: 33%;
  margin: auto;
  height: 32px;
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-card .btn-block .btn {
    width: 100%;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-qrcode {
  display: flex;
  align-items: center;
  padding: 42px;
}
@media (max-width: 991.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-qrcode {
    padding: 42px 25px;
  }
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-qrcode {
    flex-direction: column;
    padding: 35px 16px 32px;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-qrcode .qr-code {
  margin-right: 40px;
}
@media (max-width: 991.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-qrcode .qr-code {
    margin-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-qrcode .qr-code {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-qrcode .text {
    text-align: center;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-qrcode .text p {
  margin: 0 0 24px;
}
@media (max-width: 991.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-qrcode .text p {
    margin: 0 0 14px;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-qrcode .text p:last-of-type {
  margin-bottom: 0;
}
.payment-page .choose-payment-method-item .payment-details .payment-by-invoice {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 62px 16px;
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-invoice {
    padding: 80px 16px;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-invoice .form-group {
  width: 66.66666667%;
}
@media (max-width: 767.98px) {
  .payment-page .choose-payment-method-item .payment-details .payment-by-invoice .form-group {
    width: 100%;
  }
}
.payment-page .choose-payment-method-item .payment-details .payment-by-invoice label {
  padding-left: 0;
  font-weight: bold;
}
.payment-page .choose-payment-method-item .payment-details .payment-by-invoice .btn {
  height: 32px;
  margin-top: 14px;
  padding-left: 35px;
  padding-right: 35px;
  min-width: 30%;
}

.contract-page .container {
  max-width: 968px;
}
.contract-page .block-item {
  padding: 16px 24px;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .contract-page .block-item {
    padding: 16px;
  }
}
@media (max-width: 767.98px) {
  .contract-page .block-item .item-title {
    line-height: 24px;
  }
}
.contract-page .user-info-item {
  padding: 24px;
}
.contract-page .user-info-item .item-title {
  padding-right: 70px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .contract-page .user-info-item .item-title {
    line-height: 24px;
  }
}
.contract-page .user-info-item .text {
  padding-bottom: 18px;
}
@media (max-width: 767.98px) {
  .contract-page .user-info-item .text {
    padding-top: 8px;
    padding-bottom: 3px;
  }
}
.contract-page .user-info-item .edit {
  position: absolute;
  right: 24px;
}
.contract-page .user-info-item .user-data {
  display: flex;
  padding-top: 15px;
}
@media (max-width: 767.98px) {
  .contract-page .user-info-item .user-data {
    flex-direction: column;
  }
}
.contract-page .user-info-item .user-data > div {
  margin-right: 50px;
}
.contract-page .user-info-item .user-data > div:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .contract-page .user-info-item .user-data > div {
    margin-right: 0;
    margin-bottom: 11px;
  }
}
.contract-page .user-info-item .user-data > div .value {
  font-weight: bold;
  padding-top: 4px;
}
@media (max-width: 767.98px) {
  .contract-page .user-info-item .user-data > div .value {
    padding-top: 5px;
  }
}
.contract-page .user-info-item .user-data > div .name, .contract-page .user-info-item .user-data > div .value {
  overflow: hidden;
  text-overflow: ellipsis;
}
.contract-page .change-password-item .item-title {
  position: relative;
  margin-bottom: -1px;
}
@media (max-width: 767.98px) {
  .contract-page .change-password-item .item-title {
    margin-bottom: 0;
    padding-bottom: 8px;
  }
}
.contract-page .change-password-item .form {
  padding-top: 21px;
  position: relative;
  margin-top: 8px;
  display: flex;
}
@media (max-width: 991.98px) {
  .contract-page .change-password-item .form {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .contract-page .change-password-item .form {
    margin-top: 16px;
    padding-top: 26px;
  }
}
.contract-page .change-password-item .form::before {
  position: absolute;
  content: "";
  left: -24px;
  top: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .contract-page .change-password-item .form::before {
    left: -16px;
    width: calc(100% + 32px);
  }
}
.contract-page .change-password-item .form .form-group {
  width: calc(33.333333333% - 45.33333333px);
  margin-right: 68px;
}
@media (max-width: 1199.98px) {
  .contract-page .change-password-item .form .form-group {
    margin-right: 58px;
    width: calc(33.333333333% - 38.6666666667px);
  }
}
@media (max-width: 991.98px) {
  .contract-page .change-password-item .form .form-group {
    margin-right: 0;
    width: 100%;
    padding-bottom: 28px;
  }
}
.contract-page .change-password-item .form .form-group:last-of-type {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .contract-page .change-password-item .form .form-group:last-of-type {
    padding-bottom: 14px;
  }
}
.contract-page .change-password-item .form .form-group label {
  padding-left: 0;
  display: inline-block;
}
.contract-page .change-password-item .form .form-group label:last-of-type {
  margin-right: 0;
}
.contract-page .change-password-item .form .btn {
  height: 32px;
  margin-top: 18px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .contract-page .change-password-item .form .btn {
    margin-top: 0;
  }
}
.contract-page .list-block-item .top-links {
  position: absolute;
  z-index: 6;
  white-space: nowrap;
  right: 24px;
}
@media (max-width: 991.98px) {
  .contract-page .list-block-item .top-links {
    right: 16px;
  }
}
.contract-page .list-block-item .top-links a {
  margin-right: 42px;
  display: inline-block;
}
.contract-page .list-block-item .top-links a:last-of-type {
  margin-right: 0;
}
.contract-page .list-block-item .toggle {
  position: relative;
  display: flex;
  align-items: center;
}
@media (hover: hover) {
  .contract-page .list-block-item .toggle:hover {
    text-decoration: none;
  }
}
@media (hover: hover) {
  .contract-page .list-block-item .toggle .toggle-text:hover {
    border-bottom: 1px dashed #375fd9;
  }
}
.contract-page .list-block-item .toggle .text {
  color: #375fd9;
}
.contract-page .list-block-item .toggle .icon {
  height: 16px;
  padding-left: 3px;
  position: relative;
  display: inline-block;
  top: 4px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.contract-page .list-block-item .toggle.open .icon {
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.contract-page .list-block-item .item-title {
  position: relative;
  padding-right: 105px;
}
@media (max-width: 991.98px) {
  .contract-page .list-block-item .item-title {
    line-height: 24px;
    padding-bottom: 4px;
  }
}
@media (max-width: 991.98px) {
  .contract-page .list-block-item .text-sm {
    padding-bottom: 14px;
  }
}
.contract-page .list-block-item .list {
  position: relative;
  padding-top: 3px;
  margin-top: 8px;
}
@media (max-width: 991.98px) {
  .contract-page .list-block-item .list {
    margin-top: 14px;
    padding-top: 0;
  }
}
.contract-page .list-block-item .list::before {
  position: absolute;
  content: "";
  left: -24px;
  top: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .contract-page .list-block-item .list::before {
    left: -16px;
    width: calc(100% + 32px);
  }
}
.contract-page .list-block-item .item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
  line-height: 24px;
}
.contract-page .list-block-item .item.item-head {
  font-weight: bold;
}
.contract-page .list-block-item .item::before {
  position: absolute;
  content: "";
  left: -24px;
  bottom: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .contract-page .list-block-item .item::before {
    left: -16px;
    width: calc(100% + 32px);
  }
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .item .date {
    text-align: right;
  }
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .payment-history-list .item {
    flex-wrap: wrap;
  }
}
.contract-page .list-block-item .payment-history-list .item .date {
  flex-basis: 25%;
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .payment-history-list .item .date {
    flex-basis: 50%;
    text-align: left;
  }
}
.contract-page .list-block-item .payment-history-list .item .sum {
  flex-basis: 23%;
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .payment-history-list .item .sum {
    flex-basis: 50%;
    order: 2;
    padding-top: 14px;
  }
}
.contract-page .list-block-item .payment-history-list .item .text {
  flex-basis: 32%;
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .payment-history-list .item .text {
    flex-basis: 50%;
    order: 1;
    text-align: right;
  }
}
.contract-page .list-block-item .payment-history-list .item .text .icon {
  position: relative;
  top: 2px;
  margin-left: 3px;
}
.contract-page .list-block-item .payment-history-list .item .text a {
  white-space: nowrap;
}
.contract-page .list-block-item .payment-history-list .item .status {
  flex-basis: 20%;
  text-align: right;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .payment-history-list .item .status {
    flex-basis: 50%;
    padding-top: 14px;
    padding-right: 0;
    order: 3;
    align-items: flex-start;
  }
}
.contract-page .list-block-item .payment-history-list .item .status.status-error {
  color: #eb001b;
}
.contract-page .list-block-item .payment-history-list .item .status .info {
  cursor: pointer;
  position: relative;
  display: inline;
  top: 0;
  left: 8px;
  height: 16px;
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .payment-history-list .item .status .info {
    left: 0;
    padding-left: 3px;
  }
}
.contract-page .list-block-item .payment-history-list .item .status .info::before {
  position: absolute;
  display: inline-block;
  content: "i";
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #bbbbbb;
  color: #bbbbbb;
  font-weight: bold;
  line-height: 16px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .payment-history-list .item .status .info::before {
    position: relative;
    left: 0;
    top: 0;
    margin-left: 5px;
    order: 3;
  }
}
.contract-page .list-block-item .payment-history-list .item .status .info span {
  padding: 0 8px;
  border-radius: 8px;
  background-color: #eeeeee;
  display: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  right: 3px;
  margin-top: -3px;
  white-space: nowrap;
  z-index: 30;
  color: #888888;
}
.contract-page .list-block-item .payment-history-list .item .status .info span b {
  color: #444444;
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .contract-page .list-block-item .payment-history-list .item .status .info span {
    right: 20px;
    margin-top: -1px;
  }
}
.contract-page .list-block-item .payment-history-list .item .status .info:hover span {
  display: inline;
}
.contract-page .list-block-item .more {
  text-align: center;
  padding-top: 12px;
}

.download-center-page .container {
  max-width: 968px;
}
.download-center-page .title {
  padding-bottom: 10px;
}
@media (max-width: 767.98px) {
  .download-center-page .title {
    padding-bottom: 6px;
  }
}
.download-center-page .block-item {
  padding: 16px 24px;
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .download-center-page .block-item {
    padding: 16px;
  }
}
@media (max-width: 767.98px) {
  .download-center-page .block-item .item-title {
    line-height: 24px;
  }
}
.download-center-page .update-item {
  padding: 24px 16px;
}
@media (max-width: 767.98px) {
  .download-center-page .update-item {
    padding: 16px;
  }
}
.download-center-page .update-item .item {
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .download-center-page .update-item .item {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.download-center-page .update-item .item .name {
  flex-basis: 70%;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .download-center-page .update-item .item .name {
    flex-basis: 100%;
    padding-bottom: 10px;
  }
}
.download-center-page .update-item .item .size {
  flex-basis: 24%;
  white-space: nowrap;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .download-center-page .update-item .item .size {
    flex-basis: auto;
  }
}
.download-center-page .update-item .item .download {
  position: absolute;
  right: 0;
  white-space: nowrap;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .download-center-page .update-item .item .download {
    position: relative;
    right: auto;
    padding-left: 31px;
  }
}
.download-center-page .update-item .texts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.download-center-page .update-item .texts li {
  display: inline-block;
  position: relative;
}
@media (max-width: 767.98px) {
  .download-center-page .update-item .texts li {
    padding-bottom: 4px;
  }
}
.download-center-page .update-item .texts li::after {
  content: ".";
  position: relative;
  color: #888888;
  font-size: 26px;
  margin: 0 5px 0 7px;
  top: -1px;
}
.download-center-page .update-item .texts li:last-of-type::after {
  display: none;
}
.download-center-page .instructions-list .item-title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 9px;
}
@media (max-width: 767.98px) {
  .download-center-page .instructions-list .item-title-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
.download-center-page .instructions-list .item-title-block .item-title {
  display: flex;
  align-items: center;
  position: relative;
  top: -2px;
  padding-right: 20px;
}
@media (max-width: 767.98px) {
  .download-center-page .instructions-list .item-title-block .item-title {
    padding-bottom: 8px;
    align-items: flex-start;
    top: 0;
  }
}
.download-center-page .instructions-list .item-title-block .item-title .item-icon {
  display: block;
  height: 40px;
  width: 40px;
  padding-right: 42px;
}
.download-center-page .instructions-list .item-title-block .item-title .item-icon img {
  -webkit-transform: scale(0.67);
  -ms-transform: scale(0.67);
  transform: scale(0.67);
  position: relative;
  top: -6px;
  left: -16px;
}
@media (max-width: 767.98px) {
  .download-center-page .instructions-list .item-title-block .item-title .item-icon img {
    top: -10px;
  }
}
.download-center-page .instructions-list .item-title-block a {
  position: relative;
  top: -3px;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .download-center-page .instructions-list .item-title-block a {
    top: 0;
    padding: 13px 0;
  }
}
.download-center-page .instructions-list .item-title-block a .icon {
  margin-left: 3px;
  position: relative;
  top: 2px;
  height: 12px;
}
.download-center-page .instructions-list .item {
  position: relative;
  padding: 16px 0;
}
.download-center-page .instructions-list .item a {
  line-height: 24px;
}
.download-center-page .instructions-list .item::before {
  position: absolute;
  content: "";
  left: -24px;
  top: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .download-center-page .instructions-list .item::before {
    left: -16px;
    width: calc(100% + 32px);
  }
}
.download-center-page .setup-files-list {
  padding: 3px 0;
}
@media (max-width: 767.98px) {
  .download-center-page .setup-files-list {
    padding: 0;
  }
}
.download-center-page .setup-files-list .item {
  display: flex;
  position: relative;
  padding: 16px 0;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .download-center-page .setup-files-list .item {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.download-center-page .setup-files-list .item:first-of-type {
  padding-top: 0;
}
.download-center-page .setup-files-list .item:last-of-type {
  padding-bottom: 0;
}
.download-center-page .setup-files-list .item:last-of-type::before {
  display: none;
}
.download-center-page .setup-files-list .item::before {
  position: absolute;
  content: "";
  left: -24px;
  bottom: 0;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #e9e9e9;
}
@media (max-width: 991.98px) {
  .download-center-page .setup-files-list .item::before {
    left: -16px;
    width: calc(100% + 32px);
  }
}
.download-center-page .setup-files-list .item .name {
  flex-basis: 70%;
  line-height: 24px;
  padding-right: 10px;
}
@media (max-width: 767.98px) {
  .download-center-page .setup-files-list .item .name {
    flex-basis: 100%;
    padding-right: 0;
  }
}
.download-center-page .setup-files-list .item .name .text {
  padding-top: 4px;
}
@media (max-width: 767.98px) {
  .download-center-page .setup-files-list .item .name .text {
    padding-bottom: 4px;
  }
}
.download-center-page .setup-files-list .item .size {
  flex-basis: 24%;
  white-space: nowrap;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .download-center-page .setup-files-list .item .size {
    flex-basis: auto;
    padding-top: 10px;
  }
}
.download-center-page .setup-files-list .item .download {
  position: absolute;
  right: 0;
  white-space: nowrap;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .download-center-page .setup-files-list .item .download {
    position: relative;
    right: auto;
    padding-left: 31px;
    padding-top: 10px;
  }
}

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