img {
    pointer-events: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


body,
html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #141927;
}

a {
    text-decoration: none;
    color: #fff;
}
a:hover {
    color: #87C6ED;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*max-width: 1920px;*/
    width: 100%;
}

header {
    box-sizing: border-box;
    max-width: 1170px;
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
}
.header_zIndex {
    z-index: 6;
}

header .center_menu {
    display: flex;
    column-gap: 60px;
    color: #808594;
    font-size: 14px;
}

header a {
    color: #808594;
}

header .active_page {
    color: #87C6ED;
    font-weight: 600;
}

header .right_menu {
    display: flex;
    column-gap: 25px;
}



.green {
    color: #87C6ED;
    font-family: "Montserrat", sans-serif;
}
.red {
    color: red;
}

main {
    padding-top: 160px;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 1920px;
    width: 100%;
    overflow: hidden;
}




header .loginBtn {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    width: 80px;
    height: 35px;
    display: none;
    justify-content: center;
    align-items: center;
    border: 2px solid #87C6ED;
    border-radius: 35px;
    box-sizing: border-box;
    font-family: 'Bai Jamjuree', sans-serif;
    cursor: pointer;
    background: #141927;
    transition: 0.2s;
}
header .loginBtn:hover {
    filter: drop-shadow(0px 0px 8px #87C6ED);
}
header .loginBtn:active {
    background: #87C6ED;
}

header .right_menu > .active {
    display: flex;
}

.authMenu {
    display: none;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 4;
    padding: 0 12px;
    margin: 0 -12px;
}

.authMenu .menu_frame {
    display: none;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    box-shadow: 0px 18px 62px rgba(0, 0, 0, 0.29);
    cursor: initial;
    min-width: 100%;
}
.authMenu > .active {
    display: block;
}

.authMenu .menu {
    width: 100%;
    padding: 70px 0 20px;
    background: linear-gradient(180deg, #0D1220 0%, #141927 77.69%);
    border-radius: 25px;
    position: relative;
    display: flex;
    justify-content: center;
}

.authMenu .menu::after {
    content: '';
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: linear-gradient(#141927 20%, #87C6ED);
    border-radius: 25px;
    z-index: -1;
}

.authMenu .menu_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.authMenu .menu .item{
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #808594;
    gap: 5px;
}
.authMenu .menu .item:hover {
    color: #87C6ED;
}




.loginWindow,
.successWindow {
    border-radius: 50px;
    background: #fff;
    box-shadow: 0px 4px 250px #000000;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 80px 120px;
    z-index: 7;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.successWindow {
    max-width: 88%;
}
.loginWindow.active,
.successWindow.active {
    display: flex;
}

.loginWindow .closeBtn,
.successWindow .closeBtn {
    position: absolute;
    right: 50px;
    top: 50px;
    cursor: pointer;
}

.loginWindow .logo .text .name {
    color: #151A2C;
}
.loginWindow .logo .text .description {
    color: #1565D8;
}
.loginWindow .logo {
    margin-bottom: 40px;
}

.loginWindow .auth_form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: start;
}

.loginWindow .title_input {
    color: #696F79;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}

.loginWindow .inputFrame {
    width: 430px;
    height: 64px;
    background: #fff;
    border: 1px solid #808594;
    border-radius: 25px;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #000;
}

.loginWindow .inputFrame input {
    color: #000;
}

.loginWindow .inputFrame input::-webkit-input-placeholder,
.loginWindow .inputFrame textarea::-webkit-input-placeholder{
    color: #CBCBCB;
    font-size: 16px;
    font-weight: 400;
}
.loginWindow .inputFrame input::-moz-placeholder,
.loginWindow .inputFrame textarea::-moz-placeholder {
    color: #CBCBCB;
    font-size: 16px;
    font-weight: 400;
}

.loginWindow .checkbox_login {
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: #696F79;
    font-size: 14px;
    font-weight: 400;
}
.loginWindow .checkbox_login .mark {
    margin: 0;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: #E2E6F0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginWindow .checkbox_login .mark:hover {
    border: 2px solid #CDD1DC;
}
.loginWindow .checkbox_login .mark img {
    transition: 0.2s;
    opacity: 0;
}

.loginWindow .checkbox_login .active img {
    opacity: 1;
}

.loginWindow .password_controller {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.loginWindow .authBtn {
    margin-top: 30px;
    background: #21305C;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 25px;
    margin-bottom: 20px;
    cursor: pointer;
}
.loginWindow .authBtn:hover {
    background: #233F90;
}

.loginWindow .formContentLink {
    color: #696F79;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
}
.loginWindow .formContent {
    margin-left: 5px;
    color: #1565D8;
    cursor: pointer;
}
.loginWindow .formContent:hover {
    text-decoration: underline;
}

.loginWindow .conditions_reg {
    width: 100%;
}
.loginWindow .conditions_reg_content {
    margin-top: 10px;
    color: #808594;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    width: 340px;
    opacity: 60%;
    font-family: 'Bai Jamjuree', sans-serif;
}

.loginWindow .loginContent,
.loginWindow .regContent {
    display: none;
}
.loginWindow .checked_content {
    display: block;
}

.loginWindow .validField {
    border-color: #87C6ED;
}

.loginWindow .invalidField {
    border-color: #ff5252;
}

.successWindow .title {
    color: #0E121E;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Bai Jamjuree', sans-serif;
    margin-bottom: 25px;
    margin-top: 25px;
}

.successWindow .description {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #0E121E;
    opacity: 60%;
    width: 410px;
}


.burger {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.burger_menu {
    display: none;
    justify-content: center;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #141927;
}
.burger_menu .main_content {
    width: 100%;
    margin-top: 220px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    font-size: 24px;
}
.burger_menu .authMenu_content {
    overflow: hidden;
    width: 100%;
    margin-top: 120px;
    padding: 0 20px;
    display: none;
    flex-direction: column;
    gap: 30px;
    font-size: 18px;
    font-weight: 400;
    box-sizing: border-box;
}
.burger_menu .authMenu_content a {
    color: #fff;
}
.burger_menu .authMenu_content .item {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .authMenu_content .authData {
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}
header .authMenu_content .authData .content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}
header .authMenu_content .authData .content .email {
    color: #808594;
    font-size: 16px;
    line-height: 20px;
}

.burger_menu .chosen_content {
    display: flex;
}

.open {
    display: flex;
}

.close {
    display: none !important;
}

@media (max-width: 900px) {
    header .right_menu > .loginBtn,
    header .right_menu > .authMenu {
        display: none;
    }

    .burger {
        display: flex;
    }

    .loginWindow .inputFrame,
    .loginWindow .authBtn {
        width: 100%;
        max-width: 430px;
    }
    .loginWindow {
        box-sizing: border-box;
        padding: 0 20px;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        justify-content: center;
    }
    .loginWindow .formContentLink {
        font-size: 14px;
    }
}

header .right_menu > .active_mob {
    display: flex;
    /* display: none; */
}
header .authorized > .active_mob {
    /* display: flex !important; */
    display: none;
}
.right_menu.authorized > a {
    display: flex;
}

.phone_codes {
    /* width: 50px; */
    font-size: 18px;
    display: flex;
    gap: 5px;
    margin-right: 10px;
    margin-left: -10px;
    cursor: pointer;
}

.phone_number {
    position: relative;
    z-index: 1;
    padding: 0 !important;
}

.listCodes {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 64px 20px 0;
    box-sizing: border-box;
    z-index: -1;
    background: inherit;
    box-shadow: 0px 18px 62px rgb(0 0 0 / 29%);
    border-radius: 25px;

    font-size: 18px;
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 5px; */
    max-height: 50vh;
    overflow-x: hidden;
    overflow-y: auto;
}
.listCodes.active {
    display: block;
}
.listCodes {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.listCodes::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.listCodes .item {
    width: 100%;
    overflow: hidden;
    padding: 8px;
    border-bottom: 1px solid #808594;
    cursor: pointer;
}
.listCodes .item:last-child {
    border-bottom: 0;
}
.listCodes .item:hover {
    color: #87C6ED;
    border-bottom: 1px solid #87C6ED;
}
.main_number {
    background: inherit;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 40px;
    border-radius: 25px;
}

input,
textarea {
    width: 100%;
    background: inherit;
    border: none;
    flex-grow: 1;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    color: #808594;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #808594;
}

input:focus,
textarea {
    outline-width: 0;
}

textarea {
    width: 100%;
    height: 100%;
    resize: none;

    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

textarea::-webkit-scrollbar {
    display: none;
}

.checkbox {
    color: #808594;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin: 22px 0;
    cursor: pointer;
    user-select: none;
}
.checkbox .mark {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: #0E121E;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.checkbox .mark img {
    opacity: 0;
    transition: 0.2s;
}
.checkbox .mark.active img {
    opacity: 1;
}

footer {
    background: #060C1C;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
}

footer .footer_text {
    padding: 27px 0;
    color: #808594;
    font-size: 14px;
    font-weight: 400;
}

footer .content {
    box-sizing: border-box;
    max-width: 1170px;
    width: 100%;
    padding: 65px 57px 70px 57px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #808594;
}

footer .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
}

footer .arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transition: 0.2s;
    border: 1px solid #060C1C;
}

footer .arrow:hover {
    border: 1px solid #232a45;
}

footer .bottom {
    display: flex;
    justify-content: space-between;
    /*padding-right: 100px;*/
    align-items: end;
    gap: 90px;
}
footer .left {
    display: flex;
    gap: 60px;

}

footer .column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
footer .column a {
    color: #808594;
    font-size: 18px;
    font-weight: 400;
}

footer .column a:hover {
    /*text-decoration: underline;*/
    color: #87C6ED;
}

footer .right {
    color: #fff;
}

footer .right .header {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Bai Jamjuree', sans-serif;
    margin-bottom: 10px;
}

footer .right .description {
    padding-left: 20px;
    margin-bottom: 20px;
    border-left: 3px solid #87C6ED;
    font-size: 24px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 400;
}

footer .input {
    /*width: 400px;*/
    flex-grow: 1;
    height: 54px;
    border-radius: 100px;
    background: #161B2E;
    box-sizing: border-box;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

footer .inputs {
    display: flex;
    gap: 10px
}

footer .button {
    background: #21305C;
    width: 64px;
    min-width: 64px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}
footer .button:hover {
    background: #233F90;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Bai Jamjuree', sans-serif;
}

.logo .name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.logo .description {
    font-size: 11px;
    font-weight: 500;
    line-height: 12px;
    color: #87C6ED;
}

.link {
    position: relative;
    cursor: pointer;
}


.link_menu {
    position: absolute;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
    top: 100%;
    transition: 0.2s;
}
.link:hover .link_menu {
    display: flex;
}

.link_menu .link_item {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link_menu .link_item img {
    width: 100%;
}


@media (max-width: 1024px) {
    main {
        padding-top: 100px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1280px) {
    main {
        padding-top: 200px;
    }
}

@media (max-width: 800px) {
    header .center_menu {
        display: none;
    }

    footer .bottom {
        flex-direction: column;
        align-items: start;
    }
    footer .top {
        margin-bottom: 35px;
    }
    footer .left {
        justify-content: space-between;
        width: 100%;
    }

    footer .right .header {
        font-size: 28px;
        margin-bottom: 20px;
    }
    footer .right .description {
        font-size: 18px;
        height: 32px;
        display: flex;
        align-items: center;
    }

    footer .right {
        width: 100%;
    }

    footer .content {
        padding: 45px 20px 90px 20px;
    }

    .link:hover .link_menu {
        display: none;
    }
}

@media (max-width: 600px) {
    header {
        padding: 30px 20px;
    }

    header .right_menu {
        column-gap: 20px;
    }

    .logo .text .name {
        font-size: 12px;
    }
    .logo .text .description {
        font-size: 8px;
    }

    footer .footer_text {
        font-size: 12px;
        text-align: center;
    }

    input,
    textarea {
        font-size: 16px;
    }
}




.edit,
.remove {
    width: 24px;
    height: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
}

.edit img,
.remove img {
    width: 100%;
}

.editCont {
    height: 64px;
    background: #10131F;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.edit_active {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: space-between;
    width: 100% !important;
    max-width: 100% !important;
}


.all-pages{
    display: flex;
    height: 38px;
    width: auto;
    align-items: center;
    background-color: #161B2E;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 60px auto 50px auto;
    cursor: pointer;
    padding: 0 10px 0 10px;
}
.all-pages>div{
    cursor: pointer;
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8px 0 8px;
    color: #808594;
}
.all-pages>div:hover{
    color: #87C6ED;
}
.all-pages:hover .now{
    color: #ffffff;
}
@media (max-width: 800px) {
    .all-pages{
        margin-top: calc(1px + 59 * ((100vw - 414px) / (800 - 414)));
        margin-bottom: calc(25px + 25 * ((100vw - 414px) / (800 - 414)));
    }
}
@media (max-width: 414px) {
    .all-pages{
        margin: 0 auto 25px auto;
    }
}
.all-pages .back{
    font-size: 25px;
    margin-bottom: 1.25px;
    color: #ffffff;
}
.all-pages .forward{
    font-size: 25px;
    margin-bottom: 1.25px;
    color: #ffffff;
}
.all-pages .forward img{
    transform: rotate(180deg);
}

.all-pages .ellipsis:hover{
    color: #808594;
}

.all-pages .now{
    color: #ffffff;
}

@media (max-width: 600px) {
    .successWindow {
        padding: 80px 15px;
        border-radius: 25px;
    }

    .successWindow .title {
        font-size: 24px;
    }
    .successWindow .description {
        font-size: 14px;
    }


    .successWindow .description {
        max-width: 100%;
    }
}

.main_link {
    padding-left: 45px;
    display: none;
}
.authorized .main_link {
    display: flex;
}

.authorized {
    margin-top: 0 !important;
}

.authorized .authMenu_content {
    display: flex;
}

.authorized > a {
    display: none;
}


.code_not_found {
    color: #fff;
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    font-family: 'Bai Jamjuree', sans-serif;
    margin-top: 120px;
}

.text_not_found {
    font-family: 'Bai Jamjuree', sans-serif;
    color: #fff;
    font-size: 36px;
    text-align: center;
}

@media  screen and (max-width: 1023px) {
    .flex-footer {
        flex-direction: column;
    }
    .flex-deksription {
        padding-top: 25px;
    }
}

.flex-footer {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.license-style {
    color: #FFFFFF;
}

.footer-special {
    font-size: 16px;
}

.flex-footer {
    flex-direction: column;
}

.user-data {
    padding-top: 22px;
}