@font-face {
    font-family: GraphikBold;
    font-weight: bold;
    src: url("GraphikBold.otf") format("opentype");
}

/* GraphikMedium.otf */
@font-face {
    font-family: GraphikMedium;
    font-weight: normal;
    src: url("GraphikMedium.otf") format("opentype");
}

/* GraphikRegular.otf */
@font-face {
    font-family: GraphikRegular;
    font-weight: normal;
    src: url("GraphikRegular.otf") format("opentype");
}

/* GraphikSemibold.otf */
@font-face {
    font-family: GraphikSemibold;
    font-weight: bold;
    src: url("GraphikSemibold.otf") format("opentype");
}

body {
    padding: 0;
    margin: 0;
    font-family: GraphikRegular;
    font-size: 16px;
    background-color: #F6F7F9;
    color: #0F0F0F;
    font-weight: 400;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

*,
*:focus,
*:active {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

.maxoneline {
    white-space: nowrap;
    overflow: hidden;
}

.header-bar {
    background: url("fond.png");
    background-color: #24242C;
    width: 100%;
    min-height: 321px;
    overflow-x: hidden;

    height: auto;
    padding-bottom: 30px;
}

.line-top {
    height: 2px;
    background-color: #1C84FF;
    width: 0%;
    transition: width 1s;
    display: block;
}

.top-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
}

.top-text {
    font-family: GraphikBold;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 0px;
}

.top-special {
    color: #1C84FF;
}

.dashed-zone {
    border: 5px dashed #373943;
    width: 90%;
    max-width: 630px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: snow;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
}

.dashed-title {
    font-family: GraphikSemibold;
    font-size: 19px;
    text-align: center;
}

.emailgenerated {
    color: snow;
    background-color: #2D2D34;
    font-family: GraphikSemibold;
    font-size: 18px;
    padding: 20px 25px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    border: 0;
    height: 60px;
    width: 90%;
    cursor: pointer;
}

#copybtn {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#copybtn:hover {
    transform: scale(1.05);
}

#copybtn:active {
    transform: scale(0.95);
}

.dashed-input {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    flex-direction: row;
}

@media only screen and (max-width: 492px) {

    .dashed-zone {
        padding: 20px;
    }
}

noscript {
    font-family: GraphikSemibold;
    font-size: 18px;
    color: #FFFFFF;
    background-color: #FF0000;
    padding: 20px;
    border-radius: 30px;
    margin-top: 20px;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

.content-console-text a {
    color: #1C84FF;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.disableselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-btn {
    color: #22242B;
    background-color: #F6F7F9;
    font-size: 17px;
    padding: 15px 25px;
    box-shadow: 0px 4px 4px 0px #E5E6E6;
    border-radius: 30px;
    border: 0;
    width: fit-content;
    cursor: pointer;
    min-width: 172px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.page-btn:hover {
    transform: translateY(-3px);
    background-color: #141414;
    color: snow;
}

.page-btn:active {
    transform: translateY(1px);
    background-color: #141414;
    color: snow;
}

.total-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    background-color: #FFFFFF;
}

.console {
    background-color: #fff;
    border-radius: 15px;
    margin-top: 20px;
    max-width: 900px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.top-console {
    background-color: #22242B;
    padding: 20px;
    font-family: GraphikSemibold;
    color: snow;
    border-radius: 15px 15px 0 0;
}

.content-console {
    padding: 20px;
    font-family: GraphikRegular;
    color: #22242B;
    font-size: 16px;
    line-height: 1.5;
}

.content-videone {
    color: #585D6A;
    font-family: GraphikRegular;
    font-size: 16px;
    text-align: center;
}


.content-videtwo {
    color: #8C92A5;
    font-family: GraphikRegular;
    font-size: 16px;
    text-align: center;
}

.wait-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 450px) {
    .page-btn {
        width: 100%;
        border-radius: 5px;
        margin: 0 20px;
    }

    .console {
        margin-top: 20px;
    }
}

::-webkit-scrollbar {
    width: 6px;
    background: rgb(0, 0, 0);
    position: absolute;
}

::-webkit-scrollbar-track {
    -webkit-border-radius: 15px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #646464;
}

.greenbox {
    background-color: #00C099;
    border-radius: 50%;
    width: 7px;
    height: 7px;
}

.content-console-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-console-subtitle {
    font-family: GraphikRegular;
    font-size: 15px;
    color: #8C92A5;
}

.content-message {
    background-color: #F6F7F9;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    overflow: hidden;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    margin-bottom: 15px;
}

.content-console-text {
    font-family: GraphikRegular;
    font-size: 16px;
    color: #22242B;
    line-height: 1.5;
}

.bumper-css {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #dedede;
}

.bumper-css-all {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 15px;
}

/* growth bublle one */
.bubble-one {
    animation: grow 1.5s ease-in-out infinite alternate;
}

.bubble-two {
    animation: grow 1.5s ease-in-out infinite alternate;
    animation-delay: 0.5s;
}

.bubble-three {
    animation: grow 1.5s ease-in-out infinite alternate;
    animation-delay: 1s;
}

@keyframes grow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.3);
    }
}

.note {
    font-family: GraphikRegular;
    font-size: 15px;
    color: #8C92A5;
    margin-top: 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 20px;
}

.footer {
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: #1C84FF;
    color: snow;
    border-radius: 16px;
    padding: 8px 16px;
    margin-top: 20px;
}