.tippy-box[data-theme~=light]{color:#26323d;box-shadow:0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);background-color:#fff}.tippy-box[data-theme~=light][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=light][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff}.tippy-box[data-theme~=light][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=light][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff}.tippy-box[data-theme~=light]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=light]>.tippy-svg-arrow{fill:#fff}
.slide-leave-active{
  transition: none;
}
.slide-enter-active {
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  opacity:1;
}
.slide-enter-from {
  transform: translateX(7%);
  opacity:0;
}
.slide-leave-to {
}
.noty_layout_mixin, #noty_layout__centerRight, #noty_layout__centerLeft, #noty_layout__center, #noty_layout__bottomRight, #noty_layout__bottomCenter, #noty_layout__bottomLeft, #noty_layout__bottom, #noty_layout__topRight, #noty_layout__topCenter, #noty_layout__topLeft, #noty_layout__top {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  transform: translateZ(0) scale(1, 1);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%;
}

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px;
}

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
  transform: translate(calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px;
}

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px;
}

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
  transform: translate(calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px;
}

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
  transform: translate(calc(-50% - 0.5px), calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
  transform: translate(0, calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
  transform: translate(0, calc(-50% - 0.5px)) translateZ(0) scale(1, 1);
}

.noty_progressbar {
  display: none;
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10);
}

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden;
}

.noty_effects_open {
  opacity: 0;
  transform: translate(50%);
  animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards;
}

.noty_effects_close {
  animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards;
}

.noty_fix_effects_height {
  animation: noty_anim_height 75ms ease-out;
}

.noty_close_with_click {
  cursor: pointer;
}

.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: 0.3;
  left: 0;
  top: 0;
}

.noty_modal.noty_modal_open {
  opacity: 0;
  animation: noty_modal_in 0.3s ease-out;
}

.noty_modal.noty_modal_close {
  animation: noty_modal_out 0.3s ease-out;
  animation-fill-mode: forwards;
}

@keyframes noty_modal_in {
  100% {
    opacity: 0.3;
  }
}
@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}
@keyframes noty_anim_in {
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
@keyframes noty_anim_out {
  100% {
    transform: translate(50%);
    opacity: 0;
  }
}
@keyframes noty_anim_height {
  100% {
    height: 0;
  }
}.noty_theme__nest.noty_bar {
  margin: 0 0 15px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0;
}
.noty_theme__nest.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.noty_theme__nest.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_layout .noty_theme__nest.noty_bar {
  z-index: 5;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
  position: absolute;
  top: 0;
  margin-top: 4px;
  margin-right: -4px;
  margin-left: 4px;
  z-index: 4;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
  position: absolute;
  top: 0;
  margin-top: 8px;
  margin-right: -8px;
  margin-left: 8px;
  z-index: 3;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
  position: absolute;
  top: 0;
  margin-top: 12px;
  margin-right: -12px;
  margin-left: 12px;
  z-index: 2;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
  position: absolute;
  top: 0;
  margin-top: 16px;
  margin-right: -16px;
  margin-left: 16px;
  z-index: 1;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
  position: absolute;
  top: 0;
  margin-top: 20px;
  margin-right: -20px;
  margin-left: 20px;
  z-index: -1;
  width: 100%;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
  margin-top: 4px;
  margin-left: -4px;
  margin-right: 4px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
  margin-top: 8px;
  margin-left: -8px;
  margin-right: 8px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
  margin-top: 12px;
  margin-left: -12px;
  margin-right: 12px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
  margin-top: 16px;
  margin-left: -16px;
  margin-right: 16px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
  margin-top: 20px;
  margin-left: -20px;
  margin-right: 20px;
}

.noty_theme__nest.noty_type__alert,
.noty_theme__nest.noty_type__notification {
  background-color: #073B4C;
  color: #fff;
}
.noty_theme__nest.noty_type__alert .noty_progressbar,
.noty_theme__nest.noty_type__notification .noty_progressbar {
  background-color: #fff;
}

.noty_theme__nest.noty_type__warning {
  background-color: #FFD166;
  color: #fff;
}

.noty_theme__nest.noty_type__error {
  background-color: #EF476F;
  color: #fff;
}
.noty_theme__nest.noty_type__error .noty_progressbar {
  opacity: 0.4;
}

.noty_theme__nest.noty_type__info,
.noty_theme__nest.noty_type__information {
  background-color: #118AB2;
  color: #fff;
}
.noty_theme__nest.noty_type__info .noty_progressbar,
.noty_theme__nest.noty_type__information .noty_progressbar {
  opacity: 0.6;
}

.noty_theme__nest.noty_type__success {
  background-color: #06D6A0;
  color: #fff;
}
/*10.333*/
.wrapper-content.profile[data-v-eeb4f936]{
  width: calc(100% - 30rem);
  margin-left:15rem;
}
.code_home .input[data-v-eeb4f936]:hover{
  border: 0.194rem solid var(--firm);
  color:var(--firm);
}
.code_home .input[data-v-eeb4f936]{
  width: 100%;
  min-height: 4.0646rem;
  cursor:pointer;
  transition: border 0.175s ease,
  color 0.175s ease;
  white-space: nowrap;
}
.code_home[data-v-eeb4f936]{
  width: 29.0324rem;
  height: 4.0646rem;
  position: relative;
  margin-left: 1.7419rem;
}
.code_home .window-select span[data-v-eeb4f936]:hover{
  color:var(--firm700);
  background: var(--firm200);
}
.code_home .window-select span[data-v-eeb4f936]{
  padding:.78125rem 1rem;
  cursor:pointer;
  transition: background 0.175s ease,
  color 0.175s ease;
  border-radius: .7742rem;
  font-size: 1.3549rem;
  font-weight: 700;
}
.code_home .window-select.show[data-v-eeb4f936]{
  opacity:1;
  pointer-events: initial;
}
.code_home .window-select[data-v-eeb4f936]{
  width:calc(100% - 0.625rem * 2);
  padding:.875rem .625rem;
  position: absolute;
  left:0;
  top:calc(100% + 1.1875rem);
  background: #FAFDFF;
  border: 0.194rem solid var(--firm100);
  border-radius: 1.875rem;
  color:var(--black500);
  display:flex;
  flex-direction: column;
  gap:.7742rem;
  opacity:0;
  transition: opacity 0.175s ease;
  z-index:2;
  pointer-events: none;
}
.code_home .input[data-v-eeb4f936]:hover{
  border: 0.194rem solid var(--firm);
  color:var(--firm);
}
.code_home .input[data-v-eeb4f936]{
  width: 100%;
  min-height: 4.0646rem;
  cursor:pointer;
  transition: border 0.175s ease,
  color 0.175s ease;
}
.code_home[data-v-eeb4f936]{
  width: 29.0324rem;
  height: 4.0646rem;
  position: relative;
  margin-left: 1.7419rem;
}
footer .personal[data-v-eeb4f936]:hover{
  opacity:1;
  transition: opacity 0.3s ease;
}
footer .personal[data-v-eeb4f936]{
  position: absolute;
  left:5.806rem;
  bottom:1.7rem;
  opacity: 0.6;
  color:#fff;
}
header[data-v-eeb4f936] {
  width: 100%;
  height: 6.6774rem;
  display: flex;
  align-items: center;
}
.report[data-v-eeb4f936]:hover {
  background: var(--black500);
  color:#fff;
  transform: scale(1.12);
}
.report[data-v-eeb4f936] {
  padding: .7742rem 3.0968rem;
  border: var(--border-size-2) var(--black500);
  margin-left: 22.5485rem;
  font-size: 1.3548rem;
  font-weight: 700;
  color: var(--black500);
  cursor:pointer;
}
.wrapper[data-v-eeb4f936]{
  padding: 0 22.5485rem;
  margin-top: calc(3.0968rem - 1.7419rem);
}
.filter-header[data-v-eeb4f936]{
  height: 4.8389rem;
  padding: 0 1.9355rem;
  display:flex;
  align-items: center;
  background-color:#fbfbfb;
  font-size: 1.7419rem;
  font-weight: 600;
  border-radius: 1.4516rem 1.4516rem 0 0;
  margin-left:5rem;
}
.right-filter-body[data-v-eeb4f936]{
  margin-right: 6.9678rem;
}
.left-filter-body[data-v-eeb4f936]{
  margin-left:6.0002rem;
}
.right-filter-body[data-v-eeb4f936],
.left-filter-body[data-v-eeb4f936]{
  display:flex;
  align-items: center;
}
.left-filter-body h2[data-v-eeb4f936]{
  font-size:1.742rem;
  font-weight: 400;
}
.filter-body[data-v-eeb4f936]{
  background-color:#fbfbfb;
  width: 100%;
  height: 10.4516rem;
  display: flex;
  justify-content: space-between;
  border-radius: 2.2516rem;
}
.code_home .input[data-v-eeb4f936]{
  height: 4.0646rem;
  display: flex;
  align-items: center;
  font-size: 1.3548rem;
  font-weight: 700;
  border-radius: 1.4516rem;
  border: var(--border-size-2) var(--black500);
  padding: 0 3.0968rem 0 3.0968rem ;
}
.pencil:hover svg[data-v-eeb4f936]{
  width:2.4323rem;
  height:2.4323rem;
  stroke: var(--light100);
}
.pencil svg[data-v-eeb4f936]{
  width:2.0323rem;
  height:2.0323rem;
  stroke:#1A6BB2;
  transition: background 0.175s ease,
  width 0.175s ease,
  height 0.175s ease;
}
.pencil[data-v-eeb4f936]:hover {
  background-color: #1A6BB2;
  width:4.8rem;
  height:4.8rem;
}
.search:hover svg[data-v-eeb4f936] {
  stroke: var(--light100);
  width:1.9355rem;
  height:1.9355rem;
}
.pencil[data-v-eeb4f936] {
  width: 4.0645rem;
  height: 4.0645rem;
  border-radius: 2.9032rem;
  border: var(--border-size-2) var(--firm);
  margin-left: .7742rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.175s ease,
  width 0.175s ease,
  height 0.175s ease;
  cursor:pointer;
}
.search svg[data-v-eeb4f936]{
  width:1.9355rem;
  height:1.9355rem;
}
.search[data-v-eeb4f936]{
  width: 4.0645rem;
  height: 4.0645rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.9032rem;
  border: var(--border-size-2) var(--firm);
  margin-left: .7742rem;
  stroke:#1A6BB2;
  transition: background 0.175s ease,
  width 0.175s ease,
  height 0.175s ease;
  cursor:pointer;
}
.search[data-v-eeb4f936]:hover {
  background-color: #1A6BB2;
  width:4.8rem;
  height:4.8rem;
}
.filter-body .date[data-v-eeb4f936]{
  margin-left:6.0002rem;
  font-size:1.7419rem;
  font-weight: 400;
}
.date[data-v-eeb4f936] {
  font-size: 1.7419rem;
  font-weight:400;
}
.between_date[data-v-eeb4f936]{
  font-size: 1.7419rem;
  font-weight: 700;
  margin-left: .9677rem;
}
.between_date.left_margin[data-v-eeb4f936]{
  margin-left:1.5484rem;
}
.date_button[data-v-eeb4f936] {
  width:17.3226rem;
  height: 4.0645rem;
  border: var(--border-size-2) var(--black500);
  border-radius: 1.4516rem;
  font-size:1.7419rem;
  font-weight: 700;
  margin-left: .7742rem;
}
.rent[data-v-eeb4f936] {
  font-size: 1.7419rem;
  font-weight: 700;
}
.sorting_word[data-v-eeb4f936] {
  font-size: 1.7419rem;
  font-weight: 700;
}
.filter_sorting .rent[data-v-eeb4f936],
.filter_sorting .sorting[data-v-eeb4f936]{
  display: flex;
  align-items: center;
}
.filter_sorting[data-v-eeb4f936] {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3.0968rem;
}
.filter[data-v-eeb4f936]{
  display: flex;
  justify-content: center;
  gap: .7742rem;
  margin-left: 1.5484rem;
}
.filter li.opacity[data-v-eeb4f936]{
  opacity:0.5
}
.filter li.active[data-v-eeb4f936]{
  transform:scale(0.92);
}
.filter li[data-v-eeb4f936]:hover{
  opacity:1;
}
.filter li[data-v-eeb4f936]{
  border: var(--border-size-2);
  border-radius: 2.9032rem;
  padding: 1.0645rem 1.5484rem;
  font-size:1.3548rem;
  font-weight: 700;
  cursor:pointer;
  transition: background 0.175s ease,
  opacity 0.175s ease,
  transform 0.175s ease;
}
.filter li.green-cust[data-v-eeb4f936]:hover {
  background-color: var(--green);
}
.filter li.green-cust[data-v-eeb4f936]{
  border-color: var(--green);
}
.filter li.orange-cust[data-v-eeb4f936]:hover {
  background-color: var(--orange2);
}
.filter li.orange-cust[data-v-eeb4f936]{
  border-color: var(--orange2);
}
.filter li.yellow-cust[data-v-eeb4f936]:hover{
  background-color: var(--yellow2);
}
.filter li.yellow-cust[data-v-eeb4f936]{
  border-color: var(--yellow2);
}
.filter li.blue-cust[data-v-eeb4f936]:hover {
  background-color: var(--firm200);
}
.filter li.blue-cust[data-v-eeb4f936]{
  border-color: var(--firm200);
}
.filter li.birch-cust[data-v-eeb4f936]:hover{
  background-color: var(--birch);
}
.filter li.birch-cust[data-v-eeb4f936]{
  border-color: var(--birch);
}
@media only screen and (max-width: 700px) {
.filter li.green-cust[data-v-eeb4f936]:hover,
  .filter li.blue-cust[data-v-eeb4f936]:hover,
  .filter li.orange-cust[data-v-eeb4f936]:hover,
  .filter li.yellow-cust[data-v-eeb4f936]:hover,
  .filter li.birch-cust[data-v-eeb4f936]:hover{
    background-color: initial;
}
.filter li.green-cust[data-v-eeb4f936]:active{
    background-color: var(--green);
}
.filter li.orange-cust[data-v-eeb4f936]:active{
    background-color: var(--orange2);
}
.filter li.yellow-cust[data-v-eeb4f936]:active{
    background-color: var(--yellow2);
}
.filter li.blue-cust[data-v-eeb4f936]:active{
    background-color: var(--firm200);
}
.filter li.birch-cust[data-v-eeb4f936]:active{
    background-color: var(--birch);
}
}
.pay_list[data-v-eeb4f936]{
  width: 100%;
  display: flex;
  flex-wrap:wrap;
  gap:1.5484rem;
  margin-top:6.5807rem;
}
.total_block[data-v-eeb4f936] {
  width: calc(32.7098rem - .9677rem);
  position: relative;
  border: .4839rem solid var(--firm);
  border-radius: .2903rem 2.9032rem 2.9032rem 2.9032rem;
  margin-top:-2rem;
}
.left-top-stick[data-v-eeb4f936]{
  position: absolute;
  left:-.4439rem;
  top:-.4439rem;
  font-size:2.3226rem;
  padding: 1.3548rem 3.2903rem 1.3548rem 2.9032rem;
  background-color: var(--firm);
  color:var(--light500);
  border-radius: 0 2.9032rem 2.9032rem 2.9032rem;
  font-weight: 600;
}
.rub_total[data-v-eeb4f936]{
  width:100%;
  font-size: 3.871rem;
  font-weight: 700;
  margin-left: 3.0968rem;
  margin-top:6.271rem;
  white-space: nowrap;
  margin-right: 3.09rem;
}
.date_between_total[data-v-eeb4f936] {
  font-size: 1.7419rem;
  font-weight: 400;
  margin-left: 3.0968rem;
  margin-bottom: 1.9355rem;
  margin-right: 1.9355rem;
  white-space: nowrap;
}
.price_block .title .title-bg[data-v-eeb4f936]{
  width:calc(100% + .9677rem);
  height:100%;
  position: absolute;
  left:-0.4839rem;
  top:0;
  border-radius: 2.9032rem;
  transition: background 0.3s ease;
}
.price_block .title span[data-v-eeb4f936]{
  z-index: 1;
  font-size: 1.742rem;
  font-weight: 600;
}
.price_block .date_between_total[data-v-eeb4f936]{
  margin-top:.7742rem;
}
.price_block .rub_total[data-v-eeb4f936]{
  margin-top:1.1613rem;
  font-size: 3.0968rem;
  margin-right:3.0968rem;
}
.price_block .title[data-v-eeb4f936]{
  position: relative;
  border-radius: 2.9032rem;
  display:flex;
  justify-content: center;
  align-items: center;
  font-size:1.7419rem;
  padding:1.0645rem 3.0968rem;
  margin-top:-.4839rem;
}
.total_block.opacity[data-v-eeb4f936],
.price_block.opacity[data-v-eeb4f936]{
  opacity:0.5;
}
.price_block[data-v-eeb4f936]{
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 2.9032rem;
  border: 0.4839rem solid;
  opacity:1;
  transition: opacity 0.175s ease, transform 0.3s ease, border 0.3s ease;
}
.price_block.green:hover .title .title-bg[data-v-eeb4f936]{
  background: #c4e4ce;
}
.info-circle[data-v-eeb4f936]{
  fill: var(--green);
  transition: fill 0.3s ease;
}
.price_block.green:hover .info-circle[data-v-eeb4f936]{
  fill: #c4e4ce;
}
.price_block.green[data-v-eeb4f936]:hover{
  transform: translatey(-1.1rem);
  border-color:rgba(178, 219, 191, 0.76);
}
.price_block.blue[data-v-eeb4f936]{
  border-color:var(--firm200);
}
.price_block.blue .title .title-bg[data-v-eeb4f936]{
  background: var(--firm200);
}
.price_block.yellow[data-v-eeb4f936]{
  border-color:var(--yellow2);
}
.price_block.yellow .title .title-bg[data-v-eeb4f936]{
  background: var(--yellow2);
}
.price_block.orange[data-v-eeb4f936]{
  border-color:var(--orange2);
}
.price_block.orange .title .title-bg[data-v-eeb4f936]{
  background: var(--orange2);
}
.price_block.green[data-v-eeb4f936]{
  border-color:var(--green);
}
.price_block.green .title .title-bg[data-v-eeb4f936]{
  background: var(--green);
}
.price_block.birch[data-v-eeb4f936]{
  border-color:var(--birch);
}
.price_block.birch .title .title-bg[data-v-eeb4f936]{
  background: var(--birch);
}
.docs-block[data-v-eeb4f936] {
  position: relative;
  background-color:rgba(var(--light100rgb),0.5);
  width: 100%;
  border-radius: 1.4516rem;
  margin-top: 3.0968rem;
  margin-bottom: 6rem;
}
div.theme--light.v-application[data-v-eeb4f936]{
  background-color: #F5F8F9;
  font-family: Montserrat;
}
.docs-title[data-v-eeb4f936] {
  width:24.2911rem;
  height:3.0969rem;
  position: absolute;
  top:0;
  left:3.0968rem;
  font-size: 1.7419rem;
  font-weight: 700;
  background-color: #F5F8F9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 1.4516rem 1.4516rem;
}
.docs-contract[data-v-eeb4f936] {
  width:100%;
  padding:2.4194rem 0 1.9355rem 0;
  background-color: #F5F8F9;
  border-radius:1.4516rem ;
  border-bottom: .4839rem solid var(--firm300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.7419rem;
  font-weight: 700;
}
.docs-list[data-v-eeb4f936]:last-child {
  margin-bottom:3.484rem;
}
.docs-list[data-v-eeb4f936]{
  width:calc(100% - (3.0968rem * 2));
  margin-left: 3.0968rem;
  display:flex;
  flex-direction: column;
  gap: 1.5484rem;
  margin-top:6.0002rem;
}
.docs-name[data-v-eeb4f936]{
  margin-left: 4.6452rem;
}
.docs-contract-block[data-v-eeb4f936]{
  margin-left: 4.6452rem;
}
.docs-buttons svg[data-v-eeb4f936]:hover{
  stroke: #1A6BB2;
}
.docs-buttons[data-v-eeb4f936] {
  display: flex;
  gap: 1.5484rem;
  margin-right: 6rem;
  stroke: #363636;
  cursor: pointer;
  transition: stroke 0.175s ease,
  transform 0.175s ease;
}
.info-non-documents[data-v-eeb4f936]{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size:3rem;
  color:var(--firm);
}
.wrapper.non-docs[data-v-eeb4f936]{
  width: 100vw;
  height: 100vh;
  position: fixed;
  left:0;
  top:0;
  margin:0;
  background-color: #F5F8F9;
}
.wrapper-block[data-v-eeb4f936]{
  width:inherit;
  height: inherit;
}



/*10.333*/
@media only screen and (max-width: 700px) {
.wrapper[data-v-eeb4f936]{
    width:100vw;
    padding: 0 1.90rem;
}
.wrapper-content.profile[data-v-eeb4f936]{
    width: calc(100% - 8rem);
    margin-left:4rem;
}
.report[data-v-eeb4f936] {
    margin-left:1.54rem;
}
.date_between_total[data-v-eeb4f936]{
    margin-left: 2.0968rem;
    margin-right: 0.9355rem;
    margin-bottom: 0.9355rem;
}
.filter_sorting[data-v-eeb4f936]{
    margin-top:1.0968rem;
}
.price_block .title span[data-v-eeb4f936]{
    font-size:1.442rem;
}
.price_block div.title[data-v-eeb4f936]{
    padding:1.0645rem 1.9068rem;
}
.rub_total[data-v-eeb4f936]{
    margin-left:1.4968rem;
    margin-top:5.871rem;
    font-size:2.971rem;
    margin-right: 1.4968rem;
}
.total_block .date_between_total[data-v-eeb4f936]{
    margin-bottom:0;
}
.total_block[data-v-eeb4f936]{
    width:calc(24.7098rem - .9677rem);
    margin-top:-1rem;
    transition: opacity 0.3s ease;
}
.date_between_total[data-v-eeb4f936]{
    font-size:1.4419rem;
}
.pay_list[data-v-eeb4f936] {
    margin-top:2.58rem;
}

  /* .price_block .rub_total{
      margin-top:0.5613rem;
      font-size: 2.6968rem;
  }
  .price_block .date_between_total{
      margin-top:0;
      margin-bottom: 0.7355rem;
  } */
.filter-body[data-v-eeb4f936]{
    width:100%;
    height: 14.4516rem;
    flex-direction: column;
    justify-content: initial;
}
.code_home[data-v-eeb4f936]{
    width:calc(100% - 26rem);
}
.right-filter-body[data-v-eeb4f936],
  .left-filter-body[data-v-eeb4f936]{
    margin-right:2rem;
    margin-top:2rem;
    margin-left:2rem;
    justify-content: space-between;
}
.filter-body .date[data-v-eeb4f936]{
    margin-left:0;
}
.between_date[data-v-eeb4f936]{
    display:none;
}
.code_home .input[data-v-eeb4f936]{
    justify-content: center;
    width: calc(100% - 6.4rem);
    height: 4rem;
    align-items: center;
    padding-left: 3.0968rem;
    /* padding-right: 4rem; */
    align-items: center;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* flex-wrap: wrap; */
}
.filter_sorting[data-v-eeb4f936]{
    flex-direction: column;
}
.filter_sorting .rent[data-v-eeb4f936]{
    display:none;
}
.sorting ul.filter[data-v-eeb4f936]{
    margin-top:1rem;
    padding-left:0;
    margin-left:0;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.filter_sorting .sorting[data-v-eeb4f936]{
    align-items:initial;
    flex-direction: column;
}
.sorting_word[data-v-eeb4f936]{
    margin-top:0;
    margin-left:0.7rem;
}
}


.fade-cal-mob-enter-active[data-v-b0c76562]{

  transition:transform 0.3s ease, opacity 0.3s ease;
}
.fade-cal-mob-leave-active[data-v-b0c76562] {
  transition:transform 0.23s ease, opacity 0.15s ease;
}
.fade-cal-mob-enter-from[data-v-b0c76562],
.fade-cal-mob-leave-to[data-v-b0c76562] {
  opacity: 0;
  transform: translateY(5rem);
}

.fade-big-mobile-enter-active[data-v-b5bc9b5b],
.fade-big-mobile-leave-active[data-v-b5bc9b5b]{
  transition: height 0.3s ease,opacity 0.3s ease,padding 0.3s ease;
}
.fade-big-mobile-enter-from[data-v-b5bc9b5b],
.fade-big-mobile-leave-to[data-v-b5bc9b5b] {
  height: 0;
  opacity: 0;
  padding:0 1.36rem 0 1.36rem;
}

.wrapper-content[data-v-11a00d44]{
    width: calc(100% - 18.968rem * 2);
    padding: 0 18.968rem;
}
@media only screen and (max-width: 700px) {
.wrapper-content[data-v-11a00d44]{
      width: calc(100% - 10rem);
      padding: 5rem 5rem 5rem 5rem;
}
}
.document-container[data-v-11a00d44] {
    background-color: white;
    padding: 4.839rem;
    box-shadow: 0 0 1.935rem rgba(0,0,0,0.05);
    border-radius: 0.774rem;
}
h1[data-v-11a00d44] {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3.871rem;
    font-weight: 600;
    font-size: 2.71rem;
}
h2[data-v-11a00d44] {
    color: #2c3e50;
    margin-top: 4.839rem;
    margin-bottom: 1.935rem;
    font-weight: 600;
    font-size: 2.129rem;
    position: relative;
    padding-left: 1.452rem;
}
h2[data-v-11a00d44]:before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 1.935rem / 2);
    height: 1.935rem;
    width: 0.484rem;
    background-color: #3498db;
    border-radius: 0.29rem;
}
h3[data-v-11a00d44] {
    color: #34495e;
    margin-top: 2.903rem;
    margin-bottom: 1.452rem;
    font-weight: 500;
    font-size: 1.742rem;
}
.company-name[data-v-11a00d44] {
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
    font-size: 18px;
}
.version[data-v-11a00d44] {
    text-align: right;
    font-style: italic;
    color: #95a5a6;
    margin-top: 60px;
    font-size: 14px;
}
ul[data-v-11a00d44] {
    padding-left: 30px;
    margin: 15px 0;
}
li[data-v-11a00d44] {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}
li[data-v-11a00d44]:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}
p[data-v-11a00d44] {
    margin: 1.452rem 0;
}
a[data-v-11a00d44] {
    color: #3498db;
    text-decoration: none;
}
a[data-v-11a00d44]:hover {
    text-decoration: underline;
}
