html {
    font-size: clamp(8px, 1.6vh, 48px);
    font-family: 'Inter', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

::-webkit-scrollbar {
    width: 0.1rem;
    background-color: #00000000;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff66;
    border-radius: 0.1rem;
}

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

.flex {
    display: flex;

}

.blue {
    color: #01a4f3;
}

.green {
    color: green;
}

.red {
    color: red;
}

.t1 {
    font-size: 1rem;
}

.t2 {
    font-size: 2rem;
}

.t3 {
    font-size: 3rem;
}

body {
    margin: 0;
    padding: 0;
    color: white;
    background-color: #0b0f10;
    user-select: none;
    -webkit-user-select: none;
}

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

#page_top {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    background-color: #000000;
    height: 4rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    margin-left: 1rem;
    font-size: 0;
}

#logo img {
    height: 2rem;
}

#nav {
    display: flex;
    align-items: center;
}

#nav .active {
    border-bottom: 0.3rem solid #01a4f3;
}

#nav div {
    margin: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

#navright {
    display: flex;
    margin-right: 1rem;
    align-items: center;
}

#navright .button_signin {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    color: #B0B0B0;
}

#navright .button_signin img {
    height: 1.3rem;
    margin-right: 0.1rem;

}

#navright #user_points {
    display: flex;
    margin-right: 1rem;
    align-items: center;
    background-color: #282933;
    border-radius: 0.7rem;
    border: 2px solid #282933;
}

#navright .point_icon {
    width: 1.4rem;
    height: 1.4rem;
    background: url('/public/img/SVG/point.svg') no-repeat;
    background-position: center center;
    background-size: 1rem;
    border-radius: 0.7rem;
    background-color: #01a4f3;
}

.current_points .point_icon {
    width: 1.4rem;
    height: 1.4rem;
    background: url('/public/img/SVG/point.svg') no-repeat;
    background-position: center center;
    background-size: 1rem;
    border-radius: 0.7rem;
    background-color: #01a4f3;
}

.income_history .income_points,
.tasks_history .tasks_points {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.income_history .point_icon,
.tasks_history .point_icon {
    width: 1.2rem;
    height: 1.2rem;
    background: url('/public/img/SVG/point.svg') no-repeat;
    background-position: center center;
    background-size: 0.8rem;
    border-radius: 0.7rem;
    background-color: #01a4f3;
    margin-left: 0.2rem;
}

#render_cost .point_icon {
    width: 1.2rem;
    height: 1.2rem;
    background: url(/public/img/SVG/point.svg) no-repeat;
    background-position: center center;
    background-size: 0.8rem;
    margin-left: 0.1rem;
    background-color: #01a4f3;
    border-radius: 0.6rem;
}

#navright .points {
    margin: 0 0.8rem 0 0.5rem;
}

#navright .nav_subscribe_border {
    padding: 0.1rem;
    background: linear-gradient(to right, #EB6EA5, #01a4f3, #EB6EA5);
    background-size: 200%;
    background-position: 0 center;
    border-radius: 2rem;
    margin-right: 1rem;
}

#navright .nav_subscribe {
    display: flex;
    border-radius: 2rem;
    padding: 0.3rem 1rem;
    background-color: #000;
}

#navright .gradient_text {
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(to right, #01a4f3, #EB6EA5, #01a4f3);
    background-size: 200%;
    background-position: 0 center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@keyframes hoverIn {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}

@keyframes hoverOut {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

#navright .gradient_text:hover,
#navright .nav_subscribe_border:hover {
    animation: hoverIn 0.5s ease forwards;
}

#navright .gradient_text:not(:hover),
#navright .nav_subscribe_border:not(:hover) {
    animation: hoverOut 0.5s ease forwards;
}

#navright .button_menu {
    display: flex;
    color: #B0B0B0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#navright .button_menu img {
    height: 1.4rem;
    margin-left: 0.5rem;

}

.topmenu {
    display: none;
    position: absolute;
    right: 0;
    top: 4rem;
    background: #000;
    width: 15rem;
    z-index: 1000;
}

.redeem_coupons {
    position: absolute;
    z-index: 1000;
    top: 5rem;
    right: 11rem;
    background: #000;
    border-radius: 1.25rem;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}

#coupon_input {
    width: 16rem;
    height: 2rem;
    background-color: #282933;
    color: #fff;
    text-align: center;
    border: 0px;
    border-radius: 0.2rem;
}

#coupon_btn {
    width: 16rem;
    height: 2rem;
    color: #fff;
    border-radius: 1rem;
    background-color: #01a4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 0 0;
    cursor: pointer;
}

.coupon_close {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: url(/public/img/SVG/close2.svg) no-repeat;
    background-position: center center;
    background-color: #282933;
    border-radius: 1rem;
    cursor: pointer;
    background-size: 0.6rem;
}

.topmenu .userinfo {
    margin: 0.5rem;
    background-color: #282933;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    flex-direction: column;
}

.topmenu .avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    background-color: #777777;
    background: url('/public/img/SVG/avatar.svg') no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.topmenu .name {
    color: #B0B0B0;
    margin: 0.2rem 0;
}

.topmenu .email {
    color: #777777;
    margin: 0.2rem 0;
    font-size: 0.8rem;
}

.topmenu .menu_button {
    cursor: pointer;
    height: 2rem;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.topmenu .menu_button:hover {
    background-color: #333;
}

.topmenu img {
    height: 1rem;
    margin-right: 0.5rem;
}

.topmenu .menu_line {
    height: 1px;
    background-color: #333;
    font-size: 0;
}


.upgrade {
    width: 9rem;
    height: 2.5rem;
    background-color: #01a4f3;
    border-radius: 0.5rem;
}

#page_content {
    position: absolute;
    z-index: 1;
    min-height: calc(100% - 6rem);
    left: 0;
    top: 0;
    width: 100%;
    margin: 4rem 0 2rem 0;
    background-color: #0B0F10;
}

.account_top {
    display: flex;
    margin: 5rem auto;
    align-items: center;
    justify-content: center;
}

.account_top .userinfo {
    padding: 0 2rem;
    border-right: 1px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.account_top .userinfo .name {
    font-size: 2rem;
}

.account_top .userinfo .email {
    color: #666;
    font-size: 1.2rem;
}

.account_top .current_points {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account_top .current_points .left {
    color: #666;
    font-size: 1.2rem;
}

.account_top .current_points .right {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.account_top .current_points .right .points {
    font-size: 2rem;
    padding: 0 0.5rem;
}

.account_top .avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    background-color: #777777;
    background: url(/public/img/SVG/avatar.svg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.datatables {
    display: flex;
}

.income_history,
.tasks_history {
    width: 40rem;
    margin: 2rem auto;
}

.income_history .title,
.tasks_history .title {
    margin: 0.2rem;
}

.income_history table,
.tasks_history table {
    width: 100%;
}

.income_history table td,
.tasks_history table td {
    background-color: #1C1D24;
    padding: 0.5rem;
}

#page_account {
    position: absolute;
    z-index: 1;
    min-height: calc(100% - 6rem);
    left: 0;
    top: 0;
    width: 100%;
    margin: 4rem 0 2rem 0;
    background-color: #0B0F10;
}

#page_foot {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    height: 2rem;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

#foot_nav {
    display: flex;
    align-items: center;
}

#foot_nav div {
    margin-left: 1rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff66;
}

#foot_links {
    display: flex;
    align-items: center;
}

#foot_nav a {
    color: #ffffff66;
}

#foot_links div {
    margin-right: 1rem;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

#foot_links img {
    width: 1rem;
}

#content_left {
    position: fixed;
    height: calc(100% - 6.4rem);
    top: 4.2rem;
    left: 0;
    z-index: 100;
    overflow-y: scroll;
    direction: rtl;
    text-align: left;
    width: 9rem;
}

#content_left * {
    direction: ltr;
}

#content_right {
    position: fixed;
    width: 14rem;
    height: calc(100% - 8rem);
    background-color: #ffffff11;
    top: 4rem;
    right: 0;
    padding: 1rem;
    z-index: 100;
    transition: width 0.3s ease;
    text-shadow: 0 0 1px black;
}

#content_right:hover {
    width: 28rem;
}

#content_right #image_canvas {
    width: 100%;
    height: unset;
}

#content_right:hover #image_canvas {
    height: 100%;
    width: unset;
}

#content_right .select_item,
#content_right #render_points,
#content_right .videobutton a {
    display: none;
}

#content_right .select_name {
    justify-content: center;
    height: 1.2rem;
    overflow: hidden;
}

#content_right:hover .select_item,
#content_right:hover #render_points,
#content_right .select_item.active,
#content_right:hover .select_name_1,
#content_right:hover .videobutton a {
    display: block;
}

#content_right:hover #magnification_sel div {
    display: block;
}

#content_right:hover .select_name {
    justify-content: space-between;
}

#content_center {
    position: absolute;
    width: calc(100% - 18% - 12% - 2rem);
    height: 100%;
    left: 12%;
    top: 0;

}

#upload_image {
    position: relative;
    width: 100%;
    height: 18rem;
    background-color: #000000cc;
    border-radius: 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
}

#upload_image img {
    width: 2rem;
    height: 2rem;
}

#upload_image div {
    margin-top: 0.5rem;
    font-size: 1rem;
}

.line1 {
    height: 1px;
    font-size: 0px;
    width: 100%;
    background-color: #292c35;
    margin: 1rem 0px;
}

#settings {
    overflow: auto;
    height: calc(100% - 18.5rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: none;
    user-select: none;
    -webkit-user-select: none;
    font-size: 0.9rem;

}

#settings .t2 {
    font-size: 1.2rem;
    text-shadow: 0 0 1px black;
}

.setting {
    margin-bottom: 2rem;
}

.setting_text {
    color: #888;
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.setting_text_right {
    color: #fff;
}

.setting_text_right {
    display: flex;
}

.slide_1 {
    margin-top: 1rem;
}

.select {
    margin-top: 1rem;
}

.select_item {
    cursor: pointer;
    font-size: 0.9rem;
}

.select_name,
.switch_name {
    font-size: 1rem;
    color: #8e8f91;
    display: flex;
}



.select_bar {
    display: flex;
    background-color: #272a33;
    border-radius: 0.2rem;
    overflow: hidden;
    width: 100%;
    height: 2rem;
    margin-top: 0.5rem;
}

.select_bar div {
    flex: 1;
    text-align: center;
    line-height: 2rem;
}

.select_bar .active {
    background-color: #01a4f3;
    cursor: default;
}

.switch {
    margin-top: 1rem;
}

.switch_bar {
    display: flex;
}

.switch_button {
    height: 1.2rem;
    width: 3rem;
    border-radius: 0.6rem;
    background-color: #333;
    position: relative;
    cursor: pointer;
    font-size: 0.8rem;
    color: #888;

    line-height: 1.2rem;
    text-align: right;
    padding: 0 0.5rem 0 0;
}

#auto_smooth {
    width: 6.8rem;
    margin-top: 2rem;
}

.switch_button.selected {
    background-color: #01a4f3;
    text-align: left;
    padding: 0 0 0 0.5rem;
    color: #fff;
}


.switch_button.selected.running {
    background: linear-gradient(to right, #01a4f3, #EB6EA5, #01a4f3);
    background-size: 200%;
    animation: hoverIn 0.5s linear 1s infinite alternate;
}

.switch_button div {
    height: calc(1.2rem - 4px);
    margin: 2px;
    border-radius: 0.5rem;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(1.2rem - 4px);
}

.switch_button.selected div {
    right: 0;
    left: unset;
}

.switch_content {
    background-color: #272a33;
    border-radius: 0.2rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.slide_title {
    font-size: 0.8rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.slide_title .loading {
    width: 0.6rem;
    height: 0.6rem;
    margin-left: 0.4rem;
}

.slide {
    margin: 0.5rem;

}

.slide_bar {
    height: 0.5rem;
    margin: 0.3rem 0 0 0.5rem;
    background-color: #4c4e65;
    border-radius: 0.2rem;
    position: relative;
    width: calc(100% - 1rem);
}

.slide_value_bar {
    background: #01a4f3;
    width: 0%;
    height: 100%;
    border-radius: 5px;
}

.slide_value {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    color: #01a4f3;
}

.slide_point {
    width: 1rem;
    height: 1rem;
    border-radius: 0.5rem;
    background-color: #fff;
    position: absolute;
    left: -0.5rem;
    top: -0.25rem;
    color: #01a4f3;
    cursor: pointer;
}

#render {
    margin-top: 1rem;
    position: absolute;
    z-index: 100;
    bottom: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 6rem;
    display: none;
}

#render_point {
    display: flex;
    justify-content: space-around;
    height: 1rem;
    align-items: center;
}

#render_message {
    padding: 0.3rem;
    background-color: #333;
    border-radius: 0.5rem;
    color: #880000;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    display: none;
}

#render_cost,
#render_points {
    font-size: 0.8rem;
    color: #8e8f91;
    display: flex;
    align-items: center;
}

.this_points,
.total_points {
    font-size: 1.2rem;
    color: #fff;
    margin-left: 0.3rem;
    text-shadow: 0 0 1px black;
}

#render_button {
    height: 4rem;
    width: 100%;
    border-radius: 0.5rem;
    background-color: #01a4f3;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    cursor: pointer;
}

#render_button.disabled {
    background-color: #ccc;
    cursor: unset;
}

#positive_prompt,
#nagtive_prompt {
    margin-top: 1rem;
}

#positive_prompt .name,
#nagtive_prompt .name {
    color: #8e8f91;
}

.input_div {
    background-color: #282933;
    display: flex;
    padding: 0.2rem;
    border-radius: 0.2rem;
    justify-content: space-between;
    margin-top: 0.3rem;

}

.input_div .text_input {
    border: 0;
    background-color: #282933;
    width: calc(100% - 1rem);
    color: #fff;
}

.input_div .button_input {
    cursor: pointer;
}

#positive_prompt .prompts,
#nagtive_prompt .prompts {
    display: flex;
    flex-wrap: wrap;
}

.prompts .prompt {
    font-size: 0.8rem;
    padding: 0.3rem 1.2rem 0.3rem 0.5rem;
    border-radius: 0.8rem;
    margin: 0.3rem 0.3rem 0 0;
    cursor: pointer;
    background: url('/public/img/SVG/prompt_close.svg') no-repeat;
    background-color: #01a4f3;
    background-position: center right 0.4rem;
}

#image_canvas {
    display: none;
}

#upfile {
    display: none;
}

#task_list {
    width: 100%;
}

#image_list {
    width: 100%;
}

.date_list {
    margin-bottom: 1rem;
    margin-left: 0.3rem;
    position: relative;
}

.waitingdiv {
    display: flex;
    margin-bottom: 1rem;
    margin-left: 0.3rem;
}

.waitingdiv img {
    width: 3rem;
    height: 3rem;
}

.waitingdiv .waitinginfo {
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.waitingdiv .waitingstatus {
    margin-bottom: 0.3rem;
}

.waitingdiv .waitingnum {
    margin-bottom: 0.3rem;
}

.waitingdiv .waitingbar {
    position: relative;
    width: 100%;
    height: 0.3rem;
    background-color: #1C1D23;
    border-radius: 0.3rem;
    overflow: hidden;
}

.waitingdiv .waitingbar div {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #01a4f3;
    height: 0.3rem;
    border-radius: 0.3rem;
}

.datetext {
    display: flex;
    width: 5rem;
    margin: 0.2rem;
    height: 1rem;
    font-size: 0.8rem;
    cursor: pointer;
    color: #A3A4B4;
    justify-content: space-between;
}

.datetext .delete_date {
    background: url('/public/img/SVG/delete_date.svg') no-repeat;
    width: 1rem;
    height: 1rem;
    background-size: 0.6rem;
    background-position: center;
    border-radius: 0.1rem;
}

.datetext .delete_date:hover {
    background-color: #880000;
}

.datetext .delete_date:hover~.dot,
.datetext .delete_date:hover~.line {
    background-color: #880000;
}

.datetext .text:hover {
    color: #01a4f3;
}

.datetext .download_date {
    background: url('/public/img/SVG/download_date.svg') no-repeat;
    width: 1rem;
    height: 1rem;
    background-size: 0.6rem;
    background-position: center;
    border-radius: 0.1rem;
}

.datetext .download_date:hover {
    background-color: #008800;

}

.datetext .download_date:hover~.dot,
.datetext .download_date:hover~.line {
    background-color: #008800;
}

.datetext .download_date,
.datetext .delete_date {
    display: none;
}

.datetext:hover .download_date,
.datetext:hover .delete_date {
    display: block;
}

.datetext:hover~.dateimages .image {
    width: 5rem;
    height: 5rem;
}

.datetext .text {
    text-shadow: 0 0 1px black;
}

.dateimages .image {
    position: relative;
    width: 6rem;
    height: 6rem;
    transition: width 0.2s ease, height 0.2s ease;
    pointer-events: auto;
    z-index: 1;
}


.datetext:not(:hover)~.dateimages .image:hover {
    width: 5rem;
    height: 5rem;
    z-index: 10;
}

.datetext:not(:hover)~.dateimages .image:hover::after {
    content: '';
    position: absolute;
    top: 5rem;
    left: 0;
    right: -1rem;
    bottom: -1rem;
    pointer-events: auto;
    z-index: 2;
}

.dateimages .image .buttons .download_img {
    background: url('/public/img/SVG/download_img.svg') no-repeat;
    width: 1rem;
    height: 1rem;
    background-size: 0.6rem;
    background-position: center;
    border-radius: 0.1rem;
}

.dateimages .image:hover .button_a,
.dateimages .image:hover .button_b {
    display: flex;
}

.dateimages .border {
    display: none;
    position: absolute;
    z-index: 1;
    width: calc(100% - 0.2rem);
    height: calc(100% - 0.2rem);
    border: 0.1rem solid #01a4f3;
}

.dateimages .border.ab {
    display: block;
    border: 0.1rem solid #01a4f3;
}

.dateimages .border.a {
    display: block;
    border: 0.1rem solid #880000;
}

.dateimages .border.b {
    display: block;
    border: 0.1rem solid #008800;
}

.dateimages .button_a {
    display: none;
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 1.2rem;
    height: 1.2rem;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    background-color: #656882;
    border-radius: 0 0.2rem 0 0;
}

.dateimages .button_a:hover {
    background-color: #880000;
}

.dateimages .button_a.a {
    display: flex;
    background-color: #880000;
}

.dateimages .button_b {
    display: none;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 1.2rem;
    height: 1.2rem;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    background-color: #656882;
    border-radius: 0.2rem 0 0 0;
}

.dateimages .button_b:hover {
    background-color: #008800;
}

.dateimages .button_b.b {
    display: flex;
    background-color: #008800;
}

.dateimages .image .buttons .download_img:hover {
    background-color: #008800;
}

.dateimages .image .buttons .redo_img {
    background: url('/public/img/SVG/redo_img.svg') no-repeat;
    width: 1rem;
    height: 1rem;
    background-size: 0.6rem;
    background-position: center;
    border-radius: 0.1rem;

}

.dateimages .image .buttons .redo_img:hover {
    background-color: #01a4f388;
}

.dateimages .image .buttons .delete_img {
    background: url('/public/img/SVG/delete_img.svg') no-repeat;
    width: 1rem;
    height: 1rem;
    background-size: 0.6rem;
    background-position: center;
    border-radius: 0.1rem;

}

.dateimages .image .buttons .delete_img:hover {
    background-color: #880000;
}

.dateimages .image .buttons {
    display: none;
}



.datetext:not(:hover)~.dateimages .image:hover .buttons {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    right: -1.2rem;
    padding-left: 0.2rem;
    top: 0rem;
    width: 1rem;
    height: 5rem;
}

.datetext .dot {
    position: absolute;
    top: 0.4rem;
    left: -0.2rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 0.3rem;
    background-color: #01a4f3;
}

.datetext .line {
    position: absolute;
    top: 0.5rem;
    left: -0.1rem;
    width: 0.1rem;
    height: calc(100% - 0.5rem);
    background-color: #01a4f3;
    border-radius: 0.1rem;
}

#image_list .image {
    position: relative;
    margin: 0.2rem;
    cursor: pointer;
}


#image_list .image img {
    width: 100%;
    height: 100%;
}

#container {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

#imgdiv {
    position: absolute;
    width: 100%;
    background-color: black;
    left: 0px;
    top: 0px;
    overflow: hidden;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

#d1 {

    z-index: 1;
    width: 100%;
    font-size: 0px;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

#d2 {
    position: absolute;
    z-index: 2;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    font-size: 0px;
    overflow: hidden;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

#editblock {
    position: absolute;
    z-index: 3;
    width: 1880px;
    height: 1880px;
    left: calc(50% - 940px);
    top: calc(50% - 940px);
    border: 0.2rem solid #01a4f3;
    display: none;
}

.editblockcenter {
    width: 2rem;
    height: 2rem;
    position: absolute;
    left: calc(50% - 1.1rem);
    top: calc(50% - 1.1rem);
    border: 0.2rem solid #01a4f3;
    border-radius: 1.1rem;
}

.How_to_use_Edit_Mode {
    background: url('/public/img/SVG/youtube.svg') no-repeat;
    background-color: #00000033;
    background-position: left 1rem center;
    padding: 0.5rem 0.5rem 0.5rem 3rem;
    margin-top: 0.4rem;
    border-radius: 2rem;
}

#setting_editmode {
    display: none;
}

#d1 img {
    image-rendering: pixelated;
    width: 100%;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

#d2 img {
    position: absolute;
    /* image-rendering: pixelated;*/
    width: 100%;
    left: 0px;
    top: 0px;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

#line {
    width: 2px;
    background-color: #ffffff33;
    height: 100%;
    position: fixed;
    z-index: 10;
    left: calc(50% - 1px);
    top: 0px;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    display: none;
    pointer-events: none;
}

#txt {
    position: fixed;
    text-align: center;
    z-index: 1200;
    font-size: 60px;
    color: #fff;
    text-shadow: 0 0 10px green;
    width: 100%;
    top: calc(50% - 20px);
    left: 0px;
    height: 60px;
    display: none;
    user-select: none;
    -webkit-user-select: none;
}

#img_buttons {
    display: none;
    position: absolute;
    bottom: 0.4rem;
    z-index: 1000;
    left: calc(50% - 15rem);
}

.img_button {
    width: 2.4rem;
    height: 2.4rem;
    margin: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #66666666;
    border-radius: 0.4rem;
    color: #000000;
    cursor: pointer;
    font-size: 1rem;
}

#img_zoom_slide {
    width: 12rem;
    height: 2.4rem;
    margin: 0.4rem;
    border-radius: 0.4rem;
    background-color: #66666666;
}

#img_zoom_slide .slide_bar {
    margin: 0 0 0 1.2rem;
    height: 100%;
    position: relative;
    width: calc(100% - 2.4rem);
    background: #66666600;
}

#img_zoom_slide .slide_value_bar {
    background: #66666600;
}

#img_zoom_slide .slide_point {
    width: 2.4rem;
    height: 100%;
    border-radius: 0.4rem;
    background-color: #fff;
    position: absolute;
    left: -1.2rem;
    top: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01a4f3;
}

#img_edit_switch {
    width: 2.8rem;
    height: 2.4rem;
    margin: 0.4rem;
    border-radius: 0.4rem;
    cursor: pointer;
    background-color: #66666666;
    background-position: right 0.3rem center;
    background-blend-mode: color;
    position: relative;
}

#img_edit_switch:hover img {
    filter: brightness(3);
}

#img_edit_switch div {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #01a4f3;
    border-radius: 0.4rem 0 0 0.4rem;
    width: 0.4rem;
    height: 2.4rem;
}

#img_edit_switch.selected div {
    width: 2.4rem;
}

#img_edit_switch img {
    position: absolute;
    z-index: 2;
    right: 0.5rem;
    filter: brightness(0);
    width: 1.6rem;
    height: 1.6rem;
    top: 0.4rem;
}

#img_edit_switch.selected img {
    filter: brightness(3);
}

.share_icon_left {
    width: 2.4rem;
    height: 2.4rem;
    background: url('/public/img/SVG/sharev2_1.svg') no-repeat;
    background-position: center;
}

.share_icon_right {
    width: 2.4rem;
    height: 2.4rem;
    background: url('/public/img/SVG/sharev2_2.svg') no-repeat;
    background-position: center;
}

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

}

.share_button {
    height: 2.4rem;
    margin: 0.4rem;
    display: flex;
    background: linear-gradient(to right, #01a4f3, #EB6EA5, #01a4f3);
    background-size: 200%;
    cursor: pointer;
    border-radius: 0.4rem;
    justify-content: space-between;

}

.share_button:not(:hover) {
    animation: hoverOut 0.5s ease forwards;
}

.share_button:hover {
    animation: hoverIn 0.5s ease forwards;
}

.img_button:hover {
    color: #ffffff;
}

.img_button img {
    width: 60%;
    height: 60%;
    filter: brightness(0);
}

.img_button:hover img {

    filter: brightness(3);
}

.login {
    position: absolute;
    background: #000;
    width: 20rem;
    left: calc(50% - 11rem);
    top: calc(50% - 9rem);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.login .textinput {
    width: calc(100% - 1rem);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 0;
}

.login .bt {
    width: calc(100% - 1rem);
    padding: 0.5rem;
    background-color: #01a4f3;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
}

h1 {
    font-size: 2rem;
}

.privacy {
    margin: 5rem auto;
    width: 60rem;
    line-height: 1.5rem;
}

.privacy li {
    display: block;
    font-size: 1.5rem;
    line-height: 2rem;
}

.sign {
    display: flex;
    width: 20rem;
    margin: 5rem auto;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.sign_google {
    border: 1px solid rgba(102, 102, 102, 1.00);
    border-radius: 0.5rem;
    font-size: 1.5rem;
    width: 15rem;
    height: 4rem;
    line-height: 4rem;
    background-image: url('/public/img/SVG/google.svg');
    background-repeat: no-repeat;
    background-position: 2rem center;
    padding-left: 5rem;
    cursor: pointer;
}

.sign_google:hover {
    border: 1px solid #01a4f3;
}

.subscribe {
    margin: 5rem auto;
    width: 60rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.switch_monthly_yearly {
    display: flex;
}

.switch_monthly {
    border-radius: 1rem 0 0 1rem;
}

.switch_yearly {
    border-radius: 0 1rem 1rem 0;
}

.switch_monthly,
.switch_yearly {
    width: 10rem;
    height: 4rem;
    cursor: pointer;
    background-color: #1C1D24;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
}

.switch_monthly_yearly .selected {
    background-color: #01a4f3;
    cursor: unset;
}

.monthly,
.yearly {
    display: flex;
    align-items: flex-end;
}

.monthly>div,
.yearly>div {
    width: 15rem;
    background-color: #1C1D24;
    margin: 2rem 1rem;
    border-radius: 2rem;
    padding: 1rem;
}

.monthly .text_best,
.yearly .text_best {
    display: none;
}

.monthly .best,
.yearly .best {
    border: 0.1rem solid #01a4f3;
}

.monthly .best .text_best,
.yearly .best .text_best {
    font-size: 1rem;
    text-align: center;
    margin: 0.5rem;
    display: block;
}

.monthly .name,
.yearly .name {
    color: #01a4f3;
    margin: 1rem;
    font-size: 1.5rem;
}

.monthly .text_points,
.yearly .text_points {
    margin: 1rem;
    font-size: 1rem;
}

.text_points .points {
    font-size: 2rem;
    margin-right: 0.5rem;
    font-weight: bold;
}

.button_subscribe {
    background-color: #01a4f3;
    text-align: center;
    padding: 0.8rem;
    margin: 1rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.button_subscribe.disabled {
    background-color: #333;
    cursor: unset;
}

.button_subscribe .price {
    margin-right: 0.5rem;
}

.subscribe .info {
    margin: 2rem 1rem;
}

.subscribe .info .li {
    display: flex;
    margin: 1rem 0;
    align-items: center;
    white-space: pre;
    font-size: 0.8rem;
}

.subscribe .info .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #01a4f3;
    font-size: 0;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
}

.sign_approve {
    display: flex;
    margin: 2rem 0;

}

.sign_approve img {
    margin-right: 1rem;
}

.sign_approve .text {
    color: #B0B0B0;
    font-size: 0.8rem;
}

.sign_approve .text a {
    text-decoration: underline;
}

.subscribe_notice {
    color: #777777;
    margin: 5rem auto;
    width: 60rem;
    text-align: center;
}

.subscribe_notice a {
    color: #01a4f3;
}

.deldateimages,
.zipdateimages {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #ffffff88;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zipdateimages .zipwindow {
    width: 10rem;
    height: 10rem;
    background-color: #000000;
    border-radius: 1rem;
    position: relative;
}

.zipdateimages .zip_top {
    position: absolute;
    z-index: 3;
    left: 2.5rem;
    top: 4.8rem;
    width: 5.5rem;
    height: 5rem;
    background: url('/public/img/SVG/zip_top.svg') no-repeat;
    background-position: center center;
}

.zipdateimages .zip_img {
    position: absolute;
    z-index: 2;
    left: 3.5rem;
    top: 0;
    width: 3rem;
    height: 10rem;
}

@keyframes zipimg {
    0% {
        top: 0rem;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 5.5rem;
        opacity: 0;
    }
}

.zipdateimages .zip_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
    animation: zipimg 0.5s ease-in forwards;
}

.zipdateimages .zip_under {
    position: absolute;
    z-index: 1;
    left: 2.5rem;
    top: 4rem;
    width: 5rem;
    height: 5rem;
    background: url('/public/img/SVG/zip_under.svg') no-repeat;
    background-position: center center;
}

.deldateimages .delwindow {
    width: 32rem;
    background-color: #000000;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}

.deldateimages .delimages {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem;
    max-height: 50rem;
    overflow-y: auto;
}

.deldateimages .delimages img {
    width: 3rem;
    height: 3rem;
}

.deldateimages .buttons {
    display: flex;
    justify-content: center;
    margin: 0 1rem 1rem 1rem;
}

.deldateimages .button_delete {
    width: 10rem;
    height: 2rem;
    display: flex;
    border-radius: 0.5rem;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
    cursor: pointer;
    color: #880000;
}

.deldateimages .button_delete:hover {
    background-color: #880000;
    color: #fff;
}

.deldateimages .button_cancel {
    width: 10rem;
    height: 2rem;
    display: flex;
    border-radius: 0.5rem;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
    cursor: pointer;
    color: #333;
}

.deldateimages .button_cancel:hover {
    background-color: #333;
    color: #fff;
}

.videobutton {
    display: flex;
}

.videobutton a {
    text-decoration: none;
    border: 0;
    margin-left: 0.4rem;
}

.videobutton img {
    height: 0.8rem;
    width: auto;
}

.setting_button {
    background-color: #00000033;
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.4rem;
    cursor: pointer;
    text-align: center;
    margin-top: 0.4rem;
    display: none;
}

.setting_button:hover {
    background-color: #01a4f3;
}

.setting_edit_blocklist {
    display: flex;
    flex-wrap: wrap;
}

.setting_edit_blocklist .newblock {
    width: calc(2rem - 4px);
    height: calc(2rem - 4px);
    margin: 0.4rem;
    border: 2px solid #01a4f3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.setting_edit_blocklist .selected {
    box-shadow: #ffffff 0 0 0.2rem;
}

.setting_edit_blocklist .newblock div {
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #01a4f3;
    border-radius: 0.4rem;
}

.setting_edit_blocklist .setting_edit_img {
    width: calc(2rem - 4px);
    height: calc(2rem - 4px);
    margin: 0.4rem;
    border: 2px solid #01a4f300;
    cursor: pointer;
}

#editimage_canvas {
    position: absolute;
    z-index: 3;
    display: none;
    border: 1px solid #01a4f3;
}

#shareto {
    position: fixed;
    width: 80%;
    left: 10%;
    top: 4rem;
    display: none;
    z-index: 1000;
}

#share_image {
    margin: 1rem 0;
    border: 3px solid #01a4f3;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.share_text {
    position: absolute;
    bottom: 0;
    background-color: #00000066;
    padding: 0.4rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    font-size: 1rem;
}

.share_text .avatar {
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    border-radius: 1rem;
}

.share_text .username {
    margin-left: 0.4rem;
    color: #01a4f3;
}

.share_text .text {
    margin-left: 0.4rem;
    color: #fff;
}

.share_text .like {
    height: 1.5rem;
    margin-left: 1rem;
    padding-left: 1.8rem;
    padding-right: 0.4rem;
    background: url('/public/img/SVG/like_white.svg') no-repeat;
    background-size: 1.5rem;
    background-position: left center;
    display: flex;
    align-items: center;
    color: #aaa;
    cursor: pointer;
}

#shareto .inputs {
    text-align: center;
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
}

#text_input {
    width: 80%;
    height: 1.4rem;
    padding: 0.2rem;
    background: #1C1D24;
    border: 1px solid #01a4f3;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
}

#shareto .checkdiv {
    background-color: #2A2B36;
    padding: 0.2rem;
    border-radius: 0.2rem;
    font-size: 0.8rem;
    margin: 0 0.2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#shareto .checkdiv input {
    margin: 0 0.2rem 0 0;
    width: 0.8rem;
    height: 0.8rem;
}

#shareto .cancel_btn {
    background-color: #333;
    width: 8rem;
    height: 2rem;
    display: flex;
    border-radius: 0.4rem;
    align-items: center;
    justify-content: center;
    margin: 2rem 0.4rem 2rem 0;
    cursor: pointer;
}

#shareto .cancel_btn:hover {
    background-color: #666;
}

.waitinginfo .cancel_btn {
    background-color: #333;
    width: 4rem;
    height: 1.3rem;
    display: flex;
    border-radius: 0.4rem;
    align-items: center;
    justify-content: center;
    margin: 0.2rem 0 0 0;
    cursor: pointer;
    color: #fff;
}

.waitinginfo .cancel_btn:hover {
    background-color: #01a4f3cc;
}

#shareto .Share_btn {

    background-color: #01a4f3cc;
    width: 8rem;
    height: 2rem;
    display: flex;
    border-radius: 0.4rem;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 2rem 0.4rem;
    cursor: pointer;
}

#shareto .Share_btn:hover {
    background-color: #01a4f3;
}

.events {
    display: flex;
    background-color: #00000088;
    border-radius: 1rem;
    padding: 2rem;
}

.events .left {
    width: calc(50% - 1px - 2rem);
    border-right: 1px solid #fff;
    padding-right: 2rem;
}

.events .eventname {
    display: flex;
    margin-bottom: 1rem;
}

.events .like_blue_icon {
    width: 1.2rem;
    height: 1.2rem;
    background: url('/public/img/SVG/like_blue.svg') no-repeat;
    background-position: center;
    background-size: 1.2rem;
    margin: 0 0.2rem;
}

.events .user_icon {
    width: 1.2rem;
    height: 1.2rem;
    background: url('/public/img/SVG/userico.svg') no-repeat;
    background-color: #01a4f3;
    background-position: center;
    background-size: 0.8rem;
    border-radius: 0.6rem;
    margin: 0 0.2rem;
}

.events .point_icon {
    width: 1.2rem;
    height: 1.2rem;
    background: url('/public/img/SVG/point.svg') no-repeat;
    background-color: #01a4f3;
    background-position: center;
    background-size: 0.8rem;
    border-radius: 0.6rem;
    margin: 0 0.2rem;
}

.events .right {
    width: calc(50% - 2rem);
    padding-left: 2rem;
}

.events .eventinfo {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.events .right .checkdiv {
    margin-bottom: 1rem;
}

.Devil_in_the_detail {
    color: #01a4f3;
    font-size: 1.2rem;
    margin-left: 0.2rem;
}

#shareto .msg {
    margin-top: 0.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: red;
    font-size: 0.8rem;
    display: none;
}

#shareto .buttons .progress {
    display: none;
    color: #008800;
    margin: 2rem 0 2rem 0.4rem;
    text-align: center;
    font-size: 1.2rem;
}

#myshare,
#homepage,
#downloads_page {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    height: calc(100% - 6rem);
    overflow-y: auto;
}

#myshare .title {
    margin: 2rem;
    text-align: center;
    font-size: 2rem;
}

#myshare .events {
    width: 60%;
    margin: 0 auto;
    border: 1px solid #01a4f3;
}

#myshare .sharediv {
    position: relative;
    margin-bottom: 1rem;
    font-size: 0;
    opacity: 0;
    transition: all 0.5s ease;

}


#myshare .shareimg_mt {
    z-index: 1;
    width: 100%;
    border-radius: 0.2rem;
}

#myshare .shareimg_pt {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    image-rendering: pixelated;
    z-index: 2;
    border-radius: 0.2rem;
}

#myshare #myshare_list {
    margin: 1rem;
}

#myshare .shareto {
    position: absolute;
    display: flex;
    z-index: 3;
    left: 0.4rem;
    top: 0.4rem;
    font-size: 1rem;
}

#myshare .topright {
    position: absolute;
    display: flex;
    z-index: 3;
    right: 0.4rem;
    top: 0.4rem;
    font-size: 1rem;
}

#myshare::-webkit-scrollbar,
#homepage::-webkit-scrollbar {
    width: 0.4rem;
}

#myshare::-webkit-scrollbar-thumb,
#homepage::-webkit-scrollbar-thumb {
    border-radius: 0.4rem;
}

#myshare .sharetohomepage {
    display: flex;
    background-color: #00000088;
    padding: 0 0.4rem;
    height: 2rem;
    border-radius: 2rem;
    align-items: center;
    margin-right: 0.4rem;
}

#myshare .sharetohomepage .switch_button {
    width: 2rem;
    background-color: #666;
}

#myshare .sharetohomepage .switch_button.selected {
    background-color: #01a4f3;
}

#myshare .sharetoDevil {
    color: #01a4f3;
    font-size: 1.2rem;
    margin-left: 0.2rem;
}

#myshare .sharetoReview {
    color: #FFC300;
    margin-left: 0.2rem;
    font-size: 0.8rem;
}

#myshare .sharetoRejected {
    color: red;
    margin-left: 0.2rem;
    font-size: 0.8rem;
}

.share_text .like.blue {
    background-image: url('/public/img/SVG/like_blue.svg');
    cursor: default;
}

#myshare .sharetoCopyLink {
    display: flex;
    background-color: #00000088;
    padding: 0 0.4rem 0 2.2rem;
    height: 2rem;
    border-radius: 2rem;
    align-items: center;
    margin-right: 0.4rem;
    background-image: url('/public/img/SVG/link.svg');
    background-repeat: no-repeat;
    background-size: 1.4rem;
    background-position: left 0.4rem center;
    font-size: 0.8rem;
    cursor: pointer;
}

#myshare .sharetoDownloadPreview {
    display: flex;
    background-color: #00000088;
    padding: 0 0.4rem 0 2.2rem;
    height: 2rem;
    border-radius: 2rem;
    align-items: center;
    margin-right: 0.4rem;
    background-image: url('/public/img/SVG/downloadimg.svg');
    background-repeat: no-repeat;
    background-size: 1.2rem;
    background-position: left 0.6rem center;
    font-size: 0.8rem;
    cursor: pointer;
}

#myshare .sharetoDel {
    display: flex;
    background-color: #00000088;
    height: 2rem;
    width: 2rem;
    border-radius: 2rem;
    align-items: center;
    margin-right: 0.4rem;
    background-image: url('/public/img/SVG/del_share.svg');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
    font-size: 0;
    cursor: pointer;
}

#myshare .sharetoCopyLink:hover,
#myshare .sharetoDel:hover,
#myshare .sharetoDownloadPreview:hover {
    background-color: #000000;
}

#myshare .shareto {
    height: 2rem;
    display: flex;
    align-items: center;
    background-color: #00000088;
    border-radius: 2rem;
    padding: 0 0.4rem;
}

#myshare .shareto .sharetoico {
    background-image: url('/public/img/SVG/share.svg');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
    height: 2rem;
    width: 2rem;
}

#myshare .shareto .sharetoico_x {
    background-image: url('/public/img/SVG/x_c.svg');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
}

#myshare .shareto .sharetoico_ins {
    background-image: url('/public/img/SVG/ins_c.svg');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
}

#myshare .shareto .sharetoico_p {
    background-image: url('/public/img/SVG/p_c.svg');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
}

#myshare .shareto .sharetoico_f {
    background-image: url('/public/img/SVG/f_c.svg');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
}

#myshare .shareto .sharetoico_line {
    background-image: url('/public/img/SVG/l_c.svg');
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
}

#gallery {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    height: calc(100% - 6rem);
    overflow-y: auto;
}

#gallery .kv {
    position: relative;
    background: radial-gradient(#01a4f3, transparent, transparent);
    background-position: center top -45rem;
    background-repeat: no-repeat;
    background-size: 70rem 70rem;
}

#gallery .kv .top {
    width: 60%;
    margin: 0 auto;
    display: flex;
    padding-top: 2rem;
    flex-direction: column;
    align-items: center;
}

#gallery .kv .right img {
    width: 10rem;
}

#gallery .kv .title {
    margin: 0;
    position: relative;
    height: 4rem;
    width: 50rem;
}

#gallery .kv .title div {
    font-size: 3rem;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

#gallery .kv .title canvas {
    image-rendering: pixelated;
    position: absolute;
    top: 0;
    left: 0;
}

#gallery .kv .title span {
    color: #01a4f3;
}

#gallery .kv .info {
    font-size: 1rem;
}

#gallery .kv .info span {
    color: #01a4f3;
}

#gallery .bottom {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    align-items: center;
}

#gallery .kv .btn1,
#downloads_page .btn1 {
    background: linear-gradient(to right, #01a4f3, #EB6EA5, #01a4f3);
    background-size: 200%;
    display: flex;
    align-items: center;
    border-radius: 2rem;
    margin: 1rem;
    cursor: pointer;
    justify-content: center;
}

#gallery .kv .btn1 div,
#downloads_page .btn1 div {
    padding: 0.7rem 1.8rem 0.7rem 2.8rem;
    background-image: url(/public/img/SVG/youtube.svg);
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1.3rem;
    background-color: #000;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    border-radius: 2rem;
    cursor: pointer;
    margin: 0.1rem;
}

#downloads_page .btn1.download div {
    background-image: url(/public/img/SVG/download_extension.svg)
}

#gallery .kv .btn2 {
    padding: 0.8rem 1rem;
    background: linear-gradient(to right, #01a4f3, #EB6EA5, #01a4f3);
    background-size: 200%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    border-radius: 2rem;
    margin: 1rem;
    cursor: pointer;
}

#gallery .kv .btn2:not(:hover),
#gallery .kv .btn1:not(:hover),
#downloads_page .btn1:not(:hover) {
    animation: hoverOut 0.5s ease forwards;
}

#gallery .kv .btn2:hover,
#gallery .kv .btn1:hover,
#downloads_page .btn1:hover {
    animation: hoverIn 0.5s ease forwards;
}

.homepage_event {
    margin: 1rem;
}

.homepage_event .event_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.homepage_event .event_name {
    color: #01a4f3;
    font-size: 4rem;
    margin: 4rem;
    text-align: center;
}

.homepage_event .event_Sorting {
    display: flex;
    border-radius: 0.2rem;
    overflow: hidden;
}

.homepage_event .event_Sorting div {
    display: flex;
    background-color: #2A2B36;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ccc;
}

.homepage_event .event_Sorting .selected {
    background-color: #fff;
    color: #01a4f3;
    cursor: unset;
}

.homepage_event .sharediv {
    position: relative;
    margin-bottom: 1rem;
    font-size: 0;
    opacity: 0;
    transition: all 0.5s ease;
    cursor: pointer;
    border-radius: 0.2rem;
    overflow: hidden;
}

.homepage_event .imgdiv {
    position: relative;
    width: 100%;
}

.homepage_event .shareimg_pt {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    image-rendering: pixelated;
    z-index: 2;
    border-radius: 0.2rem;
    height: unset;
    -webkit-user-drag: none;
}

.homepage_event .shareimg_p {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    image-rendering: pixelated;
    z-index: 2;
    height: unset;
    -webkit-user-drag: none;
}

.homepage_event .shareimg_mt {
    z-index: 1;
    width: 100%;
    border-radius: 0.2rem;
    position: unset;
    height: unset;
    -webkit-user-drag: none;
}

.homepage_event .shareimg_m {
    z-index: 1;
    width: 100%;
    position: unset;
    height: unset;
    -webkit-user-drag: none;
}

.homepage_event .checkdiv {
    background-color: #2A2B36;
    padding: 0.2rem;
    border-radius: 0.2rem;
    font-size: 0.8rem;
    margin: 0 0.2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.homepage_event .checkdiv input {
    margin: 0 0.2rem 0 0;
    width: 0.8rem;
    height: 0.8rem;
}

.homepage_event .tags {
    display: flex;
}

.homepage_event .event_bar .right {
    display: flex;
    align-items: center;
}

.homepage_event .event_bar .left {
    display: flex;
    align-items: center;
}


.homepage_event .fullview {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}

.homepage_event .fullview img {
    border-radius: 0;
}

.homepage_event .fullview .imgdiv {
    height: 100%;
    position: absolute;
    top: 0;
    width: unset;
}


.homepage_event .fullview .share_text {
    bottom: unset;
    top: 4rem;
    z-index: 1001;
}

#homepage_buttons {
    display: none;
    position: fixed;
    bottom: 2.4rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#homepage_img_loading {
    width: 12rem;
    height: 2.4rem;
    margin: 0.4rem;
    border-radius: 0.4rem;
    background-color: #66666666;
    position: relative;
    overflow: hidden;
}

#homepage_img_loading .loading_text {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#homepage_img_loading .loading_value_bar {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: #01a4f3;
}

#gallery #line {
    z-index: 1000;
}

.reviewdiv {
    position: fixed;
    right: 1rem;
    bottom: 3rem;
    width: 10rem;
    height: 6rem;
    background-color: #66666666;
    border-radius: 1rem;
    display: none;
    z-index: 2000;
    padding: 1rem;
}

.reviewdiv .checkdiv {
    margin: 0.4rem;
}

.reviewdiv .checkdiv:hover {
    background-color: #666;
}

.reviewdiv .submit_review {
    margin: 0.4rem;
    background-color: #333;
    padding: 0.4rem;
    text-align: center;
    border-radius: 2rem;
    cursor: pointer;
}

.reviewdiv .submit_review:hover {
    background-color: #01a4f3;
}

#gallery #share_list {
    display: flex;
    flex-direction: column;
}

.sharediv.fromlink {
    box-shadow: 0 0 0.6rem #01a4f3;

}

.hline {
    width: 100%;
    height: 2px;
    background-color: #ffffff66;
    position: absolute;
    z-index: 10;
    left: 0;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    display: none;
    pointer-events: none;
    display: none;
}

#downloads_page h1 {
    font-size: 2.5rem;
    text-align: center;
    margin: 2rem 0 0 0;
}

#downloads_page h2 {
    font-size: 0.9rem;
    text-align: center;
    margin: 0.4rem 0 0 0;
}

#downloads_page .buttons {
    display: flex;
    margin: 1rem auto;
    justify-content: center;
}

#downloads_page .sites {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#downloads_page .sites div {
    width: 20rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-size: 1.2rem auto;
    background-position: left 0.5rem center;
    border: solid 1px #888;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.4rem;
}

#downloads_page .sites div:hover {
    background-color: #ffffff33;
}

.info_div {
    position: fixed;
    z-index: 2;
    left: 7rem;
    bottom: 4rem;
    font-size: 13px;
    text-shadow: 0 0 2px #000000;
    display: none;
}

.info_button {
    position: fixed;
    z-index: 102;
    font-size: 1rem;
    bottom: 2.4rem;
    left: 7rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 1rem;
    background-color: #00000033;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.info_button.selected {
    background-color: #ffffff88;
    color: #00000088;
}

#magnification_sel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

#magnification_sel span {
    color: #ffffffcc;
}

#magnification_sel div {
    background-color: #01a4f3;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    flex: 1;
    height: 1.5rem;
    line-height: 1.5rem;
    cursor: pointer;
    font-weight: normal;
    display: none;
}

#magnification_sel .more {
    background-color: #aaa;
}

#magnification_sel div:hover span {
    color: #fff;
}

#magnification_sel .select {
    background-color: #fff;
    color: #01a4f3;
    margin: 0;
    cursor: default;
    height: 2rem;
    line-height: 2rem;
    border-radius: 0.2rem;
    display: block;
}

#magnification_sel .select:hover span {
    color: #01a4f3;
}

#magnification_sel .select span {
    color: #01a4f3;
}

#Fidelity_Clear_slide {
    margin-top: 1rem;
}

.firsttag {
    position: absolute;
    left: -17rem;
    width: 15rem;
    height: auto;
    background-color: #01a4f3;
    color: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem;
    align-items: center;
    display: none;
}

.firsttag.display {
    display: flex;
}

.firsttag .num {
    font-size: 2rem;
    padding: 0.5rem 1rem;
}

.firsttag.step1 {
    top: 2rem;
}

.firsttag.step2 {
    top: 23.6rem;
}

.firsttag.step3 {
    top: 27.4rem;
}

.firsttag.step4 {
    top: 30.2rem;
}

.firsttag.step5 {
    bottom: 1rem;
}

.firsttag .triangle_right {
    background-image: url(/public/img/SVG/triangle_right.svg);
    background-repeat: no-repeat;
    background-position: left center;
    position: absolute;
    right: -0.8rem;
    width: 1rem;
    height: 1.2rem;
    top: 1rem;
}

.contact_page {
    margin: 8rem;
}

.contact_page .logo {
    height: 10rem;
    background-image: url(/public/img/SVG/logo.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contact_page .t1 {
    margin-top: 2rem;
    color: #01a4f3;
    font-size: 1.5rem;
    text-align: center;
}

.contact_page .t2 {
    margin-top: 0.2rem;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.contact_page .t3 {
    width: 40rem;
    margin: 1rem auto;
    color: #aaa;
    font-size: 1rem;
    text-align: center;
}

.contact_page .contact {
    height: 7rem;
    margin-top: 4rem;
    background-color: rgba(28, 29, 36, 1);
    padding: 2rem;
}

.contact_page .contact .t4 {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
}

.contact_page .contact .t5 {
    text-align: center;
    color: #aaa;
    font-size: 1rem;
    width: 30rem;
    margin: 1rem auto;
}

.contact_page .contact a {
    color: #01a4f3;
}
.free_points{
    background-color: #01a4f3;
    border-radius: 0.5rem;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    margin: 0 2rem;
    padding: 0.5rem;
    text-align: center;
    display: none;
}
.free_points_waiting{
    background-color: #333;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
    margin: 0 2rem;
    padding: 0.5rem;
    text-align: center;
    display: none;
}