* {
    padding: 0;
    margin: 0;
    border: 0;
    font-family: Geologica;
}
*,
:after,
:before {
    box-sizing: border-box;
}
body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    height: 100%;
    background-color: #f8f9fc;
    min-height: 100vh;
}
button,
input,
textarea {
    font-size: inherit;
}
button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
    position: relative;
}
a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none !important;
}
ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    margin-bottom: 0;
}
img {
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}
input {
    outline: 0;
}
input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
input[placeholder]:not([data-placeholder-nohiden])::placeholder {
    transition: opacity 0.3s;
}
input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
    opacity: 0;
}
input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
    opacity: 0;
}
h1 {
    font-family: Geologica;
    font-weight: 600;
    font-size: 68px;
    line-height: 1.1;
    color: #242a34;
}
.page {
    position: relative;
    min-height: 100vh;
}
.page section {
    position: relative;
    padding-top: 128px;
}
[data-button-tooltip] {
    position: relative;
    transition: 0.4s ease-out;
    z-index: 20;
}
[data-button-tooltip]::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(../img/help.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}
[data-button-tooltip] span {
    display: none;
}
[data-button-tooltip]:hover span {
    display: block;
    position: absolute;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #525861;
    min-width: 297px;
    top: -65px;
    left: -130px;
}
[data-button-tooltip]:hover span::before {
    content: "";
    background-color: #f5f5f7;
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    bottom: -20px;
    left: 45%;
    z-index: 20;
    border-radius: 0 0 60% 60%;
}
[data-button-tooltip]:hover span::after {
    content: "";
    background-color: #f5f5f7;
    min-width: 297px;
    min-height: 60px;
    border-radius: 8px;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: -1;
}
.btn-orange-primary {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #f66b34;
    border: 2px solid #f66b34;
    background-color: transparent;
    border-radius: 8px;
    white-space: nowrap;
    padding: 8px 24px;
     display: flex; 
    align-items: center; 
    justify-content: center; 
}
.btn-orange-primary:hover {
    background-color: #f66b34;
    color: #fff;
}
.btn-orange-primary:hover svg path {
    stroke: #fff;
}
.btn-orange-primary.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
    border: 2px solid transparent;
}
.btn-orange-primary.active {
    background-color: rgba(246, 107, 52, 0.1);
}
.btn-orange-flat {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background-color: #f66b34;
    border-radius: 8px;
    white-space: nowrap;
    padding: 8px 24px;
}
.btn-orange-flat:hover {
    background: linear-gradient(90deg, #ff5a19 0, #e64707 100%);
    box-shadow: 0 0 10.1px rgba(246, 107, 52, 0.7);
}
.btn-orange-flat.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.btn-orange-flat.active {
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
}
.btn-orange-flat [disabled="true"],
.btn-orange-flat [disabled],
.btn-orange-flat.disabled {
    color: #fff;
    background-color: #90959e;
    border-color: #90959e;
}
.link-with-arrow {
    position: relative;
    transition: 0.4s ease-in-out;
}
.link-with-arrow::after {
    content: "";
    background-image: url(../../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -25px;
    bottom: -1px;
    transform: scale(0.8);
}
.link-with-arrow:hover::after {
    transform: rotate(180deg) scale(0.8);
}
.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    touch-action: none;
    -moz-user-select: none;
    user-select: none;
    box-sizing: border-box;
}
.noUi-target {
    position: relative;
    border: 1px solid #d3d3d3;
    box-shadow:
        inset 0 1px 1px #f0f0f0,
        0 3px 6px -5px #bbb;
}
.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.noUi-connects {
    z-index: 0;
}
.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto;
}
.noUi-vertical .noUi-origin {
    top: -100%;
    width: 0;
}
.noUi-horizontal .noUi-origin {
    height: 0;
}
.noUi-touch-area {
    height: 100%;
    width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
    transition: transform 0.3s;
}
.noUi-state-drag * {
    cursor: inherit !important;
}
.noUi-horizontal {
    height: 18px;
}
.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    right: -17px;
    top: -6px;
}
.noUi-vertical {
    width: 18px;
}
.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto;
}
.noUi-draggable {
    cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
    cursor: ns-resize;
}
.noUi-handle {
    backface-visibility: hidden;
    position: absolute;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    cursor: default;
    box-shadow:
        inset 0 0 1px #fff,
        inset 0 1px 7px #ebebeb,
        0 3px 6px -3px #bbb;
}
.noUi-active {
    box-shadow:
        inset 0 0 1px #fff,
        inset 0 1px 7px #ddd,
        0 3px 6px -3px #bbb;
}
.noUi-handle:after,
.noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #e8e7e6;
    left: 14px;
    top: 6px;
}
.noUi-handle:after {
    left: 17px;
}
.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
}
.noUi-vertical .noUi-handle:after {
    top: 17px;
}
[disabled] .noUi-connect {
    background: #b8b8b8;
}
[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
    cursor: not-allowed;
}
.noUi-pips,
.noUi-pips * {
    box-sizing: border-box;
}
.noUi-pips {
    position: absolute;
    color: #999;
}
.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center;
}
.noUi-value-sub {
    color: #ccc;
    font-size: 10px;
}
.noUi-marker {
    position: absolute;
    background: #ccc;
}
.noUi-marker-large,
.noUi-marker-sub {
    background: #aaa;
}
.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%;
}
.noUi-value-horizontal {
    transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
    transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}
.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}
.noUi-value-vertical {
    transform: translate(0, -50%);
    padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
    transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}
.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    color: #000;
    padding: 5px;
    text-align: center;
    white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
    transform: translate(0, -50%);
    top: 50%;
    right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
    transform: translate(0, -18px);
    top: auto;
    right: 28px;
}
.mails__header-search {
    display: flex;
    gap: 12px;
    position: relative;
}
.mails__header-search-container {
    position: relative;
    display: flex;
}
.mails__header-search-container::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    top: calc(50% - 14px);
    left: 16px;
    position: absolute;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}

.mails__header-search-container input {
    border-radius: 12px;
    border: 1px solid #d7dbe0;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    min-width: 441px;
    padding: 10px 16px 10px 48px;
}

.mails__header-search-container input::-moz-placeholder {
    color: #90959e;
}
.mails__header-search-container input::placeholder {
    color: #90959e;
}
.mails__header-search-container input.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.mails__header-search-container input[disabled="true"],
.mails__header-search-container input[disabled] {
    border: 1px solid #d7dbe0;
    background-color: #f5f5f7;
    color: #90959e;
}
.mails__header-search-container input.filled {
    color: #242a34;
}
.mails__header-search-container input:focus {
    border: 1px solid #90959e;
    color: #242a34;
}
.mails__header-search-container button {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background-color: #f66b34;
    border-radius: 8px;
    white-space: nowrap;
    margin-left: -10px;
    padding: 8px 24px;
}
.mails__header-search-container button:hover {
    background: linear-gradient(90deg, #ff5a19 0, #e64707 100%);
    box-shadow: 0 0 10.1px rgba(246, 107, 52, 0.7);
}
.mails__header-search-container button.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.mails__header-search-container button.active {
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
}
.mails__header-search-container button [disabled="true"],
.mails__header-search-container button [disabled],
.mails__header-search-container button.disabled {
    color: #fff;
    background-color: #90959e;
    border-color: #90959e;
}
.mails__header-search-ico--close {
    display: none;
    cursor: pointer;
}
.mails__header-search-filter {
    display: flex;
    gap: 8px;
    border: 1px solid #d7dbe0;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 12px;
}
.mails__header-search-filter-caption {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #525861;
}
.mails__header-search-filter-caption--open {
    display: inline-block;
}
.mails__header-search-filter-caption--close {
    display: none;
}
.mails__header-search-filter-ico--open {
    display: block;
}
.mails__header-search-filter-ico--close,
.mails__header-search-filter.open .mails__header-search-filter-caption--open {
    display: none;
}
.mails__header-search-filter.open .mails__header-search-filter-caption--close {
    display: inline-block;
}
.mails__header-search-filter.open .mails__header-search-filter-ico--open {
    display: none;
}
.mails__header-search-filter.open .mails__header-search-filter-ico--close {
    display: block;
}
.mails__header-search-filter--body {
    display: none;
}
.mails__header-search-filter--body.open {
    display: flex;
    position: absolute;
    right: 0;
    height: auto;
    width: 400px;
    background-color: #fff;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08);
    top: 55px;
    flex-direction: column;
}
.mails__header-search-filter--body-header {
    position: relative;
    display: block;
    padding: 24px;
}
.mails__header-search-filter--body-header-close {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    display: block;
    right: 24px;
    cursor: pointer;
}
.mails__header-search-filter--body-header-title {
    color: #101828;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}
.mails__header-search-filter--body .spoller__content {
    margin-top: 16px;
}
.mails__header-search-filter--body-query {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 24px 26px 16px 24px;
}
.mails__header-search-filter--body-query .swiper-scrollbar {
    background-color: transparent !important;
}
.mails__header-search-filter--body-query .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: #d7dbe0 !important;
}
.mails__header-search-filter--body-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 16px;
    max-height: 366px;
    position: relative;
}
.mails__header-search-filter--body-container-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    position: relative;
    height: auto;
}
.mails__header-search-filter--body-apply {
    box-shadow: 0 0 39px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 16px 24px;
}
.mails__header-search-filter--body-apply button {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #f66b34;
    border: 2px solid #f66b34;
    background-color: transparent;
    border-radius: 8px;
    white-space: nowrap;
    width: 100%;
    padding: 8px 24px;
}
.mails__header-search-filter--body-apply button:hover {
    background-color: #f66b34;
    color: #fff;
}
.mails__header-search-filter--body-apply button:hover svg path {
    stroke: #fff;
}
.mails__header-search-filter--body-apply button.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
    border: 2px solid transparent;
}
.mails__header-search-filter--body-apply button.active {
    background-color: rgba(246, 107, 52, 0.1);
}
.mails__header-search-filter--body-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: calc(100% - 18px);
}
.mails__header-search-filter--body-label:last-of-type {
    padding-bottom: 25px;
}
.mails__header-search-filter--body-label:not(:last-of-type) {
    padding-bottom: 12px;
}
.mails__header-search-filter--body-label-input {
    font-size: 16px;
    width: 20px;
    height: 22px;
    border-radius: 4px;
}
.mails__header-search-filter--body-label-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.mails__header-search-filter--body-label-desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #242a34;
}
.mails__header-search-filter--body-label-num {
    color: #525861;
    font-size: 14px;
    line-height: 1.6;
}
.mails__header-search-filter--body-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #242a34;
}
.mails__header-search-filter--body-desc input {
    display: inline-block;
    font-size: 14px;
    background-color: transparent;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.noUi-handle.noUi-handle-lower,
.noUi-handle.noUi-handle-upper {
    background-color: #fff;
    border: 1.5px solid #4766d2;
    border-radius: 50%;
    height: 24px;
    top: -3px;
    width: 24px;
}
.noUi-handle::after,
.noUi-handle::before {
    display: none;
}
.noUi-connect {
    background: #4766d2;
    height: 8px;
    position: relative;
}
.noUi-target {
    background: 0 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.noUi-base {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.noUi-connects {
    background: #d7dbe0;
    border-radius: 8px;
    height: 8px;
    overflow: visible;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.noUi-tooltip {
    left: 50% !important;
    bottom: -35px !important;
    border: none !important;
    background: 0 0;
}
.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.page .welcome {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 157px 360px 128px;
}
.page .welcome::after,
.page .welcome::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}
.page .welcome::after {
    background-image: url(../img/shape-bg-1.svg);
    top: 0;
    right: 0;
}
.page .welcome::before {
    background-image: url(../img/shape-bg-3.svg);
    bottom: 0;
    left: 0;
}
.page .welcome__bg-img {
    width: 384px;
    height: 384px;
    -o-object-fit: contain;
    object-fit: contain;
}
.page .welcome__main {
    min-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.page .welcome__main-title {
    font-size: 50px;
    font-weight: 550;
    line-height: 1.1;
    color: #242a34;
}
.page .welcome__main-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #242a34;
    max-width: 537px;
}
.page .guide {
    max-width: 1920px;
    margin: -25px auto 0;
    position: relative;
    background: linear-gradient(to bottom right, #404b73 0, #0d111f 100%);
    border-radius: 40px;
    padding: 64px 360px;
}
.page .guide::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/noise-bg.png);
    background-position: 0 0;
    background-size: contain;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.page .guide__inner:after {
    content: "";
    position: absolute;
    bottom: -55px;
    left: 76px;
    background-image: url(../img/guide-1.png);
    width: 148.83px;
    height: 107.46px;
    display: block;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.page .guide__inner::before {
    content: "";
    position: absolute;
    display: block;
    background-image: url(../img/guide-2.png);
    width: 148.83px;
    height: 107.46px;
    top: -26px;
    right: 108px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.page .guide__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 48px;
}
.page .guide__header-title {
    font-size: 38px;
    font-weight: 550;
    line-height: 1.1;
    color: #fff;
}
.page .guide__header-desc {
    max-width: 508px;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
}
.page .guide__header-desc a {
    font-weight: 400;
    color: #f66b34;
    transition: 0.4s ease-in-out;
    position: relative;
    width: auto;
    height: auto;
    line-height: 1.6;
    border-radius: 8px;
    display: inline-block;
    padding: 4px 8px;
}
.page .guide__header-desc a:hover {
    text-decoration: underline;
    -webkit-text-decoration: solid underline #f66b34;
    text-decoration: solid underline #f66b34;
}
.page .guide__header-desc a.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.page .guide__body {
    display: flex;
    gap: 24px;
}
.page .guide__body-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 33%;
}
.page .guide__body-item-num {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    text-stroke: 1px #fff;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}
.page .guide__body-item-title {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
}
.page .guide__body-item-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
}
.page .mails {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 360px;
    padding-right: 360px;
}
.page .mails__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.page .mails__header.mobile-search .mails__header-heading,
.page .mails__header.mobile-search .mails__header-search-filter-ico--mobile {
    display: none;
}
.page .mails__header.mobile-search .mails__header-search-button,
.page .mails__header.mobile-search .mails__header-search-input {
    display: block;
}
.page .mails__header.mobile-search .mails__header-search,
.page .mails__header.mobile-search .mails__header-search-container {
    width: 100%;
}
.page .mails__header.mobile-search .mails__header-search-input {
    padding: 9px 16px;
}
.page .mails__header.mobile-search .mails__header-search-ico {
    display: none;
}
.page .mails__header.mobile-search .mails__header-search-ico--close {
    display: block;
    position: absolute;
    right: 0;
}
.page .mails__header-heading {
    display: flex;
    gap: 8px;
    align-items: center;
}
.page .mails__header-heading-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: #242a34;
    white-space: nowrap;
}
.page .mails__header-heading-count {
    height: 42px;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f5f5f7;
    border-radius: 8px;
}
.page .mails__body {
    display: flex;
    flex-direction: column;
    position: relative;
}
.page .mails__body-list {
    display: flex;
    flex-wrap: wrap;
}
.page .mails__body-list-item {
    width: 25%;
    padding: 24px;
    border-right: 1px solid #f5f5f7;
    position: relative;
}
.page .mails__body-list-item:nth-child(n + 4) {
    border-right: none;
}
.page .mails__body-list-item-header {
    position: relative;
    margin-bottom: 12px;
}
.page .mails__body-list-item-header-fav {
    position: absolute;
    right: 18px;
    top: 18px;
    background-image: url(../img/heart-1.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    width: 24px;
    height: 24px;
    transition: 0.4s ease-in;
    color: transparent;
}
.page .mails__body-list-item-header-fav:hover {
    background-image: url(../img/heart-2.svg);
}
.page .mails__body-list-item-header-fav.add {
    background-image: url(../img/heart-3.svg);
}
.page .mails__body-list-item-header-fav.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.page .mails__body-list-item-header-img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 250px;
}
.page .mails__body-list-item-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}
.page .mails__body-list-item-body-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.page .mails__body-list-item-body-header-city {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: #90959e;
}
.page .mails__body-list-item-body-header-name {
    color: #242a34;
    font-size: 16px;
    line-height: 1.4;
}
.page .mails__body-list-item-body-wish {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.page .mails__body-list-item-body-wish-caption {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: #90959e;
}
.page .mails__body-list-item-body-wish-desc {
    color: #242a34;
    font-size: 14px;
    line-height: 1.4;
    padding-bottom: 12px;
}
.page .mails__body-list-item-body-wish button {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #f66b34;
    border: 2px solid #f66b34;
    background-color: transparent;
    border-radius: 8px;
    white-space: nowrap;
    padding: 8px 24px;
}
.page .mails__body-list-item-body-wish button:hover {
    background-color: #f66b34;
    color: #fff;
}
.page .mails__body-list-item-body-wish button:hover svg path {
    stroke: #fff;
}
.page .mails__body-list-item-body-wish button.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
    border: 2px solid transparent;
}
.page .mails__body-list-item-body-wish button.active {
    background-color: rgba(246, 107, 52, 0.1);
}
.page .mails__body-pagination {
    margin-bottom: 128px;
}
.page .mails__body-pagination-up {
    position: absolute;
    bottom: 114px;
    right: -138px;
    width: 48px;
    height: 48px;
    cursor: pointer;
}
.page .mails__body-pagination-bullets {
    display: flex;
    margin-top: 20px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.page .mails__body-pagination-bullets-container {
    display: flex;
    gap: 2px;
}
.page .mails__body-pagination-bullets-caption {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}
.page .mails__body-pagination-bullets-link {
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #525861;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page .mails__body-pagination-bullets-link.active {
    background-color: #f5f5f7;
    color: #4766d2;
}
.page .mails__body-pagination-bullets-link.disabled {
    pointer-events: none;
     color: #90959e;  
}

.page .mails__body-pagination-bullets-arrow.disabled {
    pointer-events: none;
    color: #90959e;  
}

.pagination {
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.page .mails__body-pagination-bullets-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
}

.page .mails__body-pagination-bullets-arrow--prev {
    font-size: 16px;
    line-height: 1.6;
    color: #242a34;
    font-weight: 500;
 }
.page .mails__body-pagination-bullets-arrow--next {
    font-size: 16px;
    line-height: 1.6;
    color: #242a34;
    font-weight: 500;
}
.page .mails__body-pagination-inner {
    padding-top: 12px;
    padding-bottom: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
}
.page .mails__body-pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
}
.page .mails__body-pagination-btn-caption {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #4766d2;
}
footer {
    margin-top: 0 !important;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 360px;
    padding-right: 360px;
}
body.filter-visible header {
    z-index: -1;
}

.dta{
    margin: 25px 0px 10px 0px;
    background: white;
    border-radius: 15px;
}

@media (min-width: 750px) {
    .mails__header-search-container svg,
    .mails__header-search-filter-ico--mobile {
        display: none;
        cursor: pointer;
    }
    .mails__header-search-filter--body-header,
    .mails__header-search-filter--body-header-close {
        display: none;
    }
}
@media (max-width: 1800px) {
    .page .guide,
    .page .mails,
    .page .welcome,
    footer {
        padding-left: 300px;
        padding-right: 300px;
    }
}
@media (max-width: 1760px) {
    .page .guide__inner::before {
        right: 25px;
    }
}
@media (max-width: 1750px) {
    .page .guide,
    .page .mails,
    .page .welcome,
    footer {
        padding-left: 250px;
        padding-right: 250px;
    }
}
@media (max-width: 1700px) {
    .page .guide,
    .page .mails,
    .page .welcome,
    footer {
        padding-left: 200px;
        padding-right: 200px;
    }
}
@media (max-width: 1650px) {
    .page .guide__inner::before {
        right: 0;
    }
}
@media (max-width: 1600px) {
    .page .guide,
    .page .mails,
    .page .welcome {
        padding-left: 150px;
        padding-right: 150px;
    }
    .page .mails__body-pagination-up {
        right: -63px;
        bottom: 135px;
    }
    footer {
        padding-left: 150px;
        padding-right: 150px;
    }
}
@media (max-width: 1440px) {
    .page .guide,
    .page .mails,
    .page .welcome {
        padding-left: 120px;
        padding-right: 120px;
    }
    .page .mails__body-pagination-up {
        right: -80px;
    }
    footer {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (max-width: 1400px) {
    .page .guide__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .page .guide__body {
        flex-direction: column;
    }
    .page .guide__body-item {
        width: auto;
    }
}
@media (max-width: 1367px) {
    .page .guide,
    .page .mails,
    .page .welcome {
        padding-left: 48px;
        padding-right: 48px;
    }
    .page .mails__body-pagination-up {
        right: 0;
        bottom: 235px;
    }
    footer {
        padding-left: 48px;
        padding-right: 48px;
    }
}
@media (max-width: 1300px) {
    .page .mails__body-list-item {
        width: 50%;
    }
}
@media (max-width: 1260px) {
    .mails__header-search-container button {
        font-size: 12px;
        line-height: 1.3;
    }
    .mails__header-search-filter-caption {
        font-size: 14px;
    }
    .page .welcome {
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-top: 110px;
        padding-bottom: 143px;
    }
    .page .welcome__main {
        min-width: 332px;
    }
    .page .welcome__main-title {
        font-size: 38px;
    }
    .page .guide {
        padding-bottom: 55px;
    }
    .page .mails {
        padding-top: 121px;
    }
}
@media (max-width: 1250px) {
    .popup-wrapper .popup__inner {
        flex-direction: column;
        max-width: 682px;
        padding: 16px;
        position: relative;
    }
    .popup-wrapper .popup__content-header-close {
        position: absolute;
        top: 26px;
        right: 26px;
        width: 40px;
        height: 40px;
        background-color: rgba(144, 149, 158, 0.5);
        border-radius: 8px;
    }
    .popup-wrapper .popup__content-header-close span {
        display: none;
    }
    .popup-wrapper .popup__content-header-close svg path {
        stroke: #fff;
    }
}
@media (max-width: 1140px) {
    .mails__header-search-container input {
        min-width: 204px;
        max-width: 204px;
        font-size: 14px;
    }
}
@media (max-width: 910px) {
    [data-button-tooltip]:hover span {
        left: -250px;
    }
}
@media (max-width: 850px) {
    .page .welcome__bg-img {
        width: 324px;
        height: 324px;
    }
    .page .guide__inner:after {
        left: 0;
    }
    .page .mails {
        padding-left: 40px;
        padding-right: 40px;
    }
    .page .mails__header-heading-title {
        font-size: 16px;
    }
}
@media (max-width: 750px) {
    .mails__header-search-container {
        align-items: center;
    }
    .mails__header-search-container::after {
        display: none;
    }
    .mails__header-search-container button,
    .mails__header-search-container input {
        height: 40px;
        display: none;
    }
    .mails__header-search-filter {
        display: none;
    }
    .mails__header-search-filter--body.open {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
    }
    .mails__header-search-filter--body-desc {
        position: relative;
    }
    .mails__header-search-filter--body-container {
        max-height: calc(100vh - 245px);
    }
    .page .welcome {
        flex-direction: column;
        padding-bottom: 75px;
    }
    .page .guide__body {
        gap: 48px;
    }
    .page .mails__header-heading-count {
        border: none;
        border-radius: 0;
        width: 100%;
        position: static;
    }
    .page .mails__header-heading-count--mobile {
        position: absolute;
        right: 105px;
    }
    .page .mails__body-list {
        flex-direction: column;
        gap: 48px;
    }
    .page .mails__body-list-item {
        width: 100%;
        padding: 0;
    }
    .page .mails__body-pagination-bullets-caption {
        display: none;
    }
    .page .mails__body-pagination-inner {
        margin-top: 12px;
    }
}
@media (max-width: 720px) {
    .page .guide,
    .page .mails,
    .page .welcome,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (max-width: 650px) {
    .page .mails__body-pagination-up {
        display: none;
    }
}
@media (max-width: 550px) {
    .page .guide__header-title {
        max-width: 198px;
    }
    .page .mails {
        padding-left: 24px;
        padding-right: 24px;
    }
}
.webp .page .guide::after {
    background-image: url(../img/noise-bg.webp);
}
.webp .page .guide__inner:after {
    background-image: url(../img/guide-1.webp);
}
.webp .page .guide__inner::before {
    background-image: url(../img/guide-2.webp);
}


.modal-content-custom{
    border-radius: 40px;

}
.img-custom{
border-radius: 20px;
}
.popup__content {
    display: flex;
    flex-direction: column;
}
 .popup__content-header {
    display: flex;
    flex-direction: column;
    gap: 55px;
    margin-bottom: 32px;
}
.popup__content-header-close {
    align-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #90959e;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}
 .popup__content-header-title {
    align-self: start;
}
 .popup__content-header-title-heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: #242a34;
}
.popup__content-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
 .popup__content-body-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 .popup__content-body-list-item {
    padding: 16px;
    border: 2px solid #f5f5f7;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
 .popup__content-body-list-item-header {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: start;
}
 .popup__content-body-list-item-header-para {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #4766d2;
}
.popup__content-body-list-item-info-para {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: #242a34;
}
 .popup__content-body-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 10px;
}
.popup__content-body-actions-btn {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #f66b34;
    border: 2px solid #f66b34;
    background-color: transparent;
    border-radius: 8px;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    padding: 8px 24px;
}
 .popup__content-body-actions-btn:hover {
    background-color: #f66b34;
    color: #fff;
}
.popup__content-body-actions-btn:hover svg path {
    stroke: #fff;
}
 .popup__content-body-actions-btn.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
    border: 2px solid transparent;
}
.popup__content-body-actions-btn.active {
    background-color: rgba(246, 107, 52, 0.1);
}
.popup__content-body-actions-fav {
    background-image: url(../img/heart-1.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    width: 24px;
    height: 24px;
    transition: 0.4s ease-in;
    color: transparent;
}
.popup__content-body-actions-fav:hover {
    background-image: url(../img/heart-2.svg);
}
.popup__content-body-actions-fav.add {
    background-image: url(../img/heart-3.svg);
}
.popup__content-body-actions-fav.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}

.flash_message_alert{
    position: fixed;
    z-index: 999999;
    top: 120px;
    right:10px;
    background-color: white;
/*   width: 342px;*/
    
}

.flash-content{
    display: flex;
    align-items: center;
}
.flash-icon{
    display:inline-block;
}

.flash-text{
    display: inline-block;
}

@media screen and (min-width: 676px) {
  .modal-dialog {
    max-width: 80%;
  }
}