* {
    box-sizing: border-box;
}

input {
    font-size: 17px;
}

*:focus {
    outline: 0 !important;
}

a {
    color: inherit;
    text-decoration: none;
}

::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #8D8D8D !important;
}

::placeholder {
    color: #8D8D8D !important;
}

html, body , html body * {
  overscroll-behavior: none;
}

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    background: #0a0a0a;
    color: #fff;
}

body.has-bottom-nav {
    padding-bottom: 110px;
}

body,
body * {
    font-family: "Manrope", sans-serif;
}

button:disabled{
    cursor: not-allowed !important;
    opacity: 0.1 !important;
}

.max-width-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.splash-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    color: #0A0A0A;
}

.splash-loader .logo-holder {
    margin-bottom: 30px;
}

.splash-loader .logo-holder img {
    width: 220px;
    max-width: 100%;
}

.splash-loader .splash-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.splash-loader .splash-desc {
    font-size: 16px;
}

.scroller-outer {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroller-wrapper {
    display: flex;
    width: 100%;
    position: relative;
}

.scroller-wrapper .each-scroll {
    width: 100%;
    /* background: url('../images/index1.jpg') no-repeat left top;
    background-size: cover; */
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    position: relative;
}

.scroller-wrapper .each-scroll.scroll-2 {
    width: 100%;
    /* background: url('../images/index2.jpg') no-repeat left top;
    background-size: cover; */
}

.scroller-wrapper .each-scroll .scroll-images{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: calc(100vh - 310px);
}

.scroller-wrapper .each-scroll .scroll-images img{
    max-width: 100%;
    max-height: calc(100vh - 350px);
}

.scroller-wrapper .each-scroll .scroll-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1f1f1f;
    border-radius: 20px 20px 0 0;
    height: 284px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.scroller-wrapper .each-scroll .scroll-text .title-text {
    /* font-size: 24px; */
    font-size: 16px;
    font-weight: 800;
    width: 100%;
    text-align: center;
    line-height: 1.2em;
}

.scroller-wrapper .each-scroll .scroll-text .desc-text {
    font-size: 14px;
    line-height: 1.2em;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.scroller-wrapper .each-scroll .dot-counts {
    width: 100%;
    margin:0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroller-wrapper .each-scroll .dot-counts span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 3px;
}

.scroller-wrapper .each-scroll .dot-counts span.long-bar {
    /* width: 35px;
    border-radius: 3px; */
    transform: scale(1.2);
    background: rgba(255, 255, 255, 1);
}

.scroller-wrapper .each-scroll .scroll-text .buttons-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 50px;
}

.scroller-wrapper .each-scroll .scroll-text .buttons-wrapper a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.scroller-wrapper .each-scroll .scroll-text .buttons-wrapper a.arrow-link {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.1); */
    background: #fff;
}

.scroller-wrapper .each-scroll .scroll-text .buttons-wrapper a.arrow-link svg {
    width: 24px;
    height: 24px;
    fill: #000;
}

.scroller-wrapper .each-scroll.scroll-2 .scroll-text .buttons-wrapper a.arrow-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 1);
}

.login-wrapper {
    width: 100%;
    background: url('../images/login-bg.jpg') no-repeat left top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper .login-box-outer {
    background: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-wrapper .login-box-outer .login-box {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    /* background: rgba(217, 217, 217, 0.1); */
    border: solid 1px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.blur-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(217, 217, 217, 0.5);
    -webkit-filter: blur(100px);
    -moz-filter: blur(100px);
    -o-filter: blur(100px);
    -ms-filter: blur(100px);
    filter: blur(100px);
}

.login-wrapper .login-box-outer .login-box .form-box {
    background: none;
    position: relative;
    z-index: 1;
}

.login-wrapper .login-box-outer .login-box .head-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.login-wrapper .login-box-outer .login-box .desc-text {
    text-align: center;
    font-size: 14px;
    margin: 15px 0 20px 0;
}

.login-wrapper .login-box-outer .login-box .form-input {
    position: relative;
    margin-bottom: 20px;
}

.login-wrapper .login-box-outer .login-box .form-input label.form-label {
    padding: 5px;
    font-size: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper .login-box-outer .login-box .form-input .resend-text {
    padding: 5px;
    font-size: 12px;
    text-align: center;
}

.login-wrapper .login-box-outer .login-box .form-input .resend-text a {
    color: inherit;
}

.login-wrapper .login-box-outer .login-box .form-input label.form-label a {
    color: inherit;
}

.login-wrapper .login-box-outer .login-box .form-input label.form-label>span {
    display: flex;
    align-items: center;
}

.login-wrapper .login-box-outer .login-box .form-input label.form-label>span>svg {
    margin-left: 5px;
}

.login-wrapper .login-box-outer .login-box .form-input .eye-holder {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -8px;
}

.login-wrapper .login-box-outer .login-box .form-input .eye-holder svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    position: absolute;
    right: 0;
    top: 0;
}

.login-wrapper .login-box-outer .login-box .form-input .eye-holder+input {
    padding-right: 40px;
}

.login-wrapper .login-box-outer .login-box input[type=text],
.login-wrapper .login-box-outer .login-box input[type=password] {
    background: rgba(10, 10, 10, 0.5);
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    display: block;
    border: 0;
    box-shadow: 0 0 0 #fff;
    width: 100%;
    border-radius: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.login-wrapper .login-box-outer .login-box .pincode-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-wrapper .login-box-outer .login-box .pincode-wrapper input[type='number'] {
    -moz-appearance: textfield;
    background: rgba(10, 10, 10, 0.5);
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    display: block;
    border: 0;
    box-shadow: 0 0 0 #fff;
    width: 100%;
    border-radius: 10px;
    width: 52px;
    text-align: center;
    margin: 0 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


.form-submit {
    padding: 20px;
}


.login-wrapper .login-box-outer .login-box button,
.login-wrapper .login-box-outer .login-box a.button,
.form-submit button {
    background: #fff;
    padding: 15px 20px;
    font-size: 16px;
    color: #0A0A0A;
    display: block;
    border: 0;
    box-shadow: 0 0 0 #fff;
    width: 100%;
    border-radius: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.login-wrapper .login-box-outer .login-box .login-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    flex-wrap: wrap;
}

.login-wrapper .login-box-outer .login-box .login-links a {
    padding: 2px 0;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

/* The container */
.checkbox-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input[type="checkbox"],
.checkbox-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: auto;
    width: auto;
    visibility: visible;
    z-index: -1;
}

/* Create a custom checkbox */
.checkmark {
    height: 20px;
    width: 20px;
    background: none;
    border: solid 1px #000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input~.checkmark {
    background: none;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
    background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-container .checkbox-text {
    padding-left: 7px;
    width: calc(100% - 25px);
    font-size: 14px;
}

.checkbox-container .checkbox-text a {
    color: inherit;
    font-weight: 600;
}

.alert-box {
    position: relative;
    padding: 15px;
    margin: 0px 0 20px 0;
    border-radius: 5px;
    color: #fff;
    background-color: #085910;
    text-align: left;
}

.alert-box.failed {
    background-color: #590808;
}

.loading-screen {
    display: none;
}

body.loading{
    overflow: hidden;
}

body.loading > *{
    opacity: 0;
}

body.loading > *.loading-screen {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(10, 10, 10, 1);
    z-index: 988;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    opacity: 1;
}

.lds-grid {
    /* change color here */
    color: #fff
}

.lds-grid,
.lds-grid div {
    box-sizing: border-box;
}

.lds-grid {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-grid div {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: currentColor;
    animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
    top: 8px;
    left: 8px;
    animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
    top: 8px;
    left: 32px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
    top: 8px;
    left: 56px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
    top: 32px;
    left: 8px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
    top: 32px;
    left: 32px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
    top: 32px;
    left: 56px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
    top: 56px;
    left: 8px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
    top: 56px;
    left: 32px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
    top: 56px;
    left: 56px;
    animation-delay: -1.6s;
}

@keyframes lds-grid {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.page-sub-heading {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    padding: 20px 20px 0 20px;
}

.cat-wrapper {
    padding: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.cat-wrapper .cat-data-row {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 10px;
}

.cat-wrapper .cat-data-row label {
    display: flex;
    margin: 10px 0;
    width: 100%;
    cursor: pointer;
    min-height: 220px;
}

.cat-wrapper .cat-data-row label input {
    position: absolute;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cat-wrapper .cat-data-row label .cat-data-wrapper {
    display: flex;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.cat-wrapper .cat-data-row label input[type="checkbox"]:checked+.cat-data-wrapper {
    border: solid 1px #FDFDFD
}

.cat-wrapper .cat-data-row label .cat-data-wrapper img {
    border-radius: 10px;
    width: 100%;
}

.cat-wrapper .cat-data-row label .cat-data-wrapper .cat-name {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.inner-pages-wrapper {
    padding: 85px 20px 20px 20px;
}

.anonymous-page .inner-pages-wrapper {
    padding-top: 55px;
}

.anonymous-page .page-back-header{
    padding: 40px 20px 20px 20px;
}

.inner-pages-wrapper.prelative {
    position: relative;
}

.inner-pages-wrapper.chat-page {
    padding-bottom: 0;
}

.inner-pages-wrapper.chat-page .inside-page-wrapper {
    padding-bottom: 0;
}

.page-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #0a0a0a;
    z-index: 5;
    padding: 20px;
}

.page-header .max-width-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* background-image: linear-gradient(to right, #fff 0%, #0a0a0a 60%); */
    line-height: 0;
    padding: 2px 0 2px 2px;
    border-radius: 23px;
    max-width: 460px;
}

.page-header .right-icons {
    display: flex;
    align-items: center;
}

.page-header .right-icons a {
    margin-right: 15px;
    position: relative;
}

.page-header .right-icons a svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 20px;
    background: #0a0a0a;
}

.page-header .right-icons a.no-stroke svg {
    stroke: none;
    stroke-width: 0;
}

.page-header .right-icons.only-fill-icons a svg {
    stroke: none;
    stroke-width: 0;
    fill: #828282;
}

.page-header .right-icons a.message-icon svg {
    stroke: none;
    stroke-width: 0;
    fill: #828282;
    width: 24px;
    height: 24px;
}

.page-header .right-icons a.notification::after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -1px;
    bottom: 0px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #FDFDFD;
}

.page-header .right-icons a.has-dots::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 0px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
}

.page-header .right-icons a:last-child {
    margin-right: 0;
}

.page-header .right-icons a.new-post {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border: solid 1px #929292;
    border-radius: 50%;
}

.page-header .right-icons a.new-post svg {
    fill: #929292;
    width: 14px;
    height: 14px;
}

.profile-card-box {
    background: rgba(217, 217, 217, 0.1);
    padding: 20px;
    display: flex;
    width: 100%;
    border-radius: 20px;
    align-items: center;
}

.profile-card-box .left-section {
    width: 100px;
}

.profile-card-box .left-section .card-text {
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.profile-card-box .left-section .profile-img {
    text-align: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.profile-card-box .left-section .profile-img.active {
    outline: solid 1px #fff;
    outline-offset: 3px;
}

.profile-card-box .left-section .profile-img img {
    min-width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile-card-box .left-section .card-text .ctext {
    display: flex;
    border: solid 1px #fff;
    height: 24px;
    border-radius: 12px;
    padding: 0 10px;
    color: #fff;
    font-size: 11px;
    line-height: 11px;
    align-items: center;
}

.profile-card-box .left-section .card-text .ctext span,
.profile-card-box .left-section .card-text .ctext a {
    margin-top: -1px;
}

.profile-card-box .right-section {
    padding-left: 10px;
    width: calc(100% - 100px);
    font-size: 12px;
}

.profile-card-box .right-section .profile-name {
    font-size: 14px;
    font-weight: 600;
}

.profile-card-box .right-section .profile-job {
    padding-top: 5px;
    padding-bottom: 10px;
}

.profile-card-box .right-section .profile-det {
    padding-bottom: 10px;
}

.profile-card-box .right-section .profile-url {
    word-break: break-all;
}

.profile-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0 0 0;
}

.profile-tabs-wrapper .each-tabs {
    display: flex;
    align-items: center;
    font-size: 12px;
    background: rgba(217, 217, 217, 0.1);
    margin: 10px 0;
    width: calc(50% - 10px);
    padding: 10px;
    border-radius: 8px;
    justify-content: center;
    font-weight: 600;
}

.profile-tabs-wrapper .each-tabs:nth-child(odd){
    margin-right: 10px;
}

.profile-tabs-wrapper .each-tabs:nth-child(even){
    margin-left: 10px;
}

.profile-tabs-wrapper .each-tabs.full-width {
    width: 100%;
    justify-content: space-between;
    margin-right: 0;
}

.fixed-back-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #0a0a0a;
    z-index: 1;
    padding-top: 20px;
}

.page-back-header {
    position: fixed;
    top: 0;
    background: #0a0a0a;
    z-index: 5;
    padding: 20px;
    width: 100%;
}

.page-back-header .max-width-wrapper {
    display: flex;
    align-items: center;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
}

.page-back-header .max-width-wrapper.has-border-bottom {
    position: relative;
}

.page-back-header .max-width-wrapper.has-border-bottom::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 1px;
    background: #2D2D2D;
}

.fixed-back-header .page-back-header {
    border-bottom: solid 1px #1a1a1a;
}

.page-back-header a.back-arrow {
    padding: 10px 10px 10px 0;
    line-height: 0;
}

.page-back-header a.back-arrow svg {
    width: 17px;
    height: 17px;
    fill: #fff;
}

.page-back-header .page-title {
    width: calc(100% - 27px);
    text-align: center;
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-back-header.has-right-icon {
    justify-content: space-between;
}

.page-back-header.has-right-icon .right-end-links a {
    display: flex;
    align-items: center;
}

.page-back-header.has-right-icon .right-end-links a svg {
    width: 18px;
    height: 18px;
    fill: #5e5e5e;
}

.page-back-header.has-right-icon .add-button-with-dropdown {
    position: relative;
}

.page-back-header.has-right-icon .add-button-with-dropdown .add-chat-group svg {
    width: 18px;
    height: 18px;
    fill: #5e5e5e;
}

.page-back-header.has-right-icon .add-button-with-dropdown .right-dot-dropdown-wrapper {
    position: absolute;
    top: 13px;
    right: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height ease-in-out 500ms;
    z-index: 2;
}

.page-back-header.has-right-icon .add-button-with-dropdown .right-dot-dropdown-wrapper.show {
    max-height: 200px;
}

.page-back-header.has-right-icon .add-button-with-dropdown .right-dot-dropdown {
    background: #2D2C2C;
    border-radius: 10px 0 10px 10px;
    box-shadow: 4px 0 4px rgba(0, 0, 0, .25);
    position: relative;
    margin-top: 20px;
}

.page-back-header.has-right-icon .add-button-with-dropdown .right-dot-dropdown::before {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 15px solid #2D2C2C;
    border-left: 15px solid transparent;
    position: absolute;
    top: -15px;
    right: 0;
}

.page-back-header.has-right-icon .add-button-with-dropdown .right-dot-dropdown a {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 10px 15px 10px 15px;
    border-bottom: solid 1px #444141;
    padding-left: 10px;
    font-size: 12px;
    width: 130px;
    justify-content: center;
}

.page-back-header.has-right-icon .add-button-with-dropdown .right-dot-dropdown a:last-child {
    border-bottom: 0;
}

.page-back-header.has-right-icon .page-title {
    width: auto;
}

.my-profile-details {
    padding: 20px 0;
}

.my-profile-details .profile-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.my-profile-details .profile-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-profile-details .profile-img-wrapper .profile-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.my-profile-details .profile-img-wrapper .profile-img img.profilepic {
    min-width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.my-profile-details .profile-img-wrapper .edit-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0A0A0A;
    border: solid 1px #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.my-profile-details .profile-name {
    text-align: center;
    font-size: 18px;
    padding: 5px 0 0 0;
    font-size: 600;
}

.my-profile-details .profile-email {
    text-align: center;
    font-size: 14px;
}

.profile-navigations {
    padding: 20px 0;
}

.profile-navigations .nav-header {
    font-size: 14px;
    font-size: 600;
}

.profile-navigations .nav-links {
    padding-top: 15px;
}

.profile-navigations .nav-links a {
    padding: 15px 0;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    justify-content: space-between;
}

.profile-navigations .nav-links a .left-section {
    display: flex;
    align-items: center;
}

.profile-navigations .nav-links a .left-section svg {
    width: 18px;
    height: 18px;
    line-height: 0;
    fill: rgba(255, 255, 255, 0.4);
}

.profile-navigations .nav-links a .left-section span {
    padding-left: 20px;
}

.profile-navigations .nav-links a .right-arrow svg {
    width: 14px;
    height: 14px;
    line-height: 0;
    fill: rgba(255, 255, 255, 0.4);
}

.profile-navigations .nav-links a.delete-link {
    color: rgba(255, 1, 1, 0.5);
}

.profile-navigations .nav-links a.delete-link .right-arrow svg {
    fill: rgba(255, 1, 1, 0.5);
}

.inside-page-form .form-input {
    padding: 10px 0;
    position: relative;
}

.inside-page-form .form-input input[type=text],
.inside-page-form .form-input input[type=number],
.inside-page-form .form-input input[type=password],
.inside-page-form .form-input input[type=file],
.inside-page-form .form-input textarea,
.inside-page-form .form-input select {
    background: rgba(217, 217, 217, 0.1);
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    display: block;
    border: 0;
    box-shadow: 0 0 0 #fff;
    width: 100%;
    border-radius: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.inside-page-form .form-input select option {
    color: #000;
}

.inside-page-form .form-input textarea {
    height: 200px;
}

.inside-page-form .form-input input[type="text"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.inside-page-form .form-header {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
}

.inside-page-form .form-inputs-wrapper {
    height: calc(100vh - 215px);
    overflow: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: contain;
}

.inside-page-form .form-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inside-page-form .form-buttons .primary {
    background: #fff;
    border: solid 1px #fff;
    padding: 10px;
    font-size: 14px;
    color: #0A0A0A;
    display: block;
    border: 0;
    box-shadow: 0 0 0 #fff;
    width: calc(50% - 10px);
    border-radius: 8px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.inside-page-form .form-buttons .secondary {
    border: solid 1px #fff;
    background: none;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    display: block;
    box-shadow: 0 0 0 #fff;
    width: calc(50% - 10px);
    border-radius: 8px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.inside-page-form .form-input .eye-holder {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -8px;
}

.inside-page-form .form-input .eye-holder svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    position: absolute;
    right: 0;
    top: 0;
}

.inside-page-form .form-input .eye-holder+input {
    padding-right: 40px;
}

.img-upload-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.img-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 6px;
    padding: 10px 20px;
    background: rgba(217, 217, 217, 0.1);
    height: 52px;
    position: relative;
    overflow: hidden;
}

.img-upload .img-holder {
    width: 100%;
    display: flex;
    align-items: center;
}

.img-upload .img-holder img {
    line-height: 0;
    max-width: 30px;
    max-height: 30px;
}

.img-upload input[type=file] {
    opacity: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
    z-index: -1;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.img-upload a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.img-upload a svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    line-height: 0;
}

.img-upload .img-holder span {
    color: #8D8D8D;
    font-size: 14px;
    padding-left: 10px;
}

/* Video Upload */

.video-upload-status-wrapper{
    display: none;
    width: 100%;
}

.video-upload-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.video-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 6px;
    padding: 10px 20px;
    background: rgba(217, 217, 217, 0.1);
    height: 52px;
    position: relative;
    overflow: hidden;
}

.video-upload .video-holder {
    width: 100%;
    display: flex;
    align-items: center;
}

.video-upload .video-holder img {
    line-height: 0;
    max-width: 30px;
    max-height: 30px;
}

.video-upload input[type=file] {
    opacity: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
    z-index: -1;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.video-upload a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.video-upload a svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    line-height: 0;
}

.video-upload .img-holder span {
    color: #8D8D8D;
    font-size: 14px;
}

.video-upload-status-wrapper .video-upload-message{
    padding: 10px 0 0 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-upload-status-wrapper .video-upload-message a{
    margin-left: 5px;
}

input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.toggle-buttons label {
    cursor: pointer;
    text-indent: -9999px;
    width: 44px;
    height: 24px;
    background: #606060;
    display: block;
    border-radius: 12px;
    position: relative;
}

.toggle-buttons label:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: #0A0A0A;
    border-radius: 11px;
    transition: 0.3s;
}

.toggle-buttons input:checked+label {
    background: #fff;
}

.toggle-buttons input:checked+label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}

.toggle-buttons label:active:after {
    width: 130px;
}

.inside-page-wrapper {
    padding: 20px 0;
    text-align: justify;
}

.inside-page-wrapper {
    padding-bottom: 0;
}

.inside-page-wrapper p {
    font-size: 12px;
}

.inside-page-wrapper h4 {
    font-size: 14px;
}

.inside-page-wrapper h3 {
    font-size: 18px;
}

.faq-wrapper .each-faq {
    border-bottom: solid 1px rgba(230, 232, 236, 0.2);
    padding: 15px 0;
}

.faq-wrapper .each-faq .faq-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.faq-wrapper .each-faq .faq-header svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    transition: all ease-in-out 500ms;
}

.faq-wrapper .each-faq.opened .faq-header svg {
    transform: rotate(180deg);
}

.faq-wrapper .each-faq .faq-desc {
    font-size: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height ease-in-out 500ms;
}

.faq-wrapper .each-faq.opened .faq-desc {
    max-height: 100vh;
}

.faq-wrapper .each-faq.opened .faq-desc p {
    margin: 0;
    padding: 10px 0 0 0;
}

.confirm-popup-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    z-index: 5;
}

.confirm-popup-wrapper .max-width-wrapper {
    display: flex;
    width: 100%;
    align-items: flex-end;
    height: 100vh;
}

.confirm-popup-wrapper .max-width-wrapper form {
    width: 100%;
}

.confirm-popup-wrapper .popup-box {
    background: rgba(10, 10, 10, 1);
    padding: 40px 20px 80px 20px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.05);
    max-height: 80vh;
    overflow: auto;
}

.confirm-popup-wrapper .popup-box .confirm-message {
    text-align: center;
}

.confirm-popup-wrapper .popup-box .confirm-message span {
    color: rgba(255, 1, 1, 0.5);
}

.confirm-popup-wrapper .popup-box .confirm-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.confirm-popup-wrapper .popup-box .confirm-buttons .primary {
    background: #fff;
    border: solid 1px #fff;
    padding: 10px;
    font-size: 14px;
    color: #0A0A0A;
    display: block;
    border: 0;
    box-shadow: 0 0 0 #fff;
    width: calc(50% - 10px);
    border-radius: 8px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    max-width: 140px;
    margin-left: 10px;
}

.confirm-popup-wrapper .popup-box .confirm-buttons .secondary {
    border: solid 1px #fff;
    background: none;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    display: block;
    box-shadow: 0 0 0 #fff;
    width: calc(50% - 10px);
    margin-right: 10px;
    border-radius: 8px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    max-width: 140px;
}

.confirm-popup-wrapper .popup-box .confirm-list {
    padding: 15px 0 0 0;
}

.confirm-popup-wrapper .popup-box .confirm-list>* {
    margin: 5px 0;
}

.confirm-popup-wrapper .popup-box .confirm-list .checkmark {
    background: rgba(255, 255, 255, 0.1);
}

.confirm-popup-wrapper.align-all-left .popup-box .confirm-message {
    text-align: left;
}

.confirm-popup-wrapper.align-all-left .popup-box .confirm-buttons {
    justify-content: space-between;
}

/* .confirm-popup-wrapper.align-all-left .popup-box .confirm-buttons .primary{
    margin-left: 0;
    margin-right: 10px;
}

.confirm-popup-wrapper.align-all-left .popup-box .confirm-buttons .secondary{
    margin-right: 0;
    margin-left: 10px;
} */


.sub-heading {
    padding-top: 20px;
    padding-bottom: 10px;
    font-weight: 600;
}

.awards-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: auto;
    padding: 10px 0;
}

.awards-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 20px;
}

.awards-wrapper a .svg-holder {
    width: 50px;
    height: 50px;
    background: rgba(217, 217, 217, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px rgba(217, 217, 217, 0.1);
}

.awards-wrapper a .txt-holder {
    font-size: 10px;
    padding-top: 3px;
}

.awards-wrapper a.add {
    border: dashed 1px #fff;
}

.projects-wrapper {
    width: 100%;
    display: flex;
    max-width: 100%;
    overflow: auto;
    padding: 10px 0;
}

.projects-wrapper a {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.projects-wrapper a img {
    height: 64px;
    min-width: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.projects-wrapper a.add {
    border: dashed 1px #fff;
    width: 64px;
    height: 64px;
    border-radius: 10px;
}

.projects-wrapper a.add img {
    width: 40px;
    height: 40px;
}

.grid-nav {
    padding: 10px 0 0 0;
    display: flex;
    width: 100%;
}

.grid-nav a {
    width: 50%;
    display: flex;
    border-bottom: solid 1px rgba(141, 141, 141, 1);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-nav a.active {
    border-bottom: solid 1px #fff;
}

.grid-nav a svg {
    width: 24px;
    height: 24px;
}

.grid-nav a svg path {
    stroke: rgba(141, 141, 141, 1);
    stroke-width: 1px;
}

.grid-nav a:last-child svg path {
    stroke-width: 0;
}

.grid-nav a.active svg path {
    stroke: #fff;
    stroke-width: 2px;
}

.grid-nav a.active:last-child svg path {
    stroke: none;
    stroke-width: 0px;
}

.grid-nav a.active:last-child svg path {
    fill: #fff;
    stroke: none;
    stroke-width: 0px;
}

.profile-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    width: calc(100% + 20px);
}

.profile-grid-wrapper a {
    line-height: 0;
    display: flex;
    margin: 9px;
    width: calc(33.33% - 18px);
    height: 140px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.profile-grid-wrapper a img {
    min-width: 100%;
    height: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile-grid-wrapper a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    fill: #1f1f1f;
}

.bottom-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 5;
    padding-bottom: env(safe-area-inset-bottom);
    position-anchor: layout;
    overflow: hidden;
}

.bottom-nav .max-width-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    background: #000;
    padding: 15px 0;
    border-radius: 100% 100% 0 0;
    height: 100px;
    overflow: hidden;
    justify-content: space-between;
}

.bottom-nav .max-width-wrapper .nav-split {
    display: flex;
    width: calc(50% - 35px);
}

.bottom-nav .max-width-wrapper .nav-split a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    padding:15px 10px 10px 10px;
    font-size: 12px;
}

.bottom-nav .max-width-wrapper .nav-split a .txt-holder {
    visibility: hidden;
    text-align: center;
}

.bottom-nav .max-width-wrapper .nav-split a.active .txt-holder {
    visibility: visible;
}

.bottom-nav a.center {
    width: 70px;
    height: 70px;
    background: rgb(32, 32, 32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    top: 0;
}

.awards-list-wrapper {
    padding: 10px 0 0 0;
}

.awards-list-wrapper a,
.awards-list-wrapper .each-list {
    padding: 10px 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.awards-list-wrapper a .left-section,
.awards-list-wrapper .each-list .left-section {
    display: flex;
    align-items: center;
    max-width: calc(100% - 30px);
}

.awards-list-wrapper a .left-section .svg-holder,
.awards-list-wrapper .each-list .left-section .svg-holder {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: rgba(217, 217, 217, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px rgba(217, 217, 217, 0.1);
}

.awards-list-wrapper a .left-section .svg-holder svg,
.awards-list-wrapper .each-list .left-section .svg-holder svg {
    width: 20px;
    height: 20px;
    fill: #c5c5c5;
}

.awards-list-wrapper a .left-section .img-holder,
.awards-list-wrapper .each-list .left-section .img-holder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.awards-list-wrapper a .left-section .img-holder img,
.awards-list-wrapper .each-list .left-section .img-holder img {
    min-width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.awards-list-wrapper a .left-section .txt-holder,
.awards-list-wrapper .each-list .left-section .txt-holder {
    padding-left: 10px;
}

.awards-list-wrapper a .left-section .txt-holder .main-text,
.awards-list-wrapper .each-list .left-section .txt-holder .main-text {
    max-width: 100%;
}

.awards-list-wrapper a .left-section .txt-holder .desc-text,
.awards-list-wrapper .each-list .left-section .txt-holder .desc-text {
    font-size: 12px;
    color: rgba(141, 141, 141, 1);
}

.awards-list-wrapper .each-list .right-icons {
    display: flex;
    align-items: center;
}

.awards-list-wrapper .each-list .right-icons a {
    min-width: 36px;
    height: 36px;
    background: rgba(217, 217, 217, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px rgba(217, 217, 217, 0.1);
    margin-right: 10px;
    padding: 0 10px;
    font-size: 0.85em;
}

.awards-list-wrapper .each-list .right-icons a svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.awards-list-wrapper .each-list .right-icons a:last-child {
    margin-right: 0;
}

.awards-list-wrapper a .right-arrow svg {
    width: 14px;
    height: 14px;
    line-height: 0;
    fill: rgba(255, 255, 255, 0.4);
}

a.add-new-data {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 8px 0 20px 0;
}

a.add-new-data span {
    padding-left: 8px;
}

.inside-page-wrapper p.head-text {
    font-size: 14px;
    font-weight: bold;
}

.details-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.details-buttons a {
    min-width: 36px;
    height: 36px;
    background: rgba(217, 217, 217, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px rgba(217, 217, 217, 0.1);
    margin-right: 10px;
    padding: 0 10px;
    font-size: 0.85em;
}

.details-buttons a span {
    padding-left: 5px;
}

.details-buttons a svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.details-buttons a:last-child {
    margin-right: 0;
}

.add-new-type2 {
    background: rgba(217, 217, 217, 0.1);
    padding: 12px 12px 12px 15px;
    border-radius: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.project-date-heading {
    padding: 20px 0;
    font-weight: 600;
}

.connections-wrapper {
    padding-top: 10px;
}

.connections-wrapper p{
    margin: 0;
    padding:0 0 10px 0;
    font-size: 12px;
    color: #666;
}

.connections-wrapper .each-connections {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
}

.connections-wrapper .each-connections .left-section {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.connections-wrapper .each-connections .left-section .img-holder {
    padding-right: 10px;
}

.connections-wrapper .each-connections .left-section .img-holder img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.connections-wrapper .each-connections .left-section .text-holder .name-text {
    font-weight: 600;
}

.connections-wrapper .each-connections .left-section .text-holder .job-text {
    font-size: 12px;
    color: rgba(141, 141, 141, 1);
    margin-top: 2px;
}

.connections-wrapper .each-connections a.remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 217, 217, 0.1);
    padding: 6px 20px;
    border-radius: 8px;
}

.engagements-wrapper {
    padding-top: 10px;
}

.engagements-wrapper .each-engagements {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
}

.engagements-wrapper .each-engagements .left-section .main-text {
    font-weight: 600;
}

.engagements-wrapper .each-engagements .left-section .desc-text {
    font-size: 12px;
    color: rgba(141, 141, 141, 1);
    margin-top: 5px;
}

.engagements-wrapper .each-engagements .right-section {
    display: flex;
    align-items: center;
}

.engagements-wrapper .each-engagements .right-section .count-text {
    font-weight: 600;
    padding-right: 20px;
}

.endorsements-wrapper {
    padding-top: 10px;
}

.endorsements-wrapper .each-endorsements {
    padding: 10px 0;
}

.endorsements-wrapper .each-endorsements .endorsement-main-section {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;

}

.endorsements-wrapper .each-endorsements .endorsement-main-section .left-section .main-text {
    font-weight: 600;
}

.endorsements-wrapper .each-endorsements .endorsement-main-section .left-section .desc-text {
    font-size: 12px;
    margin-top: 3px;
}

.endorsements-wrapper .each-endorsements .endorsement-main-section .right-section {
    display: flex;
    align-items: center;
}

.endorsements-wrapper .each-endorsements .endorsement-main-section .right-section svg {
    transition: all ease-in-out 500ms;
}

.endorsements-wrapper .each-endorsements.opened .endorsement-main-section .right-section svg {
    transform: rotate(180deg);
}

.endorsements-wrapper .each-endorsements .endorsement-details-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height ease-in-out 500ms;
}

.endorsements-wrapper .each-endorsements.opened .endorsement-details-wrapper {
    max-height: 500px;
    overflow: auto;
}

.endorsements-wrapper .each-endorsements .endorsement-details {
    background: rgba(217, 217, 217, 0.1);
    padding: 5px 10px;
    border-radius: 8px;
    margin-top: 10px;
}

.endorsements-wrapper .each-endorsements .endorsement-details .each-detail {
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 12px;
    width: 100%;
    justify-content: space-between;
}

.endorsements-wrapper .each-endorsements .endorsement-details .each-detail .left-profile-details{
    display: flex;
    align-items: center;
}

.endorsements-wrapper .each-endorsements .endorsement-details .each-detail .left-profile-details img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 5px;
    line-height: 0;
}
.endorsements-wrapper .each-endorsements .endorsement-details .each-detail .right-icons a{
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.endorsements-wrapper .each-endorsements .endorsement-details .each-detail .right-icons a svg{
    width: 12px;
    height: 12px;
    fill:#fff;
}

.no-post {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0 0 0;
    color: rgba(217, 217, 217, 0.1);
    font-size: 18px;
}

.no-post .svg-holder svg {
    width: 40px;
    height: 40px;
    fill: rgba(217, 217, 217, 0.1);
}

.dash-welcome-msg {
    padding: 5px 0 20px 0;
    font-size: 16px;
    font-weight: 600;
}

.user-top-list-wrapper .user-top-list {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding: 10px 4px;
}

.user-top-list-wrapper .user-top-list a.links {
    margin-right: 15px;
    min-width: 60px;
    width: 60px;
    overflow: hidden;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 217, 217, 0.1);
    border-radius: 5px;
    overflow: hidden;
    line-height: 0;
    border: solid 1px #fff;
    position: relative;
}

.user-top-list-wrapper .user-top-list a.links.active {
    outline: solid 1px #fff;
    outline-offset: 3px;
}

.user-top-list-wrapper .user-top-list>div {
    position: relative;
    margin-right: 15px;
}

.user-top-list-wrapper .user-top-list>div a.links {
    margin-right: 0;
}

.user-top-list-wrapper .user-top-list div a.add {
    position: absolute;
    right: -5px;
    bottom: -5px;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    background: #fff;
}

.user-top-list-wrapper .user-top-list div a.add svg {
    width: 14px;
    height: 14px;
    fill: #000;
}

.user-top-list-wrapper .user-top-list a.links img {
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.user-top-list-wrapper .user-top-list a.links svg {
    width: 30px;
    height: 30px;
    fill: rgba(255, 255, 255, 0.5);
}

.dash-cat-list-wrapper {
    padding-top: 5px;
    padding-bottom: 5px;
}

.dash-cat-list-wrapper .dash-cat-list {
    display: flex;
    width: 100%;
    overflow: auto;
    padding-bottom: 15px;
}

.dash-cat-list-wrapper .dash-cat-list a {
    background: rgb(31, 31, 31);
    border: solid 1px rgb(31, 31, 31);
    height: 24px;
    border-radius: 12px;
    padding: 0 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    white-space: nowrap;
}

.dash-cat-list-wrapper .dash-cat-list a span {
    margin-top: -1px;
}

.dash-cat-list-wrapper .dash-cat-list a.selected {
    background: none;
    border: solid 1px #fff;
}

.page-header .logo-section a span {
    min-height: 42px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    padding-left: 10px;
}

.post-listing-wrapper .post-listings .each-post {
    margin: 0 0 40px 0;
    background: rgba(217, 217, 217, 0.1);
    border-radius: 20px;
}

.post-listing-wrapper .post-listings .each-post .top-section {
    padding: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.post-listing-wrapper .post-listings .each-post .top-section .top-left-section {
    display: flex;
    align-items: center;
}

.post-listing-wrapper .post-listings .each-post .top-section .top-left-section .img-section {
    line-height: 0;
}

.post-listing-wrapper .post-listings .each-post .top-section .top-left-section .img-section img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.post-listing-wrapper .post-listings .each-post .top-section .top-left-section .text-section {
    padding-left: 5px;
}

.post-listing-wrapper .post-listings .each-post .top-section .top-left-section .text-section .desc-text {
    font-size: 12px;
    color: #8D8D8D;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots,
.post-all-details .top-section .top-right-section .right-dots {
    padding-left: 10px;
    position: relative;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots a.dots,
.post-all-details .top-section .top-right-section .right-dots a.dots {
    display: flex;
    align-items: center;
    padding: 5px 5px 0 5px;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots a.dots span,
.post-all-details .top-section .top-right-section .right-dots a.dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    margin-right: 5px;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots a.dots span:last-child,
.post-all-details .top-section .top-right-section .right-dots a.dots span:last-child {
    margin-right: 0;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown-wrapper,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown-wrapper {
    position: absolute;
    top: 10px;
    right: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height ease-in-out 500ms;
    z-index: 2;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown-wrapper.show,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown-wrapper.show {
    max-height: 200px;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown {
    background: #2D2C2C;
    border-radius: 10px 0 10px 10px;
    box-shadow: 4px 0 4px rgba(0, 0, 0, .25);
    position: relative;
    margin-top: 20px;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown::before,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown::before {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 15px solid #2D2C2C;
    border-left: 15px solid transparent;
    position: absolute;
    top: -15px;
    right: 0;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown a,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown a {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 10px 25px 10px 15px;
    border-bottom: solid 1px #444141;
}

.post-all-details .top-section .top-right-section {
    display: flex;
    align-items: center;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown a span,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown a span {
    padding-left: 10px;
    font-size: 12px;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown a:last-child,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown a:last-child {
    border-bottom: 0;
    color: #FF0101;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown a svg,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown a svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown a.saved,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown a.saved {
    display: none;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown.post-saved a.saved,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown.post-saved a.saved {
    display: flex;
}

.post-listing-wrapper .post-listings .each-post .top-section .right-dots .right-dot-dropdown.post-saved a.unsaved,
.post-all-details .top-section .top-right-section .right-dots .right-dot-dropdown.post-saved a.unsaved {
    display: none;
}

.post-listing-wrapper .post-listings .each-post .post-images .p-images img {
    width: 100%;
    line-height: 0;
}

.post-listing-wrapper .post-listings .each-post .post-actions {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.post-listing-wrapper .post-listings .each-post .post-actions .left-actions {
    display: flex;
    align-items: center;
    width: 33.33%;
}

.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a {
    padding: 0 5px;
    margin-right: 5px;
}

.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a:last-child {
    margin-right: 0;
}

.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a span svg {
    width: 22px;
    height: 22px;
}

.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a span.unselected svg {
    fill: #828282;
}

.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a span.selected {
    display: none;
}

.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a span.selected svg {
    fill: #ff1f1f;
}

.post-listing-wrapper .post-listings .each-post .post-actions .img-dots {
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 33.33%;
    justify-content: center;
}

.post-listing-wrapper .post-listings .each-post .post-actions .right-text {
    width: 33.33%;
    text-align: right;
}

.post-listing-wrapper .post-listings .each-post .post-actions .img-dots a {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin-right: 5px;
    background: #828282;
}

.post-listing-wrapper .post-listings .each-post .post-actions .img-dots a.selected {
    background: #fff;
    width: 32px;
}

.post-listing-wrapper .post-listings .each-post .post-actions .img-dots a:last-child {
    margin-left: 0;
}

.post-listing-wrapper .post-listings .each-post .view-all-comments {
    font-size: 12px;
    padding: 10px;
    width: 100%;
}

.post-listing-wrapper .post-listings .each-post .post-description {
    font-size: 12px;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: normal;
}

.post-listing-wrapper .post-listings .each-post .post-description span {
    padding-right: 10px;
    width: calc(100% - 8px);
    overflow: auto;
}

.post-listing-wrapper .post-listings .each-post .post-description .arrow-right {
    display: flex;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(135deg);
    margin-top: 1px;
}

/* .post-listing-wrapper .post-listings .each-post .comment-section{
    padding: 10px;
    display: flex;
    align-items: center;
}

.post-listing-wrapper .post-listings .each-post .comment-section .img-section img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 0;
}

.post-listing-wrapper .post-listings .each-post .comment-section .input-section{
    padding-left: 10px;
    width: calc(100% - 32px);
}

.post-listing-wrapper .post-listings .each-post .comment-section .input-section input{
    display: block;
    width: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    padding:0 0 5px 0;
    box-shadow: 0 0 0 #fff;
    border: 0;
    border-bottom: solid 1px #3E3E3E;
    font-size: 16px;
    color: #fff;
} */

.post-listing-wrapper .post-listings .each-post .comment-section {
    padding: 10px;
    display: flex;
    align-items: center;
}

.post-listing-wrapper .post-listings .each-post .comment-section .img-section img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 0;
}

.post-listing-wrapper .post-listings .each-post .comment-section .input-section {
    padding-left: 10px;
    width: calc(100% - 32px);
    position: relative;
}

.post-listing-wrapper .post-listings .each-post .comment-section .input-section a {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.post-listing-wrapper .post-listings .each-post .comment-section .input-section a.disabled svg {
    fill: #3E3E3E;
}

.post-listing-wrapper .post-listings .each-post .comment-section .input-section a svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.post-listing-wrapper .post-listings .each-post .comment-section .input-section input {
    display: block;
    width: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    padding: 0 30px 5px 0;
    box-shadow: 0 0 0 #fff;
    border: 0;
    border-bottom: solid 1px #3E3E3E;
    font-size: 16px;
    color: #fff;
}

.img-input-error {
    padding: 3px 20px;
    color: #d76c6c;
    font-size: 12px;
    display: none;
}

.post-all-details .top-section {
    padding: 0 0 10px 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.post-all-details .top-section a.connect {
    display: flex;
    align-items: center;
    border: solid 1px #fff;
    padding: 0 15px;
    height: 28px;
    border-radius: 14px;
    font-size: 10px;
}

.post-all-details .top-section a.connect.connected {
    background: #fff;
    color: #000;
    font-weight: 600;
}

.post-all-details .top-section a.connect.connected svg {
    fill: #000;
}

.post-all-details .top-section a.connect>span>span {
    padding-left: 5px;
}

.post-all-details .top-section a.connect>span {
    display: flex;
    align-items: center;
}

.post-all-details .top-section a.connect>span.connected {
    display: none;
}

.post-all-details .top-section a.connect.connected>span.connected {
    display: flex;
}

.post-all-details .top-section a.connect.connected>span.unconnected {
    display: none;
}

.post-all-details .top-section a.connect svg {
    width: 12px;
    height: 12px;
    fill: #fff;
    line-height: 0;
}

.post-all-details .top-section .top-left-section {
    display: flex;
    align-items: center;
}

.post-all-details .top-section .top-left-section .img-section {
    line-height: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.post-all-details .top-section .top-left-section .img-section img {
    min-width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.post-all-details .top-section .top-left-section .text-section {
    padding-left: 5px;
}

.post-all-details .top-section .top-left-section .text-section .desc-text {
    font-size: 12px;
    color: #8D8D8D;
}

.post-all-details .post-images .p-images img {
    width: 100%;
    line-height: 0;
    border-radius: 10px;
}

.post-all-details .post-actions {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.post-all-details .post-actions .left-actions {
    display: flex;
    align-items: center;
    width: 33.33%;
}

.post-all-details .post-actions .left-actions a {
    padding: 0 5px;
    margin-right: 5px;
}

.post-all-details .post-actions .left-actions a:last-child {
    margin-right: 0;
}

.post-all-details .post-actions .left-actions a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-all-details .post-actions .left-actions a span svg {
    width: 22px;
    height: 22px;
}

.post-all-details .post-actions .left-actions a span.unselected svg {
    fill: #828282;
}

.post-all-details .post-actions .left-actions a span.selected {
    display: none;
}

.post-all-details .post-actions .left-actions a span.selected svg {
    fill: #ff1f1f;
}

.post-all-details .post-actions .left-actions a.liked span.unselected,
.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a.liked span.unselected {
    display: none;
}

.post-all-details .post-actions .left-actions a.liked span.selected,
.post-listing-wrapper .post-listings .each-post .post-actions .left-actions a.liked span.selected {
    display: flex;
}


.post-all-details .post-actions .img-dots {
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 33.33%;
    justify-content: center;
}

.post-all-details .post-actions .right-text {
    text-align: right;
    width: 33.33%;
}

.post-all-details .post-actions .img-dots a {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin-right: 5px;
    background: #828282;
    transition: all 500ms ease-in-out;
}

.post-all-details .post-actions .img-dots a.selected {
    background: #fff;
    width: 32px;
}

.post-all-details .post-actions .img-dots a:last-child {
    margin-left: 0;
}

.post-all-details .post-description,
.post-all-details .post-title {
    padding: 5px 0;
    max-width: 100%;
    overflow: auto;
}

.post-all-details .post-tags {
    padding: 5px 0;
    color: #8D8D8D
}

.post-all-details .post-images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}



.post-all-details .post-description span {
    padding-right: 10px;
    width: calc(100% - 8px);
}

.post-all-details .post-description .arrow-right {
    display: flex;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(135deg);
    margin-top: 1px;
}

.post-all-details .comment-section {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.post-all-details .comment-section .img-section img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 0;
}

.post-all-details .comment-section .input-section {
    padding-left: 10px;
    width: calc(100% - 32px);
    position: relative;
}

.post-all-details .comment-section .input-section a {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.post-all-details .comment-section .input-section a.disabled svg {
    fill: #3E3E3E;
}

.post-all-details .comment-section .input-section a svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.post-all-details .comment-section .input-section input {
    display: block;
    width: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    padding: 0 30px 5px 0;
    box-shadow: 0 0 0 #fff;
    border: 0;
    border-bottom: solid 1px #3E3E3E;
    font-size: 16px;
    color: #fff;
}

.post-all-details .date-time-details {
    padding: 10px 0;
    font-size: 12px;
    border-bottom: solid 1px #3E3E3E;
}

.post-all-details .comment-list-wrappper .each-comments {
    padding: 10px 0;
    margin: 10px 0;
    border-bottom: solid 1px #3E3E3E;
    display: flex;
    align-items: flex-start;
}

.post-all-details .comment-list-wrappper .each-comments .prpic {
    width: 32px;
    height: 32px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

.post-all-details .comment-list-wrappper .each-comments .prpic img {
    min-width: 32px;
    height: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.post-all-details .comment-list-wrappper .each-comments .comment-details {
    padding: 0 0 0 10px;
    width: calc(100% - 32px);
}

.post-all-details .comment-list-wrappper .each-comments .comment-details .name-with-date {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.post-all-details .comment-list-wrappper .each-comments .comment-details .name-with-date a {
    padding-left: 10px;
}

.post-all-details .comment-list-wrappper .each-comments .comment-details .name-with-date a svg {
    width: 18px;
    height: 18px;
    fill: #828282;
}

.post-all-details .comment-list-wrappper .each-comments .comment-details .date-text {
    color: #8D8D8D;
    font-size: 10px;
    margin-left: 10px;
}

.post-all-details .comment-list-wrappper .each-comments .comment-details .comment-text {
    padding: 5px 0;
    font-size: 12px;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 0 0;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a {
    margin: 0 5px;
    font-size: 12px;
    color: #8D8D8D;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a:first-child {
    margin-left: 0;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a:last-child {
    margin-right: 0;
}


.post-all-details .comment-list-wrappper .each-comments .comment-actions a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a span svg,
.post-all-details .comment-list-wrappper .each-comments .comment-actions a>svg {
    width: 18px;
    height: 18px;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a span.selected {
    display: none;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a span.unselected svg,
.post-all-details .comment-list-wrappper .each-comments .comment-actions a>svg {
    fill: #828282;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a span.selected svg {
    fill: #ff1f1f;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a.liked span.selected {
    display: flex;
}

.post-all-details .comment-list-wrappper .each-comments .comment-actions a.liked span.unselected {
    display: none;
}

.post-all-details .comment-list-wrappper .show-more-comments {
    padding: 10px 0;
    text-align: center;
}

.post-all-details .comment-list-wrappper .show-more-comments a {
    color: #8D8D8D;
}

.post-all-details .reply-section-wrapper {
    display: none;
}

.post-all-details .reply-section {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.post-all-details .reply-section .img-section img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 0;
}

.post-all-details .reply-section .input-section {
    padding-left: 10px;
    width: calc(100% - 32px);
    position: relative;
}

.post-all-details .reply-section .input-section a {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.post-all-details .reply-section .input-section a.disabled svg {
    fill: #3E3E3E;
}

.post-all-details .reply-section .input-section a svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.post-all-details .reply-section .input-section input {
    display: block;
    width: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    padding: 0 30px 5px 0;
    box-shadow: 0 0 0 #fff;
    border: 0;
    border-bottom: solid 1px #3E3E3E;
    font-size: 16px;
    color: #fff;
}

.post-all-details .replies-wrapper .each-reply {
    padding: 10px 0 0 0;
    margin: 10px 0 0 0;
    border-top: solid 1px #3E3E3E;
    display: flex;
    align-items: flex-start;
}

.post-all-details .replies-wrapper .each-reply .reply-details {
    padding: 0 0 0 10px;
    width: calc(100% - 32px);
}

img.lazy-load {
    opacity: 0;
    transition: opacity 600ms ease-in;
    position: relative;
    z-index: 1;
}

img.lazy-load.loaded {
    opacity: 1;
}

.img-loader {
    width: 100%;
    height: 100px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.lds-ripple,
.lds-ripple div {
    box-sizing: border-box;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.post-listing-wrapper .post-listings .each-post .post-images .p-images a {
    position: relative;
    display: block;
    min-height: 150px;
}

.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #004007;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 50%;
    font-size: 17px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s ease-out;
    z-index: 55;
    font-size: 0.85em;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}

.post-details-imgs-wrapper {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.post-details-imgs-wrapper .each-images {
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 100px;
    height:100px;
    overflow: hidden;
}
.post-details-imgs-wrapper .each-images a {
    min-width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px rgba(0, 0, 0, 0.7);
    padding: 0 10px;
    font-size: 0.85em;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
}

.post-details-imgs-wrapper .each-images img{
    position: absolute;
    width: 100px;
    min-height: 100px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.post-details-imgs-wrapper .each-images a svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.chat-box-wrapper {
    position: relative;
}

.chat-box-wrapper .chat-box {
    margin: 5px 0;
    padding-bottom: 120px;
}

.chat-box-wrapper .chat-box .msg-box {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.chat-box-wrapper .chat-box .msg-box.box-left {
    align-items: flex-start;
}

.chat-box-wrapper .chat-box .msg-box.box-right {
    align-items: flex-end;
}

.chat-box-wrapper .chat-box .msg-box .text-box {
    padding: 20px;
    border-radius: 20px 20px 20px 0;
    background: #fff;
    color: #0A0A0A;
    font-size: 1em;
    max-width: 100%;
}

.chat-box-wrapper .chat-box .msg-box .text-box .post-img img {
    max-width: 100px;
    cursor: pointer;
}

.chat-box-wrapper .chat-box .msg-box .text-box .post-text {
    text-align: left;
    max-width: 100%;
    overflow: auto;
}

.chat-box-wrapper .chat-box .msg-box .date-time {
    font-size: 0.65em;
    color: #B7B7B7;
    padding: 0 15px;
}

.chat-box-wrapper .chat-box .msg-box.box-right .text-box {
    background: rgba(217, 217, 217, 0.1);
    color: #FDFDFD;
    border-radius: 20px 0 20px 20px;
    position: relative;
}

.chat-box-wrapper .chat-box .msg-box .text-box .chat-text-wrap a {
    text-decoration: underline;
}

.chat-box-wrapper .chat-box .msg-box.box-right .text-box .ptitle {
    font-weight: 600;
    padding-bottom: 10px;
}

.chat-box-wrapper .chat-box .msg-box.box-left.group-box .text-box {
    padding: 0;
    position: relative;
}

.chat-box-wrapper .chat-box .msg-box.box-left.group-box .text-box .approval-icons {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.chat-box-wrapper .chat-box .msg-box.box-left.group-box .text-box .approval-icons a {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.chat-box-wrapper .chat-box .msg-box.box-left.group-box .user-head {
    padding: 7px 15px;
    border-bottom: solid 1px #ddd;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 35px;
}

.chat-box-wrapper .chat-box .msg-box.box-left.group-box .user-head .removed{
    font-size: 10px;
    color: #ab0404;
    line-height: 10px;
    font-style: italic;
}

.chat-box-wrapper .chat-box .msg-box.box-left.group-box .chat-text-wrap {
    padding: 15px;
}

.chat-box-wrapper .chat-send-box {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: #0a0a0a;
    z-index: 2;
}

.chat-box-wrapper .chat-send-box .max-width-wrapper {
    padding: 0 20px;
}


.chat-box-wrapper .chat-send-box .chat-input {
    position: relative;
    display: flex;
    align-items: center;
}

.chat-box-wrapper .chat-send-box .chat-input textarea,
.chat-box-wrapper .chat-send-box .chat-input input[type=text] {
    width: calc(100% - 50px);
    padding: 10px;
    border-radius: 10px;
    padding-right: 10px;
    background: rgba(217, 217, 217, 0.1);
    color: #FDFDFD;
    border: 0;
    box-shadow: 0 0 0 #fff;
    padding-left: 45px;
    resize: none;
    /* Prevent manual resizing */
    overflow: hidden;
    height: 40px;
    max-height: 300px;
    position: relative;
    z-index: 0;
    font-size: 17px;
}

.chat-box-wrapper .chat-send-box .chat-input textarea:disabled {
    cursor: not-allowed;
    background: #ddd;
    opacity: 0.3;
}

.chat-box-wrapper .chat-send-box .chat-input button {
    position: absolute;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0;
    border: 0;
    box-shadow: 0 0 0 #fff;
    right: 0px;
    bottom: 0%;
    background: none;
    cursor: pointer;
    background: #fff;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-box-wrapper .chat-send-box.with-delete-button .max-width-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.chat-box-wrapper .chat-send-box a.delete-story {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0;
    border: 0;
    box-shadow: 0 0 0 #fff;
    background: none;
    cursor: pointer;
    background: #fff;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-box-wrapper .chat-send-box .chat-input button svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.chat-box-wrapper .chat-send-box .chat-input button img {
    line-height: 0;
}

.chat-box-wrapper .chat-box .msg-box.skeleton-box {
    animation: none;
}

.chat-box-wrapper .chat-box .msg-box.skeleton-box .text-box {
    min-height: 100px;
    animation: shine 1s infinite;
    border: 0;
    background: rgba(217, 217, 217, 0.1);
    animation: shine-box 2s infinite ease;
    width: 100%;
}

.chat-box-wrapper .chat-box .msg-box.skeleton-box .date-time {
    width: 100%;
    display: flex;
}

.chat-box-wrapper .chat-box .msg-box.skeleton-box.box-right .date-time {
    justify-content: flex-end;
}

.chat-box-wrapper .chat-box .msg-box.skeleton-box .date-time .skeleton-line {
    max-width: 150px;
    height: 12px;
    border-radius: 6px;
    background: rgba(217, 217, 217, 0.1);
    width: 100%;
    margin-top: 2px;
    animation: shine-box 2s infinite ease;
}

@keyframes shine-box {
    0% {
        opacity: 0.5;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

#chat-skeleton-loader,
#add-skeleton-box {
    display: none;
}

.chat-warning {
    background: #daf3a9;
    padding: 10px;
    font-size: 0.75em;
    color: #000;
    margin-top: -5px;
    margin-bottom: 5px;
}

.chat-warning .warning-links {
    display: flex;
    align-items: center;
    margin: 2px 0 0 0;
}

.chat-warning .warning-links a {
    background: #28a745;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    margin: 3px;
}

.chat-warning .warning-links a.reject {
    background: #dc3545;
}

.chat-warning .warning-links a:first-child {
    margin-left: 0;
}

.no-chats {
    padding: 10px;
    text-align: center;
    color: #fff;
}

.new-message {
    color: #dc3545;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

.new-message span {
    background: #0a0a0a;
    padding: 0 15px;
    white-space: nowrap;
}

.new-message::before,
.new-message::after {
    content: '';
    width: 50%;
    background: #dc3545;
    height: 1px;
}

.date-group-text {
    color: #fff;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    text-transform: uppercase;
}

.date-group-text span {
    background: #0a0a0a;
    padding: 0 15px;
    white-space: nowrap;
}

.date-group-text::before,
.date-group-text::after {
    content: '';
    width: 50%;
    background: #3c3c3c;
    height: 1px;
}

.declined-box {
    background: #610912;
    padding: 10px 20px;
    border-radius: 3px;
    color: #fff;
    display: flex;
}

.page-back-header .top-left-section {
    display: flex;
    align-items: center;
}

.page-back-header .top-left-section.full-width {
    width: 100%;
    position: relative;
}

.page-back-header .top-left-section .group-images {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.page-back-header .top-left-section .group-images::before {
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: #2D2D2D;
}

.page-back-header .top-left-section .group-images .img-section {
    position: relative;
    margin-left: -20px;
}

.page-back-header .top-left-section .img-section {
    line-height: 0;
}

.page-back-header .top-left-section .img-section img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.page-back-header .top-left-section .text-section {
    padding-left: 10px;
}

.page-back-header .top-left-section .text-section .user-designation {
    font-size: 12px;
    color: rgba(141, 141, 141, 1);
}

.chat-profile-details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
}

.chat-profile-details .img-section {
    line-height: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.chat-profile-details .img-section img {
    height: 88px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.chat-profile-details .text-section {
    padding-top: 5px;
    text-align: center;
}

.chat-profile-details .text-section .user-name {
    font-size: 24px;
}

.chat-profile-details .text-section .user-designation {
    font-size: 16px;
}

.chat-box .chat-start-text {
    color: #8D8D8D;
    padding-bottom: 10px;
    text-align: center;
    font-size: 12px;
}

.chat-box .chat-start-text span {
    color: #fff;
}

.confirm-popup-wrapper .popup-box .fhead-text {
    padding: 15px 0;
    font-size: 12px;
}

.confirm-popup-wrapper .popup-box .sicons {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.confirm-popup-wrapper .popup-box .sicons a {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(217, 217, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-bottom: 20px;
}

.confirm-popup-wrapper .popup-box .fsearch-wrapper {
    padding: 20px 0 10px 0;
    display: flex;
}

.confirm-popup-wrapper .popup-box .fsearch-wrapper .icon-holder,
html .confirm-popup-wrapper.white-box-wrapper .popup-box .fsearch-wrapper .icon-holder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 217, 217, 0.1);
}

.confirm-popup-wrapper .popup-box .fsearch-wrapper .icon-holder img,
html .confirm-popup-wrapper.white-box-wrapper .popup-box .fsearch-wrapper .icon-holder img {
    width: 24px;
    height: 24px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .fsearch-wrapper input {
    background: rgba(217, 217, 217, 0.3);
    color: #000;
}

.confirm-popup-wrapper .popup-box .fsearch-wrapper input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    height: 40px;
    border-radius: 20px;
    background: rgba(217, 217, 217, 0.1);
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: 0;
    box-shadow: 0;
    color: #fff;
    margin-left: 10px;
    width: calc(100% - 50px);
}

.confirm-popup-wrapper .popup-box .chat-profile-listing {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.confirm-popup-wrapper .popup-box .chat-profile-listing.scroll-listing {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.confirm-popup-wrapper .popup-box .chat-profile-listing.scroll-listing .no-data {
    height: 88px;
    font-size: 12px;
}

.confirm-popup-wrapper .popup-box .chat-profile-listing a {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
    margin-bottom: 20px;
}

.confirm-popup-wrapper .popup-box .chat-profile-listing a .img-section {
    line-height: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.confirm-popup-wrapper .popup-box .chat-profile-listing a .img-section img {
    height: 44px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.confirm-popup-wrapper .popup-box .chat-profile-listing a .text-section {
    padding-top: 5px;
    text-align: center;
}

.chat-box-wrapper .chat-box .msg-box a {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.chat-box-wrapper .chat-box .msg-box a .img-holder img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 10px;
}

.chat-box-wrapper .chat-box .msg-box a .text-holder {
    padding-top: 5px;
}


.chat-img-attachment {
    background: none;
    width: auto;
    position: absolute;
    left: 0;
    top: -52px;
    width: 100%;
    display: none;
}

.chat-img-attachment .max-width-wrapper {
    padding: 0 20px;
}

.chat-img-attachment .max-width-wrapper .img-upload {
    border-radius: 10px;
    padding: 10px;
    width: calc(100% - 50px);
    background: rgb(31, 31, 31);
}

.chat-box-wrapper .chat-send-box .chat-input a.add-chat-attachment {
    background: none;
    width: 24px;
    height: 24px;
    border: solid 1px #fff;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.chat-box-wrapper .chat-send-box .chat-input a.add-chat-attachment svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.image-popup-outer {
    display: none;
}

.image-popup-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10;
    padding: 20px;
}

.image-popup-wrapper .img-box {
    position: relative;
}

.image-popup-wrapper .img-box .img-popup-text {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 15px;
    width: 100%;
    display: none;
}

.image-popup-wrapper .img-box img {
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    border-radius: 10px;
}

.image-popup-wrapper .img-box .close-img-popup {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 49px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0px 10px 0 10px;
}

.image-popup-wrapper .img-box .close-img-popup:before,
.image-popup-wrapper .img-box .close-img-popup:after {
    position: absolute;
    left: 20px;
    content: ' ';
    height: 24px;
    width: 2px;
    background-color: #fff;
    top: 11px;
}

.image-popup-wrapper .img-box .close-img-popup:before {
    transform: rotate(45deg);
}

.image-popup-wrapper .img-box .close-img-popup:after {
    transform: rotate(-45deg);
}

.chats-list-outer {
    /* border-top: solid 1px #2D2D2D; */
}

.chats-list-outer .chat-search-wrapper {
    padding: 20px 0;
    display: flex;
}

.chats-list-outer .chat-search-wrapper .icon-holder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 217, 217, 0.1);
}

.chats-list-outer .chat-search-wrapper input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    height: 40px;
    border-radius: 20px;
    background: rgba(217, 217, 217, 0.1);
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: 0;
    box-shadow: 0;
    color: #fff;
    margin-left: 10px;
    width: calc(100% - 50px);
}

.chats-list-outer .chats-list-wrapper .each-chats {
    /* border-top: solid 1px #2D2D2D; */
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.chats-list-outer .chats-list-wrapper .each-chats:first-child {
    border-top: 0;
    padding-top: 0;
}

.chats-list-outer .chats-list-wrapper .each-chats .img-holder {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 217, 217, 0.1);
}

.chats-list-outer .chats-list-wrapper.chat-listing-page .each-chats .img-holder {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.chats-list-outer .chats-list-wrapper.chat-listing-page .each-chats {
    border-bottom: solid 1px #2D2D2D;
}

.chats-list-outer .chats-list-wrapper.chat-listing-page .each-chats:last-child {
    border-bottom: 0;
}

.chats-list-outer .chats-list-wrapper .each-chats .img-holder svg {
    width: 20px;
    height: 20px;
    line-height: 0;
}

.chats-list-outer .chats-list-wrapper .each-chats .img-holder img {
    width: 48px;
    min-height: 48px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.chats-list-outer .chats-list-wrapper .each-chats .right-section {
    padding-left: 10px;
    width: calc(100% - 48px);
}

.chats-list-outer .chats-list-wrapper .each-chats .right-section .top-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.chats-list-outer .chats-list-wrapper .each-chats .right-section .top-section .date {
    color: #8D8D8D;
    font-size: 12px;
    white-space: nowrap;
}

.chats-list-outer .chats-list-wrapper .each-chats .right-section .bottom-section {
    padding-top: 5px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.chats-list-outer .chats-list-wrapper .each-chats .right-section .bottom-section .chat-text {
    color: #8D8D8D;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    max-width: calc(100% - 50px);
    text-overflow: ellipsis;
}

.chats-list-outer .chats-list-wrapper .each-chats .right-section .bottom-section .chat-text.no-wrap{
    overflow:unset;
    text-overflow: unset;
    white-space:unset;
}

.chats-list-outer .chats-list-wrapper .each-chats .right-section .bottom-section .unread-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

#chat-listing-skeleton {
    display: none;
}

.chats-list-outer .chats-list-wrapper .each-chats.add-user-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chats-list-outer .chats-list-wrapper .each-chats.add-user-list .left-section {
    display: flex;
    align-items: center;
}

.chats-list-outer .chats-list-wrapper .each-chats.add-user-list .checkbox-container {
    width: auto;
}

.chats-list-outer .chats-list-wrapper .each-chats.add-user-list .checkbox-container .checkmark {
    border: solid 1px #2D2D2D;
    border-radius: 50%;
}

.chats-list-outer .chats-list-wrapper .each-chats.add-user-list .checkbox-container input:checked~.checkmark {
    background: #0f2218;
    border-color: #0f2218;
}

.chats-list-outer .chats-list-wrapper .each-chats.add-user-list .checkbox-container .checkmark::after {
    border: solid #1fa752;
    border-width: 0 2px 2px 0;
}

.chats-list-outer .user-added-list-wrapper {
    margin: 0 0 20px 0;
    background: rgba(217, 217, 217, 0.1);
    padding: 10px;
    border-radius: 15px;
    min-height: 110px;
    width: 100%;
    display: flex;
    align-items: center;
}

.chats-list-outer .user-added-list-wrapper .user-added-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.chats-list-outer .user-added-list-wrapper .user-added-list .each-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 68px;
    min-width: 68px;
    position: relative;
}

.chats-list-outer .user-added-list-wrapper .user-added-list .each-user .img-holder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.chats-list-outer .user-added-list-wrapper .user-added-list .each-user .img-holder img {
    width: 48px;
    min-height: 48px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.chats-list-outer .user-added-list-wrapper .user-added-list .each-user .text-holder {
    font-size: 12px;
    text-align: center;
    padding-top: 5px;
}

.chats-list-outer .user-added-list-wrapper .user-added-list .each-user .close {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #8D8D8D;
    z-index: 2;
}

.chats-list-outer .user-added-list-wrapper .user-added-list .each-user .close:before,
.chats-list-outer .user-added-list-wrapper .user-added-list .each-user .close:after {
    position: absolute;
    left: 9px;
    top: 5px;
    content: ' ';
    height: 8px;
    width: 1px;
    background-color: #333;
}

.chats-list-outer .user-added-list-wrapper .user-added-list .each-user .close:before {
    transform: rotate(45deg);
}

.chats-list-outer .user-added-list-wrapper .user-added-list .each-user .close:after {
    transform: rotate(-45deg);
}

#addChatGroupUserSkeleton {
    display: none;
}

.chats-list-outer .user-added-list-wrapper .user-added-list .left-section {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 25px);
}

.chats-list-outer .user-added-list-wrapper .user-added-list a.right-arrow svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.group-form-input-wrapper {
    padding-top: 10px;
}

.group-form-input {
    padding: 5px 0;
}

.group-form-input label {
    font-size: 11px;
    display: block;
    padding: 0 20px 3px 20px;
    color: #fff;
}

.group-form-input input[type="text"] {
    background: rgba(217, 217, 217, 0.1);
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    display: block;
    border: 0;
    box-shadow: 0 0 0 #fff;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.chats-list-outer .user-added-list-wrapper .user-added-list .error-msg {
    color: #ce0404;
    font-weight: bold;
    width: 100%;
    padding: 10px;
}

.business-card-wrapper .business-card-box-wrap {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.business-card-wrapper .business-card-box {
    background: linear-gradient(to right, #0a0a0a 50%, rgba(217, 217, 217, 0.1) 100%);
    border: solid 1px rgba(253, 253, 253, 0.4);
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
}

.business-card-wrapper .business-card-box .card-name {
    font-size: 28px;
    font-weight: 600;
    padding: 50px 0;
    text-align: center;
}

.business-card-wrapper .business-card-box .card-id {
    font-size: 20px;
    text-align: right;
    text-transform: uppercase;
}

.business-card-wrapper .contact-box-wrap {
    padding-bottom: 40px;
    /* border-bottom: solid 1px rgba(255, 255, 255, 0.2); */
}

.business-card-wrapper .contact-box-wrap .contact-box {

    border: solid 1px rgba(253, 253, 253, 0.4);
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
}

.business-card-wrapper .contact-box-wrap .contact-box .contact-box-inner {
    padding: 20px 20px 15px 20px;
}

.business-card-wrapper .contact-box-wrap .contact-box .contact-box-inner .header-text {
    padding-bottom: 10px;
    font-weight: bold;
}

.business-card-wrapper .contact-box-wrap .contact-box .contact-box-inner .contact-details {
    font-size: 12px;
    color: rgba(253, 253, 253, 1);

}

.business-card-wrapper .contact-box-wrap .contact-box .contact-box-inner .contact-details .each-contact {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 0;
}

.business-card-wrapper .contact-box-wrap .contact-box .contact-box-inner .contact-details .each-contact .label {
    width: 55px;
    color: rgba(253, 253, 253, 0.5);
}

.business-card-wrapper .contact-box-wrap .contact-box .contact-box-inner .contact-details .each-contact .seperator {
    padding: 0 15px 0 2px;
    color: rgba(253, 253, 253, 0.5);
}

.business-card-wrapper .contact-box-wrap .contact-box .contact-box-inner .contact-details .each-contact .value {
    word-break: break-all;
}

.business-card-wrapper .contact-box-wrap .request-button {
    padding-top: 40px;
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: center;
}

.business-card-wrapper .contact-box-wrap .request-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    width: 140px;
    height: 36px;
    border-radius: 8px;
    font-weight: bold;
}

.business-card-wrapper .exp-box-wrap {
    margin-top: 40px;
    /* background: rgba(141, 141, 141, 0.1); */
    padding: 40px 0;
}

.confirm-popup-wrapper.white-box-wrapper .max-width-wrapper {
    align-items: center;
    padding: 20px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box {
    background: #fff;
    border: 0;
    color: #000;
    border-radius: 10px;
    position: relative;
    padding: 40px 20px 20px 20px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 24px;
    height: 24px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .close:before,
.confirm-popup-wrapper.white-box-wrapper .popup-box .close:after {
    position: absolute;
    left: 12px;
    content: ' ';
    height: 24px;
    width: 2px;
    background-color: #000;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .close:before {
    transform: rotate(45deg);
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .close:after {
    transform: rotate(-45deg);
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .icon-holder {
    width: 80px;
    height: 80px;
    background: rgba(217, 217, 217, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px rgba(217, 217, 217, 0.8);
    position: relative;
    overflow: hidden;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .icon-holder img {
    min-width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .icon-holder svg {
    line-height: 0;
    width: 40px;
    height: 40px;
    fill: #666;
    transition: all 500ms ease-in-out;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .company-details {
    display: flex;
    align-items: center;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .exp-details {
    padding-left: 20px;
    width: calc(100% - 80px);
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .exp-details .head-text {
    font-size: 20px;
    font-weight: 600;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .role-details {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 20px 0 0 0;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .role-details .head-text {
    font-weight: bold;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .role-details .desc-text {
    font-size: 12px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .other-details {
    padding: 20px 0 0 0;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .other-details .head-text {
    font-weight: bold;
    padding-bottom: 5px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .other-details .each-det {
    padding-top: 5px;
    font-size: 12px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .share-button-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding-top: 30px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .share-button-wrapper a {
    width: 140px;
    height: 36px;
    border: solid 1px #000;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 5px;
}

.bsearch-filter-outer {
    position: relative;
    left: 0;
    top: 86px;
    z-index: 1;
    width: 100%;
    background: #0a0a0a;
    z-index: 5;
}

.bsearch-filter-wrapper {
    border: solid 1px rgba(217, 217, 217, 0.1);
    border-radius: 10px;
    width: calc(100% - 40px);
    max-width: 460px;
    margin: 0 auto;
}

.blistdata-wrapper {
    padding-top: 0px;
}

.bsearch-filter-wrapper .bsearch-wrapper {
    padding: 10px;
    display: flex;
    border-bottom: solid 1px rgba(217, 217, 217, 0.1);
}

.bsearch-filter-wrapper .bsearch-wrapper .icon-holder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 217, 217, 0.1);
}

.bsearch-filter-wrapper .bsearch-wrapper input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    height: 40px;
    border-radius: 20px;
    background: rgba(217, 217, 217, 0.1);
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: 0;
    box-shadow: 0;
    color: #fff;
    margin-left: 10px;
    width: calc(100% - 50px);
}

.bsearch-filter-wrapper .bsearch-wrapper input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #fff !important;
    opacity: 1;
}

.bsearch-filter-wrapper .bsearch-wrapper input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff !important;
    opacity: 1;
}

.bsearch-filter-wrapper .bsearch-wrapper input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff !important;
    opacity: 1;
}

.bsearch-filter-wrapper .bsearch-wrapper input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff !important;
    opacity: 1;
}

.bsearch-filter-wrapper .bsearch-wrapper input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff !important;
    opacity: 1;
}

.bsearch-filter-wrapper .bsearch-wrapper input::placeholder {
    /* Most modern browsers support this now. */
    color: #fff !important;
    opacity: 1;
}

.bsearch-filter-wrapper .select-box-wrapper {
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bsearch-filter-wrapper .select-box-wrapper select {
    display: flex;
    padding: 8px;
    background: none;
    border: 0;
    box-shadow: none;
    color: #fff;
    background: #0a0a0a;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 10px;
    text-align: center;
    width: 33.33%;
    text-overflow: ellipsis;   /* show "..." when text overflows */
  white-space: nowrap;       /* keep text on one line */
  overflow: hidden;
}

.bsearch-filter-wrapper .select-box-wrapper select.dropdown-open {
    background: #202020;
}

.bsearch-filter-wrapper .select-box-wrapper select * {
    color: #fff;
    background: #202020;
    border: 0;
}

.business-listing-wrapper .each-business {
    margin: 10px 0;
    border: solid 1px rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    display: flex;
    font-size: 12px;
    min-height: 280px;
}

.business-listing-wrapper .each-business .left-section {
    width: 40%;
    border-right: solid 1px rgba(255, 255, 255, 0.4);
    padding: 10px;
}

.business-listing-wrapper .each-business .left-section .services-text .head-text {
    font-weight: bold;
}

.business-listing-wrapper .each-business .left-section .services-points {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 10px;
    padding-top: 2px;
}

.business-listing-wrapper .each-business .left-section .services-points .icon-holder svg {
    width: 8px;
    height: 8px;
    fill: rgba(253, 253, 253, 0.5);
    line-height: 0;
    margin-top: 1px;
    display: flex;
}

.business-listing-wrapper .each-business .left-section .services-points .text-holder {
    padding-left: 5px;
    color: rgba(253, 253, 253, 0.5);
    width: calc(100% - 8px);
}

.business-listing-wrapper .each-business .left-section .id-text {
    padding: 7px 0 5px 0;
    text-align: center;
    font-weight: bold;
}

.business-listing-wrapper .each-business .left-section .endorsement-text {
    padding: 5px 0;
}

.business-listing-wrapper .each-business .left-section .endorsement-text span {
    display: flex;
    background: rgba(217, 217, 217, 0.1);
    width: 100%;
    height: 20px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.business-listing-wrapper .each-business .left-section .connection-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 5px;
}

.business-listing-wrapper .each-business .left-section a.connect {
    display: flex;
    align-items: center;
    border: solid 1px #666;
    padding: 0 15px;
    height: 22px;
    border-radius: 12px;
    font-size: 10px;
}

.business-listing-wrapper .each-business .left-section a.connect.connected {
    background: #fff;
    color: #000;
    font-weight: 600;
}

.business-listing-wrapper .each-business .left-section a.connect.connected svg {
    fill: #000;
}

.business-listing-wrapper .each-business .left-section a.connect>span>span {
    padding-left: 5px;
}

.business-listing-wrapper .each-business .left-section a.connect>span {
    display: flex;
    align-items: center;
}

.business-listing-wrapper .each-business .left-section a.connect>span.connected {
    display: none;
}

.business-listing-wrapper .each-business .left-section a.connect.connected>span.connected {
    display: flex;
}

.business-listing-wrapper .each-business .left-section a.connect.connected>span.unconnected {
    display: none;
}

.business-listing-wrapper .each-business .left-section a.connect svg {
    width: 12px;
    height: 12px;
    fill: #fff;
    line-height: 0;
}

.business-listing-wrapper .each-business .right-section {
    width: 60%;
}

.business-listing-wrapper .each-business .right-section .company-loc-text-wrapper {
    padding: 10px;
    text-align: right;
}

.business-listing-wrapper .each-business .right-section .company-loc-text-wrapper .location-text {
    font-size: 10px;
    color: rgba(253, 253, 253, 0.5);
}

.business-listing-wrapper .each-business .right-section .engagement-text {
    padding: 10px;
    text-align: center;
}

.business-listing-wrapper .each-business .right-section .image-holder {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.business-listing-wrapper .each-business .right-section .image-holder img {
    min-height: 200px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.business-listing-wrapper .each-business .section-content-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.chats-list-wrapper.notifications {
    margin-top: 20px;
}

.chats-list-outer .chats-list-wrapper .each-chats .img-wrap {
    display: flex;
    align-items: center;
    width: 72px;
}

.chats-list-outer .chats-list-wrapper .each-chats .img-wrap .img-holder.img-front {
    position: relative;
    margin-left: -24px;
}

.chats-list-outer .chats-list-wrapper.notifications .each-chats {
    align-items: flex-start;
}

.business-listing-wrapper .each-business-2 {
    margin: 10px 0;
    border: solid 1px rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    font-size: 12px;
}

.business-listing-wrapper .each-business-2 .head-text {
    background: rgba(217, 217, 217, 0.1);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.business-listing-wrapper .each-business-2 .user-details-section {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.business-listing-wrapper .each-business-2 .desc-section {
    padding: 8px 10px;
    font-size: 10px;
    line-height: 12px;
}

.business-listing-wrapper .each-business-2 .desc-section .content-section {
    min-height: 40px;
}

.business-listing-wrapper .each-business-2 .desc-section .content-section .long-text {
    display: none;
}

.business-listing-wrapper .each-business-2 .desc-section p {
    margin: 0;
    padding: 2px 0;
}

.business-listing-wrapper .each-business-2 .desc-section .bottom-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-top: 13px;
}

.business-listing-wrapper .each-business-2 .desc-section .bottom-section .left-links {
    display: flex;
}

.business-listing-wrapper .each-business-2 .desc-section .bottom-section .left-links a {
    display: flex;
    align-items: center;
    border: solid 1px #666;
    padding: 0 15px;
    height: 22px;
    border-radius: 12px;
    font-size: 10px;
    margin-right: 10px;
    color: #ccc;
}

.business-listing-wrapper .each-business-2 .desc-section .bottom-section .right-date-section {
    display: flex;
    align-items: center;
}

.business-listing-wrapper .each-business-2 .desc-section .bottom-section .right-date-section .date-dots {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    margin: 0 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    bottom: 1px;
    background-color: #000;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: rgba(255, 255, 255, 1);
}

input:focus+.slider {
    box-shadow: 0 0 1px #fff;
}

input:checked+.slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.circle-wrapper {
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: auto;
    max-width: 100%;
}

.circle-wrapper .circle {
    min-width: 300px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: solid 1px #fff;
    position: relative;
    outline: dashed 1px #fff;
    outline-offset: 3px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.1));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-wrapper .circle .inner-circle {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: solid 1px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-wrapper .circle .inner-circle.c4 {
    width: 200px;
    height: 200px;
}

.circle-wrapper .circle .inner-circle.c3 {
    width: 150px;
    height: 150px;
}

.circle-wrapper .circle .inner-circle.c2 {
    width: 100px;
    height: 100px;
}

.circle-wrapper .circle .inner-circle.c1 {
    width: 50px;
    height: 50px;
}

.circle-wrapper .circle .line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: calc(50% + 15px);
    background: #fff;
}

.circle-wrapper .circle .line.l2 {
    rotate: 30deg;
    left: calc(50% - 41px);
    top: calc(50% - 12px);
    ;
}

.circle-wrapper .circle .line.l3 {
    rotate: 60deg;
    left: calc(50% - 72px);
    top: calc(50% - 42px);
}

.circle-wrapper .circle .line.l4 {
    rotate: 90deg;
    left: calc(50% - 82px);
    top: calc(50% - 82px);
}

.circle-wrapper .circle .line.l5 {
    rotate: 120deg;
    left: calc(50% - 71px);
    top: calc(50% - 123px);
}

.circle-wrapper .circle .line.l6 {
    rotate: 150deg;
    left: calc(50% - 41px);
    top: calc(50% - 153px);
}

.circle-wrapper .circle .line.l7 {
    rotate: 180deg;
    left: calc(50% - 0px);
    top: calc(50% - 162px);
}

.circle-wrapper .circle .line.l8 {
    rotate: 210deg;
    left: calc(50% - -41px);
    top: calc(50% - 152px);
}

.circle-wrapper .circle .line.l9 {
    rotate: 240deg;
    left: calc(50% - -69px);
    top: calc(50% - 121px);
}

.circle-wrapper .circle .line.l10 {
    rotate: 270deg;
    left: calc(50% - -83px);
    top: calc(50% - 82px);
}

.circle-wrapper .circle .line.l11 {
    rotate: 300deg;
    left: calc(50% - -72px);
    top: calc(50% - 40px);
}

.circle-wrapper .circle .line.l12 {
    rotate: 330deg;
    left: calc(50% - -41px);
    top: calc(50% - 10px);
}

.circle-head-text {
    font-weight: bold;
    text-align: center;
    padding: 30px 0;
}

.circle-wrapper .user-dots {
    position: absolute;
    left: 50px;
    top: 50px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 5px #ccc;
    z-index: 1;
    cursor: pointer;
}

.circle-wrapper .user-dots.vrotate {
    rotate: 180deg;
}

.circle-wrapper .user-dots.vhrotate {
    rotate: 180deg;
    transform: scaleX(-1);
}

.circle-wrapper .user-dots.hrotate {
    transform: scaleX(-1);
}

.circle-wrapper .user-dots .vline {
    width: 1px;
    height: 120px;
    position: absolute;
    left: 7px;
    bottom: 16px;
    background: #fff;
    opacity: 0;
    transition: all ease-in-out 500ms;
}

.circle-wrapper .user-dots .hline {
    width: 60px;
    height: 1px;
    position: absolute;
    left: -8px;
    bottom: calc(100% + 21px);
    background: #fff;
    rotate: -45deg;
    opacity: 0;
    transition: all ease-in-out 500ms;
}

.circle-wrapper .user-dots .utext {
    position: absolute;
    left: 50px;
    bottom: calc(100% + 35px);
    font-size: 12px;
    opacity: 0;
    transition: all ease-in-out 500ms;
}

.circle-wrapper .user-dots .utext .pname,
.circle-wrapper .user-dots .utext .pdesc {
    white-space: nowrap;
    text-align: center;
}

.circle-wrapper .user-dots.vrotate .utext {
    rotate: 180deg;
}

.circle-wrapper .user-dots.hrotate .utext {
    transform: scaleX(-1);
}

.circle-wrapper .user-dots.vhrotate .utext {
    transform: scaleX(-1);
    rotate: 180deg;
}

.circle-wrapper .user-dots.selected .vline,
.circle-wrapper .user-dots.selected .hline,
.circle-wrapper .user-dots .utext {
    opacity: 1;
}

.circle-selected-user {
    border: solid 1px #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    margin: 20px auto 0 auto;
}

.circle-selected-user .left-section .udesc {
    font-size: 12px;
    color: #8D8D8D;
}

.circle-selected-user .right-section {
    display: flex;
    flex-direction: column;
}

.circle-selected-user .right-section a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    width: 110px;
    border-radius: 14px;
    border: solid 1px #fff;
    margin-bottom: 5px;
    font-size: 11px;
}

.circle-selected-user .right-section a:last-child {
    margin-bottom: 0;
}

.circle-selected-user .right-section a svg {
    margin-right: 5px;
}

.no-location-data-available {
    text-align: center;
}

.no-location-data-available a {
    background: #fff;
    border: solid 1px #fff;
    padding: 10px;
    font-size: 14px;
    color: #0A0A0A;
    display: block;
    border: 0;
    box-shadow: 0 0 0 #fff;
    width: calc(50% - 10px);
    border-radius: 8px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    margin: 0 auto;
}

.circle-selected-user .right-section a.connect {
    display: flex;
    align-items: center;
    border: solid 1px #fff;
    padding: 0 15px;
    height: 28px;
    border-radius: 14px;
    font-size: 10px;
}

/* .circle-selected-user .right-section a.connect.connected {
    background: #fff;
    color: #000;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

.circle-selected-user .right-section a.connect.connected svg {
    fill: #000;
} */

.circle-selected-user .right-section a.connect>span>span {
    padding-left: 5px;
}

.circle-selected-user .right-section a.connect>span {
    display: flex;
    align-items: center;
}

.circle-selected-user .right-section a.connect>span.connected {
    display: none;
}

.circle-selected-user .right-section a.connect.connected>span.connected {
    display: flex;
}

.circle-selected-user .right-section a.connect.connected>span.unconnected {
    display: none;
}

.circle-selected-user .right-section a.connect svg {
    width: 12px;
    height: 12px;
    fill: #fff;
    line-height: 0;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .head-text {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input {
    padding: 10px 0;
    position: relative;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input input[type=text],
.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input input[type=number],
.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input input[type=password],
.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input textarea,
.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input select {
    background: #fff;
    border: solid 1px #000;
    padding: 10px;
    font-size: 16px;
    color: #000;
    display: block;
    box-shadow: 0 0 0 #fff;
    width: 100%;
    border-radius: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input select option {
    color: #000;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input textarea {
    height: 200px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input input[type="text"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-header {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-buttons .primary {
    background: #fff;
    border: solid 1px #000;
    padding: 10px;
    font-size: 14px;
    color: #0A0A0A;
    display: block;
    box-shadow: 0 0 0 #fff;
    width: calc(50% - 10px);
    border-radius: 8px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-buttons .secondary {
    border: solid 1px #fff;
    background: none;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    display: block;
    box-shadow: 0 0 0 #fff;
    width: calc(50% - 10px);
    border-radius: 8px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.confirm-popup-wrapper.white-box-wrapper .popup-box .blisting-form .form-input .form-label {
    font-weight: 600;
    padding: 0 0 10px 0;
}

#gridContent2,
#gridContent3 {
    display: none;
}

.post-listing-wrapper .post-listings .each-post .likes-count {
    font-size: 12px;
    padding: 0 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: normal;
}

.post-all-details .likes-count {
    font-size: 12px;
}

.like-list-wrapper,
.tag-list-wrapper {
    padding-top: 10px;
}

.like-list-wrapper .each-connections,
.tag-list-wrapper .each-connections {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: solid 1px rgba(141, 141, 141, 0.2);
}

.like-list-wrapper .each-connections:last-child,
.tag-list-wrapper .each-connections:last-child {
    border-bottom: 0;
}

.like-list-wrapper .each-connections .left-section,
.tag-list-wrapper .each-connections .left-section {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.like-list-wrapper .each-connections .left-section .img-holder,
.tag-list-wrapper .each-connections .left-section .img-holder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.like-list-wrapper .each-connections .left-section .img-holder img,
.tag-list-wrapper .each-connections .left-section .img-holder img {
    position: absolute;
    max-width: 100%;
    min-height: 50px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.like-list-wrapper .each-connections .left-section .text-holder,
.tag-list-wrapper .each-connections .left-section .text-holder {
    padding-left: 5px;
}

.like-list-wrapper .each-connections .left-section .text-holder .name-text,
.tag-list-wrapper .each-connections .left-section .text-holder .name-text {
    font-weight: 600;
}

.like-list-wrapper .each-connections .left-section .text-holder .job-text,
.tag-list-wrapper .each-connections .left-section .text-holder .job-text {
    font-size: 12px;
    color: rgba(141, 141, 141, 1);
    margin-top: 2px;
}

.like-list-wrapper .each-connections a.connect,
.tag-list-wrapper .each-connections a.connect {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    min-width: 120px;
}

.like-list-wrapper .each-connections a.connect.connected,
.tag-list-wrapper .each-connections a.connect.connected {
    color: #fff;
    font-weight: 600;
}

.like-list-wrapper .each-connections a.connect.connected svg,
.tag-list-wrapper .each-connections a.connect.connected svg {
    fill: #fff;
}

.like-list-wrapper .each-connections a.connect>span,
.tag-list-wrapper .each-connections a.connect>span {
    display: flex;
    align-items: center;
}

.like-list-wrapper .each-connections a.connect>span.connected,
.tag-list-wrapper .each-connections a.connect>span.connected {
    display: none;
}

.like-list-wrapper .each-connections a.connect.connected>span.connected,
.tag-list-wrapper .each-connections a.connect.connected>span.connected {
    display: flex;
}

.like-list-wrapper .each-connections a.connect.connected>span.unconnected,
.tag-list-wrapper .each-connections a.connect.connected>span.unconnected {
    display: none;
}

.like-list-wrapper .each-connections a.connect svg,
.tag-list-wrapper .each-connections a.connect svg {
    width: 12px;
    height: 12px;
    fill: #fff;
    line-height: 0;
}

.my-post-top-right-section {
    display: flex;
}

.my-post-top-right-section a {
    margin-left: 10px;
}

.my-post-top-right-section a svg {
    width: 24px;
    height: 24px;
    /* fill: #fff; */
}

/* .my-post-top-right-section a.tag svg *{
    fill: #0a0a0a;
    stroke: white;
    stroke-width: 1px;
} */

.notification-header-text {
    padding-top: 15px;
    margin-top: 15px;
    padding-bottom: 5px;
    border-top: solid 1px #2D2D2D;
}

.chats-list-wrapper.notifications .notification-header-text:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

/* .swipe-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.swipe-item .delete-icon{
    position: absolute;
    right:0;
    top:0;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF010180;
    border-radius: 5px;
} */


.swipe-item {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.swipe-content {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.each-chats {
    display: block;
    text-decoration: none;
    color: inherit;
}

.swipe-item .delete-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8B0C0C;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.swipe-item.show-delete .delete-icon {
    opacity: 1;
    z-index: 0;
}

.swipe-item.show-delete {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 15px;
}

.swipe-item.show-delete::before {
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    border-radius: 0 12px 12px 0;
    background: rgba(255, 255, 255, 0.2);
    width: 5px;
    position: absolute;
}

.swipe-item.deleting {
    opacity: 0;
    transform: translateX(-100%);
}

.chat-group-details-wrapper .members-count {
    font-size: 16px;
    font-weight: 600;
}

.chat-group-details-wrapper .add-member {
    padding: 20px 0 10px 0;
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.chat-group-details-wrapper .add-member span {
    padding-left: 10px;
}

.chat-group-details-wrapper .delete-group {
    padding: 10px 0 10px 0;
    display: flex;
    align-items: center;
    color: rgba(255, 1, 1, 0.5);
    text-decoration: none;
    width: 100%;
    margin: 20px 0;
}

.chat-group-details-wrapper .delete-group svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 1, 1, 0.5);
}

.chat-group-details-wrapper .delete-group span {
    padding-left: 10px;
}

.connections-wrapper .each-connections .chat-right-data {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.connections-wrapper .each-connections .chat-right-data span {
    color: rgba(53, 129, 90, 1);
}

.connections-wrapper .each-connections .chat-right-data a {
    color: rgba(255, 1, 1, 0.5);
    text-decoration: none;
}

.connections-wrapper .each-connections .chat-right-data a.primary {
    color: #959595;
}

.chat-group-details-wrapper .group-media-tabs-wrapper {
    padding-bottom: 30px;
}

.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs {
    background: rgba(31, 31, 31, 1);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 2px;
}

.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 33px;
    min-width: 100px;
    font-size: 12px;
}

.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs a.selected {
    background: rgba(10, 10, 10, 1);
    border-radius: 8px;
}

.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs-data-wrapper {
    padding: 15px 0 0 0;
}

.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs-data-wrapper #gtab2data,
.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs-data-wrapper #gtab3data {
    display: none;
}

.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs-data-wrapper .group-images-wrapper {
    display: flex;
    max-width: 100%;
    overflow: auto;
}

.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs-data-wrapper .group-images-wrapper a {
    width: 60px;
    height: 60px;
    position: relative;
    margin-right: 10px;
    border-radius: 12px;
    overflow: hidden;
    min-width: 60px;
}

.chat-group-details-wrapper .group-media-tabs-wrapper .group-media-tabs-data-wrapper .group-images-wrapper a img {
    height: 60px;
    min-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bfbfbf;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip svg {
    width: 10px;
    height: 10px;
    fill: #000;
    line-height: 0;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip.approved {
    background: #0e2117;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip.approved svg {
    fill: #25D366;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip.declined {
    background: #3b0808;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip.declined svg {
    fill: #bf0f0f;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: #bfbfbf;
    color: #000;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    font-size: 12px;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip.approved .tooltiptext {
    background-color: #0e2117;
    color: #fff;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip.declined .tooltiptext {
    background-color: #3b0808;
    color: #fff;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #bfbfbf transparent transparent transparent;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip.approved .tooltiptext::after {
    border-color: #0e2117 transparent transparent transparent;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip.declined .tooltiptext::after {
    border-color: #3b0808 transparent transparent transparent;
}

.chat-box-wrapper .chat-box .msg-box .text-box .tooltip:hover .tooltiptext {
    visibility: visible;
}

.story-box-wrapper {
    overflow: hidden;
}

.story-img-holder {
    height: calc(100vh - 130px);
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-img-holder img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: calc(100vh - 130px);
}

.story-progress-outer {
    margin-left: -10px;
    width: calc(100% + 20px);
    margin-bottom: 10px;
}

.story-progress-outer .story-progress-wrapper {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.story-progress-outer .story-progress-wrapper .each-progress-wrapper {
    padding: 0 10px;
    position: relative;
    display: table-cell;
}

.story-progress-outer .story-progress-wrapper .each-progress-wrapper .progress-container {
    width: 100%;
    height: 6px;
    background-color: #1f1f1f;
    border-radius: 3px;
    overflow: hidden;
}

.story-progress-outer .story-progress-wrapper .each-progress-wrapper .progress-bar {
    width: 0%;
    height: 100%;
    background-color: #fff;
}

.story-progress-outer .story-progress-wrapper .each-progress-wrapper .progress-bar.active {
    animation: fillProgress 10s linear forwards;
}

.story-progress-outer .story-progress-wrapper .each-progress-wrapper .progress-bar.completed {
    width: 100%;
}

.stories-list-wrapper {
    position: relative;
}

.stories-list-wrapper a {
    position: absolute;
    width: 120px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

.stories-list-wrapper a:focus {
    outline: 0px !important;
}

.stories-list-wrapper a.right {
    left: auto;
    right: 0;
}

.stories-list-wrapper .each-story {
    display: none;
}

.stories-list-wrapper .each-story#st-1 {
    display: block;
}

.stories-list-wrapper .each-story .each-story-details {
    height: calc(100vh - 250px);
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stories-list-wrapper .each-story .each-story-details img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: calc(100vh - 250px);
    max-width: 100%;
    z-index: 0;
}

.stories-list-wrapper .each-story .each-story-details .story-text-wrapper {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    background: rgba(0, 0, 0, 0.4);
    border: solid 1px rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.stories-list-wrapper .each-story .each-story-details .vimeo-iframe-outer-wrapper{
    width: 100%;
    height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@supports (-webkit-touch-callout: none) {
    .stories-list-wrapper .each-story .each-story-details {
        height: calc(100vh - 265px);
    }
}

@media only screen and (max-width: 470px) {

    .profile-grid-wrapper a,
    .profile-grid-wrapper a img {
        height: 120px;
    }
    .scroller-wrapper .each-scroll .scroll-text .desc-text,
    .scroller-wrapper .each-scroll .scroll-text .title-text {
        font-size: 14px;
    }
}

@media only screen and (max-width: 410px) {

    .profile-grid-wrapper a,
    .profile-grid-wrapper a img {
        height: 100px;
    }
}

@media only screen and (max-width: 360px) {

    .profile-grid-wrapper a,
    .profile-grid-wrapper a img {
        height: 80px;
    }
    .scroller-wrapper .each-scroll .scroll-text .desc-text,
    .scroller-wrapper .each-scroll .scroll-text .title-text {
        font-size: 13px;
    }
}

.post-images-swiper-wrapper{
    position: relative;
}

.post-images-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 100px;

}

.swiper-wrapper{
    align-items: center;
}

.swiper-container {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

html .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin: 0 5px 0 0 !important;
    background: #828282;
    opacity: 1;
    transition: all ease-in-out 300ms;
}

html .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
    width: 32px;
}

.swiper-pagination{
    position: static !important;
    z-index: -1 !important;
    width: auto !important;
}

.search-user-wrapper{
    padding-bottom: 20px;
    display: flex;
    width: 100%;
}

.search-user-wrapper .left-sicon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 217, 217, 0.1);
}

.search-user-wrapper  .s-user-input{
    padding-left: 10px;
    width: calc(100% - 40px);
}

.search-user-wrapper  .s-user-input input{
    height: 40px;
    border-radius: 20px;
    background: rgba(217, 217, 217, 0.1);
    padding: 0 20px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    box-shadow: none;
    color: #fff;
}

.connection-listing-page .search-user-wrapper{
    border-top: solid 1px rgba(217, 217, 217, 0.1);
    padding-top: 20px;
}

.connections-wrapper .each-connections .connection-links{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.connections-wrapper .each-connections .connection-links a{
    margin: 5px;
    background: none;
    border: solid 1px #FDFDFD;
    height: 24px;
    border-radius: 12px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: 10px;
}

.connections-wrapper .each-connections .connection-links a svg{
    margin-right: 5px;
}

.removed-grp-heading{
    padding: 15px 0 0 0;
}

progress.styled {
  width: 100%;
  height: 6px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: #1e1e1e;
  border-radius: 3px;
}

/* WebKit */
progress.styled::-webkit-progress-bar {
  background: #1e1e1e;
  border-radius: 3px;
}

progress.styled::-webkit-progress-value {
  background: linear-gradient(to right, #ccc, #fff);
  border-radius: 3px;
}

/* Firefox */
progress.styled::-moz-progress-bar {
  background: linear-gradient(to right, #ccc, #fff);
  border-radius: 3px;
}

.videos-wrapper .each-video{
    margin: 10px 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: #151515;
}

.videos-wrapper .each-video .no-video-text{
    background: #151515;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.videos-wrapper .each-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videos-wrapper .each-video a.delete-video {
  min-width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px rgba(0, 0, 0, 0.7);
  padding: 0 10px;
  font-size: 0.85em;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
}

.videos-wrapper .each-video a.delete-video svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

/* Hide unwanted Vimeo controls */
.vimeo-wrapper iframe {
  width: 100%;
  height: 360px;
}

.vimeo-wrapper iframe,
.vimeo-iframe-outer-stories iframe {
  pointer-events: none; /* freeze UI */
}

.vimeo-wrapper iframe:hover,
.vimeo-iframe-outer-stories iframe:hover {
  pointer-events: auto; /* allow seeking & play */
}

/* Hide fullscreen, volume, settings, pip via CSS hack */
.vimeo-wrapper iframe::cue,
.vimeo-wrapper iframe + div,
.vimeo-wrapper .fullscreen,
.vimeo-wrapper .volume,
.vimeo-wrapper .settings,
.vimeo-wrapper .pip,
.vimeo-iframe-outer-stories iframe::cue,
.vimeo-iframe-outer-stories iframe + div,
.vimeo-iframe-outer-stories .fullscreen,
.vimeo-iframe-outer-stories .volume,
.vimeo-iframe-outer-stories .settings,
.vimeo-iframe-outer-stories .pip {
  display: none !important;
}