@font-face {
    font-family:Roboto;
    src:local("Roboto Regular"),
        local("Roboto-Regular"),
        url(fonts/Roboto/Regular/Roboto-Regular.woff2) format("woff2"),
        url(fonts/Roboto/Regular/Roboto-Regular.woff) format("woff");
    font-weight:400;
    font-style:normal;
    font-display:swap
}
@font-face {
    font-family:Roboto;
    src:local("Roboto Medium"),
        local("Roboto-Medium"),
        url(fonts/Roboto/Medium/Roboto-Medium.woff2) format("woff2"),
        url(fonts/Roboto/Medium/Roboto-Medium.woff) format("woff");
    font-weight:500;
    font-style:normal;
    font-display:swap
}
@font-face {
    font-family:Ubuntu;
    src:local("Roboto Bold"),
        local("Roboto-Bold"),
        url(fonts/Roboto/Bold/Roboto-Bold.woff2) format("woff2"),
        url(fonts/Roboto/Bold/Roboto-Bold.woff) format("woff");
    font-weight:700;
    font-style:normal;
    font-display:swap;
}
:root {
    --background-color: #ffffff;
    --text-color: #1f2840;
    --icon-color: #0085ff;
    --icon-active: #e23636;
    --icon-passive: #b0bec2;
    --cell-text-passive: #d8e2e5;
    --selected-color: #0085ff;
    --main-button-color: #0085ff;
    --input-border-color: #b0bec2;
    --geo-border-color: #d8e2e5;
    --alert-color: #e23636;
    --revert-color: #19b87e;
    --header-height: 0px;
    --selected-row-back-color: #d6ebff;
}
*, ::after, ::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    margin-block: 0;
    margin-inline: 0;
    font-family: Roboto,"Trebuchet MS",sans-serif;
    /*font-size: 14px;*/
    /*font-weight: 400;*/
}
::-webkit-scrollbar {
    width:8px;
    height:8px;
    background-color:#f3f6f6
}
::-webkit-scrollbar-thumb {
    border-radius:9px;
    background-color:#d0dee2
}
* {
    scrollbar-color: #d0dee2 #f3f6f6;
    scrollbar-width: thin;
}
::placeholder,
.placeholder {
    opacity: 0.4;
}
a {
    color: var(--icon-color);
}
body {
    font-size: 14px;
    margin: 0;
}
button:disabled,
button:disabled:hover {
    cursor: not-allowed;
    color: #93a2b4;
    background-color: #eceef4;
}
input {
    font-size: 14px;
}
input:focus {
    outline: 0;
    border-color: var(--selected-color);
}
input:invalid {
    border-color: var(--alert-color) !important;
}
p {
    margin: 0;
}
.btn {
    padding: 12px 35px;
    border-radius: 2px;
    line-height: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
}
.btn-main {
    color: #fff;
    background-color: #0085ff;
    /*border: 1px solid transparent;*/
}
.btn-main:hover {
    background-color: #37abff;
}
.btn-main:focus {
    border: 1px solid black;
}
.btn-alarm {
    color: #fff;
    background-color: #ff0000;
}
.btn-alarm:hover {
    background-color: #ff6060;
}
.btn-confirm {
    color: #fff;
    background-color: #39c300;
}
.btn-confirm:hover {
    background-color: #80cf5f;
}
.btn-icon-link {
    background: url(images/link.png) no-repeat;
    background-size: 30px auto;
    height: 30px;
    width: 30px;
    padding: 0;
    border: var(--input-border-color) solid 1px;
}
.btn-icon-edit {
    background: url(images/edit.png) no-repeat;
    background-size: 30px auto;
    height: 30px;
    width: 30px;
    padding: 0;
    margin: auto;
}
.btn-icon-link:hover {
    border-color: var(--selected-color);
}
.checkbox {
    display:flex;
    align-items:flex-end;
    max-width:-webkit-fit-content;
    max-width:-moz-fit-content;
    max-width:fit-content
}
.checkbox__input {
    position:absolute;
    z-index:-1;
    width:0;
    height:0;
    opacity:0
}
.checkbox__label {
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
    cursor:pointer;
    margin-bottom:0;
    display:flex;
    align-items: center;
    position: relative;
}
.checkbox__icon {
    position:relative;
    margin-right:10px;
    width:16px;
    height:16px;
    border-radius:2px
}
.checkbox__icon svg {
    position:absolute;
    top:-2px;
    left:-2px
}
.checkbox__icon svg path {
    fill: var(--input-border-color);
    stroke:#0085ff;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:71px;
    stroke-dashoffset:71px;
    transition:all .5s ease
}
.checkbox__icon svg polyline {
    fill:none;
    stroke:#fff;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:18px;
    stroke-dashoffset:18px;
    transition:all .3s ease
}
.checkbox__input:checked+.checkbox__icon svg path {
    fill:var(--selected-color)
}
.checkbox__input:checked+.checkbox__icon svg polyline {
    stroke-dashoffset:0
}
.checkbox__text {
    margin-right:10px;
    pointer-events:none;
    transition:all .5s ease;
    line-height:16px;
    color:#323232
}
.checkbox__count {
    color: #c7c7c7;
    font-size: 12px;
}
.clearfix::before {
    content: '';
    display: table;
}
.clearfix::after {
    display: block;
    clear: both;
    content: '';
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header {
    padding-top:18px;
    padding-bottom:12px;
    position:-webkit-sticky;
    position:sticky;
    top:0;
    background-color: var(--background-color);
    box-shadow:0 0 30px rgba(30,37,47,.08);
    height:75px;
    z-index:1000;
}
.header:has(.powered_by) {
    padding-top: 44px;
    padding-bottom: 2px;
    height: 101px;
}
.header .powered_by {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #e9e9e9;
    color: #535353;
    font-size: 12px;
    text-align: center;
    padding: 6px 0;
}
.header__logo img {
    display: block;
    max-height: 75px;
    height: 75px;
    margin-bottom: -18px;
    position: relative;
    top: -18px;
}
.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 40px;
}
.fixed {
    position: fixed !important;
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-group.text-center {
    justify-content: space-around;
    justify-content: space-evenly;
}
.form-group-auth {
    margin-bottom: 15px;
}
.form-group-auth:last-child {
    margin-bottom: 0;
}
.form-group-auth .control-label {
    margin-bottom: 5px;
    display: inline-block;
}
.form-group-auth .captcha {
    margin-bottom: 5px;
}
.header__wrap {
    display:flex;
    justify-content:space-between;
}
.header__logo {
    color:#000;
    font-size:30px;
    text-transform:uppercase;
    font-weight:700;
    text-decoration:none;
    transition:all .3s ease;
}
.unit-logotype__highlight {
    font-size: inherit;
    font-weight: inherit;
}
.header__logo:hover {
    color:#e23636;
}
.header__user {
    display:flex;
    justify-content:flex-end;
}
.header__user-name {
    color:#3d434a;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
    transition:all .3s ease;
}
.header__user-name.active {
    color: #0085ff;
}
.header__user-name:hover {
    color:red;
}
.header__user-enter,
.header__user-exit {
    margin-left:15px;
    color:#93a2b4;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
    transition:all .3s ease;
}
.header__user-enter:hover,
.header__user-exit:hover {
    color:red;
}
.header__celect-client {
    color:#93a2b4;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
    transition:all .3s ease;
}
.header__celect-client:hover {
    color:red;
}
.svg-icons {
    display: none;
}
.toggle-button {
    width: 44px;
    height: 22px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--input-border-color);
    outline: transparent;
    border-radius: 16px;
    transition: .3s;
    position: relative;
    cursor: pointer;
}
.toggle-button:checked {
    background: #0085ff;
}
.toggle-button::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 2px;
    left: 3px;
    background: #fff;
    transition: .3s;
}
.toggle-button:checked::before {
    left: 23px;
}
.title {
    margin-bottom:21px;
    font-size:26px;
    line-height:30px;
    font-weight:700;
    color:#1f2840
}
.title span {
    font-size: inherit;
}
.title__btn {
    padding: 9px 33px;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 2px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background-color: #d6ebff;
    transition: all .3s ease;
}
.title__btn:hover {
    background-color: #ebf5ff;
}
.title__btn:not(:first-child) {
    margin-left: 7px;
}
.title__btn-settings {
    padding: 0;
    width: 30px;
    height: 30px;
}
.title__btn-icon {
    margin-left: 5px;
    fill: #000;
    transition: all .3s ease;
}
.columns {
    display: none;
}
.columns.fancybox-content {
    padding:34px 5px 27px 5px;
    display:none;
    width:100%;
    max-width:220px;
    border-radius:2px;
    background-color:#fff
}
.columns__wrap {
    display:flex;
    flex-direction:column
}
.columns__list {
    padding-right:4px;
    flex-grow:1;
    max-height:345px;
    overflow-y:auto
}
.columns__list-item {
    padding:9px 10px 9px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:-webkit-grab;
    cursor:grab
}
.columns__list-item:not(:first-child) {
    padding-top: 14px
}
.columns__list-item .checkbox__input {
    z-index: 1;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.columns__list-item_drag {
    box-shadow:0 4px 16px rgba(18,22,31,.08)
}
.columns__list-item-wrap {
    display:flex;
    justify-content:space-between;
    align-items:center
}
.columns__list-item-wrap .checkbox {
    pointer-events: none;
}
.columns__list-item-wrap .checkbox .checkbox__icon {
    pointer-events: all;
    cursor: pointer;
}
.columns__list-item-text {
    margin-left:8px;
    font-weight:500;
    line-height:16px;
    color:#1f2840
}
.columns__list-item-more {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width: 10px;
}
.columns__list-item-more span {
    display:block;
    width:2px;
    height:2px;
    border-radius:50%;
    background-color:#d8e2e5
}
.columns__list-item-more span:not(:first-child) {
    margin-top:2px
}
.columns__btn {
    margin-top:30px;
    padding:0 15px
}
.columns__submit {
    flex-shrink:0;
    padding:14px 47px;
    border-radius:2px;
    line-height:15px;
    font-weight:500;
    border:none;
    cursor:pointer;
    color:#fff;
    background-color:#0085ff;
    transition:all .3s ease
}
.columns__submit:hover {
    background-color:#37abff
}
.pika-single {
    z-index: 99999 !important;
}
.select-wrapper {
    position:relative;
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
    width:100%;
}
.select {
    position:relative;
    display:flex;
    flex-direction:column;
    border-radius:2px;
    border:1px solid var(--input-border-color);
    background-color:#fff;
    transition:all .3s ease
}
.select:hover {
    border-color:#0085ff
}
.select__trigger {
    padding:0 15px;
    line-height:42px;
    color: #1f2840;
    background-color:#fff;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    transition:all .3s ease
}
.select__trigger > input {
    width: calc(100% - 20px);
    min-height: 42px;
    border: none;
    font-size: 14px;
}
.select__trigger span.placeholder {
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.custom-options {
    position:absolute;
    display:none;
    top:calc(100% + 2px);
    left:0;
    right:0;
    border:1px solid #d8e2e5;
    border-top:0;
    transition:all .3s ease;
    z-index:2;
    background:#fff;
    max-height: 210px;
    overflow-y: auto;
}
.select.open .custom-options {
    display: block;
}
.select .custom-option {
    padding:0 15px;
    line-height:42px;
    color:#aeb0b0;
    background-color:#fff;
    position:relative;
    display:block;
    cursor:pointer;
    white-space:nowrap;
    transition:all .3s ease;
    overflow: hidden;
}
.select .custom-option:hover {
    cursor:pointer;
    background-color:#eceef4
}
.select .custom-option.selected {
    color:#fff;
    background-color:#0085ff
}
.tiny-select-wrapper {
    width:auto;
    margin-left:7px
}
.tiny-select-wrapper:hover .select__trigger span {
    color:#0085ff
}
.tiny-select-wrapper:hover .arrow {
    fill:#0085ff
}
.tiny-select-wrapper .select {
    border:none
}
.tiny-select-wrapper .select__trigger {
    padding:0
}
.tiny-select-wrapper .select__trigger span {
    font-weight:700;
    line-height:16px;
    color:#1f2840;
    transition:all .3s ease
}
.tiny-select-wrapper .custom-options {
    top:unset;
    left:unset;
    bottom:calc(100% + 5px)
}
.tiny-select-wrapper .custom-option {
    color:#1f2840;
    line-height:25px
}
.tiny-select-wrapper .arrow {
    margin-left:5px
}
svg.arrow {
    position: relative;
    height: 13px;
    width: 9px;
    fill: #1f2840;
    transition: all .3s ease;
    transform: rotateX(180deg);
}
.open svg.arrow {
    transform: rotateX(0);
}
ymaps[class$=balloon__close] + ymaps[class$=balloon__content] {
    margin-right: 0;
    padding-right: 22px;
}
ymaps[class$=balloon__close] {
    position: absolute;
    right: 0px;
    top: 0px;
}
.no-photo {
    background-color: #fafafa;
    background-image: url(images/no-photo.png);
    background-position: center;
    background-repeat: no-repeat;
}
.busket {
    height:78px;
    padding:0 40px;
    box-shadow:0 0 20px rgba(14,16,37,.1);
    display:flex;
    justify-content:space-between
}
.busket__info {
    display:flex
}
.busket__info > div:first-child {
    padding-left: 0;
}
.busket__link {
    display:flex;
    align-items:center;
    padding:25px 35px 25px 0;
    border-right:2px solid #d8e2e5;
    font-size:20px;
    font-weight:500;
    line-height:14px;
    color:#1f2840;
    text-decoration:none;
    transition:all .3s ease
}
.busket__link:hover {
    color:#0085ff
}
.busket__link:hover .busket__icon {
    fill:#0085ff
}
.busket__icon {
    margin-right:20px;
    fill:#1f2840;
    transition:all .3s ease
}
.busket__total {
    padding:28px 0 28px 20px;
    font-size:18px;
    font-weight:500
}
.busket__total~.busket__sum {
    padding-left:10px;
    padding-right: 20px;
}
.busket__sum {
    padding:28px 42px;
    font-size:18px;
    font-weight:500;
    border-right:2px solid #d8e2e5;
    color:#0085ff
}
.busket__sum.busket__sum-left {
    border-right: none;
}
.busket__placements {
    padding:28px 42px;
    font-weight:500;
    font-size:18px;
    border-right:2px solid #d8e2e5;
    color:#1f2840
}
.busket__placements span {
    font-weight:700;
    font-size:18px;
    color:#0085ff
}
.busket__buttons {
    display:flex;
    align-items:center
}
.busket__btn {
    padding:13px 30px;
    border:none;
    border-radius:2px;
    font-weight:500;
    line-height:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#1f2840;
    background-color:#d6ebff;
    transition:all .3s ease
}
.busket__btn:hover {
    background-color:#ebf5ff
}
.busket__btn:not(:first-child) {
    margin-left:7px
}
.busket__btn_primary {
    background-color:#0085ff;
    color:#fff
}
.busket__btn_primary:hover {
    background-color:#37abff
}
.busket__btn_danger {
    background:#eb5757;
    color:#fff
}
.busket__btn_danger:hover {
    background-color:#e23636
}
.busket__btn-icon {
    margin-right:10px
}
.busket__btn_danger .busket__btn-icon {
    fill: #fff;
}
.busket__btn-icon-upload {
    transform: rotate(180deg);
}
.busket .powered_by {
    position: absolute;
    right: 40px;
    bottom: 0;
}
.full-map .busket .powered_by {
    display: none;
}
.powered_by > * {
    white-space: nowrap;
}
.photos {
    display: none;
}
.photos.fancybox-content {
    padding: 40px;
    max-width: 770px;
}
.photo-report {
    cursor: pointer;
    width: 50px;
}
.photos__title {
    font-size:26px;
    font-weight:700;
    color:#1f2840
}
.photos__slider {
    max-height:531px;
    overflow-y:hidden
}
.photos__slider .photos__title {
    margin-bottom:18px;
    text-align: left;
}
.photos__scroller {
    display: flex;
    position: relative;
}
.photos__slider-item {
    border-radius:3px;
    text-align: center;
    position: relative;
    transition:all .3s ease;
}
.photos__slider-item img,
.photos__slider-item video {
    max-width: 100%;
    max-height: 418px;
}
.photos__slider-item img.gallery {
    cursor: zoom-in;
}
.photos__slider-vue,
.photos__thumbnails-vue{
    display: none;
}
.photos__thumbnails {
    margin-top:19px;
    display:flex;
    flex-wrap: wrap;
    justify-content:space-between;
    cursor:pointer
}
.photos__thumbnails-item {
    max-width:127px;
    max-height:82px;
    margin-bottom: 5px;
    transition:all .3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    border-radius:3px;
}
.photos__thumbnails-item.tns-nav-active {
    border-color: var(--selected-color);
}
.photos__thumbnails-item img {
}
.photos__thumbnails-item video {
    border-radius: 3px;
    width: 100%;
}
.photos__thumbnails-item:hover {
    opacity:.6
}
.photos__buttons {
    margin-top:30px;
    display:flex;
    justify-content:flex-end
}
.photos__btn {
    padding:0 30px;
    border:none;
    border-radius:2px;
    font-weight:500;
    line-height:41px;
    cursor:pointer;
    color:#1f2840;
    background-color:#d6ebff;
    transition:all .3s ease
}
.photos__btn:hover {
    background-color:#ebf5ff
}
.photos__btn:not(:first-child) {
    margin-left:7px
}
.photos__btn-icon {
    margin-right:10px
}
.month-picker-year-table .ui-icon {
    left: -8px;
    bottom: 4px;
}
.modal-dialog-message {
    display: table;
    height: calc(100vh);
    margin: auto;
    min-width: 200px;
    pointer-events: none;
}
#message-container {
    z-index: 99999;
}
.geo__btn-streetview {
    position: absolute;
    background: url(images/streetview.png) center no-repeat;
    background-size: 30px auto;
    width: 42px;
    height: 42px;
    top: calc(50% - 15px);
    right: 10px;
    background-color: white;
    cursor: pointer;
}
.geo__btn-streetview.disabled {
    background-color: #ebebeb;
    cursor: not-allowed;
}
.hidden {
    display: none;
}
.start-code-dialog {
    padding: 20px;
    top: 0;
    max-width: 500px;
    width: 500px;
    border: 1px solid var(--input-border-color);
    background-color: white;
    box-shadow: 0 10px 20px rgba(17,17,22,.1);
}
.start-code-dialog input {
    width: 100%;
    height: 42px;
    padding: 13px 20px;
    border-radius: 2px;
    border: 1px solid var(--input-border-color);
    background-color: #fff;
    color: #676a73;
    line-height: 16px;
}
.start-code-dialog p {
    padding: 7px 0 8px 0;
    font-size: 14px;
    line-height: 16px;
    color: #1f2840;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome, Edge, Opera and Firefox */
}
.quantity {
    position: relative;
}
.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity input[type=number] {
    -moz-appearance: textfield;
    height: 42px;
    padding: 13px 13px 13px 20px;
    border-radius: 2px;
    border: 1px solid var(--input-border-color);
    background-color: #fff;
    color: #676a73;
    line-height: 16px;
}
.quantity:hover input[type=number],
.quantity input[type=number]:hover,
.quantity input[type=number]:focus {
    border-color: var(--selected-color);
}
.quantity-nav {
    position: absolute;
    height: calc(100% - 2px);
    right: 1px;
    top: 1px;
}
.quantity-button {
    position: relative;
    cursor: pointer;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    width: 21px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: "FontAwesome" !important;
    line-height: 1.5;
    padding: 0;
    background: #FAFAFA;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.quantity-button:active {
    background: #EAEAEA;
}
.quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "FontAwesome";
    border-radius: 0 4px 0 0;
    line-height: 1.6
}
.quantity-button.quantity-down {
    position: absolute;
    bottom: 0;
    height: 50%;
    font-family: "FontAwesome";
    border-radius: 0 0 4px 0;
}
.skip-lines-label {
    color: #1f2840;
    font-size: 16px;
    font-weight: 500;
}
#input-format {
    margin-bottom: 27px;
}
#input-format th:first-child,
#input-format td:first-child {
    padding-left: 20px;
}
#input-format .btn__add-column,
#input-format .btn__column-delete,
#input-format .btn__column-to-left,
#input-format .btn__column-to-right {
    padding: 5px 8px;
    background-color: #ebf5ff;
}
.upload__buttons {
    margin-left: 20px;
    display: flex;
}
.cssload-clock {
    height: 70px;
    width: 70px;
    position: relative;
    margin: auto;
    background: conic-gradient(from 90deg at 50% 50%, rgba(58, 105, 225, 0) 0deg, #3AAFE1 360deg);
    border-radius: 35px;
    transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    animation: ptAiguille 2s linear infinite;
    -o-animation: ptAiguille 2s linear infinite;
    -ms-animation: ptAiguille 2s linear infinite;
    -webkit-animation: ptAiguille 2s linear infinite;
    -moz-animation: ptAiguille 2s linear infinite;
}

.cssload-clock:after {
    content: "";
    position: absolute;
    left: 65px;
    top: 33px;
    background-color: #3AAFE1;
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
}

.cssload-clock:before {
    content: "";
    background-color: white;
    position: absolute;
    top: 5px;
    left: 5px;
    height: 60px;
    width: 60px;
    border-radius: 30px;
}

@keyframes ptAiguille {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes ptAiguille {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes ptAiguille {
    0% {
        -ms-transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(360deg);
    }
}

@-webkit-keyframes ptAiguille {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes ptAiguille {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}

.fa:before,
.fa:after {
    font-family: inherit;
}
@media(max-width: 1200px){
    .header__wrap nav {
        display: flex;
        align-items: center;
    }
    .header__user-exit {
        display: none;
    }
    .photos__slider {
        max-height: unset;
    }
    .photos__slider-item img {
        max-height: 100vh;
    }
    .busket__link {
        font-size: 15px;
    }
    .busket__total {
        font-size: 15px;
    }
    .busket__sum {
        font-size: 15px;
    }
    .busket .powered_by {
        display: none;
    }
}
@media print {
    .noprint {
        display: none !important;
    }
}
/*.landing h1 {
    font-size: 20px;
    margin-top: 1.15em;
    margin-bottom: 1.15em;
}
.landing h2 {
    font-size: 16px;
    margin-top: 1.15em;
    margin-bottom: 1.15em;
}
.landing h3 {
    font-size: 14px;
    margin-top: 1.15em;
    margin-bottom: 1.15em;
}
.landing ul {
    font-size: 11px;
    margin-inline-start: 3em;
    margin-block-end: 1em;
}
.landing p {
    margin: 1em 0;
}*/
