* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box;
}

a, a:hover, button:focus {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

button:active, button:focus, button, a:active, a:focus {
  outline: none !important;
}

p, label {
  margin: 0px;
}

p {
  color: #eeeeee;
  font-weight: 300;
  font-size: 16px;
  text-align:justify;
}

img {
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: #eeeeee;
  font-size: 16px;
  background-color: #121212;
}

input {
  outline: none;
}

button {
  margin: 0px;
  font-weight:600;
  font-weight: 500;
  font-size: 15px !important;
  outline: none!important;
  box-shadow: initial!important;
}
.navbar{
  display: flex;
  justify-content: space-between;
}
header{
  display: block;
  border-bottom:1px solid #F8C301;
  padding: 0px 15px;
}
.navbar-nav a{
  margin: 0px 5px;
}
.logo img{
  height:40px;
}
.navbar-collapse {
  flex-basis: auto;
  flex-grow: inherit;
}
.navbar-nav li > a, .navbar-nav li > a:hover, .navbar-nav li > a:focus, .navbar-nav li > a.active{
  color:#FFCB04!important;
  font-size: 15px;
  position: relative;
  margin: -10px 0px;
  padding: 20px 0px;
}
.navbar-nav li > a:after{
  background: none repeat scroll 0 0 transparent;
  bottom:-2px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #FFCB04;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.navbar-nav li > a:hover:after, .navbar-nav li > a.active:after{ 
  width: 100%; 
  left: 0; 
}
.nav-item{
  position: relative;
}
.nav-item.dropdown{
  padding-right:10px;
  background-image: url('../images/menu-arrow.png');
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: right center;
}
.dropdown-menu{
  display: none;
  position: absolute;
  background: #121212;
  top: 100%;
  margin-top: 10px;
  border-radius: 0px 0px 7px 7px;
  border: 2px solid #FFCB04;
  border-top:none;
}
.nav-item:hover .dropdown-menu{
  display: block;
}
.dropdown-menu a{
  margin: 0px;
  font-size: 13px;
  color: #cccccc;
  padding:5px 10px;
}
.dropdown-menu a i{
  margin-right: 4px;
}
.dropdown-menu a:hover{
  background:none;
  color:#ffffff
}
.header-right{
  display: inline-flex;
  list-style: none;
  margin-bottom: 0px;
  margin-top:3px;
}
.header-right > li{
  padding: 10px 0px;
  margin: -10px 0px;
  position: relative;
}
.header-right > li > a{
  background: #262626;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  color:#FFCB04;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 13px;
}
.header-right > li > a:hover{
  background: #FFCB04;
  color:#262626;
}
.header-right .profile-dropdown{
  display: none;
  background: #121212;
  top: 100%;
  margin-top:-2px;
  border-radius: 0px 0px 10px 10px;
  right: 0px;
  left: initial;
  border: 2px solid #FFCB04;
  border-top:none;
}
.profile-dropdown a{
  color:#cccccc;
  padding: 7px 10px;
}
.profile-dropdown a:hover{
  background: none;
  color: #ffffff;
}
.header-right li:hover .profile-dropdown{
  display: block;
}
.header-right .notification-dropdown{
  width: 300px;
  background: #121212!important;
  padding: 10px;
  margin-top:-2px;
  border: 2px solid #FFCB04;
  border-top:none;
}
.notification-dropdown li{
  border-bottom:1px solid #444444;
  padding: 12px 0px 10px;
}
.notification-dropdown li:last-child{
  border:none;
}
.notification-dropdown h6{
  color:#ffffff;
  font-size: 13px;
  display: block;
  font-weight:500;
}
.notification-dropdown p{
  font-size: 12px;
  color:#ffffff;
  display: block;
  line-height: 16px;
}
.notification-dropdown a{
  padding: 0px;
}
.notification-dropdown a span{
  color: #999999;
  font-size: 12px;
  background: none!important;
  margin-top: 2px;
}
.notification-dropdown a:hover{
  background: none;
}
.notification-dropdown .view-all{
  width: 100%;
  text-align: center;
  display: block;
  color:#aaaaaa;
}
.notification-dropdown .view-all:hover{
  text-decoration: underline;
  color:#ffffff;
}
.wrapper{
  max-width:800px;
  width: 100%;
  margin: auto;
}
.post-outer{
  background-color: #2A2A2A;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  display: block;
  margin-bottom:30px;
  overflow: hidden;
}
.post-outer p{
  font-size: 14px;
}
.post-header{
  padding: 10px;
  display: flex;
  align-items: center;
}
.post-header img{
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  object-fit: cover;
  object-position: center;
  margin-right: 10px;
}
.post-header span{
  text-transform: uppercase;
  font-size:17px;
  color:#ffffff;
  flex:1;
}
.sub_heading{
 
  font-size:13px !important;
  color:#ffffff;
  flex:1;
}

.post-img{
  width: 100%;
  transition: 0.3s;
  height: auto;
  
  overflow: hidden;
}
.post-img img{
  object-fit: cover;
  transition: 0.3s;
}
.post-outer:hover .post-img img{
  transform: scale(1.1);
}
.post-footer{
  border-top:1px solid rgba(255,255,255,.2);
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
}
.post-footer a{
  color:#FFCB04;
  font-size: 13px;
}
.post-footer a i{
  margin-right: 5px;
}
.breacumb{
  position:absolute;
  left: 20px;
  top:40px;
  font-size:16px;
}
.breacumb a{
  color: #ffffff;
}
.breacumb i{
  color:#FFCB04;
  margin-right:3px;
}
.breacumb a:hover{
  color:#FFCB04;
}
.pagination{
  list-style: none;
  margin-top: 20px;
}
.pagination li a{
  font-size: 14px;
  color:#5F5F5F;
  padding:5px 13px;
  display: inline-block;
  border-radius: 4px;
  margin-right: 2px;
}
.pagination li a:hover, .pagination li a.active{
  background-color: #FFCB04;
}
footer{
  border-top:1px solid #F8C301;
  padding: 20px 0px;
  color:#5F5F5F;
}
footer .wrapper{
  display: flex;
  justify-content: space-between;
}
footer a{
  color:#5F5F5F;
  padding: 0px 10px;
  font-size: 14px;
}
footer a:hover{
  color:#F8C301;
  text-decoration: underline;
}
footer span{
  font-size: 14px;
}
.advertisment{
  width:250px;
  display: inline-block;
  position: absolute;
  left:100%;
  top:0px;
  margin-left:30px;
}
.advertisment span{
  margin-bottom: 10px;
  display: block;
}
.advertisment p{
  display: block;
  padding: 15px 0px;
  font-size: 13px;
  color:#888888;
}
.advertisment-footer{
  border-top:1px solid rgba(255,255,255,.2);
  padding: 15px 0px;
}
.advertisment-footer a{
  padding:0px 8px;
  color:#888888;
  display: inline-block;
}
.advertisment-footer a:hover{
  color: #FFCB04;
}
.blog-detail-header{
  padding:5px 10px;
}
.publish-date{
  font-size: 13px;
  color:#FFCB04;
  display: block;
  margin-top: 7px;
}
.comment-outer{
  background-color: #2A2A2A;
  padding: 20px;
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.comment-header{
  padding-bottom: 10px;
  border-bottom:1px solid rgba(255,255,255,.2);
  margin-bottom: 20px;
}
.user-comment{
  padding-left: 50px;
  position: relative;
}
.user-comment img{
  width: 35px;
  height: 35px;
  display: inline-block;
  position: absolute;
  left: 0px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  object-fit: cover;
  object-position: center;
}
.user-comment span{
  color:#FFCB04;
  font-size: 15px;
}
.user-comment p{
  color:#ffffff;
  font-size: 15px;
  display: block;
  margin-bottom:20px;
}
.user-comment textarea{
  background: #B7B7B7;
  width: 100%;
  height:250px;
  display: block;
  resize: none;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 15px;
}
.theme-btn{
  display: inline-block;
  background-color:#FFCB04;
  color:#000000;
  font-size: 15px;
  padding:10px 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  border:none;
  text-align: center;
  position: relative;
  transition-duration: 0.4s;
}
.theme-btn:hover {
  background-color: #ffe78a;
}




.theme-btn-black{
  display: inline-block;
  background-color:#121212;
  color:#ffffff;
  font-size: 15px;
  padding:7px 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  border:none;
  transition-duration: 0.4s;
}
.theme-btn-black:hover{
  background-color:#FFCB04;
  color:#000000;
}
.create-account{
  text-align: center;
  display: block;
  padding: 20px 0px 0px;
  margin-top: 20px;
  border-top:1px solid #000000;
}
.create-account button{
  display: inline-block;
  padding: 7px 25px;
}

.content{
  min-height:700px;
}
.login-header{
  padding: 10px 0px;
  text-align: center;
}
.register-outer{
  width: 100%;
  background-color: #2A2A2A;
  display: block;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.register-outer h3{
  font-size: 30px;
  color:#ffffff;
  display: block;
  margin-bottom: 15px;
}
.login-register-wrapper{
  margin: auto;
  display: block;
  width: 475px;
}
.login-content{
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh + 125px);
}
.form-field{
  display: block;
}
.form-field input{
  width: 100%;
  height: 44px;
  background: none;
  border:2px solid #000000;
  padding: 0px 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  color:#888888;
}
.form-field input:focus, .form-field select:focus, .custom-radio input:checked + label{
  border:2px solid #FFCB04;
  color: #ffffff;
}
.form-field label{
  color:#888888;
}
.form-field select{
  width: 100%;
  height: 44px;
  background-color: initial;
  border:2px solid #000000;
  padding: 0px 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url('../images/arrow.png');
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  width: 100%;
  padding-right: 30px!important;
  color: #888888;
}
.custom-radio label{
  width: 100%;
  height: 44px;
  background-color: initial;
  border:2px solid #000000;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #888888;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.custom-radio input{
  display: none;
}
.custom-radio input + label::before{
  content:'';
  width:15px;
  height:15px;
  background: none;
  border:1px solid #000000;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  position: absolute;
  right: 10px;
  top:13px;
}
.custom-radio input + label::after{
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  position: absolute;
  right: 13px;
  top: 16px;
}
.custom-radio input:checked + label::after{
  background: #888888;
}
.custom-radio input:checked + label::before{
  border:1px solid #888888;
}
.register-outer p{
  font-size: 15px;
  color:#888888;
  padding-top: 5px;
  padding-bottom: 5px;
}
.login-register-wrapper h3{
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 10px;
}
.login-outer{
  max-width: 1000px;
  margin: auto;
}
.login-left{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.login-left p{
  color:#FFCB04;
}
.login-left h3{
  font-size: 30px;
  color:#ffffff;
  display: block;
  margin-bottom: 15px;
}
.login-right{
  width: 100%;
  background-color: #2A2A2A;
  display: block;
  padding:40px 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.forgot-pwd{
  display: inline-block;
  text-align: center;
  color:#FFCB04;
  font-size: 15px;
}
.login-right button, .login-right a{
  height: 44px;
  padding:10px 15px;
}

.underline{
  position: relative;
}
.underline:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #FFCB04;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.forgot-pwd.underline:after{
  bottom:5px;
}
.underline:hover:after { 
  width: 100%; 
  left: 0; 
}
.profile-dropdown{
  background: #ffffff;
}

.share-post{
  color: #FFCB04;
  font-size: 13px;
}
.share-post i{
  margin-right:6px;
}
.shareWith{
  background: #ffffff;
  display: none;
  padding: 10px 13px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  position: absolute;
  right: 0px;
  bottom: 20px;
  width: 134px;
  z-index: 1;
}
.shareWith p{
  margin-bottom: 5px;
  font-size: 13px;
  color:#121212;
  font-weight: 500;
}
.shareWith a{
  margin:3px;
  display: inline-block;
  color: #000000;
}
.shareWith a:hover{
  color: #FFCB04;
}
.share-post:hover .shareWith{
  display: block;
}


.animate-swipe-right.swipe{
  animation: swipeRight 0.5s;
  opacity: 1;
}
.animate-swipe-left.swipe{
  animation: swipeLeft 1s;
  opacity: 1;
}
.animate-swipe-up.swipe{
  animation: swipeDown 1.5s;
  opacity: 1;
}
.animate-swipe-down.swipe{
  animation: swipeUp 1.5s;
  opacity: 1;
}

@keyframes swipeRight {
  0% {
    transform: translate(30px, 0px);
    opacity: 0;
  }
  100% {
      transform: translate(0px,0px);
      opacity: 1;
  }
}
@keyframes swipeLeft {
  0% {
    transform: translate(-30px,0px);
    opacity: 0;
  }
  100% {
      transform: translate(0px,0px);
      opacity: 1;
  }
}
@keyframes swipeDown {
  0% {
      transform: translate(0px,-30px);
      opacity: 0;
  }
  100% {
      transform: translate(0px,0px);
      opacity: 1;
  }
}
@keyframes swipeUp {
  0% {
      transform: translate(0px, 30px);
      opacity: 0;
  }
  100% {
      transform: translate(0px, 0px);
      opacity: 1;
  }
}

.add-post{
  position: fixed;
  left: 20px;
  bottom:20px;
  padding:10px 20px;
  border-radius:50px;
  -webkit-border-radius:50px;
  font-size: 13px;
  color:#ffffff;
  border:1px solid #FFCB04;
  background: #121212;
  z-index: 1;
}
.add-post:hover{
  background: #FFCB04;
  color:#000000;
  font-weight:500;
}

.content .theme-btn{
  font-size: 14px!important;
  padding: 7px 15px;
}
.post-outer p span{
    color:#ffffff!important;
}
.login-content{
    background-image: url('../images/logo-bg.png');
    background-size: auto 50%;
    background-repeat: no-repeat;
    background-position: calc(50% - 400px) 97%;
}
.mySlides{
margin-top:-35px;
}
.dropdown-item.border-bottom{
    border-bottom: 1px solid #444 !important;
}
.login-right .alert{
    margin: 0px 10px;
    width: 100%;
    flex: 1;
    padding: 10px 13px;
}
.login-right .alert strong{
    font-weight: 600;
    font-size: 14px;
}
.login-right .alert button{
    border: none;
    background: none;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    padding: 10px;
}

.carousel-control-next, .carousel-control-prev{
  opacity:1;
}
.carousel-control-next, .carousel-control-prev{
  width:56px;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
  background-color: rgba(0,0,0,0.5);
  height:40px;
  background-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
border-radius: 30px;
-webkit-border-radius: 30px;
filter: none!important;
color: #000;
width: 40px;
border:2px solid rgba(255,255,255,0.5);
}
.carousel-control-next-icon:hover, .carousel-control-prev-icon:hover{
  background-color: #000;
  filter: initial!important;
  border-color: #F8C301;
}
.login-content{
  min-height: calc(100vh - 150px);
  padding-bottom: 30px;
  padding-top: 30px;
  height: auto;
}
#carouselExampleDark{
  margin-top: -30px;
}
#carouselExampleDark .carousel-item img{
  height: auto;
  object-fit: cover;
  object-position: top;
}
.form-field select{
  background-color: #2A2A2A;
}
.post-outer a .post-img img{
    height: 250px;
}
.alert{
    display: flex;
}
.alert button{
    border: none;
    background: #0A3622;
    width: 23px;
    height: 23px;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    padding-bottom: 2px;
}
.alert strong{
    flex:1;
}
.blog-actions{
    display: flex;
    flex: 1;
    justify-content: end;
}
.blog-actions a{
    border-radius: 50px;
    -webkit-border-radius: 50px;
    font-size: 13px;
    color: #FFFFFF;
    border: 1px solid #FFCB04;
    background: #121212;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
    margin-left:6px;
}
.blog-actions a:hover{
    border: 1px solid #FFCB04;
    background: #FFCB04;
    color: #000000;
}
.blog-actions.border-top{
    border: none !important;
    padding-top: 12px;
    height: 44px;
	padding-bottom: 44px;
}
.add-post-from-outer{
    min-height: 800px;
}
#carouselExampleDark .carousel-indicators{
    display:none;
}
.modal .modal-content{
        background: #2A2A2A;
}
.modal .modal-header, .modal .modal-footer{
    border-color: #444444;
}
.theme-button {
    padding: 5px 18px;
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    font-size: 13px !important;
    color: #FFFFFF !important;
    border: 1px solid #FFCB04 !important;
    background: none !important;
    z-index: 1;
    width: auto !important;
    line-height: 19px;
    height: 34px !important;
}
.btn-close{
    background-color: #fff;
    background-size: 12px;
}
.modal-body{
    font-size: 14px;
}
.section_show {
    position: relative;
    padding: 20px 10px 15px;
    margin-bottom: 20px;
    border: 1px dashed #666;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}
.section_show:hover{
    background: #444;
}
.section_show .blog-actions{
    position: absolute;
    right: 12px;
    top: -4px;
    display: flex;
}
.section_show:hover .blog-actions{
    display: flex;
}
.section_show .post-img{
    margin-top: 10px;
}
.ql-snow .ql-stroke, .ql-snow .ql-picker{
    stroke: #fff!important;
    color: #fff!important;
}
.ql-snow .ql-fill, .ql-snow .ql-stroke.ql-fill {
    fill: #fff!important;
}
.ql-snow.ql-toolbar button:hover, .ql-snow .ql-toolbar button:hover, .ql-snow.ql-toolbar button:focus, .ql-snow .ql-toolbar button:focus, .ql-snow.ql-toolbar button.ql-active, .ql-snow .ql-toolbar button.ql-active, .ql-snow.ql-toolbar .ql-picker-label:hover, .ql-snow .ql-toolbar .ql-picker-label:hover, .ql-snow.ql-toolbar .ql-picker-label.ql-active, .ql-snow .ql-toolbar .ql-picker-label.ql-active, .ql-snow.ql-toolbar .ql-picker-item:hover, .ql-snow .ql-toolbar .ql-picker-item:hover, .ql-snow.ql-toolbar .ql-picker-item.ql-selected, .ql-snow .ql-toolbar .ql-picker-item.ql-selected{
    color:#ffffff!important;
}
.ql-picker-options span:before{
    color:#000000;
}
.ql-picker-options span svg .ql-stroke{
    stroke: #000!important;
}
.profile-section{
  width: 100%;
  display: block;
  padding:100px 20px 20px;
  background: #2A2A2A;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  margin-top: 38px;
}
.user-profile-pic{
  width: 100px;
  height: 100px;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 500px;
  -webkit-border-radius: 500px;
  margin: -137px auto 0px;
}
.profile-name{
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 10px;
}
.profile-links{
  display: flex;
  justify-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.theme-outline-btn{
  border-radius: 50px;
  -webkit-border-radius: 50px;
  font-size: 13px;
  color: #FFFFFF;
  border: 1px solid #FFCB04;
  background: #121212;
  width:auto;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  margin-left:6px;
  display: inline-flex;
  padding: 0px 15px;
  align-items: center;
}
.theme-outline-btn i{
  margin-right: 5px;
}
.theme-outline-btn:hover{
  border: 1px solid #FFCB04;
  background: #FFCB04;
  color: #000000;
}
.profile-contact-info{
  display: block;
  font-size: 14px;
  text-align: center;
  font-weight: normal;
  border-top:1px solid #666666;
  border-bottom:1px solid #666666;
  padding: 10px 0px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.profile-contact-info span{
  padding: 0px 15px;
  color:#eeeeee;
  display: inline-block;
}
.about p{
  font-size: 13px;
  color:#eeeeee;
}
.simple-link{
  color:#FFCB04;
}
.profile-posts .post-header span{
  font-size: 15px;
}
.profile-posts .post-header span,
.profile-posts p{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.follow-people{
  background-color: #2A2A2A;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  display: flex;
  padding: 20px;
  position: relative;
}
.follow-people img{
  width: 100px;
  height: 100px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  object-fit: cover;
  object-position: center;
  border:3px solid #DDDDDD;
}
.follow-people > div{
  flex:1;
  padding-left:20px;
}
.follow-people span{
  margin-bottom: 5px;
  display: block;
}
.follow-people p{
  margin-bottom:0px;
  font-size: 13px;
  display: flex;
  border-bottom:1px solid #444444;
  padding:5px 0px;
}
.follow-people p label{
  flex:1;
}
.follow-people p strong{
  color:#999999;
}
.theme-outline-btn.selected{
  border: 1px solid #FFCB04;
  background: #FFCB04;
  color: #000000;
}
.my-tabs{
  border-color:#FFCB04!important;
}
.my-tabs .active{
  background: #FFCB04!important;
  color: #000000;
  border:none;
}
.my-tabs button{
  color:rgba(255,255,255,0.5);
}
.my-tabs button:hover{
  color:#FFCB04;
  border-color:#FFCB04!important;
}
.search-bar{
  border:1px solid rgba(255,255,255,.5);
  background: none;
  display: inline-block;
  padding: 0px 30px 0px 15px;
  height:35px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  position: relative;
}
.search-bar input{
  background: none;
  height: 35px;
  border:none;
  color:#ffffff;
  font-size: 13px;
}
.search-bar a{
  color:#ffffff;
  position: absolute;
  right:0px;
  top:8px;
  width: 30px;
  height: 30px;
  font-size:15px;
}
.welcome-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.welcome-title span{
  flex:1;
  padding-right: 10px;
  font-size: 15px;
}
.interests{
  border:1px solid #444444;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  background-color: #2A2A2A;
  cursor: pointer;
  position: relative;
  min-height: 46px;
  /* padding-top: 10px; */
}
.interest-img{
  height: 200px;
  transition: transform .2s;
  overflow: hidden;
}
.interests img{
  height:200px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .2s;
}
.interests:hover img{
  transform: scale(1.5);
}
.interests span{
  display: block;
  padding: 10px;
  font-weight: 500;
  position: relative;
  color:#ffffff;
  margin-right: 10px;
}
.interests:hover{
  background: #4A4A4A !important;
}
.interests.active{
  background: #FFCB04 !important;
}
.interests.active span{
  color:#222222;
}
.interests.active span:after{
  content:'\F26A';
  font-family: "bootstrap-icons";
  position: absolute;
  right: 5px;
  top:10px;
}
.users-name b{
  border:1px solid #FFFFFF;
  color: #FFFFFF;
  min-width: 24px;
  padding: 8px;
  height: 24px;
  font-size: 11px;
  font-weight:400;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
}
.custom-checkbox-container {
  display: flex;
  align-items: center;
}
.custom-checkbox {
  display: none;
}
.custom-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: #FFFFFF;
  position: relative;
  padding:10px;
}
.custom-checkbox-box {
  position: static;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #FFCB04;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.custom-checkbox-box::after {
  content: '';
  position: absolute;
  top:44%;
  left: 50%;
  width: 5px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) scale(0) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}
.custom-checkbox:checked + .custom-checkbox-label .custom-checkbox-box {
  background-color: #FFCB04;
  border-color: #FFCB04;
}
.custom-checkbox:checked + .custom-checkbox-label .custom-checkbox-box::after {
  transform: translate(-50%, -50%) scale(1) rotate(45deg);
  opacity: 1;
}
.custom-checkbox-label:hover .custom-checkbox-box {
  border-color: #FFCB04;
}
.profile-top-bg{
  height:114px;
  background-size: cover;
  margin-top: -100px;
  margin-left: -22px;
  margin-right: -22px;
  background-repeat: no-repeat;
  background-position: top;
}
.user-profile-pic{
  margin: -80px auto 0px;
  background: #000;
  border: 2px solid #444;
}
.interest-follows{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.interest-follows a{
  color:#ffffff;
  padding: 0px 8px;
  text-decoration: underline;
  font-weight: 400;
  font-size: 14px;
  color: #DDDDDD;
}
.interest-follows a:hover{
  color: #FFCB04;
}
.change-cover-pic{
  background: rgba(255, 203, 04, 1);
  padding: 6px 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  color:#000000;
  border: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 13px !important;
  font-weight: 600;
}
.change-cover-pic:hover, .change-cover-pic:focus, .change-cover-pic:active{
  background: #FFCB04!important;
  color:#000000!important;
}
.profile-top-bg, .user-profile-pic{
  position: relative;
}
.follow-people span{
  color: #FFCB04;
}
.follow-people{
  height: 100%;
}
.profile-contact-info{
  margin-top: 15px;
}
.header-profile-pic{
  border-radius: 50px;
  -webkit-border-radius: 50px;
  height: 44px;
  width: 44px;
  object-fit: cover;
}
.advertisment{
  display: flex;
  flex-direction: column;
  position: relative;
  left: initial;
  width:200px;
  margin-right: -230px;
}
.advertisment a{
  flex: inherit!important;
}
.content-outer{
  display: flex;
}
.content-left{
  flex:1;
}
.reply-list{
  margin-top:30px;
}
.reply{
  /* border:1px solid rgba(255,255,255,.2); */
  background: #3F3F3F;
  padding: 17px;
  border-radius:10px;
  -webkit-border-radius:10px;
  margin-bottom: 10px;
}
.user-comment p{
  font-size: 13px;
  color:#eeeeee;
}
.read-more{
  color:#FFCB04;
  font-size: 13px;
}
.user-comment textarea{
  height: 130px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.sub-comment{
  border-top: 1px solid #666666;
  padding:10px 0px 0px;
  margin-top: 15px;
}
.sub-comment .comment-text{
  margin-bottom: 0px!important;
} 
.form-outer label{
  color:#eeeeee;
}
.form-outer input, .form-outer input:focus, .form-outer textarea, .form-outer textarea:focus{
  background: none;
  color: #FFFFFF;
  outline: none;
  border: none;
  border: 1px solid #777777;
}
.content-outer {
  display: flex;
  padding-bottom: 40px;
}
/******************** new-pages-css ******************/

.create-profile-outer{
  position: relative;
  padding-left: 200px;
}
.profile-pic-outer{
  width:175px;
  height:175px;
  display: inline-block;
  background-color: #000;
  position: absolute;
  left:10px;
  top:0px;
  background-image: url('../images/male.png');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 0px;
}
.remove-pic{
  position: absolute;
  right:5px;
  top:2px;
  font-size:20px;
  color:#000000;
}
.profile-pic-outer img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.profile-pic-outer span{
  position: absolute;
  width: 100%;
  bottom:0px;
  left:0px;
  background: rgba(0,0,0,0.5);
  color:#ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:7px 0px;
  font-size: 13px;
}
.profile-pic-outer input{
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.create-profile-outer .form-field input, .create-profile-outer .form-field select{
  background-color: #2A2A2A;
}
.profile-pic-outer.fan-banner{
  position: relative;
  width: 100%;
  margin-top: 0px;
  background-image: url('../images/profile-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}


.fan-profile-outer{
  display: flex;
}
.fan-profile-left{
  width:190px;
  padding-right: 15px;
  border-right: 1px solid #444444;
}
.fan-profile-right{
  flex:1;
  max-width: 610px;
  padding-left: 15px;
}

.fan-profile-left .profile-pic-outer, .fan-profile-right .profile-pic-outer{
  left: 0px;
}
.fan-profile-left .profile-name{
  font-size: 13px;
}
.fan-profile-left h6{
  font-size: 13px;
  letter-spacing: 2px;
  color:#888888;
}
.fan-page{
  list-style: none;
  display: block;
  padding-left: 0px;
}
.fan-page li{
  margin-bottom:5px;
}
.fan-page li a{
  border: 1px solid #444444;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #2A2A2A;
  cursor: pointer;
  position: relative;
  padding:7px 10px;
  display: block;
  color:#aaaaaa;
  font-size: 13px;
}
.fan-page li a:hover, .fan-page li a.active{
  background: #4a4a4a;
  color:#ffffff;
}
.fan-tags{
  list-style: none;
  display: block;
  padding-left: 0px;
}
.fan-tags li{
  display: inline-block;
  margin-bottom:3px;
}
.fan-tags li a{
  border: 1px solid #444444;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  cursor: pointer;
  position: relative;
  padding:7px 10px;
  display: inline-block;
  color:#aaaaaa;
  font-size: 12px;
  margin-right:1px;
}
.fan-tags li a:hover, .fan-tags li a.active{
  background: #4a4a4a;
  color:#ffffff;
}
.fan-profile-right .interest-follows{
  justify-content: space-between;
  margin-bottom: 10px;
}
.add-fan-page{
  color: #FFCB04;
  border:1px solid #FFCB04;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  margin-bottom:8px;
}
.add-fan-page i{
  font-size: 13px;
}
.header-login{
  float: right;
}
.header-login input{
  background-color: #2A2A2A;
  border:none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  font-size: 13px;
  width: 200px;
  height: 30px;
  padding: 0px 10px;
  color:#ffffff;
}
.login-btn {
  height: 26px;
  display: inline-flex;
  padding: 0px 5px; /* Reduced left and right padding */
  border: 1px solid #FFCB04;
  color: #FFCB04;
  border-radius: 5px;
  font-size: 12px; /* Slightly smaller font */
  vertical-align: top;
  align-items: center;
}
.login-btn:hover{
  background-color: #FFCB04;
  color:#000000;
}
.header-login span{
  display: block;
  font-size: 13px;
  margin-top: 5px; 
}
.header-login span a{
  color:#FFCB04;
}
.search-btn {
height: 31px;
display: inline-flex;
padding: 5px 12px;
border: none;
color: #000;
border-radius: 5px;
font-size: 13px !important;
vertical-align: top;
align-items: center;
background: #FFCB04;
}