
body {
    margin: 0px;
    background-color: rgba(245, 245, 245, 1.0);

    color: #212121;
    font: normal normal 15px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
    font-weight: 500;
}

/* Scroll bar */
/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}


a {
    color: #0077cc;
    text-decoration: none;
}
    a:hover {
        color: #00a1e8;
    }
h5 {
    border-radius: 5px 5px 0 0;
    padding: 5px 5px;
    background-color: #323841;
    margin: 0 0 1px 0;
}
    h5 a {
        color: white;
    }
.heading-size-normal h2 {
    font-size: 1em;
}
.heading-size-normal h3 {
    font-size: 1em;
}
.heading-size-normal h4 {
    font-size: 1em;
}
.heading-size-normal h5 {
    font-size: 1em;
}

.limit-txt-lines2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.limit-txt-lines3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.limit-txt-lines5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.limit-txt-lines10 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}
.ps-field-icon {
    float: right;
    margin-left: -25px;
    margin-top: 5px;
    position: relative;
    z-index: 2;
}
.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.display-none {
    display: none;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.clear-both {
    clear: both;
}
.text-red {
    color: red;
}
.text-green {
    color: green;
}
.container-content-inner {
    border-radius: 4px;
    border: 1px solid #ddd;
}
.lr_heading-06 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 14px;
    //color: #8fc320;
    color: black;
    border-bottom: 1px solid #eee;
}
.dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.close {
    cursor: pointer;
    position: absolute;
    top: 10%;
    right: 0%;
    padding: 12px 16px;
    font-size: 2em;
    transform: translate(0%, -50%);
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    padding: 0;
    text-align: center;
    list-style: none;
}
    .pager:before {
        display: table;
        content: " ";
    }
    .pager:after {
        clear: both;
    }
    .pager li {
        display: inline;
    }
    .pager a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 5px 14px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 50%;
        color: #777;
        width: 35px;
        height: 35px;
    }
        .pager a:hover {
            background-color: #323841;
            color: white;
        }
        .pager .current-page {
            background-color: #323841;
            color: white;
        }
        .pager .dots {
            background: none;
            border: none;
            pointer-events: none;
        }

.pc {
    display: block;
}
.mobile {
    display: none;
}
.mobile800 {
    display: none;
}

.popup-area {
    position: absolute;
    top: 20%;
    left: calc(50% - 350px);
    background-color: white;
    border-radius: 5px;
    width: 700px;
    padding: 1%;
}

.hover10 {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.hover10::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: black;
  transition: all 0.3s ease 0s;
}
.hover10:hover {
  cursor: pointer;
}
.hover10:hover::after {
  width: 100%;
}

@media only screen and (max-width: 1000px) {
.pc {
    display: none;
}
.mobile {
    display: block;
}
}
@media only screen and (max-width: 800px) {
.pc {
    display: none;
}
.mobile800 {
    display: block;
}
.popup-area {
    position: absolute;
    top: 20%;
    left: 5%;
    background-color: white;
    border-radius: 5px;
    width: 90%;
}

.pager {}
    .pager a {
        padding: 5px;
        width: 25px;
        height: 25px;
    }
}

/* Menu */
.menu-header {
    position: sticky;
    top: 0;
    background-color: #e9eaed;
    width: 100%;
    height: 65px;
    z-index: 50;
}
    .header-logo {
        position: absolute;
        top: 6px;
        left: 30px;
    }
        .header-logo a {
            float: left;
            text-decoration: none;
            color: black;
        }
        .header-logo img {
            //width: 190px;
            height: 65px;
        }
    .header-search {
        position: absolute;
        top: 25px;
        //left: calc(50% - 250px);
        //max-width: 500px;
        width: 45%;

        max-width: 300px;
        right: 100px;
    }
        .header-search input {
            outline: none;
            border: 1px solid black;
            border-right: none;
            border-radius: 2px 0 0 2px;
            //background-color: #4c4c4c;
            background-color: white;
            padding: 0 10px 0 10px;
            width: 80%;
            height: 30px;
            color: white;
        }
        .header-search button {
            border: 1px solid black;
            border-radius: 0 2px 2px 0;
            //background-color: #4c4c4c;
            background-color: white;
            height: 30px;
            margin-left: -5px;
            width: 15%;
            padding: 0 20px 0 20px;
            cursor: pointer;
        }
    .header-menu {
        position: absolute;
        right: 3%;
        top: 13px;
        color: white;
        font-size: 80%;
    }
        .header-menu a {
            text-decoration: none;
        }
        .login-btn {
            border: 1px solid black;
            border-radius: 5px;
            background-color: #d5abfb;
            padding: 0 20px 0 20px;
            color: black;
            margin-bottom: 5px;
            margin-left: 7px;
            height: 25px;
        }
            .login-btn:hover {
                background-color: #c688ff;
            }
        .signup-btn {
            border: 1px solid black;
            border-radius: 5px;
            background-color: #f35b5b;
            padding: 0 20px 0 20px;
            color: white;
            margin-bottom: 5px;
            margin-left: 7px;
            height: 25px;
        }
            .signup-btn:hover {
                background-color: #fd2323;
            }
.menu {
    display: block;
    position: sticky;
    top: 65px;
    width: 100%;
    margin-bottom: 5%;
    z-index: 50;
}
    .menu-item1 {
        float: left;
        padding: 22px 0 25px 0;
        width: 100px;
        text-align: center;
        color: black;
    }
        .menu-item1:hover {
            background-color: #e2e2e2;
        }
        .menu-item1 a {
            display: block;
        }
    .menu-item {
        float: left;
        border-right: 1px solid black;
        background-color: rgb(198 136 255);
        width: calc(100% / 5);
        text-align: center;
        padding: 10px;
    }
        .menu-item a {
            display:block;
            color: black;
        }
.user-pic {
    width: 50px;
    height: 50px;
    cursor: pointer;
    color: black;
}
    .user-pic div {
        border-radius: 50%;
        width: 100%;
        height: 100%;
        background-size: cover;
    }
.user-control {
    position: absolute;
    right: 100px;
    top: 30px;
    border: 1px solid gray;
    background-color: white;
    width: 250px;
    height: auto;
    padding: 0 0 0 0;
    z-index: 60;
}
    .user-control a {
        display: block;
        margin: 0 5% 0 5%;
    }
    .user-control hr {
        margin: 0;
    }
    .user-control-opt {
        width: 100%;
        padding: 10px 0 10px 0;
        cursor: pointer;
        margin: 0;
    }
    .user-control-opt:hover {
        background-color: rgba(240, 240, 240, 1.0);
    }
.notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 10px;
    width: 10px;
    background-color: red;
    border-radius: 50%;
}
.notification-icon {
    position: absolute;
    left: 0;
    top: 14px;
    font-size: 1.6em;
    cursor: pointer;
}
    .notification-icon i {
        color: #5b626d;
    }
    .notification-icon i:hover {
        color: #323841;
    }
.notification {
    position: absolute;
    right: 120px;
    top: 30px;
    border: 1px solid gray;
    background-color: white;
    width: 300px;
    height: 400px;
    padding: 0 0 0 0;
    z-index: 60;
}
    .notification-header {
        width: 100%;
        height: 50px;
        text-align: center;
        padding: 3%;
        border-bottom: 1px solid black;
    }
        .notification-header:hover {
            background-color: rgba(240, 240, 240, 1.0);
        }
    .notification-list {
        overflow-y: scroll;
        width: 100%;
        height: calc(100% - 51px);
    }
    .notified-message {
        position: relative;
        width: 94%;
        padding: 3%;
        margin: 5px 3% 5px 3%;
        cursor: pointer;
        background-color: #e9eaed;
        border: 1px solid black;
        border-radius: 5px;
    }
        .notified-message:hover {
            background-color: rgba(240, 240, 240, 1.0);
        }
        .notified-message p {
            margin: 0;
        }
.HighlightLabel {
    color: #0077cc;
    background-color: #F6F8FB;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 500;
    height: 1.28571rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28571rem 0.57143rem;
    font-style: normal;
    border-radius: 0.85714rem;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 200ms ease-in-out;
    white-space: nowrap;
}
@media only screen and (max-width: 1000px) {
.menu-header {
    position: sticky;
    background-color: #e9eaed;
    top: 0;
    width: 100%;
    height: 65px;
    padding-bottom: 1%;
    z-index: 50;
}
    .header-logo {
        position: absolute;
        top: 3px;
        left: calc(50% - 95px);
    }
        .header-logo img {
        }
.menu-button {
    position: absolute;
    top: 27px;
    left: 10px;
    cursor: pointer;
    color: black;
}
.menu-search {
    position: absolute;
    top: 27px;
    left: 45px;
    cursor: pointer;
    color: black;
    font-size: 1.2em;
}/*
.menu {
    display: none;
    position: sticky;
    top: 65px;
    width: 100%;
    z-index: 50;
}
    .menu-item1 {
        float: none;
        width: 100%;
        border: none;
        // border-bottom: 1px solid black;
        border-bottom: 1px solid white;
        //background-color: #e9eaed;
        padding: 15px;
    }
        .menu-item1:hover {
            // background-color: #e2e2e2;
        }
        .menu-item1 a {
            // color: black;
            color: white;
        }

    .menu-item {
        float:none;
        width: 100%;
        border: none;
        border-bottom: 1px solid black;
        padding: 15px;
    }
        .menu-item a {
            display:block;
            color: black;
        }*/
.mobile-menu {
    display: block;
    position: sticky;
    top: 0px;
    width: 0%;
    height: 100vh;
    background-color: white;
    // opacity: 0.8;
    text-align: center;
    transition: all 0.3s ease-in-out;
    overflow-y: scroll;
}
    .mobile-menu::-webkit-scrollbar {
        width: 0;
        background: transparent;
    }
    .mobile-menu-item {
        float: none;
        width: 100%;
        border: none;
    }
        .mobile-menu-item a {
            display: block;
            padding: 30px;
            color: black;
            white-space: nowrap;
        }
}

/* Shared */
.content-area {
    padding: 0 2% 0 2%;
    background-color: rgba(245, 245, 245, 1.0);
    word-wrap: break-word;
}
.site-navigation {
    margin-bottom: 3%;
}
.top-market-list {

}
    .top-market-list table {
        background-color: white;
        width: 100%;
    }
    .top-market-list table th, td {
        text-align: right;
        vertical-align: middle;
    }
    .top-market-list img {
        width: 30px;
        margin-top: 5px;
        margin-left: 10px;
    }
    .sticky-elm {
        position: ;
    }
.top-market-list-row {
    height: 70px;
}
@media only screen and (max-width: 1000px) {
.top-market-list {
    overflow-x: scroll;
}
    .sticky-elm {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        z-index: 30;
        background-color: white;
    }
}


/* footer */
.footer {
    background-color: white;
    width: 100%;
    padding: 1%;
}
.footer-div {
    width: 100%;
    text-align: center;
    color: black;
}
.footer-links {
    margin: 10px;
}
    .footer-links a {
        display: inline-block;
        text-decoration: none;
        color: black;
    }

/* cookie_agreement.html */
.cookie_agreement {
    position: sticky;
    bottom: 0;
    background-color: yellow;
    padding: 1% 3% 1% 3%;
    width: 100%;
    z-index: 40;
}
    .cookie_agreement p {
        width: 90%;
    }
    .cookie_agreement button {
        float: right;
        border: 1px solid #5a5a5a;
        border-radius: 5px;
        background-color: white;
        padding: 0 20px 0 20px;
        margin: 0 5px 0 5px;
        color: #5a5a5a;
        margin-bottom: 5px;
    }
        .cookie_agreement button:hover {
            background-color: rgba(240, 240, 240, 1.0);
        }


/* index.html */
.first-visit-pr {
    position: absolute;
    top: 17%;
    left: 15%;
    background-color: white;
    width: 70%;
    padding: 1% 5% 5% 5%;
}
.index-top {
    width: 100%;
    //height: 70vh;
    margin-top: -5%;
}
    .index-top-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        text-align: center;
        padding: 10% 1% 10% 1%;
    }
        /*.index-top h1 {
            font-weight: bold;
            color: white;
        }*/
        .index-top h1 {
            color: white;
            font-weight: bold;
            text-align: center;
            text-shadow: 0 0 3px black;
            padding: 0 20% 0 20%;
        }
        .index-top p {
            color: white;
        }
        .index-top img {
            width: 300px;
            margin: 1%;
        }
        .index-top ul {
            display: block;
            padding: 0;
            list-style-type: disc;
            margin-block-start: 1em;
            margin-block-end: 1em;
            margin-inline-start: 0px;
            margin-inline-end: 0px;
        }
        .index-top li {
            display: inline;
        }

.left-contents {
    float: left;
    border-radius: 5px;
    width: 65%;
    height: auto;
    padding: 1% 2% 1% 2%;
}
.sidebar {
    float: left;
    border-radius: 5px;
    width: 35%;
    max-width: 400px;
    height: auto;
    padding-top: 1%;
}
    .sidebar h3 {
        margin-top: 0;
    }
    .sidebar-widget {
        margin-bottom: 5%;
    }
.widget {
    margin-bottom: 3%;
}
.article-card-left {
    float: left;
    width: 48%;
    height: 400px;
    background-color: white;
    margin: 0 2% 4% 0;
    cursor: pointer;
}
    .article-card-left:hover {
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
    }
.article-card-right {
    float: left;
    width: 48%;
    height: 400px;
    background-color: white;
    margin: 0 0 4% 2%;
    cursor: pointer;
}
    .article-card-right:hover {
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
    }
.article-image-l {
    background-color: gray;
    width: 100%;
    height: 60%;
}
.article-title-l {
    padding: 0 10px 0 10px;
    font-weight: bold;
    font-size: 1.2em;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}
.article-user-l {
    padding: 0;
    color: rgba(100, 100, 100, 1.0);
}
.article-date-l {
    padding: 0 10px 0 5px;
    font-size: 0.8em;
    color: rgba(100, 100, 100, 1.0);
}
.article-content-l {
    padding: 0 10px 0 10px;
    color: rgba(100, 100, 100, 1.0);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media only screen and (max-width: 1000px) {
.left-contents {
    border-radius: 5px;
    width: 100%;
    height: auto;
    padding: 1% 2% 1% 2%;
}
.sidebar {
    border-radius: 5px;
    width: 100%;
    max-width: 1000px;
    height: auto;
    padding: 1% 2% 1% 2%;
}
.article-card-left {
    width: 100%;
    height: 500px;
    background-color: white;
    margin: 0 0 4% 0;
    cursor: pointer;
}
.article-card-right {
    width: 100%;
    height: 500px;
    background-color: white;
    margin: 0 0 4% 0;
    cursor: pointer;
}
.article-content-l {
    padding: 0 10px 0 10px;
    color: rgba(100, 100, 100, 1.0);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
}

/* about.html */
.content-area-about {
    width: 100%;
    padding: 3% 0 3% 0;
}
.company-vision {
    text-align: center;
    margin: 2% 0 5% 0;
    font-size: 1.2em;
    width: 70%;
    max-width: 470px;
}
.mod-table1 {
    display: none;
    width: 100%;
}
    .mod-table1 th {
        border-bottom: 1px solid #cccccc;
        width: 25%;
        text-align: left;
    }
    .mod-table1 td {
        border-bottom: 1px solid #cccccc;
        width: 75%;
        text-align: left;
    }
@media only screen and (max-width: 1000px) {
.content-area-about {
    width: 100%;
    padding: 3% 0 3% 0;
}
.about-feature {
    padding: 3%;
    text-shadow: 0 0 3px black;
    color: white;
    font-weight: bold;
    background-size: cover;
    height: 300px;
}
}


/* support page */
.support-category-block {
    display: inline-block;
    border: 1px solid #ceb1b5;
    border-radius: 25px;
    margin: 20px 5px 30px 5px;
    width: 300px;
    font-size: 1.2em;
    cursor: pointer;
}
    .support-category-block:hover {
        background-color: #ceb1b5;
    }
    .support-category-block a {
        display: block;
        color: black;
    }
.support-category-list {
    list-style: none;
}
    .support-category-list li {
        display: block;
        margin-bottom: 3px;
    }
    .support-category-list i {
        color: #ceb1b5;
        margin-right: 10px;
    }
.sub-nav {
    margin: 10px 0 30px 0;
}
    .sub-nav li {
        display: inline;
    }
    .sub-nav li + li::before {
        content: ">";
        margin: 0 8px 0 4px;
    }

/* search.html */
.search-input {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1% 2% 1% 2%;
    text-align: center;
}
    .search-input input {
        border: 1px solid gray;
        border-radius: 100px;
        outline: none;
        padding: 0 35px 0 10px;
        width: 100%;
        max-width: 700px;
        height: 32px;
    }
        .search-input input:hover {
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
        }
    .search-input button {
        position: absolute;
        right: 5px;
        border: none;
        background-color: transparent;
        width: 32px;
        height: 32px;
    }
.article-card-frat {
    width: 100%;
    height: 160px;
    background-color: white;
    margin: 0 2% 4% 0;
    cursor: pointer;
}
.article-image-flat {
    float: left;
    background-color: black;
    width: 30%;
    height: 100%;
}
.article-title-flat {
    padding: 0 10px 0 10px;
    font-weight: bold;
    font-size: 1.2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.article-date-flat {
    position: absolute;
    bottom: 10px;
    padding: 0 10px 0 10px;
    font-size: 0.8em;
    color: rgba(100, 100, 100, 1.0);
}


/* user page */
.user-info-container {
    background-color: white;
    padding: 3% 10% 0 10%;
    margin: 0 -2% 2% -2%;
}
.user-info {
    width: 98%;
    max-width: 800px;
}
.user-info-content {
    width: calc(100% - 350px);
}
.follow-followers {
    margin-top: 10px;
}
    .follow-followers a {
        cursor: pointer;
    }
.post-btn {
    border: 1px solid #5a5a5a;
    border-radius: 5px;
    background-color: white;
    padding: 0 20px 0 20px;
    color: #5a5a5a;
    margin-bottom: 5px;
}
    .post-btn:hover {
        background-color: rgba(240, 240, 240, 1.0);
    }
.follow-btn {
    border: 1px solid #0077cc;
    border-radius: 100px;
    background-color: white;
    color: #0077cc;
}
    .follow-btn:hover {
        border: 1px solid #00a1e8;
        color: #00a1e8;
    }
.user-tab-list {
    border-top: 1px solid #e6e6e6;
    width: 98%;
    max-width: 800px;
    text-align: left;
    padding: 10px 0 0 0;
    margin: 20px 0;
    height: 50px;
}
    .user-tab-list .active {
        border-bottom: 2px solid #222;
    }
    .user-tab {
        display: inline-block;
        padding: 3px 10px 0 10px;
        margin-right: -4px;
        width: 120px;
        height: 40px;
        color: gray;
        cursor: pointer;
        text-align: center;
    }
    .user-tab:hover {
        border-bottom: 2px solid #222;
    }
.user-post {
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    background-color: white;
    width: 98%;
    max-width: 600px;
    height: auto;
    margin-bottom: 30px;
    padding-bottom: 1%;
}
    .user-post-data {
        padding: 1%;
        text-align: left;
        color: #505050;
    }
    .user-post-pic {
        background-color: black;
        width: 100%;
        height: 300px;
        background-size: cover;
    }
    .user-post-title {
        padding: 3% 3% 0 3%;
        color: black;
        text-align: left;
        font-weight: bold;
        font-size: 1.8em;
    }
    .user-post-content {
        padding: 3% 3% 0 3%;
        text-align: left;
        color: #505050;
    }
.follow_list {
    border: 1px solid #e6e6e6;
    background-color: white;
    width: 98%;
    max-width: 600px;
    padding: 10px;
    color: black;
}
    .follow_list:hover {
        background-color: rgba(240, 240, 240, 1.0);
    }
@media only screen and (max-width: 1000px) {
.user-info-container {
    background-color: white;
    padding: 3% 1% 0 1%;
    margin: 0 -2% 2% -2%;
}
.user-info-content {
    width: calc(100% - 190px);
}
}


/* user_account.html */
.available-point-title {
    font-size: 18px;
    font-weight: 700;
    vertical-align: -5px;
}
.available-point-number {
    font-size: 28px;
    vertical-align: middle;
    color: #bfa30b;
}
.available-point-unit {
    font-size: 14px;
    vertical-align: -5px;
}
.bl_points-payment-methods {

}
    .bl_points-payment-methods .methods-list {
        margin: 20px 0;
    }
    .bl_points-payment-methods .methods-list .method-item {
        border-top: 1px dashed #d6d6d6;
        padding: 16px 0;
        display: table;
        width: 100%;
    }
    .bl_points-payment-methods .methods-list .item-unit.name {
        font-size: 14px;
        font-weight: 700;
        margin-right: 10px;
    }
    .bl_points-payment-methods .methods-list .item-unit.button {
        text-align: right;
        width: 200px;
        margin-left: auto;
    }
.credit-card-payment-form {

}
    .credit-card-payment-form div {
        margin: 5px;
    }
    .credit-card-payment-form label {
        width: 140px;
    }
    .credit-card-payment-form #id_security_code {
        width: 60px;
    }
.crypto-deposit {
    border-bottom: 1px solid rgb(233, 234, 235);
    width: 96%;
    padding: 10px;
    margin: 0 2% 0 2%;
}
    .cd-hover:hover {
        background-color: rgb(233, 234, 235);
    }
    .crypto-deposit img {
        width: 25px;
        margin-right: 10px;
    }
    .crypto-deposit .crypto-asset-name {
        float: left;
        width: 35%;
        text-align: left;
        margin-bottom: 10px;
    }
    .crypto-deposit .crypto-network-tag {
        font-size: 80%;
        color: gray;
    }
    .crypto-deposit .crypto-asset-balance {
        float: left;
        width: 35%;
        text-align: right;
        padding-right: 20px;
        margin-bottom: 10px;
    }
    .crypto-deposit .crypto-asset-deposit {
        float: left;
        width: 15%;
        text-align: right;
    }
    .crypto-deposit .crypto-asset-convert {
        float: left;
        width: 15%;
        text-align: right;
    }
.wallet-address {
    float: left;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    width: 87%;
    height: 30px;
}
.wallet-address-copy {
    float: right;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 0;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    text-align: center;
    cursor: pointer;
}
.wallet-withdraw {
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    width: 80%;
    height: 30px;
}
.wallet-withdraw-max {
    margin-left: -70px;
    margin-top: 5px;
    position: relative;
    cursor: pointer;
    z-index: 2;
}
.withdraw-convertor {
    width: 90%;
    margin: 20px 0 0 5%;
}
@media only screen and (max-width: 800px) {
    .crypto-deposit .crypto-asset-name {
        float: left;
        width: 40%;
        text-align: left;
        margin-bottom: 10px;
    }
    .crypto-deposit .crypto-asset-balance {
        float: left;
        width: 60%;
        text-align: right;
        margin-bottom: 10px;
    }
    .crypto-deposit .crypto-asset-deposit {
        width: 50%;
        text-align: center;
    }
    .crypto-deposit .crypto-asset-convert {
        float: left;
        width: 50%;
        text-align: center;
    }
.wallet-address {
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    width: 100%;
    height: auto;
}
.wallet-address-copy {
    float: right;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 0;
    width: 30px;
    height: 30px;
    margin: 5px 5px;
    text-align: center;
    cursor: pointer;
}
.withdraw-convertor {
    width: 100%;
    margin: 20px 0 0 0;
}
}


/* edit_content.html */
.add-content-btn {
    border: 1px solid rgba(240, 240, 240, 1.0);
    border-radius: 50%;
    background-color: rgba(250, 250, 250, 1.0);
    width: 50px;
    height: 50px;
    margin: 5px;
}
    .add-content-btn:hover {
        border: 1px solid rgba(230, 230, 230, 1.0);
        background-color: rgba(240, 240, 240, 1.0);
    }

.post-form {
    width: 80%;
}
    .post-form button {
            border: 1px solid black;
            border-radius: 5px;
            margin: 5px;
        }
    .post-form label {
        float: left;
        padding: 4px 10px 0 0;
        width: 100px;
        text-align: left;
        font-weight: bold;
    }
    .input-block-top {
        border-top: 1px solid #eee;
        width: 98%;
        max-width: 800px;
        padding: 20px 0 20px 0;
        margin-top: 20px;
    }
    .input-block {
        border-bottom: 1px solid #eee;
        width: 100%;
        padding: 20px 0 20px 0;
    }
        .input-block div {
            margin-top: 5px;
        }
    .created-date {
        float: left;
        margin-left: 20px;
    }
    .image-selection {
        position: absolute;
        top: 17%;
        left: calc(10% + 50px);
        background-color: rgb(220, 220, 220);
        border-radius: 5px;
        width: 80%;
        padding: 10px 0 10px 10px;
        z-index: 10;
    }
        .image-detail {
            float: left;
            width: 35%;
            height: 50%;
            border-right: 1px solid rgba(0, 0, 0, 0.25);
        }
        .list-images {
            float: left;
            width: 65%;
            height: 50%;
            padding: 1% 2% 2% 2%;
            overflow-y: scroll;
        }
        .list-images img {
            float: left;
            width: 70px;
            height: 70px;
            margin: 10px;
            cursor: pointer;
        }
    .submit-form {
        border-radius: 5px;
        background-color: #f8f8f8;
        width: 100%;
        margin: 10px 0 0 0;
        padding: 20px 10px 20px 10px;
    }


.writing-sheet-placeholder:empty:before{
    content: attr(placeholder);
    pointer-events: none;
    display: block; /* For Firefox */
    color: #ababab;
}
.writing-sheet {
    width: 60%;
    text-align: left;
}
    .writing-sheet .input-title {
        display: block;
        outline: none;
    }
    .writing-sheet .input-p {
        display: block;
        outline: none;
        margin: 50px 0;
    }
    .add-paragraph {
        display: flex;
        border: 1px solid #ababab;
        border-radius: 100px;
        width: 30px;
        height: 30px;
        font-size: 30px;
        justify-content: center;
        align-items: center;
        font-weight: lighter;
        color: #ababab;
        cursor: pointer;
        margin-left: -40px;
        padding: 1px 1px 0 0;
    }
        .add-paragraph:hover {
            border: 1px solid gray;
            color: gray;
        }

    .input-h1 {
        font-size: 2.5em;
    }
    .input-url {
        width: calc(100% - 120px);
        text-align: left;
    }
        .input-url input {
            width: 60%;
        }
    .input-image {
        display: none;
        cursor: pointer;
    }

/* media.html */
.one-media {
    float: left;
    margin: 1% 1% 10% 1%;
    width: 200px;
    height: 210px;
}
    .one-media div {
        width: 200px;
        height: 200px;
        cursor: pointer;
        background-size: cover;
    }
    .one-media p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        -webkit-box-orient: vertical;
    }
.show-image {
    position: absolute;
    top: 17%;
    left: 10%;
    background-color: white;
    width: 80%;
    padding: 1% 5% 5% 5%;
}
    .show-image img {
        border: 1px solid gray;
        max-width: 100%;
        max-height: 50vh;
    }
    .show-image p {
        margin: 0;
        text-align: left;
    }
    .show-image .image-link-copy {
        float: left;
        border: 1px solid black;
        border-radius: 5px;
        padding: 5px 0;
        width: 30px;
        height: 30px;
        margin: 10px 5px;
        text-align: center;
        cursor: pointer;
    }
        .show-image .image-link-copy:active {
            background-color: #323841;
            color: white;
        }

.media-path {
    width: 100%;
    padding: 20px 10px 10px 10px;
    font-size: 1.2em;
}
.media-directory-list {
    float: left;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: calc(35% - 20px);
    height: auto;
    padding: 1% 2% 1% 2%;
    margin-right: 10px;
}
    .new-directory {
        width: 100%;
    }
        .new-directory input {
            border: 1px solid black;
            border-radius: 5px 0 0 5px;
            outline: none;
            width: calc(100% - 60px);
            height: 30px;
            margin-right: -5px;
        }
        .new-directory button {
            border: 1px solid black;
            border-radius: 0 5px 5px 0;
            background-color: white;
            width: 50px;
            height: 30px;
        }
    .media-directory-list ul {
        list-style-type:none;
        padding-left: 0;
    }
    .media-directory-list li {
        position: relative;
        margin: 10px 0;
    }
    .media-directory-list .directory-trash {
        position: absolute;
        right: 10px;
        cursor: pointer;
    }
.media-directory {
    position: relative;
    float: left;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 65%;
    height: auto;
    padding: 1% 2% 1% 2%;
}
    .media-directory ul {
        list-style-type:none;
        padding-left: 0;
    }
    .media-directory li {
        width: 100%;
        margin: 10px 0;
        color: #0077cc;
        cursor: pointer;
    }
.media-directory-options {
    position: relative;
    width: 100%;
    height: 30px;
    margin-bottom: 20px;
}
    .media-directory-options div {
        position: absolute;
        right: 0;
    }
    .media-directory-options i {
        margin: 0 3px 0 3px;
        padding: 10px;
        cursor: pointer;
    }
    .media-directory-options i:hover {
        border-radius: 100px;
        background-color: gray;
    }
    .media-directory-options::after {
        content: "";
        clear: both;
    }
.delete-image {
    position: absolute;
    bottom: 5%;
    border: 1px solid #b10000;
    background-color: #ff0000;
    color: white;
}
@media only screen and (max-width: 800px) {
.media-directory-list {
    clear: both;
    width: 100%;
    margin-bottom: 40px;
}
.media-directory {
    clear: both;
    width: 100%;
}
}



/* privacy policy */
.terms_of_user {
    max-width: 800px;
}
.privacy_policy {
    max-width: 800px;
}
@media only screen and (max-width: 1000px) {
.terms_of_user {
    width: 95%;
}
.privacy_policy {
    width: 95%;
}
}

/* single_page.html */
.article-title {
    margin-bottom: 10px;
}
.article-contents {
    line-height: 2em;
}
    .article-contents h3 {
        margin-bottom: 0;
    }
    .article-contents p {
        width: 95%;
    }
    .article-contents li {
        width: 90%;
        //padding-bottom: 20px;
    }
.SalesPromote_itemWrapper {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 95%;
    max-width: 650px;
    padding: 3%;
}
.Sales_item {
    float: left;
    width: 60%;
    text-align: left;
}
.Sales_itemTitle {
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
}
.Sales_itemImage {
    float: left;
    width: 40%;
}
.Sales_itemPrice {
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
    margin: 5px 0 0 0;
}
.Sales_itemButton {
    width: 100%;
    margin: 10px 0 0 0;
}
.Sales_itemAgreement {
    position: absolute;
    top: 20%;
    left: calc(50% - 350px);
    background-color: white;
    border-radius: 5px;
    width: 700px;
    padding: 1%;
}
.popup-item {
    position: absolute;
    //top: 20%;
    left: calc(50% - 350px);
    background-color: white;
    border-radius: 5px;
    width: 700px;
    padding: 1%;
}
@media only screen and (max-width: 1000px) {
.article-title {
    padding: 0 2% 0 2%;
    margin-bottom: 10px;
}
.Sales_itemAgreement {
    position: absolute;
    top: 20%;
    left: 5%;
    background-color: white;
    border-radius: 5px;
    width: 90%;
}
.popup-item {
    position: absolute;
    top: 20%;
    left: 5%;
    background-color: white;
    border-radius: 5px;
    width: 90%;
}
}


/* signup.html */
.signup-form {
    border: 1px solid black;
    border-radius: 1em;
    //background-color: rgba(230, 230, 230, 1.0);
    background-color: white;
    width: 100%;
    max-width: 500px;
    padding: 1% 3% 3% 3%;
}
.input-item {
    position: relative;
    width: 80%;
    margin-bottom: 20px;
}
    .input-item label {
        position: absolute;
        left: 0px;
    }
    .input-item input {
        width: 100%;
        margin-top: 3px;
    }


/* dashboard.html */
.account-info {
    border-radius: 5px;
    background-color: rgba(240, 240, 240, 1.0);
    width: 90%;
    height: 100px;
    padding: 1% 5% 1% 5%;
    margin: 0 0 1% 0;
}
.all-network {
    border-radius: 5px;
    background-color: rgba(240, 240, 240, 1.0);
    width: 90%;
    height: 200px;
    padding: 1% 5% 1% 5%;
    margin: 0 0 1% 0;
}

