
body{
    padding: 0px ;
    margin: 0px;
    width: 100%;
    font-family: Poppins;
}
 
/* Side Bar CSS */
aside.sidebar {
    padding: 10px 0;
}
aside.sidebar ul li {
    margin-bottom: 1px;
}
 
aside.sidebar a.sidebar-item {
    font-size: 14px;
    padding: 15px;
    background: transparent;
    border-left: 5px solid transparent;
    border-radius: 6px;
    gap: 8px;
    font-weight: 400;
    color: #828282;
    transition: .3s all ease;
}
aside.sidebar a.sidebar-item i {
    font-size: 19px;
}
 
aside.sidebar a.sidebar-item.active,
aside.sidebar a.sidebar-item:hover {
    background: #3D780120;
    border-color: #3D7801;
    color: #3D7801 !important;
}
 
/* Side Bar CSS End */
.card {
  border-radius: 12px;
  border: 0px;
}
 
.alert {
  border-radius: 12px;
}
 
.rounded-15{
    border-radius: 15px !important;
}
.custom-shadow{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}
 
.gradient-shade{
    position: fixed;
    content: '';
    width: 100%;
    height: 100%;
    max-height: 40vh;
    background: linear-gradient(0deg, transparent, #3D7801);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .3;
}
 
.bg-global-primary {
    background: #3D7801;
}
 
 
.header-area .header-logo {
  height: 35px;
}
 
.header-area .icon-bell {
  height: 22px;
  cursor: pointer;
}
 
.notify-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 50%;
}
/*
.profile-box {
  background: #fff;
  border-radius: 20px;
  padding: 5px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  cursor: pointer;
} */
 
.avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
 
.profile-text {
  line-height: 1.2;
  font-size: 13px;
}
 
.invite-box {
    background: #3D7801;
    padding: 25px 15px 20px 15px;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
}
.invite-box .btn {
    background: #FFF;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 19px;
    color: #3d7801;
    transition: .3s all ease;
}
.invite-box .btn:hover{
    transform: scale(1.15);
}
 
 
.text-in-box {
    background: #649334;
    color: #fFF;
    font-weight: 600;
    padding: 7px 11px;
    border-radius: 7px;
    border: 1px solid #FFF;
    font-size: 20px;
    width: fit-content;
}
 
.reward-box .profile-box .user-title {
    font-size: 27px;
}
 
.reward-box .profile-box span.award {
    font-size: 15px;
}
 
.reward-box .profile-box .pf-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
}
 
@media (max-width: 1100px){
  .text-in-box {
      font-size: 13px;
  }
}
 
.post-card .profile-box .user-title {
    font-size: 18px;
    font-weight: 600;
}
 
 
 
.post-card .profile-box  .user-abt {
    font-size: 14px;
    color: #00000070;
}
.post-card .profile-box .user-diamonds {
    font-size: 14px;
    color: #00000070;
    font-weight: 500;
}
.post-card .post-header .follow_btn {
    padding: 0;
    font-weight: 500;
    color: #3D7801;
}
.post-card .post-header .follow_btn:focus,
.post-card .post-header .follow_btn:focus-visible{
    box-shadow: none !important;
    outline: none !important;
}
 
.post-card .post-caption-img {
    font-size: 14px;
}
.lcs-area {
    display: flex;
    gap: 15px;
}

.lcs-area div button {
    padding: 0;
    border: none;
    background: transparent;
    outline: none;
}

.lcs-area div button  svg {
    width: 25px;
    height: 25px;
    transition: .3s all ease;
}

.lcs-area div button svg path {
    transition: .1s all ease;
    fill: #000;
}
.lcs-area div button:hover svg path{
    fill: #3D7801;
}

a.google-map-post-btn {
    background: #3D7801;
    color: #FFF;
    text-decoration: none;
    padding: 5px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .5px;
    transition: .3s all ease;
}

a.google-map-post-btn:hover{
    background: #000;
}


.post-card .comment-area {
  display: flex;
  align-items: center;
  border-radius: 50px; /* Highly rounded corners for the pill shape */
  padding: 8px 16px;
  background-color: #EEE; /* A very light gray background */
  width: 100%; /* Or set a specific width */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Optional subtle shadow */
}

.post-card .comment-area .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%; /* Makes the image a perfect circle */
  margin-right: 12px;
}

.post-card .comment-area .comment-input {
  flex-grow: 1; /* Makes the input field take up the available space */
  border: none; /* Removes the default input border */
  background-color: transparent;
  font-family: inherit;
  font-size: 16px;
  color: #333; /* Darker text color */
}

.post-card .comment-input::placeholder {
  color: #9e9e9e; /* Light gray color for the placeholder text */
}

.post-card .comment-input:focus {
  outline: none; /* Removes the outline when the input is focused */
}

.post-card .comment-area .send-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  display: flex; /* To center the SVG icon */
  align-items: center;
  justify-content: center;
  color: #757575; /* Gray color for the icon */
}

.post-card .comment-area .send-button svg {
  width: 24px;
  height: 24px;
}

.divider {
    width: 100%;
    height: 1px;
    background: #dddddd;
}
.add-a-post {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    color: #FFF;
    background: #3d7801;
    font-size: 50px;
    transition: .3s all ease;
    cursor: pointer;
}

.add-a-post:hover{
    transform: rotate(90deg)
}

.add-a-post {
    position: fixed;
    right: 68px;
    bottom: 50px;
}
.msg-box img.ms-2, .msg-box img.me-2 {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: auto;
}
.msg-box img.ms-2, .msg-box img.me-2 {
    width: 40px;
    height: 40px;
}

.guest-vst .db-items * {
    display: none !important;
}

/* M-CSS */
.custombtn {
    background: #3D7801;
    border-radius: 10px !important;
    border: solid 1px #3D7801;
    color: white;
}
.custombtntrans:hover {
    background: #3D7801;
    border-radius: 10px !important;
    border: solid 1px #3D7801;
    color: white;
}
.custombtntrans {
    background: transparent;
    border-radius: 10px !important;
    border: solid 1px #3D7801;
    color: #3D7801;
}

.custombtn:hover {
    background: transparent;
    border-radius: 10px !important;
    border: solid 1px #3D7801;
    color: #3D7801;
}

.customborder{
    border: solid 1px #3d7801;
    border-radius: 20px;
}

img.dimaondwithset{
  width: 30px;
    height: 20px;
}

        .withdrawal-card {
            max-width: 450px;
        }
        .diamond-display {
            background-color: #f8fff7;
            border: 1px solid #d4eec8;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }
        .diamond-display h2 {
            color: #4CAF50;
            font-weight: bold;
        }
        .diamond-display p {
            color: #777;
            font-size: 0.9rem;
        }
        .btn-group-toggle .btn {
            border-radius: 10px;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }
        .btn-group-toggle .btn-success {
            background-color: #4CAF50;
            border-color: #4CAF50;
            color: #fff;
        }
        .btn-group-toggle .btn-outline-secondary {
            color: #777;
            border-color: #ddd;
        }
        .form-label {
            font-weight: 500;
            color: #555;
        }
        .form-control {
            border-radius: 10px;
            padding: 0.75rem 1rem;
        }
        .payment-method-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 1.25rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px; 
        }
        .payment-method-card:hover {
            border-color: #4CAF50;
        }
        .payment-method-card.active {
            border-color: #4CAF50;
            box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
        }
        .payment-method-card img {
            max-height: 2.5rem;
            width: auto;
        }
        .transaction-details {
            border-top: 1px dashed #ddd;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
        }
        .transaction-details p {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 0.5rem;
        }


        @media (max-width: 768px){
            .post-card .profile-box .user-abt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
}

.post-card .profile-box .user-title {
    font-size: 15px;
}

.post-card .profile-box .user-diamonds {
    font-size: 11px;
}

.post-card .profile-box {overflow: hidden;}

.post-card .profile-box  .pf-img {
    width: 40px;
    height: 40px;
}.postimages img {
    width: 90px;
}

div#post-creation svg, .actionicons svg {
    width: 30px !important;
}


.post-card .profile-box > .d-flex {
    gap: 7px !important;
    align-items: flex-start !important;
}
.post-card .post-header .follow_btn {font-size: 12px;}
.post-card .post-caption-img {
    font-size: 12px;
}
.lcs-area div button svg {
    width: 18px;
    height: 18px;
}.lcs-area div button svg {
    width: 18px;
    height: 18px;
}

a.google-map-post-btn {
    padding: 0;
    font-size: 10px;
    background: transparent;
    color: #3D7801;
    font-weight: 400;
    letter-spacing: 0;
}

a.google-map-post-btn:hover {
    background: transparent;
    color: #000;
}
.post-card .comment-area {
    padding: 8px;
}

.post-card .comment-area .avatar {
    width: 25px;
    height: 25px;
}

.post-card .comment-area .comment-input {
    width: 100%;
    font-size: 12px;
}

.post-card .comment-area .send-button svg {
    width: 20px;
    height: 18px;
}
.add-a-post {
    width: 50px;
    height: 50px;
    font-size: 26px;
    right: 18px;
    bottom: 70px;
}

        }

        button.close-btn {
    color: #FFF;
    font-size: 30px;
    height: fit-content;
    padding: 0;
    line-height: 1;
    position: relative;
    top: 4px;
    background: center;
    border: none;
    left: 6px;
}

.widt-ff {
    width: 45px !important;
}

.customcenterset {
    justify-content: center;
}

.ml-auto {
    margin-left: auto;
}
/* Enhanced Social Button Styles for Google and Facebook */

/* Google (Red/White) */
.btn-google {
    color: #fff;
    background-color: #db4437; /* Google Red */
    border-color: #db4437;
    font-weight: 600; /* Bold text */
    transition: all 0.2s ease-in-out;
}
.btn-google:hover {
    color: #fff;
    background-color: #c0392b;
    border-color: #c0392b;
    box-shadow: 0 4px 8px rgba(219, 68, 55, 0.4); /* Enhanced shadow on hover */
    transform: translateY(-1px); /* Slight lift effect */
}

/* Facebook (Blue/White) */
.btn-facebook {
    color: #fff;
    background-color: #4267B2; /* Facebook Blue */
    border-color: #4267B2;
    font-weight: 600; /* Bold text */
    transition: all 0.2s ease-in-out;
}
.btn-facebook:hover {
    color: #fff;
    background-color: #3b5998;
    border-color: #3b5998;
    box-shadow: 0 4px 8px rgba(66, 103, 178, 0.4); /* Enhanced shadow on hover */
    transform: translateY(-1px); /* Slight lift effect */
}

/* Custom separator line style */
.social-separator {
    border-top: 1px solid #e0e0e0;
}
