/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');
@import url("./bgrid.min.css");
:root {
    --app-font: 'Inter', sans-serif;
    --app-text-default-color: #050505;
    --body-background: #fafafa;
    --default-text-size: 14px;
    --text-size-2: 15px;
    --text-small: 12px;
    --primary-color: #cd4e2c;
    --primary-color-rgb: 64, 63, 131;
    --secondary-color: #cd4e2c;
    --secondary-color-rgb: 131, 100, 226;
    --dark-color: #000;
    --white-clr: #fff;
    --white-clr2:#f5f5f5;
    --text-grey:#808080;
    --text-grey2:#e0e0e0;
}
body {
    font-family: var(--app-font);
    font-size: var(--default-text-size);
    color: var(--app-text-default-color);
    background: var(--body-background);
}


/* scroll bar */

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background-color: #e4e4e4;
}

body::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    background-color: var(--dark-color);
    min-height: 20vh;
}
body.full-view{
    overflow: hidden;
}

/* base elements */

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.text-start {
    text-align: left!important;
}

.text-end {
    text-align: right!important;
}

.text-center {
    text-align: center!important;
}

label {
    display: inline-block;
}

.form-label {
    margin-bottom: 0.5rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: all .15s ease-in-out;
}

.sec-title {
    width: 100%;
    display: inline-block;
}
.w-100 {
    width: 100%!important;
}
.fw-500 {
    font-weight: 500!important;
}

[data-title] {
    position: relative;
  }
  
  [data-title]:hover::before {
    content: attr(data-title);
    position: absolute;
    bottom: -34px;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 2px 2px 4px 0px rgb(123 123 123 / 60%);
}
/* header sec */

header {
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0px;
    background: var(--white-clr);
}
.navbar {
    margin-bottom: 0;
    border-radius: 0;
    border: 0;
    padding: 8px 0px 6px 0px;
    background-color: #fff;
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 20%);
}

.logo img {
    max-height: 44px;
    margin-top: 4px;
}

.nav-menu {
    margin-top: 6px;
}

.nav-menu a {
   
    margin: 0px 10px;
    padding: 8px 20px;
    font-size: var(--default-text-size);
    line-height: 1;
}

.user-menu {
    width: 100%;
    display: flex;
    margin: 0px;
    padding: 12px 0 0 0;
    line-height: 1;
    height: 100%;
}

.user-menu>li {
    display: inline-flex;
    margin-left: 20px;
}

.user-menu li a {
    color: var( --dark-color);
    transition: all .2s ease-in-out;
    padding: 0px 0px 0px 0px;
}

.user-menu li a i {
    font-size: 24px;
    line-height:0;
}

.user-menu li a:hover,
.user-menu li .router-link-exact-active {
    color: var(--primary-color);
}

.has-dropdwon {
    position: relative;
}

.has-dropdwon .dropdown {
    position: absolute;
    list-style: none;
    margin: 0px;
    right: 0px;
    top: 104%;
    box-shadow: rgb(0 0 0 / 16%) 0px 4px 16px;
    background: var(--white-clr);
    opacity: 1;
    max-height: 0px;
    overflow: hidden;
    transition: max-height .2s ease-in-out;
    display: block;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.has-dropdwon .dropdown li {
    text-align: left;
    display: inline-flex;
    width: 100%
}

.has-dropdwon .dropdown li a {
    padding: 0px;
    white-space: nowrap;
    width: 100%;
    display:flex;
    color: var(--dark-color);
    font-weight: 500;
}
.has-dropdwon .dropdown li a:hover{
   color: var(--secondary-color);
   font-weight: 500;
}


.has-dropdwon.active .dropdown {
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
}

.user-menu .has-dropdwon .dropdown li a i {
    font-size: 16px;
    margin-right: 12px;
}

.user-menu .has-dropdwon .dropdown li a i,
.user-menu .has-dropdwon .dropdown li a span {
    display: inline-flex;
}
.menu-pub{
    text-align: center;
}
.comm-menu {
    list-style: none;
    display: inline-block;
    text-align: center;
    padding: 0px;
    width: 100%;
    margin: 10px 0px;
}

.nav-menu {
    display: inline-block;
}
.cur-reset{
    cursor: initial !important;
    user-select:initial !important;
}
.comm-menu li {
    display: inline-flex;
    margin: 0px 15px;
}

.comm-menu li a {
    color: var(--dark-color);
    font-size: var(--default-text-size);
    text-transform: capitalize;
    padding-top: 6px;
    padding-bottom: 6px;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
}
.comm-menu li a:hover{
    color: var(--primary-color);
}

.comm-menu li a.active,
.comm-menu li a.router-link-exact-active {
    font-weight: bold;
    color: var(--primary-color);
    
}

.comm-menu li a i {
    font-size: 24px;
    line-height: 0;
}

.nav-menu .help-center > i{
    font-size: 28px;
}
.nav-menu .help-center a{
    background: unset;
    color: var(--dark-color);
}

main {
    width: 100%;
    position: relative;
    z-index: 90;
    min-height: 90vh;
    padding-top: 66px;
    padding-bottom: 66px;
}

.user-menu .mico-plus-square-o {
    font-size: 28px;
}

.de-flex {
    display: flex;
    justify-content: space-between;
}

.de-flex>.de-flex-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-site {
    width: 100%;
    text-align: center;
}

.logo-site img {
    max-width: 100%;
}

.mobilemenu {
    display: none;
}

.user-menu .user-dp {
    width: 26px;
    border-radius: 50%;
    border: 1px solid var(--dark-color);
}
.mob-active .logo{
    width: 100%;
    display: inline-block !important;
    text-align: center;
}
.comm-menu li:nth-child(5) a{
    display: flex;
    color: var(--primary-color);
    justify-content: center;
    width: 110px;
}
.comm-menu li:nth-child(5) a i,.comm-menu li:nth-child(5) a span{
    display: inline-flex;
}
.comm-menu li:nth-child(5) a span{
    line-height: 1.5;
    font-weight: bold;
}
/*  */


/* loader */

.loader-main {
    width: 100%;
    position: absolute;
    left: 0px;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    display: block;
}

.lds-spinner {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/*  */


/* footer */

footer {
    border-top: solid 1px #eeeeee;
}

footer .footer-menu{
    list-style: none;
    padding: 0px;
}
footer .footer-menu li{
    line-height: 2.5;
}
footer .footer-menu li a{
    color: var(--white-clr);
    font-weight: 300;
}

footer .ft-l1{
    width: 100%;
    padding: 60px 0px;
    background: #1D1F1E;
}
footer .ft-l2{
    width: 100%;
    background: #161817;
    text-align: center;
    color: var(--white-clr);
}


.ft-l2 p{
    padding: 14px 0;
    font-weight: 300;
}
.ft-l2 ul{
    width: 100%;
    text-align: center;
    padding: 0;
    padding: 14px 0; 
}
.ft-l2 ul li{
    display: inline-block;
    margin: 0px 15px;
    list-style: none;
}
.ft-l2 ul li a{
    color: var(--white-clr);
    font-weight: 300;
}
footer .logo img {
    height: 42px;
}

footer .copy {
    color: var(--white-clr);
}

.ftr-sm {
    list-style: none;
    display: flex;
    padding: 0px;
}

.ftr-sm li {
    padding: 0px 10px;
}

.ftr-sm li a {
    font-size: 24px;
    color: var(--primary-color);
    outline: none;
}

* {
    outline: none;
}


/* auth */

.auth-con {
    margin-top: 12%;
}

.auth-con .logo-site img {
    max-height: 80px;
}

.authbox {
    width: 100%;
    padding: 20px;
    -webkit-box-shadow: 2px 2px 30px 0px rgb(20 20 20 / 10%);
    -moz-box-shadow: 2px 2px 30px 0px rgba(20, 20, 20, 0.1);
    box-shadow: 2px 2px 30px 0px rgb(20 20 20 / 10%);
    border: solid 1px #ddd;
    border-radius: 4px;
    margin-top: 30px;
}

.authbox h3 {
    text-transform: uppercase;
    font-weight: 600;
}

.authbox .btn {
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    text-decoration: none;
    color: var(--white-clr);
}

.authbox .auth-nav {
    color: var(--dark-color);
    text-decoration: underline;
}


/*  profile-edit*/

.profile-edit .btn {
    background: var(--primary-color);
    color: var(--white-clr);
}

.pro-img {
    width: 100%;
    display: block;
    position: relative;
}

.pro-img label {
    min-height: 100px;
    width: 100%;
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.pro-img label i {
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-size: 20px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--body-background);
    line-height: 1.5;
    border: 2px solid var(--secondary-color);
}
.pro-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.pro-img .userdp-file {
    width: 100%;
    display: inline-block;
    visibility: hidden;
    position: absolute;
    left: 0px;
}

.pro-img .loader-main {
    background: rgb(33 36 40, 60%);
    border-radius: 50%;
    z-index: 2;
}

.pro-img .loader-main .lds-spinner div:after {
    background: var(--secondary-color);
}

.walletInfo label {
    font-weight: bold;
}

.walletInfo p.info {
    margin: 0px;
    color: var(--white-clr);
    background: var(--dark-color);
    padding: 10px;
    border-radius: 4px;
}


/* profile */

.prof-cover {
    width: 100%;
    min-height: 240px;
    background: var(--dark-color);
}

.profile-avatar img {
    width: 160px;
    height: 160px;
    border: 4px solid var(--white-clr);
    border-radius: 50%;
    margin-top: -100px;
    margin-top: -80px;
    user-select: none;
    pointer-events: none;
}
.details-box {
    padding: 0;
}

.details-box .u-fname {
    font-size: 24px;
    line-height: 1.3em;
    margin: 0px;
}

.menu-category {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
}

.menu-category ul {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    list-style: none outside;
    display: flex
}

.menu-category li {
    display: inline-block;

}


/* 404 */

.not-fount-err h1 {
    text-align: center;
    font-size: 60px;
}

.not-fount-err .btn {
    background: var(--dark-color);
    color: var(--white-clr);
}

.sad-face {
    margin: 20px auto;
    position: relative;
    background: #e8f5e9;
    height: 100px;
    width: 100px;
    border: 4px solid #a5d6a7;
    border-radius: 50%;
}

.sad-face:after,
.sad-face:before {
    content: "";
    position: absolute;
}

.sad-face:after {
    content: ". .";
    font-size: 60px;
    text-align: center;
    color: #a5d6a7;
    width: 50px;
    top: -14px;
    left: 22px;
}

.sad-face {
    background: #ffebee;
    border-color: #ef9a9a;
}

.sad-face:after {
    color: #ef9a9a;
}

.sad-face:before {
    bottom: 30px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #a5d6a7;
    height: 60px;
    right: 10px;
    width: 60px;
}

.sad-face:before {
    bottom: -30px;
    border-bottom-color: transparent;
    border-top-color: #ef9a9a;
}


/* wallet */

.wallet-container {
    width: 100%;
    display: inline-block;
    padding: 30px;
    border: solid 1px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 8px 1px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 1px 1px 8px 1px rgb(0 0 0 / 30%);
    -moz-box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    background: #282b2f;
    text-align: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    position: relative;
}

.wallet-container img {
    max-height: 80px;
}

.wallet-container h4 {
    color: var(--white-clr);
    font-size: 16px;
    margin-bottom: 0;
}

.wallet-container p {
    color: var(--primary-color);
    margin: 10 px 0 px 0 px;
}

.plugwallet.connected {}

.wallet-container.connected::before  {
    content: '';
    display: inline-block;
    transform: rotate(45deg);
    height: 24px;
    width: 12px;
    border-bottom: 7px solid #78b13f;
    border-right: 7px solid #78b13f;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
}

.wallet-container.connected::after  {
    position: absolute;
    right: -16px;
    top: -6px;
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--white-clr);
    z-index: 0;
    border-radius: 50%;
    box-shadow: 1px 1px 8px 1px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 1px 1px 8px 1px rgb(0 0 0 / 30%);
    -moz-box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.3);
}

.menu-cont {
    width: 100%;
}


/* post image */

.create-post .btn {
    background: var(--primary-color);
    color: var(--white-clr);
}

.createpost {
    position: relative;
}

.createpost .loader-main {
    background: rgb(244 244 244 / 80%);
}

.createpost .lds-spinner div:after {
    background: var(--primary-color);
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media img {
    width: 42px !important;
    height: 42px !important;
    border: 2px solid #f4f4f4;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

.media-body {
    -ms-flex: 1;
    flex: 1;
    line-height: 1.5;
    padding-left: 0.88rem;
}

.media-body .u-name {
    font-weight: 700 !important;
    font-size: var(--text-size-2);
    color: rgb(38, 38, 38);    ;
    line-height:1;
}
.media-body .u-name a{
    color: var(--app-text-default-color);
}
.media-body .u-name a:hover{
    text-decoration: underline;
}
.media-body small span {
    font-size: var(--text-small);
    color: var(--text-grey);
    font-weight: 600;
}


/* post list  */

.feed-body {
    margin-top: 14px;
}

.feeds {
    position: relative;
}

.feeds .loader-main {
    height: auto;
    background: transparent;
    position: relative;
}

.feeds .loader-main .lds-spinner div:after {
    background: var(--primary-color);
}
.shadow-xss {
    box-shadow:0 5px 25px 0 rgb(123 123 123 / 15%);
}
.shadow-xs {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.03)!important;
}
.rounded-xxl {
    border-radius: 12px!important;
}
.w45 {
    width: 45px!important;
}
.p-lg-5 {
    padding: 3rem!important;
}
.font-xxl {
    font-size: 32px!important;
}
.fw-800 {
    font-weight: 800!important;
}
.text-grey-500 {
    color: var(--text-grey)!important;
}
.list-inline {
    padding-left: 0;
    list-style: none;
}
.border-bottom {
    border-bottom: 1px solid var(--text-grey2)!important;
}
.bg-primary-gradiant {
    background: linear-gradient(135deg,var(--primary-color),var(--secondary-color))!important;
}
.bg-gold-gradiant {
    background: linear-gradient(to right,#f2994a,#f2c94c)!important;
}
.bg-red-gradiant {
    background: linear-gradient(to right,#e44d26,#f16529)!important;
}
.bg-blue-gradiant {
    background: linear-gradient(135deg,#05f,#09f)!important;
}
.bg-current {
    background-color: var(--primary-color)!important;
}
.bg-current2 {
    background-color: var(--secondary-color)!important;
}
.text-white {
    color: #fff!important;
}
.font-md {
    font-size: 22px!important;
}
.font-xsss {
    font-size: 14px!important;
}
.fw-600 {
    font-weight: 600!important;
}
.lh2{
    line-height: 2.3 !important;
}
.font-sm {
    font-size: 20px!important;
}
.font-xs {
    font-size: 18px!important;
}
.bg-greylight {
    background-color: #f5f5f5!important;
}
.overflow-hidden {
    overflow: hidden!important;
}
.position-relative {
    position: relative!important;
}
.position-absolute {
    position: absolute!important;
}
figure {
    margin: 0 0;
}
.w-100 {
    width: 100%!important;
}

.lh-1-5 {
    line-height: 1.5;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark-color);
}
.btn-round-md {
    width: 45px;
    height: 45px;
    border-radius: 45px;
    display: inline-block;
    text-align: center;
}
.cardbox {
    background: var(--white-clr);
    position: relative;
    word-wrap: break-word;
    background-clip: border-box;
    overflow:hidden;
}

.cardbox .cardbox-heading {
    margin: 0;
}
.cardbox .cardbox-heading, .cardbox .cardbox-item{
    padding: 0.88rem;
    padding-bottom: 0px;
}
.rounded-3 {
    border-radius: 0.3rem!important;
}
.cardbox .cardbox-body {
    position: relative;
    display: block;
}
.cardbox .cardbox-item {
    max-height: 80vh;
    overflow: hidden;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.cardbox .cardbox-item .im-cb-100 {
    width: 100%;
    user-select: none;
    pointer-events: none;
}

.cardbox-desc {
    width: 100%;
    margin-top: 10px;
}

.cardbox-desc .media-desc {
    width: 100%;
    text-align: left;
    text-align-last: left;
    margin: 0px;
    color: var(--app-text-default-color);
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    word-break: break-word;
}
.media-desc a {
    font-weight: 500;
    color: var(--secondary-color);
}
.media-desc  .desc-togg{
    color: var(--secondary-color);
    font-weight: 500;
}
.post-actions{
    padding: 6px 0.88rem !important;
    margin-bottom: 8px;
    display: flex;
    width: 100%;
}
.post-actions i{
    font-size: 22px;
}
.post-actions a{
    margin-right: 14px;
    display: inline-flex;
    color: var(--text-grey);
    transition: all .33 ease-in-out;
}
.post-actions a:hover{
    color: var(--secondary-color);
}
.post-actions a.acted i{
    color: var(--primary-color);
}
.post-actions a i , .post-actions a span{
    display: inline-flex;
}
.post-actions a span{
    padding-top: 2px;
    padding-left: 2px;
}
.post-actions .act-share{
    margin-left: auto;
}
.post-actions .act-share .toggler{
    cursor: pointer;
    color: var(--secondary-color);
}
.act-share .dropdown{
    top: unset;
    bottom: 100%;
}
.act-share li {
    margin: 8px 12px 8px 6px;
    color: var(--text-grey);
    cursor: pointer;
    user-select: none;
}
.act-share li span.likely__icon{
    margin-right: 5px;
}
.likely__icon_facebook{
    fill: rgb(24, 119, 242);
}
.likely__icon_twitter{
    fill: rgb(29, 161, 242)
}
.likely__icon_telegram{
    fill:rgb(0, 136, 204)
}
.likely__icon_pinterest{
    fill:rgb(189, 8, 28)
}
.likely__icon_linkedin{
    fill:rgb(0, 123, 181)
}
.likely__icon_whatsapp{
    fill:rgb(37, 211, 102)
}
.likely__icon_reddit{
    fill:rgb(255, 69, 0)
}
/* profile feed */

.profile-feed {
    background: var(--white-clr2);
    padding: 40px 0px;
}

.explorebox {
    color: var(--white-clr);
    height: 400px;
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 5px 25px 0 rgb(123 123 123 / 15%);
    margin-bottom: 20px;
    padding: 0px !important;
    position: relative;
}
.u-f-loader{
    position: relative;
}
.u-f-loader .loader-main{
    position: relative;
    height: 400px;
    width: 100%;
    background:transparent;
}
.u-f-loader .loader-main .lds-spinner div:after{
    background: var(--primary-color);
}
.coming-soon{
    text-align: center;
    padding: 15vh 0px;
    margin-top: 10vh;
    background: var(--dark-color);
    color: var(--primary-color);
    border-radius: 6px;
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 20%);
    font-size: 34px;
    text-transform: uppercase;
}
.coming-soon h1{
    color: var(--primary-color);
}
.profile-actions .follow-btn{
    background: var(--app-text-default-color);
    color: var(--white-clr);
    display: flex;
    line-height: 1;
}
.profile-actions .follow-btn i ,.profile-actions .follow-btn span {
    line-height: 1.5;
    display: inline-flex;
}
.profile-actions .follow-btn i::before{
    line-height: 1.5;
}
.profile-actions .follow-btn span{
    margin-left: 6px;
}
.profile-actions .follow-btn[disabled]{
    opacity: .5;
    pointer-events: none;
}
/* create post  */
.post-master{
    width: 100%;
    position: fixed;
    background: rgba(0,0,0,.85);
    height: 100%;
    z-index: 101;
    top: 0px;
}
.post-master .container , .post-master .container .row{
    height: 100%;
}
.post-master .close-btn{
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    color: var(--white-clr);
    justify-content: center;
    padding: 8px;
}
.post-master .close-btn i{
    cursor: pointer;
}
.post-master .create-post-contaner{
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-box-align : center;
    -webkit-align-items : center;
    -moz-box-align : center;
    -ms-flex-align : center;
    align-items : center;
}
.create-post-contaner .pm-box{
    width: 100%;
    
    background: var(--white-clr);
    border-radius: 12px;
}
.pm-box .pm-box-header {
    width: 100%;
    padding: 10px 0px;
    border-bottom: 2px solid rgb(0 0 0 / 20%);
    position: relative;
}
.pm-box .pm-box-header h3{
    margin: 0%;
    text-align: center;
}
.pm-box  .pm-box-body{
    width: 100%;
    min-height: 30vh;
}
.create-post-contaner .post-media{
    width: 100%;
}
.create-post-contaner .p1s1-dflt{
    position: relative;
}
.create-post-contaner .p1s1-dflt label{
    width: 100%;
    text-align: center;
    padding: 3rem 0;
    cursor: pointer;
}
.create-post-contaner .p1s1-dflt label i{
    width: 100%;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: .5;
    line-height: 0;
}
.create-post-contaner .p1s1-dflt label p{
    margin: 0;
    font-size: var(--text-size-2);
}
.create-post-contaner .p1s1-dflt .fileupload{
    visibility: hidden;
    position: absolute;
}

.border-0 {
    border: 0!important;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}
.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

/*  */
/* post-full-view */
.post-full-view{
    width: 100%;
    height: 100vh;
    display: block;
    margin: auto;
    padding: 15px;
}
.post-full-view .container-fluid , 
.post-full-view .container-fluid  .row{
    height: 100%;
}
.post-full-view .container-fluid .row>*{
    padding-left: 0px;
    padding-right: 0px;
}
.copytoclipboard{
    cursor: pointer;
}
/*  */


@media (min-width: 760px) and (max-width: 1200px) {
    .comm-menu li a{
        width: 60px;
    }   
}
@media (max-width: 768px) {
     :root {
        --default-text-size: 12px;
    }
    .menu-cont {
        justify-content: center;
    }
    
    .mobilemenu {
        font-size: 32px;
        padding-top: 0px;
        color: var(--dark-color);
        line-height: 0;
    }
    header {
        top: 0px;
    }
    header .logo img {
        max-height: 32px;
        margin-top: 0px;
    }

    header .comm-menu {
        position: absolute;
        top: 50px;
        right: 10px;
        width: 40vw;
        background: #fff;
        margin: 0px;
        overflow: hidden;
        text-align: right;
        max-height: 0px;
        transition: all 0.3s ease-in-out;
    }
    .menu-pub,.menu-auth{
        display: none;
    }
    header .comm-menu.shown {
        max-height: 50vh;
    }
    header .comm-menu li {
        padding: 8px 0px;
    }
    header .comm-menu li:first-child {
        margin-top: 12px;
    }
    header .comm-menu li:last-child {
        margin-bottom: 12px;
    }
    .auth-con {
        margin-top: 8vh;
    }
    .ft-l1 .col-md-3{
        margin-bottom: 20px;
    }
   .ft-l1 .col-md-2{
       width: 50%;
   }
    .user-menu li a {
        padding: 0px;
    }
    .user-menu {
        margin-top: 6px;
    }
    .wallet-container {
        margin-bottom: 15px;
        width: 80%;
        margin: 15px auto;
        display: block;
    }
    .comm-menu li a {
        font-size: 12px;
    }
    main {
        padding-top: 42px;
    }
    .feed-body {
        margin-top: 14px;
    }
    .feeds{
        padding:0px 0px;
    }
    .feeds .cardbox {
        border-radius: 0px !important;
    }
    .comm-menu li:nth-child(5) a{
        color: var(--dark-color);
    }
    .profile-header{
        display: inline-block !important;
    }
    .profile-header>div{
        width: 100%;
    }
    .profile-header .details-box{
        text-align: center;
    }
    .prof-cover{
        min-height: 180px;
    }
    .has-dropdwon .dropdown li{
        
    }
    .user-meb-menu .dropdown {
        padding:1rem !important
    }
    .user-meb-menu .dropdown li a i{
        font-size: 18px;
    }
    .user-meb-menu  .dropdown li{
        margin-left: 0px;
        margin-right: 0%;
    }
    .profile-header .menu-category ul{
        width: 100%;
    text-align: center;
    display: block !important;
    }
    .profile-actions{ 
        justify-content: center !important;
    }
}