.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    height: 64px;
    padding: 20px 96px;
    background-color: #fff;
    transition: all .2s ease-in-out;
    z-index: 1000
}

@media(width <= 1200px) {
    .header {
        padding: 20px 16px
    }
}

@media(width <= 800px) {
    .header {
        position: static;
        justify-content: center;
        height: 40px;
        padding: 32px 16px 16px;
        background: rgba(0,0,0,0);
        box-shadow: initial
    }
}

.logo {
    width: 107px;
    height: 24px;
    cursor: pointer
}

.buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 12px
}

@media(width <= 800px) {
    .buttons-wrapper {
        display: none
    }
}

.mobile-buttons-wrapper {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 16px;
    background: rgba(255,255,255,.36);
    backdrop-filter: blur(16px);
    z-index: 999
}

@media(width <= 800px) {
    .mobile-buttons-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px
    }
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 12px 16px;
    font-family: "IBM Plex Sans",sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all .2s ease-in-out;
    user-select: none;
    cursor: pointer
}

.button:focus-visible {
    border-color: #000
}

@media(hover: hover) {
    .button:not(:disabled):hover {
        cursor:pointer
    }
}

.button--primary {
    color: #fff;
    background-color: #1976d2
}

.button--primary:active {
    background-color: #145ea8
}

.button--primary:disabled {
    background-color: #b1b1b1
}

@media(hover: hover) {
    .button--primary:not(:disabled,:active):hover {
        background-color:#1c85ee
    }
}

.button--secondary {
    color: #191c1f;
    background-color: #d1e4f6
}

.button--secondary:active {
    background-color: #bfd4e9
}

.button--secondary:disabled {
    background-color: #b1b1b1
}

@media(hover: hover) {
    .button--secondary:not(:disabled,:active):hover {
        background-color:#b8dcff
    }
}

.header .button,.mobile-buttons-wrapper .button {
    height: 36px;
    padding: 8px 24px;
    font-size: 14px
}

@media(width <= 800px) {
    .header .button,.mobile-buttons-wrapper .button {
        width: 100%;
        height: 44px;
        font-size: 16px
    }
}

.header .button--secondary,.mobile-buttons-wrapper .button--secondary {
    color: #fff!important;
    background-color: #1976d2!important
}

@media(hover: hover) {
    .header .button--secondary:hover,.mobile-buttons-wrapper .button--secondary:hover {
        background-color:#1c85ee!important
    }
}

.header .button--primary,.mobile-buttons-wrapper .button--primary {
    color: #1976d2!important;
    background-color: #d1e4f6!important
}

@media(hover: hover) {
    .header .button--primary:hover,.mobile-buttons-wrapper .button--primary:hover {
        background-color:#b8dcff!important
    }
}

.domain-links-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background-color: #fff;
    border-radius: 16px
}

@media(width <= 600px) {
    .domain-links-block {
        display: none
    }
}

.domain-links-block-mobile {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background-color: #fff;
    border-radius: 12px
}

@media(width <= 600px) {
    .domain-links-block-mobile {
        display: flex
    }
}

.flex-block {
    display: flex;
    justify-content: space-between;
    gap: 8px
}

.flex-block-mobile {
    display: flex;
    justify-content: space-between
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap
}

.info-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px
}

.info-content-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.available-domain {
    display: flex;
    gap: 4px
}

.available-domain--space-between {
    justify-content: space-between;
    width: 100%
}

.available-domain__text {
    width: max-content;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    transition: color .2s ease-in-out
}

.available-domain__text--hint-shown {
    color: #1976d2
}

.available-domain__text>a {
    transition: color .2s ease-in-out
}

@media(hover: hover) {
    .available-domain__text:hover>a {
        color:#1976d2
    }
}

.available-domain__domain-arrow {
    display: flex;
    align-items: center;
    gap: 4px
}

.available-domain__arrow-icon {
    display: none;
    width: 8px;
    height: 8px;
    transform: translateY(1px)
}

@media(width <= 600px) {
    .available-domain__arrow-icon {
        display: block
    }
}

.available-domain__timer {
    display: flex;
    align-items: center;
    gap: 4px;
    width: max-content;
    height: 22px;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15.6px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s ease-in-out
}

@media(width <= 600px) {
    .available-domain__timer {
        font-size: 14px
    }
}

.available-domain__timer .timer-text {
    white-space: nowrap
}

.available-domain__timer .timer-hint-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.available-domain__timer--urgent {
    color: #fff;
    background-color: #ff6635;
    border: 1px solid #ff6635;
}

.available-domain__timer--urgent>div>svg>path {
    fill: #fff
}

.available-domain__timer--warning {
    color: #191c1f;
    background-color: #ffd05e;
    border: 1px solid #e6b84c;
}

.available-domain__timer--warning>div>svg>path {
    fill: #1976d2
}

.available-domain__timer--normal {
    color: #191c1f;
    background-color: #eef1f8
}

.available-domain__timer--normal>div>svg>path {
    fill: #1976d2;
    border: 1px solid #d4d8e2;
}

.hint {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 1050
}

.hint__tooltip {
    position: fixed;
    padding: 12px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 8px 12px 32px 0 rgba(25,118,210,.32);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    pointer-events: auto;
    white-space: nowrap;
    transform: translateY(8px) scale(.95);
    opacity: 0
}

.hint__tooltip--hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px) scale(.95)
}

.hint__tooltip--visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1)
}

.hint__container {
    display: flex;
    flex-direction: column
}

.hint__title {
    margin: 0 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #1976d2
}

.hint__disconnect-text {
    margin: 0 0 4px auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    white-space: nowrap;
    color: #b1b1b1
}

.hint__expired-time {
    margin-left: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
    color: #191c1f
}

.copy-button {
    position: relative;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    border: none!important;
    border-radius: 6px;
    background: rgba(0,0,0,0)!important;
    transition: transform .2s ease-in-out;
    cursor: pointer;
    outline: 0!important;
    box-shadow: none!important
}

.copy-button:focus {
    outline: 0!important;
    border: none!important;
    box-shadow: none!important
}

.copy-button:focus-visible {
    outline: 0!important;
    border: none!important;
    box-shadow: none!important
}

.copy-button:active {
    outline: 0!important;
    border: none!important;
    box-shadow: none!important
}

@media(hover: hover) {
    .copy-button:hover {
        transform:scale(1.2);
        outline: 0!important;
        border: none!important;
        box-shadow: none!important
    }
}

.copy-button .copy-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    transform: translate(-50%,-50%)
}

.notifications-container {
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 9999;
    max-width: 304px;
    width: 100%
}

.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 304px;
    height: 40px;
    padding: 8px 12px;
    margin-bottom: 8px;
    background-color: #e8f5e9;
    border-radius: 12px;
    animation: slideIn .3s ease-out;
    cursor: pointer
}

.notification--success {
    background-color: #e8f5e9
}

.notification--error {
    background-color: #ffebee
}

.notification__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0
}

.notification__text {
    font-size: 14px;
    font-weight: 500;
    color: #191c1f;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.notification__close {
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s ease-in-out;
    flex-shrink: 0
}

.notification__close:hover {
    opacity: 1
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

.banner-slider {
    width: 100%;
    max-width: 1088px;
    position: relative
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1088px;
    touch-action: pan-y
}

@media(width <= 600px) {
    .slider-container {
        -webkit-user-select: none;
        user-select: none
    }
}

.slider-track {
    display: flex;
    transition: transform .3s ease-in-out;
    gap: 16px
}

@media(width <= 600px) {
    .slider-track {
        gap: 0
    }
}

.slide {
    flex: 0 0 812px;
    position: relative
}

@media(width <= 600px) {
    .slide {
        flex: 0 0 100%
    }

    .slide:not(.active) {
        opacity: 0
    }

    .slide.active {
        opacity: 1
    }
}

.desktop-banner {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px
}

.desktop-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block
}

@media(width <= 600px) {
    .desktop-banner {
        display: none
    }
}

.mobile-banner {
    display: none;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px
}

.mobile-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block
}

@media(width <= 600px) {
    .mobile-banner {
        display: block
    }
}

.slider-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px
}

@media(width <= 600px) {
    .slider-navigation {
        margin-top: 12px;
        justify-content: center
    }
}

.empty-block {
    display: block;
    width: 72px
}

@media(width <= 600px) {
    .empty-block {
        display: none
    }
}

.nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px
}

@media(width <= 600px) {
    .nav-dots {
        gap: 6px
    }
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: #b1b1b1;
    opacity: .3;
    cursor: pointer;
    transition: opacity .2s ease-in-out
}

.nav-dot:hover {
    opacity: 1
}

.nav-dot.active {
    background-color: #1976d2;
    opacity: 1
}

.nav-controls {
    display: flex;
    gap: 4px
}

@media(width <= 600px) {
    .nav-controls {
        display: none
    }
}

.nav-btn {
    cursor: pointer
}

.nav-btn path {
    fill: #1976d2;
    transition: all .2s ease-in-out
}

.nav-btn.disabled path {
    fill: #ababab
}

.parameters-info-block {
    width: 100%;
    max-width: 1088px;
    padding: 12px 12px 16px;
    background-color: #fff;
    border-radius: 12px
}

.parameters-info-block h1 {
    font-family: "IBM Plex Sans",sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px
}

.parameters-info-block h2 {
    font-family: "IBM Plex Sans",sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 8px
}

.parameters-info-block h3 {
    font-family: "IBM Plex Sans",sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px
}

.parameters-info-block p {
    font-family: "IBM Plex Sans",sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px
}

.parameters-info-block ul {
    font-family: "IBM Plex Sans",sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px
}

.parameters-info-title {
    margin: 0 0 4px;
    font-family: "IBM Plex Sans",sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px
}

.parameters-info-description {
    margin: 0;
    font-family: "IBM Plex Sans",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px
}

.page {
    min-height: calc(100vh - 48px);
    background-color: #eef1f4
}

.content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1088px;
    margin: 0 auto;
    padding-top: 76px
}

@media(width <= 800px) {
    .content {
        padding-top: 0;
        padding-bottom: 140px
    }
}

@media(width <= 600px) {
    .content {
        gap: 12px;
        padding-bottom: 144px
    }
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 369px;
    font-family: "IBM Plex Sans",sans-serif;
    color: #ababad
}

@media(width <= 600px) {
    .not-found {
        height: 94px
    }
}

.not-found h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-align: center
}

.not-found p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

button {
    border: none;
    background: 0 0;
    cursor: pointer;
    outline: 0
}

button:focus {
    outline: 0
}

button:focus-visible {
    outline: 0
}

body,html {
    max-width: 100vw;
    overflow-x: hidden
}

body {
    background: #eef1f4;
    color: #191c1f;
    font-family: "IBM Plex Sans",sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style-position: inside;
    padding-left: 8px
}