html{
    margin: 0 !important;
}
#wpadminbar{
    display: none;
}

.nw_list_coin_price{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 35px;
}

.nw_coin_price_row {
    display: flex;
    background: #f9c900;
    border-radius: 16px;
    align-items: center;
    width: 47%;
    margin-bottom: 25px;
}

.nw_coin_price_row img {
    width: 45px;
    height: 45px;
    padding: 10px;
    display: block;
    margin:0 10px;
}

.nw_coin_price_row_content {
    background: #5d668e;
    border-radius: 16px;
    display: flex;
    width: 100%;
    padding: 15px;

}
.nw_coin_price_row_content p{
    width: 50%;
    padding: 0 10px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}
.nw_coin_price_row_content p:first-child{
    border-left: solid 2px rgba(255, 255, 255, 0.38);

}
.nw_coin_box_image_top{
    margin: 15px 0;
    display: flex;
    justify-content: center;
}
.nw_coin_box_image_top img{
    width: 200px;
    height: auto;
}
/****** Admin ******/
.nw_box_page {
    /*padding: 20px;*/
    /*width: 100%;*/
    /*border-radius: 12px;*/
    /*background: #ffffff;*/
    /*box-sizing: border-box;*/
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
}

.nw_box_page * {
    box-sizing: border-box;
}

.nw_box_page .nw_coin_box_new_btn {
    display: flex;
    width: 100%;
    justify-content: end;
    margin-bottom: 20px;
}

.nw_box_page .nw_coin_box_new_btn a {
    background: #f9c900;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5d668e;
    font-weight: 800;
    font-size: 15px;
}

.nw_box_page .nw_coin_box_new_btn img {
    width: 25px;
    height: 25px;
}

.nw_box_page .nw_coin_price_row {
    display: flex;
    background: #f9c900;
    border-radius: 16px;
    align-items: center;
    width: 49%;
    margin-bottom: 25px;
    padding: 0;
    justify-content: space-between;
}

.nw_box_page .nw_coin_price_row_icons {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 25%;
    padding: 0 20px;
    gap: 6px;
}

.nw_box_page .nw_coin_price_row_icons input {
    border: solid 2px #5d668e;
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.nw_box_page .nw_coin_price_row svg {
    width: 40px;
    height: 40px;
    padding: 9px;
    display: block;
    cursor: pointer;
}

.nw_box_page .nw_coin_price_row_content {
    background: #5d668e;
    border-radius: 16px;
    display: flex;
    width: 75%;
    padding: 15px;
}

.nw_box_page .nw_coin_price_row_content p {
    width: 25%;
    padding: 0 10px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-weight: 400;
    font-size: 12px;
}

.nw_box_page .nw_coin_price_row_content p {
    border-left: solid 2px rgba(255, 255, 255, 0.38);
}
.nw_box_page .nw_coin_price_row_content p:last-child {
    border-left: none;
}

/*** form ***/
form.nw_box_page {
    justify-content: start;
}

form.nw_box_page label {
    width: 40%;
    display: flex;
    margin-bottom: 25px;
    align-items: center;
}

form.nw_box_page label span {
    width: 20%;
}

form.nw_box_page label input {
    width: 60%;
    height: 40px;
    border: solid 2px #5d668e;
    border-radius: 3px;
}

.nw_box_btn {
    width: 100%;
    margin-top: 30px;
}

form.nw_box_page button {
    width: max-content;
    display: block;
    padding: 12px 25px;
    background: #f9c900;
    color: #5d668e;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}
form.nw_box_page button:hover{
    background: #ffd215;
    color: #4e5881;
}
.nw_box_notif{
    width: max-content;
    padding: 10px 20px;
    border-radius: 6px;
    background: #0FA34C;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
}
.nw_back_page{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;

}
.nw_coin_price_form{
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 20px;
}
.nw_coin_price_form input{
    width: 150px !important;
    border-radius: 6px !important;
    border: solid 2px #5d668e !important;
}
.nw_coin_price_form button{
    background: #5d668e;
    color: #ffffff;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    padding: 13px 20px;
}
.nw_coin_price_form button:hover{
    background: #444f7c;
    color: #ffffff;
}

.nw_coin_price_form label{
    font-size: 12px !important;
    color: #2b2b2b;
}
@media (max-width: 950px) {
    .nw_coin_price_row{
        width: 100%;
    }
    .nw_coin_box_new_btn{
        flex-wrap: wrap;
    }
    .nw_coin_box_new_btn form{
        width: 100%;
        
    }
}