html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	font-family: 'Roboto', sans-serif;
	    background: #fafafa !important;
		font-size: 16px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	cursor: pointer;
}
a {
	text-decoration:none;
	cursor: pointer;
}
html, body {
    height: 100%;
}
a {
    color: #000000;
}
a:hover {
    color: #199bd6;
}
.clearfix {
	clear:both;
}
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
.container {
	max-width:1170px;
	min-height:75%;
	margin:0 auto;
}
/** Header Section Start ***/
.topDiv {
	border-bottom:1px solid #cccccc;
	padding:7px 0 7px;
	background: #ffffff;
}
.topDiv .container > div {
    float: left;
    width: 33.3%;
}
.topDiv .container > div.topRightDiv {
    float: right;
    text-align: right;
}
.topLeftDiv a {
    display: flex;
}
.topRightDiv ul {
    display: flex;
    float: right;
	margin-top: 2px;
}
.topRightDiv ul li {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 20px;
}
.topRightDiv ul li a {
    line-height: 13px;
}
.topRightDiv ul li a:hover {
    text-decoration: none;
}
/*** Header Section End ***/

/*** Trending section start ***/
.homeTop {
    margin-top: 50px;
}
.homeTop h2 {
    font-size: 57px;
    font-weight: 900;
	margin-bottom: 5px;
}
.homeTop h4 {
    color: #737373;
    font-weight: 300;
    line-height: 27px;
    font-size: 18px;
}
/*** Trending section End **/
#codeDiv{
    display: none;
}
.play-store{
    width: 150px;
    margin-top: 10px;
}
.user-photo{
    width: 200px;
    height: auto;
}
.user-thumb{
    width:70px;
    height: auto;
}
.top-user-photo{
    width: 30px;
    height: 30px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #ffffff;
    padding: 2px;
    border-radius: 100%;
}
a.active .top-user-photo {
	border-color:#199bd6;
}
.profile-user-photo{
    width: 200px;
    height: auto;
}

/*** OTP Section Start ***/
.loginPage, .registerPage {
    margin-top: 40px;
}
.loginPage .container, .registerPage .container {
    max-width: 940px;
    margin: 0 auto;
	display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
	align-items: center;
}
.logoImg {
	max-width:80%;
	margin-bottom:25px;
}
.preImg {
    text-align: right;
}
.preImg img {
    max-width: 480px;
}
.signText {
    text-align: center;
    display: block;
    padding: 10px;
}
button:focus, input:focus, textarea:focus, select:focus {
	outline:none;
}
.loginSection, .registerSection {
	max-width: 350px;
}
form .user_msg {
	margin:0;
}
form#frmLogin, form#frmRegister, .signupSection{
    border: 1px solid #ccc;	
	background: #fafafa;
	border-radius: 5px;
	margin-bottom:20px;
	background: #ffffff;
	    padding: 10px;
}
#frmLogin #phoneDiv, #frmRegister #phoneDiv, .signupSection, #codeDiv, #frmRegister #userDetailsDiv {
    padding: 30px 30px;
	text-align:center;
}
#frmLogin #sign-in-button, #frmLogin #confirm-code,
#frmRegister #sign-in-button, #frmRegister #confirm-code,
#frmRegister #firstNext, #frmRegister #firstNext, .signupSection a.button, #userDetailsDiv #submit-register{
    width: 100%;
    padding: 10px;
    border: none;
    background: #199BD6;
    color: #fff;
    border-radius: 5px;
    margin-top: 10px;
}
.signupSection a.button{
background:#cc1042;
}
.signupSection > div {
	display: flex;
	padding: 0 10px;
}
.signupSection a.button {
    display: block;
}
#frmLogin input, #frmRegister input{
    max-width: 100%;
    width: -webkit-fill-available;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
	background: #fafafa;
}
#frmRegister input#phoneNumber{
    max-width: 64%;
}
#frmRegister input#countryCode{
    max-width: 16%;
}
#userDetailsDiv{
    display: none;
}
.appStore {
    text-align: center;
	margin-top:20px;
}
#userDetailsDiv .epDetail {
    display: block;
}
#userDetailsDiv .epDetail > div {
    float: none;
    width: 100%;
	font-weight:400;
	text-align: left;
	font-size: 14px;
}
#userDetailsDiv .epDetail input[type="radio"] {
    margin: 0 10px 0 0;
}
#userDetailsDiv .epDetail input[value="f"] {
    margin-left: 10px;
}
/*** OTP Section End ***/

/*** My Videos (Dashboard) Start ***/
.myVideosSection {
    margin-top: 20px;
}
.video-js {
    position: relative !important;
    /*width: 100% !important;
    height: 400px !important;*/
}
.vjs-poster {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.hideVideo{
    display: none;
}
/*.vjs-tech { object-fit: cover; }*/
.userCountDetails {
    display: flex;
	margin-bottom: 20px;
    border-top: 1px solid #eaeaea;
    padding-top: 40px;
}
.section3 {
	margin:15px 0;
}
.section3 a {
    width: 100%;
    display: block;
}
.videoList .videoFeed {
    max-height: 380px;
	height: 380px;
    overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	position:relative;
}
.videoList .videoDisplay, .videoList .videoDisplay a, .videoList .videoDisplay .video-js {
    height: 100%;
}
.videoList .videoDisplay .video-js {
    padding-top: 0% !important;
    padding-bottom: 0%;
    transform: scale(1.25);
	    border-radius: 7px;
    overflow: hidden;
}
.myVideosFeed {
    margin: 0 -10px;
}
.videoList .vlistDetail{
       position: absolute;
    z-index: 9;
    bottom: 0;
    padding: 10px 15px;
	display:block;
	width:100%;
}
.videoList .user-avatar .profile-user-photo {
    display: block;
    margin-bottom: 10px;
}
.videoList .profile-user-photo {
	width:45px;
	height:45px;
	border:1px solid #ffffff;
}
.videoList .vlistDetail span {
    color: #fff;
	font-size: 20px;
    font-weight: 500;
}
.vlistDetail span i {
    padding: 0 8px 0 2px;
}
.userCountDetails > div {
    width: 100px;
    display: inline-block;
    text-align: center;
    background: #fff;
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
	margin: 0 10px 10px 0;
}
.userCountDetails > div .innerSec {
	padding:10px;
	display: block;
}
.userCountDetails > div p {
    margin-bottom: 0;
	color: #999999;
	font-size: 14px;
}
.userCountDetails > div p.countTotal {
    font-size: 21px;
    font-weight: 700;
	color: #000000;
	line-height: 20px;
}
.userCountDetails > div:hover {
	background:#199bd6;
}
.userCountDetails > div:hover p.countTotal, .userCountDetails > div:hover p {
	color: #ffffff;
}
/*** My Videos (Dashboard) End ***/

/*** My Profile Start ***/
.myProfile {
    display: flex;
    align-items: center;
	margin: 40px 0 20px;
}
.myProfileLeft {
    width: 180px;
    text-align: center;
    max-width: 100%;
}
.myProfileRight {	
	padding:0 15px;
	font-size: 16px;
}
.myProfileRight .fullname {
    font-size: 32px;
    color: #000000;
    font-weight: 300;
	margin-bottom: 10px;
}
.myProfileRight .userName > div {
        margin: 8px 0;
    line-height: 21px;
}
.profileMenu {
    position: relative;
}
.myProfileRight a.dropDown {
    font-size: 42px;
    text-decoration: none;
    line-height: 0px;
    margin: 0 20px;
    height: 20px;
    display: inline-block;
	color: #CC1142;
}
.profile-user-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
}
a.profileBtn, button.Unfollow, button.submitbtn, button.Follow {
    text-decoration: none;
    padding: 7px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #000;
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    line-height: 17px;
	box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
	    background: transparent;
}
a.profileBtn:hover, button.Unfollow:hover, button.submitbtn:hover, button.Follow:hover {
	background:#199bd6;
	border: 1px solid #199bd6;
	color:#ffffff;
	text-decoration: none;
}
.vtimeLenght {
	text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #f00;
    margin-top: 30px;
}
.settingsMenu {
    position: relative;
	margin-top: 28px;
}
.settingsMenu a {
	font-size: 24px;
    font-weight: 900;
}
.settingsMenu a:hover {
    text-decoration: none;
    color: #000000;
}
.settingsMenu .fa-cog {
    font-size: 21px;
}
.settingsMenu .fa-cog:before {
    content: url(../images/filter2.png);
	float: left;
    height: 24px;
    transform: scale(0.7);
    margin: 0 -5px 0 -8px;
}
#user-settings{
	margin-top: 8px;
    padding: 15px 0px 20px;
	color:#000000;
	line-height: 24px;
}
#user-settings a {
	color: #CC1142;
}
.user-gender span {
    margin: 0 10px 0 0px;
}
.user-age {
    width: 230px;
	margin-top: 10px;
}
.user-age label {
    float: left;
}
.user-age input#age_range {
    background: transparent;
	border:0; color:#000; 
	font-weight:bold;
	float: left;
	    float: right;
    width: 40px;
	width: 28px;
    text-align: center;
}
.user-age #slider-range-min {
    margin-top: 6px;
    height: 9px;
    border: none;
    border-radius: 20px;
    background: #111111;
	    margin-left: 10px;
}
.user-age span.ui-slider-handle {
    border-radius: 20px;
    background: #CC1142;
}
/* Styling Checkbox Starts */
.checkbox-label {
    display: inline-block;
    position: relative;
    margin: auto;
    cursor: pointer;
    font-size: 22px;
    line-height: 21px;
    height: 21px;
    width: 80px;
	margin-top: 4px;
}
.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkbox-label .checkbox-custom {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 21px;
    width: 21px;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    border: 2px solid #FFFFFF;
}
.checkbox-label input:checked ~ .checkbox-custom {
    background-color: #FFFFFF;
    border-radius: 5px;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity:1;
    border: 2px solid #e5e5e5;
}
.checkbox-label .checkbox-custom::after {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    height: 0px;
    width: 0px;
    border-radius: 5px;
    border: solid #009BFF;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    -ms-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity:1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.checkbox-label input:checked ~ .checkbox-custom::after {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  opacity:1;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #009BFF;
  border-width: 0 2px 2px 0;
  background-color: transparent;
  border-radius: 0;
}

/* For Ripple Effect */
.checkbox-label .checkbox-custom::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: 0px;
    height: 0px;
    border-radius: 5px;
    border: 2px solid #FFFFFF;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);    
}
.checkbox-label input:checked ~ .checkbox-custom::before {
    left: -3px;
    top: -3px;
    width: 21px;
    height: 21px;
    border-radius: 5px;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    opacity:0;
    z-index: 999;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.checkbox-label .checkboxText {
	margin: 0 0 0 30px;
	font-weight: 500;
}
/** PopUp **/
.modal-open .modal {
    overflow-y: hidden !important;
    height: 100%;
	    padding: 0 !important;
}
#video_modal .modal-body {
	padding:0;
	display: flex;
}
#video_modal .modal-dialog {
    width: 1160px;
    height: 100%;
    padding: 40px 0;
    margin: 0 auto;
	max-width:1160px;
}
#video_modal .modal-content, #video_modal #video_detail, #video_modal .modal-video-right, #video_modal .video-js {
	height: 100%;
}
#video_modal .video-js {
	width:100%;
	    padding-top: inherit;
}
#video_modal .modal-video-right {
        width: 65%;
    position: relative;
    overflow: hidden;
    border-radius: 5px 0 0 5px;
}
#video_modal .modal-video-right .video-js .vjs-tech {
    transform: scale(1.2);
}
#video_modal .modal-video-left {
        width: 35%;
    padding: 15px;
    position: relative;
    max-width: 410px;
}
#video_modal .modal-video-left h2 {
    margin-top: 15px;
    line-height: 20px;
    font-weight: 400;
    font-size: 14px;
}
.prevNext button {
	position:absolute;
	top: 47%;
	background: transparent;
    border: none;
}
.prevNext button:hover, .prevNext button:focus, .prevNext button:active {
    background: transparent !important;
	outline:none;
}
.prevNext svg.feather {
    stroke-width: 4px;
}
.prevNext .previous {
	left:-50px;
}
.prevNext .next {
	right:-50px;
}
.userDetailModal {
    display: inline-block;
    width: 100%;
}
.userDetailModal .profile-user-photo {
    width: 50px;
    height: 50px;
}
.userDetailModal > * {
    float: left;
}
.userDetailModal h4.fullname {
    margin: 0 12px;
}
.comment-row {
    display: flex;
}
.comment-row .userPhoto img {
    width: 40px;
    height: 40px;
    margin: 0 15px 15px 0;
}
.commentsTitle {
    margin-top: 15px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
}
.commentsTitle span {
	font-size:12px;
	margin-left:10px;
}
.video_comments {
    overflow-y: scroll;
    height: fit-content;
    margin-top: 20px;
    max-height: calc(100% - 300px);
}
.comment-row .userDetails {
    line-height: 16px;
}
.comment-row .userFullName {
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

/*** My Profile End ***/

/*** Edit Profile Start **/
.user_msg {
    padding: 10px 0;
    text-align: center;
    max-width: 940px;
    margin: 40px auto 20px;
    width: 100%;
    background: #199bd6;
    color: #fff;
}
.user_msg a {
	color:#b7def0;
}
.user_msg a:hover {
	color:#ffffff;
}
.edit-profile {
	border: 1px solid #eaeaea;
	margin: 40px auto 20px;
	background: #ffffff;
	max-width: 940px;
}
.edit-profile-top {
    display: flex;
    align-items: center;
    padding: 15px 20px;
}
.editProfileTopRight .fullname {
    margin-bottom: 5px;
}
#uploaded_image .profile-user-photo {
    width: 70px;
    height: 70px;
}
.editProfileTopRight {
    margin-left: 20px;
	position: relative;
	overflow: hidden;
}
#profile_pic {
    position: absolute;
    left: -90px;
    cursor: pointer;
    color: #f00;
    width: 250px;
    opacity: 0;
}
.editProfileTopRight label {
	color: #CC1142;
}
.edit-profile-section {
    border-top: 1px solid #eaeaea;
}
.edit-profile-section > div {
    float: left;
}
.edit-profile-section-left {
    width: 25%;
}
.edit-profile-section-right {
    border-left: 1px solid #eaeaea;
    padding: 40px;
	width: 62%;
}
.edit-profile-section-left ul li {
    padding: 12px 15px;
}
.edit-profile-section-left ul li.active {
    background-color:#199bd6;
	color:#ffffff;
}
.epDetail {
    clear: both;
	display:flex;
	margin: 15px 0;
}
.epDetail > div {
    float: left;
}
.epDetail .epLeft {
    width: 30%;
    padding-right: 20px;
    text-align: right;
    font-weight: 500;
    color: #444444;
    line-height: 30px;
}
.epRight {
    width: 70%;
	line-height: 30px;
}
.epRight input {
    width: 380px;
    padding: 7px 10px;
    border-radius: 5px;
    border: 1px solid #eaeaea;
	max-width: 100%;
}
.epRight input[type="radio"] {
    width: auto;
}
.epRight textarea {
    width: 380px;
    padding: 10px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #eaeaea;
    max-width: 100%;
}
.epRight input[type=submit] {
    max-width: 140px;
    background: #199bd6;
    color: #fff;
	    padding: 12px 20px;
		border: none;
		font-weight: 600;
}
/** Edit Profile End ***/

/** Welcome Page ***/
.welcomeTxt, .api-error {
	margin: 40px 0 20px;
}
/** Footer Section Start **/
#footer {
    padding: 30px 0 20px;
	margin-top: 30px;
}
footer ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer nav.footer-menu, footer nav li {
    display: inline-block;
}
footer nav li {
    margin-right: 20px;
}
footer .copyright {
    float: right;
}
/** Footer Section End **/

/** Loading circle animation - START **/
.circle{
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.circle1{
    position: absolute;
    width: 30px;
    height: 30px;
    background: #CC1142;
    box-shadow: inset 0px 1px 1px #CC1142, 3px 3px 9px rgba(0,0,0,0.4);
    border-radius: 50%;
    animation: circleone 1s infinite;
}
@keyframes circleone {
    0%{
        transform: scale(1);
        left: 50%;
        z-index: 1;
    }
    25%{
        transform: scale(0.5);
        z-index: 1;
    }
    50%{
        transform: scale(1);
        left: 25%;
    }
    75%{
        transform: scale(1);
    }
    100%{
        transform: scale(1);
        left: 50%;
    }
}

.circle2{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 50%;
    background: #199BD6;
    box-shadow: inset 0px 1px 1px #199BD6, 3px 3px 9px rgba(0,0,0,0.4);
    border-radius: 50%;
    animation: circletwo 1s infinite;
    animation-delay: .5s;
}
@keyframes circletwo {
    0%{
        transform: scale(1);
        left: 50%;
    }
    25%{
        transform: scale(0.5);
    }
    50%{
        transform: scale(1);
        left: 25%;
    }
    75%{
        transform: scale(1);
    }
    100%{
        transform: scale(1);
        left: 50%;
    }
}
/** Loading circle animation - END **/

/** Upload Page **/
h3.h3title {
    text-align: center;
    width: 100%;
    font-size: 24px;
    color: #199bd6;
    text-transform: uppercase;
}
.uploadVideo .edit-profile-section-right {
	padding:40px 0;
	border-left:none;
	width: 100%;
}
.uploadVideo .edit-profile-section-right form {
	padding:0 20px;
}
.videoFramePreview canvas {
    width: 100%;
    display: block;
	    border-radius: 10px;
}
.videoFramePreview {
	width: 23.5%;
	float: left;
	border: 2px solid #ffffff;
	background:#CC1142;
	border-radius: 12px;
    overflow: hidden;
}
.uploadVideo .activeCls{
	border: 2px solid #CC1142;
	opacity: 0.5;
}
#overlay {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
	height:100%;
	display: none;
	background: rgba(0,0,0,0.8);
}
.cv-spinner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.spinner {
	width: 40px;
	height: 40px;
	border: 4px #ddd solid;
	border-top: 4px #2e93e6 solid;
	border-radius: 50%;
	animation: sp-anime 0.8s infinite linear;
}
.video-processing-text {
    margin-top: 30px;
    color: #fff;
    font-size: 21px;
    font-weight: 300;
    letter-spacing: 1px;
}
@keyframes sp-anime {
	100% {
		transform: rotate(360deg);
	}
}
.is-hide{
	display:none;
}
/*** About page ***/
#primary {
    line-height: 24px;
}
.privacy #primary h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 30px 0 10px;
}
.privacy ul {
    list-style: circle;
    padding-left: 2rem;
    margin-bottom: 20px;
}
.privacy a{
    color:#199bd6;
}
#primary p {
    margin-bottom: 15px;
}
table.orgCollect {
	width:100%;
	text-align:left;
}
table.orgCollect td, table.orgCollect th {
	padding:12px;
	border:1px solid #eaeaea;
	background: #ffffff;
}
table.orgCollect th {
	background: #cacaca;
}

/** Follower Page **/
.Feeds .followBtn button {
    background: #199bd6;
    color: #fff;
    border: 1px solid #199bd6;
    font-size: 12px;
    padding: 6px 10px;
    line-height: 12px;
    margin-top: 6px;
    border-radius: 40px;
	    box-shadow: none;
}
.Feeds .followBtn button:hover, .Feeds .followBtn button.Unfollow {
		background:#CC1142;
	border-color:#CC1142;
}
.Feeds .followBtn button.Unfollow:hover {
	background:#199bd6;
	border-color:#199bd6;
}
.Feeds a, .Feeds a:hover {
	color:#000000;
	text-decoration:none;
}
.Feeds .userFullName, .Feeds .username {
    font-size: 14px;
    font-weight: 300;
}
.Feeds .profile-user-photo {
    width: 100px;
    height: 100px;
    border: 1px solid #dedede;
    padding: 3px;
	margin-bottom: 10px;
}
.myFollowingSection h3.h3title, .myFollowersSection h3.h3title {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    margin: 40px 0 60px;
}
.commentMsgbox {
    position: absolute;
    width: 92%;
    bottom: 20px;
}
.commentMsgbox textarea {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    margin-top: 10px;
	padding:5px 15px;
	font-size:14px;
}
.commentMsgbox textarea:focus {
	border-color:#199bd6;
}
.commentMsgbox button.submitbtn {
	margin-top:0;
}