/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

add:

*/



/******************** for hovering ********************/
.pointer 
{
	cursor: pointer;
}



/******************** Custom fonts ********************/
@font-face
{
	font-family: GemFont;
	src: url('/fonts/GemFont.ttf');
}

.GemFont
{
	font-family:GemFont;
	font-size:50px; /*try 60 */
	line-height:50px;
	/** padding-bottom:10px; **/
	/** text-shadow: 2px 2px 8px #ff00ff; **/
	/** text-shadow: 1px 1px 10px #84ff00;   greenish yellow **/
	/** text-shadow: 1px 1px 10px #FF69B4;   Hot Pink **/
	
	text-shadow: 1px 1px 3px #ffffff; /** white **/
	color: #000000;
	position: relative;
	letter-spacing: 2px;
}



/******************** https://stackoverflow.com/questions/39129052/add-font-awesome-icon-in-middle-of-horizontal-line 
<div class="text-center" >
	<span class="outer-line"></span>
	<i class="fas fa-bone"></i>
	<span class="outer-line"></span>
</div>
********************/
 .outer-line {
   width: 45%;
   border-bottom: 1px solid #cccccc;
   margin: 30px 0;
}

span {
  display: inline-block;
  vertical-align: middle;
}


/*  https://bbbootstrap.com/snippets/standard-line-divider-font-awesome-icons-13955453 */

.divide {
    position: relative;
    overflow: hidden;
    margin: 35px 0;
    color: #e5e5e5 !important;
    width: 100%;
}

.divide:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 11px;
    left: 30px;
    height: 0;
    border-top: 1px solid #eee;
}


.divide i {
    position: relative;
    width: 18px;
    height: 18px;
    line-height: 1;
    font-size: 18px!important;
    text-align: center;
    
}


.blockquote-left-light-gray {
    border-left: solid #d3d3d3;

}

/******************** TEXT FIXES ********************/
.TextCenter { text-align:center; }


.text-black		{ color: black !important; } /*  #000000 */
.text-blue		{ color: #0000FF !important; }
.text-blue-light	{ color: #6e91a3 !important; }
.text-cyan-aqua		{ color: #00FFFF !important; }
.text-fuchsia		{ color: #FF00FF !important; }
.text-gray		{ color: #808080 !important; }
.text-gray-dark		{ color: #A9A9A9 !important; }
.text-gray-light	{ color: #777 !important; }
.text-gray-light	{ color: #D3D3D3 !important; }
.text-gray-platinum	{ color: #E5E4E2 !important; }
.text-green		{ color: #00FF00 !important; }
.text-indigo		{ color: #6610f2 !important; }
.text-ivory		{ color: #FFFFF0 !important; }
.text-lime		{ color: #00FF00 !important; }	
.text-magenta		{ color: #FF00FF !important; }
.text-maroon		{ color: #800000 !important; }
.text-mint-cream	{ color: #F5FFFA !important; }
.text-navy		{ color: #000080 !important; }
.text-olive		{ color: #808000 !important; }
.text-orange		{ color: #fd7e14 !important; }
.text-pink		{ color: #e83e8c !important; }
.text-purple		{ color: #800080 !important; }
.text-red		{ color: #FF0000 !important; }
.text-silver		{ color: #C0C0C0 !important; }
.text-snow		{ color: #FFFAFA !important; }
.text-teal		{ color: #008080 !important; }
.text-teal		{ color: #185a6e !important; }
.text-teal-light	{ color: #CDD9D5 !important; }
.text-white		{ color: white !important; } /*  #ffffff */
.text-white-ghost	{ color: #F8F8FF !important; }
.text-white-smoke	{ color: #F5F5F5 !important; }
.text-yellow		{ color: #FFFF00 !important; }


.bg-winku-gray-bg	{ background-color: #505050 !important; }
.bg-winku-gray-dark	{ background-color: #343434 !important; }

.bg-black		{ background-color: black !important; } /*  #000000 */
.bg-blue		{ background-color: #0000FF !important; }
.bg-blue-light		{ background-color: #6e91a3 !important; }
.bg-cyan-aqua		{ background-color: #00FFFF !important; }
.bg-fuchsia		{ background-color: #FF00FF !important; }
.bg-gray		{ background-color: #808080 !important; }
.bg-gray-dark		{ background-color: #A9A9A9 !important; }
.bg-gray-light		{ background-color: #D3D3D3 !important; }
.bg-gray-light-commentbox	{ background-color: #f3f3f3 !important; }
.bg-gray-platinum	{ background-color: #E5E4E2 !important; }
.bg-green		{ background-color: #00FF00 !important; }
.bg-indigo		{ background-color: #6610f2 !important; }
.bg-ivory		{ background-color: #FFFFF0 !important; }
.bg-lime		{ background-color: #00FF00 !important; }	
.bg-magenta		{ background-color: #FF00FF !important; }
.bg-maroon		{ background-color: #800000 !important; }
.bg-mint-cream		{ background-color: #F5FFFA !important; }
.bg-navy		{ background-color: #000080 !important; }
.bg-olive		{ background-color: #808000 !important; }
.bg-orange		{ background-color: #fd7e14 !important; }
.bg-pink		{ background-color: #e83e8c !important; }
.bg-purple		{ background-color: #800080 !important; }
.bg-red			{ background-color: #FF0000 !important; }
.bg-silver		{ background-color: #C0C0C0 !important; }
.bg-snow		{ background-color: #FFFAFA !important; }
.bg-teal		{ background-color: #008080 !important; }
.bg-teal		{ background-color: #185a6e !important; }
.bg-teal-light		{ background-color: #CDD9D5 !important; }
.bg-white		{ background-color: white !important; } /*  #ffffff */
.bg-white-ghost		{ background-color: #F8F8FF !important; }
.bg-white-smoke		{ background-color: #F5F5F5 !important; }
.bg-yellow		{ background-color: #FFFF00 !important; }


/** working on font awesome outter glow **/

.Glow-Red {
  color: #ff0000;
  text-shadow: 0 0 3px #ff0000;
}

.Glow-Shawdow-Green {
  text-shadow: 2px 2px 5px #28a745;
}


.Glow-Box-Red {
  color: #FFF;
  box-shadow: 0 0 3px 3px red;
}

.Glow-Box-Green {
  color: #FFF;
  box-shadow: 0 0 3px 3px #28a745;
}





/**     text-shadow: <x-offset> <y-offset> <blur-radius> <color>; **/
.text-shadow-black 
{
	padding: 2%;
	/* font-size: 80px; */
	/* font-weight: bold; */
	/* color: transparent; */
	/* letter-spacing: .10em; */
	text-shadow: 1px -1px 20px #000000;
}


.text-shadow-white 
{
	padding: 2%;
	/* font-size: 80px; */
	/* font-weight: bold; */
	/* color: transparent; */
	/* letter-spacing: .10em; */
	text-shadow: 1px -1px 20px #ffffff;
}





/******************** Fancybox for height on long pages ********************/

.fancybox-slide--iframe .fancybox-content {
    width  : 800px;
    height : 600px;
    max-width  : 95%;
    max-height : 95%;
    margin: 0;
}



.fancybox__container {
    z-index: 1500; /* top bar polo is 1490 in style_polo5.9.9.css */
}













/******************************************************************************** 
Google captcha v3 moving/hiding
https://stackoverflow.com/questions/44543157/how-to-hide-the-google-invisible-recaptcha-badge
https://stackoverflow.com/questions/51208440/how-to-remove-the-privacy-terms-from-google-recaptcha
********************************************************************************/

.badge-container {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  width: 70px;
  height: 60px;
  margin: 0 auto;
  box-shadow: 0 0 4px #ddd;
  transition: linear 100ms width;
	transform: scale(0.6);
	opacity: 0.6;
}
.badge-container:hover {
    width: 256px;
}




.grecaptcha-badge {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  width: 1px;
  height: 1px;
 /*margin: 0 auto;*/
  box-shadow: 0 0 4px #ddd;
  transition: linear 100ms width;
	transform: scale(0.6);
	opacity: 0.6;
}
.grecaptcha-badge:hover {
    width: 1px;
}

.grecaptcha-badge {
    display: none;
}





/*********** From social template WINKU ***********/


.add-btn {
    bottom: 100px;
    position: absolute;
    right: 43px;
}

.add-btn > span {
    color: #fff;
    margin-right: 20px;
    text-shadow: 0 2px 0 #4a4a4a;
}

.add-btn > a:hover {
    background: transparent none repeat scroll 0 0;
    border: 1px solid;
}

.add-btn > a {
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 4px 20px;
    border: 1px solid transparent;
}







/*--- timeline area ---*/

.feature-photo .container-fluid {
    padding: 0 43px;
}

.feature-photo {
    display: block;
    position: relative;
    width: 100%;
}

.feature-photo > figure {
    margin-bottom: 0;
}

.feature-photo > figure img {
    display: inline-block;
    width: 100%;
}

.user-avatar {
    border: 8px solid rgba(255, 255, 255, 0.8);
    border-radius: 3px 25px 0;
    box-shadow: 0 1px 0 #e1e8ed;
    float: right;
    margin-top: -168px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.user-avatar > figure > img {
    width: 100%
}

.user-avatar > figure {
    margin-bottom: 0;
    position: relative;
}

.timeline-info {
    background: #fff none repeat scroll 0 0;
    display: block;
    line-height: 59px;
    width: 100%;
}

.timeline-info > ul {
    display: inline-block;
    list-style: outside none none;
    margin-bottom: 0;
    padding-left: 20px;
    vertical-align: middle;
    width: 100%;
}

.timeline-info > ul li {
    display: inline-block;
   margin-right: 20px;  /* margin-right: 50px; */
    position: relative;
}

.timeline-info > ul li a {
    display: inline-block;
    font-size: 14px;
    margin-right: 30px;
    position: relative;
    line-height: initial;
    text-transform: capitalize;
    padding-bottom: 3px;
    font-weight: 400;
}

.timeline-info > ul li a:last-child {
    margin-right: 0;
}

.timeline-info .admin-name > span {
    bottom: 14px;
    color: #3a3a3a;
    font-size: 10px;
    line-height: 5px;
    position: absolute;
    right: 0;
}

.timeline-info .admin-name > h5 {
    color: #088dcd;
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    vertical-align: super;
}

.timeline-info > ul li a::before {
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.2s linear 0s;
    visibility: hidden;
    width: 0;
}

.timeline-info > ul li a::after {
    border-bottom: 8px solid;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    bottom: -12px;
    content: "";
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    display: none;
}

.timeline-info > ul li a.active::after {
    display: block;
}

.timeline-info > ul li a:hover::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.edit-phto {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    bottom: 100px;
    color: #fff;
    left: 275px;
    padding: 5px 20px;
    position: absolute;
    z-index: 9;
    border-radius: 3px;
    border: 1px solid transparent;
}

.edit-phto:hover {
    background: transparent none repeat scroll 0 0;
    border: 1px solid;
    color: #fff;
}

.fileContainer {
    color: #d8d8d8;
    font-size: 11px;
    margin: 0 0 0 5px;
    position: relative;
    text-transform: capitalize;
}

.fileContainer [type=file] {
    cursor: pointer;
    display: block;
    filter: alpha(opacity=0); /* Showed error on console */
    opacity: 0;
    position: absolute;
    right: 0px;
    text-align: right;
    top: 0;
    width: 100%;
    overflow: hidden;
}

.edit-phto .fileContainer [type="file"] {
    height: 35px;
    top: -11px;
    width: 126px;
}

.user-avatar .edit-phto {
    border-radius: 0;
    bottom: -40px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: all 0.3s linear 0s;
    padding: 5px;
    text-align: center;
}

.user-avatar:hover .edit-phto {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}





/*--- Friends  ---*/

.nav.nav-tabs {
    border: medium none;
}

.frnds {
    float: left;
    width: 100%;
}

/* Spacing inbetween tabs */
.frnds .nav-tabs .nav-item {
    margin-right: 50px;
}

.frnds .nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.frnds .nav-tabs .nav-item a.active {
    border-bottom: 1px solid;
}

.frnds .nav-tabs .nav-item a {
    font-weight: bold;
}

.frnds .nav-tabs .nav-item > span {
    border: 1px solid #ccc;
    border-radius: 30%;
    display: inline-block;
    font-size: 14px;
    line-height: initial;
    margin-left: 5px;
    text-align: center;
    width: 25px;
    color: #8d8d8d;
}

.nearby-contct {
    display: inline-block;
    list-style: outside none none;
    margin-bottom: 0;
    margin-top: 35px;
    padding-left: 0;
    width: 100%;
}

.nearby-contct > li {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #eaf1f6;
    display: inline-block;
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
    transition: all 0.15s linear 0s;
}

.nearby-contct > li:last-child {
    margin-bottom: 0;
}

.nearby-contct > li:hover {
    box-shadow: 0 8px 8px #e1e8ec;
    border-color: transparent;
}

.nearly-pepls {
    display: inline-block;
    width: 100%;
}

.nearly-pepls > figure {
    display: inline-block;
    margin-bottom: 0;
    max-width: 60px;
    min-width: 60px;
    vertical-align: middle;
    width: 60px;
}

.pepl-info {
    display: inline-block;
    padding-left: 15px;
    position: relative;
    vertical-align: middle;
    width: 88%;
}

.pepl-info > h4 {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

a.add-butn {
    color: #fff;
    float: right;
    font-size: 13px;
    line-height: initial;
    padding: 5px 10px;
    position: absolute;
    right: 0;
    text-transform: capitalize;
    top: 10px;
}

.pepl-info > span {
    float: left;
    font-size: 13px;
    text-transform: capitalize;
    width: 100%;
    line-height: initial;
}

.pepl-info > em {
    display: inline-block;
    font-size: 13px;
    font-style: normal;
    line-height: initial;
    margin-left: 40px;
    text-align: right;
    vertical-align: baseline;
}

.pepl-info > em i {
    margin-right: 5px;
}










.top-area {
    display: inline-block;
    text-align: right;
    vertical-align: middle;
    width: 84%;
}

.top-area > ul {
    display: inline-block;
    list-style: outside none none;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: middle;
}

.top-area > ul > li {
    display: inline-block;
    margin-right: 25px;
    position: relative;
    vertical-align: top;
    z-index: 2;
}

.top-area > ul > li > a {
    color: #999;
}

.top-area .user-img {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    line-height: 60px;
}

.top-area .user-img > span.status {
    bottom: 10px;
    right: 5px;
}

.top-area > span.main-menu {
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    margin-left: 20px;
    margin-right: -10px;
    vertical-align: inherit;
}

.top-area .user-img > img {
    border-radius: 50%;
    display: inline-block;
    transform: scale(0.7);
    vertical-align: inherit;
}


.top-area > ul > li > a > span {
    bottom: -10px;
    font-size: 11px;
    position: absolute;
    right: -4px;
}













/* Bootstrap 5.0 carousel changed from Polo */

.carousel {
    position: relative;
}
.carousel.pointer-event {
    touch-action: pan-y;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}
.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}
.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%);
}
.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%);
}
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1;
}
.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-end,
    .carousel-fade .active.carousel-item-start {
        transition: none;
    }
}
.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-control-next,
    .carousel-control-prev {
        transition: none;
    }
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}
.carousel-control-prev {
    left: 0;
}
.carousel-control-next {
    right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none;
    }
}
.carousel-indicators .active {
    opacity: 1;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}
.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000;
}
.carousel-dark .carousel-caption {
    color: #000;
}




/*  could do this for SFW mode
img {
  opacity: 0.03;    
}
*/

.OpacityZeroPointThree {
  opacity: 0.03;    
}


.AddFriendPopupBackground {
	/** background-image: url("/images_profiles/thumb/whitedragond_51295-1-20250113000120.png"); **/
	opacity: 0.3;
	width: 100%; 
	height: 100vh; 
	background-repeat: no-repeat; 
	background-size: cover;    
}


.AddFriendPopupBackgroundOpacityOne {
 	opacity: 1;
	 
}





/* -------------------- COMMENT SYSTEM FROM https://codeshack.io/commenting-system-php-mysql-ajax/  -------------------- */
.comments .comment_header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 10px;
    align-items: center;
}
.comments .comment_header .total {
    color: #777777;
    font-size: 14px;
}
.comments .comment_header .write_comment_btn {
    margin: 0;
}
.comments .write_comment_btn, .comments .write_comment button {
    display: inline-block;
    background-color: #565656;
    color: #fff;
    text-decoration: none;
    margin: 10px 0 0 0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    border: 0;
}
.comments .write_comment_btn:hover, .comments .write_comment button:hover {
    background-color: #636363;
}
.comments .write_comment {
    display: none;
    padding: 20px 0 10px 0;
}
.comments .write_comment textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 150px;
    margin-top: 10px;
}
.comments .write_comment input {
    display: block;
    width: 250px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
}
.comments .write_comment button {
    cursor: pointer;
}
.comments .comment {
    padding-top: 10px;
}
.comments .comment .name {
    display: inline;
    padding: 0 5px 3px 0;
    margin: 0;
    font-size: 16px;
    color: #555555;
}
.comments .comment .date {
    color: #888888;
    font-size: 14px;
}
.comments .comment .content {
    padding: 5px 0 5px 0;
}
.comments .comment .reply_comment_btn {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    color: #888888;
}
.comments .comment .replies {
    padding-left: 30px;
}



/* -------------------- COMMENT CSS from risq1 -------------------- */
/*--- comment area ---*/

.coment-area {
   /* display: inline-block; //Removed to hide left bar and height closer */
    margin-top: 10px;
    width: 100%;
}

.we-comet {
    float: left;
    width: 100%;
    padding-left: 0;
    list-style: none;
}

.we-comet > li {
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
}

.we-comet > li:last-child {
    margin-bottom: 0;
}

/* spacing after picture */
.comet-avatar {
    display: table-cell;
    max-width: 4%; /* 7.6% */
    vertical-align: top;
    width: 7.6%;
    
}

.we-comment {
    border: 2px solid #ede9e9;
    display: table-cell;
    margin-left: 20px;
    padding: 10px;
    vertical-align: top;
    position: relative;
    width: 65%;
}

.we-comment::before,
.peoples-mesg-box > ul > li p:before {
    border-bottom: 10px solid transparent;
    border-right: 11px solid #ede9e9;
    border-top: 10px solid transparent;
    left: -11px;
    top: 10px;
    position: absolute;
    content: '';
}

/*** adjusting replies laytout ***/
.we-comment::after,
.peoples-mesg-box > ul > li p:after {
    border-bottom: 8px solid transparent;
    border-right: 9px solid #fff;
    border-top: 8px solid transparent;
    left: -9px;
    top: 12px;
    position: absolute;
    content: '';
}

/*** adjusting replies laytout ***/
.we-comet > li ul {
    margin-left: 25px;
    margin-top: 10px;
    margin-right: 25px;
    padding-left: 0;
    list-style: none;
}

.we-comet > li ul li {
    margin-bottom: 20px;
}

.we-comet li a.showmore {
    display: table;
    font-size: 12px;
    margin: 0 auto;
    text-transform: capitalize;
}

.we-comet > li ul li:last-child {
    margin-bottom: 0;
}

.coment-head {
    display: inline-block;
    width: 100%;
}

.coment-head > h5 {
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 5px;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 0;
    color: #2a2a2a;
}

.we-comment > p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0;
    max-width: 100%;
    margin-top: 5px;
}

.we-reply {
    text-transform: capitalize;
    font-size: 13px;
    display: inline-block;
    margin-left: 10px;
}

.coment-head > span {
    color: #999;
    font-size: 12px;
    padding-left: 10px;
    display: inline-block;
}

li.post-comment .comet-avatar {
    display: inline-block;
    max-width: 6%;
    vertical-align: top;
    width: 6%;
}

.post-comt-box {
    display: inline-block;
    padding-left: 15px;
    position: relative;
    width: 93%;
}

.post-comt-box form textarea {
    background: #f3f3f3 none repeat scroll 0 0;
    border-color: transparent;
    border-radius: 3px;
    color: #000000;
    font-size: 13.5px;
    font-weight: 500;
    height: 40px;
    line-height: 16px;
}

.add-smiles {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    line-height: 10px;
}

.add-smiles > span {
    font-size: 12px;
    cursor: pointer;
}

.smiles-bunch {
    background: #eaeaea none repeat scroll 0 0;
    border-radius: 5px;
    top: -63px;
    font-size: 13px;
    padding: 5px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 150px;
    display: none;
}

.smiles-bunch.active {
    display: block;
}

.smiles-bunch > i {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 4px;
}

.smiles-bunch::before {
    border-top: 7px solid #eaeaea;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    position: absolute;
    right: 11px;
    bottom: -7px;
    width: auto;
}

.smiles-bunch > i:hover {
    transform: scale(1.1);
}

.post-comt-box form button {
    bottom: 2px;
    position: absolute;
    right: 0;
    background: none;
}



/* -------------------- Full Calender Title Wrap https://stackoverflow.com/questions/68553824/wrap-titles-in-fullcalendar-v5  -------------------- */


.fc-daygrid-event {
  white-space: normal !important;
  align-items: normal !important;
}