body {
    margin: 0;
    padding: 0;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 483px;
    background-color: #061202;
    /*border-bottom: #FDC90F 1px;*/
}

.title_block_mobile {
    visibility: hidden;
}

.title_text {
    font-size: 40px;
    font-family: "Lora", "Bold";
    color: #ffffff;
    font-weight: 700;
    margin: 0px;
}

.secondary_text {
    font-size: 18px;
    font-family: "Lora", "SemiBold";
    color: #f5cb47;
    font-weight: 600;
    align-self: flex-end;
    margin-right: 30px;
    margin-top: 0px;
}

.waves_block_v1 {
    position: absolute;
    left: 0;
}

.wave_v1 {
    position: absolute;
    left: 0;
}

.lion_monkey_img_block {
    position: absolute;
    right: 0;
}

.lion_monkey_img {
    position: absolute;
    right: 0;
}

.header_circle_img {
    width: 16px;
    height: 16px;
}

.auth_block {
    display: flex;
    justify-content: space-between;
    width: 170px;
    margin-top: 70px;
}

.auth_block_links {
    font-size: 12px;
    font-family: "Lora", "SemiBold";
    font-weight: 600;
    text-decoration: none;
    color: #fdc90f;
    z-index: 2;
}

.auth_block_links:hover {
    color: #fffff0;
}

.title_block {
    position: relative;
    width: 1150px;
    bottom: 18px;
    right: 65px;
}

.header_nav_menu_block {
    margin-top: 5px;
    z-index: 9;
    position: relative;
}

.burger_menu {
    visibility: hidden;
}

.nav_menu_link {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: "Lora", "SemiBold";
    text-decoration: none;
    color: #fdc90f;
    margin-left: 80px;
    z-index: 9;
    position: relative;
}

.nav_menu_link:first-child {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: "Lora", "SemiBold";
    text-decoration: none;
    color: #fdc90f;
    margin-left: 0px;
    z-index: 9;
    position: relative;
}

.nav_menu_link:hover,
.nav_menu_link.active,
.nav_menu_link:focus {
    color: white;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.dot {
    position: absolute;
    left: 50%;
    border-radius: 50px;
    bottom: -70px;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: #fffff0;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.nav_menu_link:hover .dot,
.nav_menu_link.active .dot,
.nav_menu_link:focus .dot {
    opacity: 1;
}

.nav_menu_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
}

.nav_menu_link:hover::before,
.nav_menu_link.active::before,
.nav_menu_link:focus::before {
    transform: scaleX(1);
}

/* media for header */
@media (min-width: 1440px) and (max-width: 1750px) {
    #lion_monkey {
        content: url("../images/lion_monkey_1440px.svg");
    }
    #wave_v1 {
        content: url("../images/waves_v1_1440px.svg");
    }

    .title_block {
        position: relative;
        width: 1150px;
        bottom: 18px;
        right: 65px;
    }
}

@media (min-width: 1201px) and (max-width: 1440px) {
    #lion_monkey {
        content: url("../images/lion_monkey_1201px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_1201px.svg");
    }

    .title_block {
        position: relative;
        width: 850px;
        bottom: 18px;
        right: 160px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    #lion_monkey {
        content: url("../images/lion_monkey_1025px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_1025px.svg");
    }

    #header_logo {
        content: url("../images/header_logo_1025px.svg");
    }

    .header_nav_menu_block {
        margin-top: 70px;
    }

    .title_block {
        width: 765px;
    }
}

@media (min-width: 700px) and (max-width: 1024px) {
    #lion_monkey {
        content: url("../images/lion_monkey_700px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_700px.svg");
    }

    #header_logo {
        visibility: hidden;
        content: url("../images/header_logo_1025px.svg");
    }

    .header {
        height: 279px;
    }

    .title_block {
        display: none;
    }

    .title_text {
        font-size: 40px;
        font-weight: 700;
        font-family: "Lora", "Bold";
    }

    .title_block_mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        margin-top: 75px;
        margin-left: 160px;
    }

    .header_nav_menu_block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin-top: 179px;
        z-index: 9;
        position: relative;
    }

    .nav_menu_link {
        display: none;
    }

    .nav_menu_link.active {
        display: block;
        margin-left: 0px;
    }

    .burger_menu {
        visibility: visible;
    }

    .auth_block {
        display: flex;
        justify-content: space-between;
        width: 170px;
        margin-top: 28px;
    }
}

@media (min-width: 577px) and (max-width: 700px) {
    #lion_monkey {
        content: url("../images/lion_monkey_577px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_577px.svg");
    }

    #header_logo {
        display: none;
        content: url("../images/header_logo_1025px.svg");
    }

    .header {
        height: 279px;
    }

    .title_block {
        display: none;
    }

    .title_block_mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        margin-top: 85px;
        margin-left: 50px;
    }

    .header_nav_menu_block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin-top: 179px;
        z-index: 9;
        position: relative;
    }

    .nav_menu_link {
        display: none;
    }

    .nav_menu_link.active {
        display: block;
        margin-left: 0px;
    }

    .burger_menu {
        visibility: visible;
    }

    .auth_block {
        display: flex;
        justify-content: space-between;
        width: 170px;
        margin-top: 28px;
    }
}

@media (min-width: 360px) and (max-width: 577px) {
    #lion_monkey {
        content: url("../images/lion_monkey_360px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_360px.svg");
    }

    #header_logo {
        display: none;
        content: url("../images/header_logo_1025px.svg");
    }

    .header {
        height: 279px;
    }

    .title_block {
        display: none;
    }

    .title_block_mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        margin-top: 75px;
        margin-left: 50px;
    }

    .header_nav_menu_block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin-top: 179px;
        z-index: 9;
        position: relative;
    }

    .nav_menu_link {
        display: none;
    }

    .nav_menu_link.active {
        display: block;
        margin-left: 0px;
    }

    .burger_menu {
        visibility: visible;
    }

    .auth_block {
        display: flex;
        justify-content: space-between;
        width: 170px;
        margin-top: 28px;
    }
}


/*main content*/

.main {
    position: relative;
    background-color: #040e02;
    width: 100%;
    border-top: rgba(253, 201, 15, 0.15) 1px solid;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding-top: 99px;
    padding-bottom: 96px;
}

.txt_block,
.image_block {
    width: 444px;
    height: 331px;
    padding: 10px;
    box-sizing: border-box;
}

.txt_welcome {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 20px;
    font-weight: 400;
    font-family: "Lora", "SemiBold";
}

.txt_block {
    width: 444px;
    height: 331px;
}

.image_block {
    width: 420px;
    height: 322px;
    margin-left: 112px;
}

.block_lines {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.line_left {
    width: 450px;
    height: 1px;
    background: rgba(255, 255, 240, 0.3);
    margin-right: 50px;
}

.line_right {
    width: 450px;
    height: 1px;
    background: rgba(255, 255, 240, 0.3);
    margin-left: 50px;
}

.container_seat_lions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.block_txt {
    width: 444px;
    height: 278px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 140px;
}

.txt_seat_lions {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    font-family: "Lora", "SemiBold";
    margin-left: 0;
}

.container_monkey_moon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 195px;
}

.block_article_monkey_moon {
    width: 578px;
    height: 336px;
    margin-bottom: 95px;
}

.block_monkey_moon_image {
    width: 348px;
    height: 362px;
    margin-bottom: 197px;
}

.waves_block_v3 {
    position: absolute;
    bottom: -228px;
    right: 0;
}

.waves_block_v3 img {
    width: 100%;
    height: auto;
}

/* media for main */
@media (min-width: 360px) and (max-width: 1025px) {

    .container {
        display: flex;
        flex-direction: column;
        padding-bottom: 50px;
    }

    .txt_block {
        width: 270px;
        height: 212px;
    }

    .txt_welcome {
        font-size: 12px;
    }

    .container_monkey_moon {
        flex-direction: column;
        margin-top: 55px;
    }


    .image_block {
        width: 278px;
        height: 189px;
        margin-left: 0px;
        padding-top: 50px;
    }

    .line_left {
        width: 115px;
        margin-right: 21px;
    }
    .line_right {
        width: 115px;
        margin-left: 21px;
    }

    .block_lines {
        padding-bottom: 37px;
    }

    .container_seat_lions {
        flex-direction: column-reverse;
    }

    .block_image {
        width: 278px;
    }
    .block_image img {
        width: 278px;
    }
    .block_txt {
        width: 278px;
        height: 135px;
        padding-left: 0px;
        padding-bottom: 18px;
    }

    .txt_seat_lions {
        font-size: 12px;
    }
}

@media (min-width: 577px) and (max-width: 1025px) {
    .block_monkey_moon_image {
        position: relative;
        width: 100%;
        height: 206px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        margin-bottom: 15px;
        top: -56px;
    }

    .block_monkey_moon_image img {
        height: 206px;
        margin-right: 92px;
    }

    /* fixed start */
    .block_article_monkey_moon {
        content: url("../images/autor.write.svg");
        width: 295px;
        height: 450px;
        margin-bottom: 0px;
    }

    .image_block {
        width: 278px;
        height: 189px;
        margin-right: 20px;
        margin-bottom: 62px;
        margin-top: 50px;
    }

    .txt_block {
        width: 317px;
        height: 212px;
        margin-left: 25px;
    }

    .txt_welcome {
        font-size: 13px;
    }

    .block_txt {
        width: 336px;
        height: 135px;
        margin-left: 30px;
        margin-bottom: 18px;
    }

    .txt_seat_lions {
        font-size: 14px;
    }

    .image_block img {
        max-width: 100%;
        max-height: 100%;
        display: block;
        object-fit: cover;
    }

    .main_angry_lions_v1_img {
        height: 212px !important;
    }

    .block_image img {
        width: 329px;
    }

    .block_image {
        margin-right: 30px;
    }

    .block_lines {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 20px;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .line_left {
        width: 135px;
        height: 1px;
        background: rgba(255, 255, 240, 0.3);
        margin-right: 25px;
    }

    .line_right {
        width: 135px;
        height: 1px;
        background: rgba(255, 255, 240, 0.3);
        margin-left: 25px;
    }

    /* fixed end */
}

@media (min-width: 360px) and (max-width: 577px) {
    .block_monkey_moon_image {
        position: relative;
        width: 100%;
        height: 206px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        margin-bottom: 15px;
        top: -56px;
    }

    .main_angry_lions_v1_img {
        height: 155px !important;
        margin-left: -15px !important;
    }

    .block_monkey_moon_image img {
        height: 171px;
        margin-right: 92px;
    }

    .block_article_monkey_moon {
        content: url("../images/autor.write.svg");
        width: 295px;
        height: 342px;
        margin-bottom: 0px;
    }

    /* fixed start */

    .image_block {
        width: 278px;
        height: 189px;
        margin-left: 0px;
        margin-right: 20px;
        padding-top: 50px;
    }

    .image_block img {
        width: 298px;
        height: 212px;
    }

    .txt_block {
        width: 270px;
        height: 212px;
    }

    .txt_welcome {
        font-size: 12px;
    }

    .waves_block_v3 {
        position: absolute;
        bottom: -59px;
        right: 0;
    }

    .block_txt {
        width: 278px;
        height: 135px;
        padding-left: 0px;
        padding-bottom: 18px;
    }

    .txt_seat_lions {
        font-size: 12px;
    }
}

/* Auth */
.main_auth {
    position: relative;
    background-color: #040e02;
    width: 100%;
    border-top: rgba(253, 201, 15, 0.15) 1px solid;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
}

.auth-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
    border: 6px solid #fdc90f;
    box-shadow: 0px 0px 10px 5px rgba(253, 201, 15, 0.15);
    border-radius: 10px;
}

* {
    box-sizing: border-box;
}

.input_group {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    border: none;
    background-color: #000000;
    color: #ffffff;
    padding: 8px; /* equal padding on all sides */
    font-size: 16px;
    margin: 0;
}

/* Add media query for mobile devices */
@media (min-width: 360px) and (max-width: 1025px) {
    .auth-form {
        padding: 10px;
    }

    .input_group {
        font-size: 14px; /* adjust font size for smaller screens */
    }
}

.input-wrapper {
    width: 100%;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-title {
    color: #f5cb47;
    font-family: "Lora", "SemiBold";
}

.form-label {
    margin-bottom: 5px;
    color: #f5cb47;
    font-family: "Lora", "SemiBold";
}

.input_group::placeholder {
    color: #ffffff;
    text-indent: 22px;
    font-family: "Lora", "SemiBold";
}

.btn_add_default {
    cursor: pointer;
    margin-top: 31px;
    display: block;
    background-color: #fdc90f;
    border: none;
    width: 143px;
    height: 40px;
    border-radius: 4px;
    margin-left: 0%;
}

.input-wrapper {
    position: relative;
}

.form-checkbox {
    position: absolute;
    right: 0;
    bottom: -25px; /* adjust this value as per your need */
    color: #f5cb47;
    font-family: "Lora", "SemiBold";
}

@media (min-width: 360px) and (max-width: 1025px) {
    .form-checkbox {
        font-size: 10px;
    }
}

/** My account */
.header-tabs {
    display: flex;
    justify-content: space-around; /* Distribute items evenly in the container */
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f5cb47;
    flex-wrap: wrap; /* Wrap tabs onto new lines on smaller screens */
}

.tab-button {
    cursor: pointer;
    padding-bottom: 5px;
    color: #f5cb47;
    font-family: "Lora", "SemiBold";
    font-size: 18px;
    position: relative; /* Relative positioning for the pseudo-element */
}

.tab-button:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #f5cb47; /* Change color to match your design */
}

.tab-button.active {
    color: white;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (max-width: 600px) {
    .tab-button {
        font-size: 16px; /* Adjust to a smaller font size on smaller screens */
        margin-right: 5px; /* Reduce the right margin on smaller screens */
    }
}

.my_account {
    position: relative;
    background-color: #040e02;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
}

.account_form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
    border: 6px solid #fdc90f;
    box-shadow: 0px 0px 10px 5px rgba(253, 201, 15, 0.15);
    border-radius: 10px;
}

.account_title {
    color: #f5cb47;
    font-family: "Lora", "SemiBold";
    text-align: center;
    width: 100%;
}

.account_group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.account_input {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    border: none;
    background-color: #000000;
    color: #ffffff;
    padding: 8px;
    font-size: 16px;
    box-sizing: border-box;
    margin: 0;
}

.expiryDate {
    color: yellow;
    font-size: 1.5em; /* Adjust the value to your liking */
    text-align: center;
    width: 100%; /* To make the text span the entire row */
}

.subscription {
    display: none;
    text-align: center;
    width: 100%; /* To make the text span the entire row */
}

.account_input::placeholder {
    color: #ffffff;
    font-family: "Lora", "SemiBold";
}

.update_button {
    cursor: pointer;
    margin-top: 31px;
    display: block;
    background-color: #fdc90f;
    border: none;
    width: 143px;
    height: 40px;
    border-radius: 4px;
    align-self: center; /* Center the button */
}

.delete_account_button {
    cursor: pointer;
    margin-top: 31px;
    display: block;
    background-color: darkred;
    border: none;
    width: 143px;
    height: 40px;
    border-radius: 4px;
    align-self: center; /* Center the button */
}

.button-row {
    display: flex;
    justify-content: center;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.account_status {
    color: #f5cb47;
    font-family: "Lora", "SemiBold";
    text-align: center;
    margin-bottom: 10px;
}
.account_status.confirmed {
    color: greenyellow;
}
.account_status.not-confirmed {
    color: red;
}

.checkbox_container {
    display: flex;
    align-items: center;
}

.checkbox_container input[type=checkbox] {
    margin-right: 10px;
    height: unset;
    width: unset;
    background-color: unset;
    color: unset;
}

.custom-upload {
    position: relative;
    cursor: pointer;
}

.custom-file-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-label {
    display: block;
    width: 100%;
    padding: 0.5em;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #ffffff;
}

.avatar {
    text-align: right !important;
    width: 80px;
    height: 80px;
    background-color: #f5cb47;
    border-radius: 45px;
    padding: 2px 2px 2px 2px;
}

.avatar-block {
    display: flex;
    justify-content: right;
    margin-bottom: 2px;
}


.avatar-button-block {
    display: flex;
    justify-content: right;
}

.update_avatar_button {
    background-color: #f5cb47;
    color: black;
    border: none;
    border-radius: 2px;
    padding: 2px 4px;
    font-size: 10px;
    cursor: pointer;
}

.delete_avatar_button {
    background-color: darkred;
    color: black;
    border: none;
    border-radius: 2px;
    padding: 2px 4px;
    font-size: 10px;
    cursor: pointer;
}
