/* Authentication */
.hp-authentication-page {
    position: relative;
    min-height: 100vh;
    margin: 0 !important;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .hp-authentication-page .hp-auth-header-title {
        display: none;
    }
}
.hp-authentication-page .hp-logo-item {
    position: absolute;
    top: 0;
    left: 0;
}
.hp-authentication-page .hp-bg-item {
    margin-top: 100px;
}
.hp-authentication-page .hp-text-item {
    margin-top: -250px;
}
@media screen and (max-width: 767px) {
    .hp-authentication-page .hp-text-item {
        margin-top: -80px;
        padding: 0 24px;
    }
}
.hp-authentication-page .hp-or-line {
    position: relative;
}
.hp-authentication-page .hp-or-line:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: #dfe6e9;
    z-index: -1;
}
.hp-authentication-page .hp-other-links a + a {
    position: relative;
    padding-left: 16px;
    margin-left: 16px;
}
.hp-authentication-page .hp-other-links a + a:before {
    content: "";
    position: absolute;
    top: 49%;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #636e72;
}
/* Error */
.hp-error-content {
    min-height: calc(100vh - 189px);
}
.hp-error-content-title {
    font-size: 22vw;
    line-height: 1.2;
}
@media screen and (max-width: 1199px) {
    .hp-error-content-title {
        font-size: 32vw;
    }
}
@media screen and (max-width: 767px) {
    .hp-error-content-title {
        font-size: 45vw;
    }
}
.hp-error-content .hp-comingsoon-timer-item {
    min-width: 200px;
}
.hp-error-content .hp-comingsoon-timer-item span:nth-child(1) {
    font-size: 100px;
}
@media screen and (max-width: 1199px) {
    .hp-error-content .hp-comingsoon-timer-item {
        min-width: 16vw;
    }
    .hp-error-content .hp-comingsoon-timer-item span:nth-child(1) {
        font-size: 8vw;
    }
}
@media screen and (max-width: 767px) {
    .hp-error-content .hp-comingsoon-timer-item {
        min-width: 18vw;
    }
    .hp-error-content .hp-comingsoon-timer-item span:nth-child(1) {
        font-size: 11vw;
        margin-bottom: -8px;
    }
    .hp-error-content .hp-comingsoon-timer-item span:nth-child(2) {
        font-size: 3vw;
    }
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: rgb(255 255 255);
    background-clip: padding-box;
    border: 1px solid rgb(39 80 124);
    -webkit-box-shadow: 0 0.5rem 1rem rgb(39 80 124 / 32%);
    box-shadow: 0 0.5rem 1rem rgb(39 80 124 / 32%);
    border-radius: 7px;
}

.flag-block {
    box-shadow: 0px 0px 20px 0px #c5c5c5;
}
/* Lock Screen */
.hp-lock-screen {
    position: relative;
    min-height: 100vh;
    padding: 150px 30px;
}
.hp-lock-screen .hp-screen-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}
.hp-lock-screen-row {
    max-width: 390px;
    background: rgba(0, 16, 247, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
@media screen and (max-width: 767px) {
    .hp-lock-screen-row {
        max-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .hp-lock-screen {
        padding: 64px 24px;
    }
}
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {opacity: 1;}
    50% {opacity: 0.3;}
    100% {opacity: 1;}
}
.blinking-dot {
    width: 10px;
    height: 10px;
    background-color: #28a745; /* Зеленый цвет */
    border-radius: 50%;
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}
.hp-bg-brand-bg > div {
    z-index: 1;
    position: relative;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rotate-icon {
    animation: rotate 3s linear infinite; /* Вращение за 2 секунды, бесконечно */
}
