@font-face {
    font-family: 'HeroNew';
    src: url("../webfonts/HeroNew/HeroNew-Light.otf") format("opentype");
    font-weight: 300;
}
@font-face {
    font-family: 'HeroNew';
    src: url("../webfonts/HeroNew/HeroNew-Regular.otf") format("opentype");
    font-weight: 400;
}
@font-face {
    font-family: 'HeroNew';
    src: url("../webfonts/HeroNew/HeroNew-Medium.otf") format("opentype");
    font-weight: 500;
}
@font-face {
    font-family: 'HeroNew';
    src: url("../webfonts/HeroNew/HeroNew-SemiBold.otf") format("opentype");
    font-weight: 600;
}
@font-face {
    font-family: 'HeroNew';
    src: url("../webfonts/HeroNew/HeroNew-Bold.otf") format("opentype");
    font-weight: 700;
}
@font-face {
    font-family: 'HeroNew';
    src: url("../webfonts/HeroNew/HeroNew-ExtraBold.otf") format("opentype");
    font-weight: 800;
}
@font-face {
    font-family: 'HeroNew';
    src: url("../webfonts/HeroNew/HeroNew-Super.otf") format("opentype");
    font-weight: 900;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #f2f2f2;
    font-family: 'HeroNew', sans-serif;
    font-weight: 400;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

a {
    text-decoration: none;
}
a, 
button {
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}

::-webkit-input-placeholder {
    color: #9d9c9f;
}
::-moz-placeholder {
    color: #9d9c9f;
}
:-ms-input-placeholder {
    color: #9d9c9f;
}
:-moz-placeholder {
    color: #9d9c9f;
}

.nice-select .list {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}
.text-color-1 {
    color: #7c00ff;
}
.text-color-2 {
    color: #ff444e;
}
.text-color-3 {
    color: #1cd1c1;
}
.bg-color-1 {
    background-color: #7c00ff;
}
.bg-color-2 {
    background-color: #ff444e;
}
.bg-color-3 {
    background-color: #1cd1c1;
}

.help-block {
    display: none;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #dc3545;
}
.help-block.show {
    display: block;
}

.no-data-row {
    display: none;
}

/* btn-style-1 :start */
.btn-style-1 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #ff444e;
    border: 1px solid #ff444e;
    border-radius: 50px;
    padding: 8px 22px;
}
.btn-style-1:hover {
    color: #fff;
    background-color: #7b00ff;
    border-color: #7b00ff;
}
/* btn-style-1 :end */

.dropdown-menu-center {
    right: auto !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, 60px) !important;
    -o-transform: translate(-50%, 60px) !important;
    transform: translate(-50%, 60px) !important;
}

.fs-10px {
    font-size: 10px;
}
.fs-12px {
    font-size: 12px;
}
.fs-14px {
    font-size: 14px;
}
.fs-16px {
    font-size: 16px;
}
.fs-18px {
    font-size: 18px;
}
.fs-20px {
    font-size: 20px;
}


/* navbar :start */
header {
    background-color: #fff;
    padding: 25px 0px;
}
.navcon-wrap {
    display: block;
    height: 100%;
}
.navcon-wrap-mob {
    display: none;
    align-items: center;
    width: 100%;
    height: 100%;
}

.navbar-content .navcon-wrap-mob .search .searchIcon {
    left: 0;
    right: initial;
    padding: 0;
}
.navbar-content .navcon-wrap-mob .search input {
    padding: 10px 50px 10px 50px;
}

.navbar-content .navcon-wrap-mob .search .closeIcon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 100%;
    padding-right: 10px;
}
.navbar-content .navcon-wrap-mob .search .closeIcon a img {
    background-color: transparent;
    padding: 5px;
    border-radius: 100%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.navbar-content .navcon-wrap-mob .search .closeIcon a:hover img {
    background-color: #dddddd;
}


.navbar-wrapper {
    display: flex;
    justify-content: space-between;
}
.navbar-wrapper .navbar-logo {
    margin-right: 10px;
}
.navbar-content {
    flex-shrink: 0;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.navbar-content ul.navcont-list {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.navbar-content ul.navcont-list > li {
    margin-left: 20px;
    flex-shrink: 0;
}
.navbar-content ul.navcont-list > li:first-child {
    margin-left: 0px;
}

.navbar-content .search {
    position: relative;
    width: 490px;
}
.navbar-content .search input {
    font-size: 14px;
    border: 2px solid #d6d4d5;
    border-radius: 50px;
    padding: 10px 50px 10px 30px;
}
.navbar-content .search .searchIcon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 100%;
    padding-right: 10px;
}

.navbar-content .search-mini .searchIcon {
    width: 42px;
    height: 42px;
    border: 1px solid #d6d4d5;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.navbar-content .search-mini .searchIcon:hover {
    background-color: #ececec;
}

.nav-notification .notifi-btn {
    position: relative;
    padding: 10px 10px;
    background: transparent;
    border-radius: 8px;
}
.nav-notification .notifi-btn:hover {
    background: #ececec;
}
.nav-notification.active a.notifi-btn::after {
    content: "\f111";
    font-family: "Font Awesome 5 Free"; 
    font-size: 8px;
	font-weight: 900;
    color: #ff444e;
    position: absolute;
    top: 2px;
    right: 7px;
}
.notification-dropdown {
    width: 415px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.2));
}
.notification-dropdown::before {
    content: '';
    border-top: 0px solid rgb(255 255 255 / 0%);
    border-left: 15px solid rgb(255 255 255 / 0%);
    border-bottom: 15px solid #d3d3d3;
    border-right: 15px solid rgb(255 255 255 / 0%);
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    width: 0px;
    margin: 0 auto;
}
.notification-dropdown::after {
    content: '';
    border-top: 0px solid rgb(255 255 255 / 0%);
    border-left: 15px solid rgb(255 255 255 / 0%);
    border-bottom: 15px solid #ffffff;
    border-right: 15px solid rgb(255 255 255 / 0%);
    position: absolute;
    top: -12.5px;
    left: 0;
    right: 0;
    width: 0px;
    margin: 0 auto;
}
.notification-dropdown .notification-dropdown-inner {
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 20px;
    overflow: hidden;
}
.notification-dropdown .notification-count {
    padding: 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.notification-dropdown .notification-count p {
    font-size: 20px;
    font-weight: 700;
    color: #350d6d;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.notification-dropdown .notification-count p span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: #ffffff;
    background-color: #1cd1c0;
    border-radius: 100%;
    padding: 5px 5px;
    margin-right: 10px;
    width: 38px;
    height: 38px;
}
.notification-dropdown .notification-list-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
}
.notification-dropdown .notification-list-wrap .notification-block {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    border-top: 1px solid #e4e4e4;
}
.notification-dropdown .notification-list-wrap .notification-block .details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #360d69;
    margin-bottom: 3px;
}
.notification-dropdown .notification-list-wrap .notification-block .details p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #898989;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  	text-overflow: ellipsis;
}
.notification-dropdown .notification-list-wrap .notification-block .details time {
    font-size: 12px;
    font-weight: 400;
    color: #898989;
}
.notification-dropdown .notification-list-wrap .notification-block.read {
    background-color: #f0f4f6;
}
.notification-dropdown .notification-list-wrap .notification-block.read .details h4 {
    color: #898989;
}
.notification-dropdown .notification-list-wrap .notification-block:hover {
    background-color: #f5f5f5;
}

.notification-dropdown .notification-viewall {
    border-top: 1px solid #d3d3d3;
}
.notification-dropdown .notification-viewall a {
    display: block;
    width: 100%;
    padding: 15px 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #350d6d;
    text-align: center;
}
.notification-dropdown .notification-viewall a:hover {
    color: #fff;
    background-color: #350d6d;
}

.nav-community a {
    font-size: 14px;
    font-weight: 600;
    color: #ff444e;
    border: 2px solid #ff444e;
    border-radius: 50px;
    padding: 13px 30px;
    display: inline-block;
}
.nav-community a:hover {
    color: #fff;
    background-color: #ff444e;
}

.current-user {
    display: flex;
    align-items: center;
    border: 1px solid #d6d4d5;
    border-radius: 50px;
    padding: 3px 10px 3px 3px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
     -ms-transition: 0.5s;
      -o-transition: 0.5s;
         transition: 0.5s;
}
.current-user p {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0px 10px;
}
.current-user i {
    font-size: 14px;
    color: #a49fab;
}
.current-user:hover {
    background-color: #d6d4d5;
}
.currentusr-wrap .dropdown-menu {
    padding: 0;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    margin-top: 15px !important;
    filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.102));
    width: 250px;
}
.currentusr-wrap .dropdown-menu::before {
    content: '';
    border-top: 0px solid rgb(255 255 255 / 0%);
    border-left: 15px solid rgb(255 255 255 / 0%);
    border-bottom: 15px solid #ffffff;
    border-right: 15px solid rgb(255 255 255 / 0%);
    position: absolute;
    top: -15px;
    right: 28px;
    width: 0px;
    margin: 0 auto;
}
.currentusr-wrap .dropdown-menu > li {
    border-bottom: 2px solid #f2f2f2;
}
.currentusr-wrap .dropdown-menu > li:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}
.currentusr-wrap .dropdown-menu > li:last-child {
    border-bottom: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}
.currentusr-wrap .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    padding: 15px 20px;
}
.currentusr-wrap .dropdown-menu .dropdown-item:focus, 
.currentusr-wrap .dropdown-menu .dropdown-item:hover, 
.currentusr-wrap .dropdown-menu .dropdown-item.active {
    color: #fff;
    background-color: #f22354;
}
/* hamburger :start */
.hamburger-wrap {
    display: none;
}
#hamburger-btn {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#hamburger-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#hamburger-btn span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger-btn span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger-btn span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger-btn.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 5px;
}

#hamburger-btn.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#hamburger-btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 5px;
}
/* --- hamburger :end ---*/
/* navbar :end */

/* footer :start */
footer {
    padding: 20px 0px;
}
.fcontent-wrap {
    display: flex;
    justify-content: space-between;
}
.fcontent-wrap .fsocialmedia ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.fcontent-wrap .fsocialmedia ul li {
    margin-right: 7px;
}
.fcontent-wrap .fsocialmedia ul li:last-child {
    margin-right: 0px;
}
.fcontent-wrap .fsocialmedia ul li a {
    width: 34px;
    height: 34px;
    font-size: 12px;
    color: #ff444e;
    border: 1px solid #ff444e;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fcontent-wrap .fsocialmedia ul li a:hover {
    color: #fff;
    background-color: #ff444e;
}
.fcontent-wrap .fcopyright p {
    font-size: 14px;
    color: #858585;
    margin-bottom: 0px;
}
/* footer :end */

/* Login :start */
.logreg-wrap {
    width: 100%;
    display: flex;
}
.logreg-wrap .lrw-block {
    width: 50%;
    min-height: 100vh;
}
.logreg-wrap .lrw-block.left {
    background-image: url('../images/lrw-block-left.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 30px;
    position: relative;
    min-height: 650px;
}
.logreg-wrap .lrw-block.left .logo {
    z-index: 1;
}
.logreg-wrap .lrw-block .socialmedia ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.logreg-wrap .lrw-block .socialmedia ul li {
    margin-right: 7px;
}
.logreg-wrap .lrw-block .socialmedia ul li:last-child {
    margin-right: 0px;
}
.logreg-wrap .lrw-block .socialmedia ul li a {
    width: 34px;
    height: 34px;
    font-size: 12px;
    color: #ff444e;
    border: 1px solid #ff444e;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logreg-wrap .lrw-block .socialmedia ul li a:hover {
    color: #fff;
    background-color: #ff444e;
}

.logreg-wrap .lrw-block.left .caption {
    margin: 30px 0px;
    display: flex;
    /* justify-content: center; */
    align-items: center;

    position: absolute;
    top: 0;
    bottom: 0;
}
.logreg-wrap .lrw-block.left .caption h3 {
    font-size: 74px;
    font-weight: 700;
    line-height: 70px;
    color: #350e6a;
    margin-bottom: 25px;
    padding-right: 40px;
}
.logreg-wrap .lrw-block.left .caption h3 span.color-1 {
    color: #7c00ff;
}
.logreg-wrap .lrw-block.left .caption h3 span.color-2 {
    color: #ff444e;
}
.logreg-wrap .lrw-block.left .caption h3 span.color-3 {
    color: #1cd1c1;
}
.logreg-wrap .lrw-block.left .caption h3 p {
    font-size: 27px;
    line-height: 55px;
    margin: 15px 0 0 0;
    color: #350e6a;
    display: block;
    font-weight: 300;
    line-height: normal;
}



.logreg-wrap .lrw-block.right {
    background-image: url('../images/lrw-block-right.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 30px 30px 30px;
    position: relative;
}
.logreg-wrap .lrw-block.right > div {
    margin: 30px 0px;
}
.logreg-wrap .lrw-block.right .lrwbr-head {
    text-align: center;
}
.logreg-wrap .lrw-block.right .lrwbr-head .logo {
    display: none;
}
.logreg-wrap .lrw-block.right .lrwbr-head .logo img {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.logreg-wrap .lrw-block.right .lrwbr-head ul.title {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logreg-wrap .lrw-block.right .lrwbr-head ul.title li {
    margin-right: 10px;
}
.logreg-wrap .lrw-block.right .lrwbr-head ul.title li:last-child {
    margin-right: 0;
}
.logreg-wrap .lrw-block.right .lrwbr-head ul.title li p {
    font-size: 44px;
    font-weight: 700;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 0;
}
.logreg-wrap .lrw-block.right .lrwbr-head ul.title li p span.color-1 {
    color: #ff444e;
}
.logreg-wrap .lrw-block.right .lrwbr-head ul.title li p span.color-2 {
    color: #1cd1c1;
}
.logreg-wrap .lrw-block.right .lrwbr-head .subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #aea6be;
    margin: 10px 0px 0px 0px;
}
.logreg-wrap .lrw-block.right .lrwbr-form {
    background-color: #fff;
    border-radius: 30px;
    padding: 40px 30px 30px 30px;
    margin: 30px 0px 0px 0px;
    width: 370px;
    height: auto;
}

.logreg-wrap .lrw-block.right .lrwbr-form .field input + label::before, 
.logreg-wrap .lrw-block.right .lrwbr-form .label-before, 
.logreg-wrap .lrw-block.right .lrwbr-form .field input:focus + label::before, 
.logreg-wrap .lrw-block.right .lrwbr-form .field input:valid + label::before,  
.logreg-wrap .lrw-block.right .lrwbr-form .field .frmselect.form-field + label::before, 
.logreg-wrap .lrw-block.right .lrwbr-form .field .select2  + label::before {
    line-height: 20px;
    font-size: 12px;
    top: -10px;
    background: #fff;
    padding: 0 6px;
    left: 24px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field {
    position: relative;
    margin-bottom: 24px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field label {
    display: initial;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field label::before {
    content: attr(title);
    position: absolute;
    top: 0;
    left: 30px;
    line-height: 50px;
    font-size: 14px;
    color: #707070;
    transition: 300ms all;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .form-field, 
.logreg-wrap .lrw-block.right .lrwbr-form .field .form-field + .select2 .select2-selection {
    width: 100%;
    height: auto;
    line-height: 40px;
    padding: 3px 30px;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: 500;
    color: #222;
    border: 2px solid #dbdbdb;
    border-radius: 50px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .select2 .select2-selection__rendered {
    padding: 0;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .select2 .selection .select2-selection .select2-selection__arrow {
    width: 30px;
    height: 100%;
}


.logreg-wrap .lrw-block.right .lrwbr-form .field .select2-container--default .select2-selection--single .select2-selection__arrow b {
    width: 10px;
    height: 10px;
    border-top: 0;
    border-left: 0;
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    margin-left: -10px;
    margin-top: -8px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-top: 0;
    border-left: 0;
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: -5px;
}
.select2-container .select2-results__option {
    padding: 10px 15px;
    text-transform: capitalize;
}
.select2-container .select2-results__option--selected {
    color: #fff;
    background-color: #f42455;
}
.select2-container .select2-results__option--highlighted.select2-results__option--selectable {
    color: #fff;
    background-color: #f42455;
}
.select2-container .select2-dropdown {
    background-color: #fff;
    border: 0;
    border-radius: 5px !important;
    box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
    overflow: hidden;
}
.select2-container .select2-search__field {
    height: 36px;
    border: 1px solid rgb(68 68 68 / 11%) !important;
    border-radius: 5px;
}
.select2-container .select2-search__field:focus {
    outline: none;
}


.logreg-wrap .lrw-block.right .lrwbr-form .field .form-field:focus {
    outline: 0;
    border-color: #7c00ff;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .form-field + .select2 .select2-selection .select2-selection__rendered {
    line-height: 40px;
    text-transform: capitalize;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .frmselect.form-field + label::before, 
.logreg-wrap .lrw-block.right .lrwbr-form .field input:valid + label::before {
    content: attr(data-title);
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .frmselect.form-field:focus + label::before, 
.logreg-wrap .lrw-block.right .lrwbr-form .field input:focus + label::before {
    color: #7c00ff;
}
.logreg-wrap .lrw-block.right .lrwbr-form .otp {
    letter-spacing: 5px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .frmselect + .select2 {
    width: 100% !important;
    height: 50px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .frmselect::after {
    width: 10px;
    height: 10px;
    right: 20px;
    margin-top: -8px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .frmselect .list {
    width: 100%;
    font-size: 16px;
    max-height: 200px;
    overflow-y: auto;
}
.logreg-wrap .lrw-block.right .lrwbr-form .buttons button {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background-color: #ff444e;
    border: 1px solid #ff444e;
    border-radius: 50px;
    padding: 10px 10px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .buttons button:hover {
    color: #ff444e;
    background-color: transparent;
}


.logreg-wrap .lrw-block.right .lrwbr-form .top-label {
    margin-bottom: 25px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .top-label p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #585858;
    margin-bottom: 0px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .bottom-label {
    margin-top: 25px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .bottom-label p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
    margin: 0px;
}
.logreg-wrap .lrw-block.right .lrwbr-form .bottom-label p a {
    color: #7b00ff;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}
.logreg-wrap .lrw-block.right .lrwbr-form .bottom-label p a:hover {
    color: #ff444e;
}
.logreg-wrap .lrw-block.right .timmer {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #aa89bb;
    text-align: center;
    margin-top: 15px;
}

.logreg-wrap .lrw-block.right .lrwbr-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 0px 30px 30px 30px;
}
.logreg-wrap .lrw-block.right .copyright p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0px;
    text-align: right;
}
.logreg-wrap .lrw-block.right .socialmedia {
    display: none;
    margin-bottom: 15px;
}
.logreg-wrap .lrw-block.right .socialmedia ul {
    justify-content: center;
}
.logreg-wrap .lrw-block.right .socialmedia ul li a {
    color: #fff;
    border-color: #fff;
}
.logreg-wrap .lrw-block.right .socialmedia ul li a:hover {
    color: #ff444e;
    background-color: #fff;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field .form-field + .select2.select2-container--open .select2-selection {
    outline: 0;
    border-color: #7c00ff;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field [data-prefix] {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 0;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field [data-prefix] input {
    flex-shrink: 1;
    flex-grow: 1;
    border-left: none;
    padding-left: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field [data-prefix]::before {
    content: attr(data-prefix);
    display: block;
    border: 2px solid #dbdbdb;
    border-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    padding: 3px 3px 3px 30px;
    font-size: 17px;
    font-weight: 500;
    line-height: 40px;
    color: #999999;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field [data-prefix] .form-field {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-left: 0;
}
.logreg-wrap .lrw-block.right .lrwbr-form .field [data-prefix]:focus-within::before {
    outline: 0;
    border-color: #7c00ff;
}



.whoweare-section {
    background-color: #fff;
}
.whoweare-section .wwc-left {
    width: 100%;
    height: 100%;
    background-image: url('../images/who-we-are-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 30px;
}
.whoweare-section .wwc-left .wwcl-block h5 {
    font-size: 20px;
    font-weight: 500;
    /* line-height: 31px; */
    color: #fff;
    margin-bottom: 20px;
}
.whoweare-section .wwc-left .wwcl-block h3 {
    font-size: 66px;
    font-weight: 700;
    line-height: 69px;
    color: #fff;
    margin-bottom: 0px;
}
.whoweare-section .wwc-right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 120px;
}
.whoweare-section .wwc-right .wwcr-block p {
    font-size: 18px;
    font-weight: 400;
    line-height: 31px;
    color: #350e6a;
    margin-bottom: 0px;
}


.features-section {
    padding: 110px 0px;
}
.features-block {
    width: 100%;
    height: 100%;
    padding: 12px 0px;
}
.features-block > div {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 30px;
    padding: 50px 30px;
    box-shadow: 0px 0px 20px -10px rgba(32, 33, 36, 0.3);
}
.features-block .image {
    margin-bottom: 40px;
}
.features-block h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}
.features-block p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}


.whatwedo-section {
    padding: 120px 0px;
    background-color: #350e6a;
}
.whatwedo-head {
    margin-bottom: 60px;
}
.whatwedo-section .whatwedo-head h5 {
    font-size: 20px;
    font-weight: 500;
    /* line-height: 31px; */
    color: #fff;
    margin-bottom: 20px;
}
.whatwedo-section .whatwedo-head h3 {
    font-size: 66px;
    font-weight: 700;
    line-height: 69px;
    color: #fff;
    margin-bottom: 0px;
}
.whatwedo-block {
    margin: 12px 0px;
}
.whatwedo-block .image {
    width: 100%;
    height: auto;
}
.whatwedo-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.whatwedo-block .details {
    background-color: #350e6a;
    display: flex;
    color: #fff;
    margin-top: -90px;
    padding: 30px 10px 10px 10px;
    position: relative;

    background: rgb(53,14,106);
    background: -moz-linear-gradient(0deg, rgba(53,14,106,1) 0%, rgba(53,14,106,1) 70%, rgba(53,14,106,0.7343312324929971) 80%, rgba(53,14,106,0.577468487394958) 85%, rgba(53,14,106,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(53,14,106,1) 0%, rgba(53,14,106,1) 70%, rgba(53,14,106,0.7343312324929971) 80%, rgba(53,14,106,0.577468487394958) 85%, rgba(53,14,106,0) 100%);
    background: linear-gradient(0deg, rgba(53,14,106,1) 0%, rgba(53,14,106,1) 70%, rgba(53,14,106,0.7343312324929971) 80%, rgba(53,14,106,0.577468487394958) 85%, rgba(53,14,106,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#350e6a",endColorstr="#350e6a",GradientType=1);
}
.whatwedo-block .details .details-icon {
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 30px;
}
.whatwedo-block .details .details-icon img {
    width: 100%;
    height: auto;
}
.whatwedo-block .details .details-txt {
    padding-top: 40px;
}
.whatwedo-block .details .details-txt h3 {
    font-size: 26px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 15px;
}
.whatwedo-block .details .details-txt h3 strong {
    font-weight: 700;
    display: block;
}
.whatwedo-block .details .details-txt p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 0px;
}



.benefits-section {
    background-color: #ffffff;
    padding: 120px 0px;
}
.benefits-section .benefitsec-head {
    margin-bottom: 45px;
}
.benefits-section .benefitsec-head h3 {
    font-size: 66px;
    font-weight: 700;
    line-height: 69px;
    color: #350e6a;
    margin-bottom: 0px;
}
.benefits-block {
    padding: 25px 0px;
}
.benefits-block .benefits-inner {
    border: 2px solid #7c00ff;
    border-radius: 20px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
}
.benefits-block .benefits-inner .image {
    margin-right: 30px;
}
.benefits-block .benefits-inner .text h3 {
    font-size: 16px;
    font-weight: 500;
    color: #7c00ff;
    margin-bottom: 0px;
}

.benefits-description {
    margin-top: 15px;
}
.benefits-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #2b2b2b;
    margin-bottom: 0px;
}

.parts-section {
    background-image: url('../images/parts-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0px;
}
.parts-section .partsec-head {
    margin-bottom: 45px;
}
.parts-section .partsec-head h3 {
    font-size: 66px;
    font-weight: 700;
    line-height: 69px;
    color: #fff;
    margin-bottom: 0px;
}
.partsec-block {
    height: 100%;
    padding: 24px 0px 0px 0px;
}
.partsec-block .partsec-inner {
    height: 100%;
    background-color: #fff;
    padding: 40px 40px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}
.partsec-block h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.partsec-block p {
    font-size: 16px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 0px;
}
.partsec-block .btn-joinnow {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
    padding: 13px 53px;
    margin-top: 30px;
}
.partsec-block .btn-joinnow:hover {
    color: #fff;
    background-color: #000;
}

.log-footer {
    background-image: url('../images/footer-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding: 70px 0px;
}
.log-footer .logf-right {
    border-left: 1px solid #fff;
    padding-left: 40px;
}
.log-footer .logf-right h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.log-footer .logf-right p {
    font-size: 16px;
    font-weight: 400;
    color: #8a73ab;
    margin-bottom: 0;
}

.log-footer .socialmedia {
    margin-top: 20px;
}
.log-footer .socialmedia ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.log-footer .socialmedia ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.log-footer .socialmedia ul li {
    margin-right: 7px;
}
.log-footer .socialmedia ul li a {
    width: 34px;
    height: 34px;
    font-size: 12px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.log-footer .socialmedia ul li a.fb:hover {
    background-color: #fff;
    color: #4267B2;
}
.log-footer .socialmedia ul li a.insta:hover {
    background-color: #fff;
    color: #C13584;
}
.log-footer .socialmedia ul li a.tweet:hover {
    background-color: #fff;
    color: #1da1f2;
}
/* Login :end */

/* list-page-wrap :start */
.list-page-wrap {
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 25px 0px 0px 0px;
}
  
.list-page-wrap .left-list {
    width: 272px;
    /* background: #fff; */
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.list-page-wrap .right-list {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: #fff;
    margin-left: 25px;
    padding: 20px 25px;
    height: fit-content;
}
/* list-page-wrap :end */

.current-session {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e4e4e4;
}
.current-session .currentsec-title h3 {
    font-size: 26px;
    font-weight: 700;
    color: #350e6a;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: break-spaces;
    word-break: break-all;
}

.cursec-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.cursec-nav li {
    margin-right: 10px;
}
.cursec-nav li:last-child {
    margin-right: 0px;
}
.cursec-nav li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #7b00ff;
    border: 1px solid #7b00ff;
    border-radius: 50px;
    padding: 7px 19px;
}
.cursec-nav li a.active, 
.cursec-nav li a:hover {
    color: #fff;
    background-color: #7b00ff;
}


.box-wrapper-1 {
    padding: 12px 0px;
}
.box-wrapper-1 .image-block {
    width: 100%;
    height: 225px;
    border-radius: 15px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0, 0);
    -moz-transform: translate3d(0, 0,0);
    margin-bottom: 10px;
    position: relative;
}
.box-wrapper-1 .image-block .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.box-wrapper-1 .image-block .video-length {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #000;
    padding: 0px 5px;
}
.box-wrapper-1:hover .image-block .image {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}

.box-wrapper-1 .details-block time {
    font-size: 14px;
    font-weight: 400;
    color: #1cd1c1;
    margin-bottom: 10px;
    display: inline-block;
}
.box-wrapper-1 .details-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 10px;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.box-wrapper-1 .details-block h3 span {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 10px;
}
.box-wrapper-1 .details-block h3:hover {
    color: #f42455;
}
.box-wrapper-1 .details-block h4 {
    font-size: 12px;
    font-weight: 400;
    color: #898989;
    margin-bottom: 10px;
}
.box-wrapper-1 .details-block h4 span {
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.box-wrapper-1 .details-block h4 span:hover {
    color: #f42455;
}
.box-wrapper-1 .details-block p {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 10px;
}
.box-wrapper-1 .buttons-block {
    padding-top: 10px;
}
.box-wrapper-1 .buttons-block a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #ff444e;
    border-radius: 50px;
    padding: 8px 22px;
}
.box-wrapper-1 .buttons-block a img {
    margin-left: 7px;
}
.box-wrapper-1 .buttons-block a:hover {
    background-color: #7b00ff;
}


.pagination-block {
    padding: 28px 0px 20px 0px;
}
.pagination-block .pagination {
    margin: 0;
}
.pagination-block .pagination .page-item {
    margin-right: 10px;
    border: 0;
}
.pagination-block .pagination .page-item:last-child {
    margin-right: 0;
}
.pagination-block .pagination .page-item span,
.pagination-block .pagination .page-item .page-link {
    width: 34px;
    height: 34px;
    font-size: 16px;
    font-weight: 400;
    line-height: initial;
    color: #898989;
    border: 1px solid #a2a2a2;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.pagination-block .pagination .page-item.disabled.page-link {
    padding: 0;
}
.pagination-block .pagination .page-item.active .page-link {
    color: #fff;
    background-color: #7b00ff;
    border-color: #7b00ff;
}

.youtube-details {
    margin-top: 12px;
}
.youtube-details .image-block {
    width: 100%;
    min-height: 210px;
    border-radius: 15px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0, 0);
    -moz-transform: translate3d(0, 0,0);
    position: relative;
}
.youtube-details .image-block .image {
    width: 100%;
    min-height: 210px;
}
.youtube-details .image-block .video-length {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #000;
    padding: 0px 5px;
}

.youtube-details .details-block h5 {
    font-size: 16px;
    font-weight: 700;
    color: #4e4d53;
    margin-bottom: 10px;
}
.youtube-details .details-block .video-name h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 10px;
    padding-right: 50px;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.youtube-details .details-block .video-name h3:hover {
    color: #ff444e;
}
.youtube-details .details-block .video-name {
    position: relative;
}
.youtube-details .details-block .video-name .name-copy {
    position: absolute;
    top: 0;
    right: 0;
}
.youtube-details .details-block .video-name .name-copy span {
    width: 45px;
    height: 45px;
    background-color: #f2f2f2;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.youtube-details .details-block .video-name .name-copy:hover span {
    background-color: #ddd;
}
.youtube-details .details-block time {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #9c9c9c;
    margin-bottom: 10px;
}
.youtube-details .details-block h4 {
    font-size: 14px;
    font-weight: 400;
    color: #898989;
    margin-bottom: 10px;
}
.youtube-details .details-block h4 span {
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.youtube-details .details-block h4 span:hover {
    color: #ff444e;
}

.youtube-details .count {
    padding-top: 10px;
}
.youtube-details .count ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.youtube-details .count ul li {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #4e4d53;
    padding-right: 30px;
}
.youtube-details .count ul li:last-child {
    padding-right: 0;
}
.youtube-details .count ul li span {
    font-size: 26px;
    font-weight: 700;
    display: block;
}

.youtube-details .channelname-block {
    padding: 24px 0px 0px 0px;
}
.youtube-details .channelname-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 10px;
}
.youtube-details .channelname-block p {
    font-size: 16px;
    font-weight: 600;
    color: #4e4d53;
    background-color: #f2f2f2;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 50px;
}
.youtube-details .channelname-block .channelname-copy img {
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
/* .youtube-details .channelname-block .channelname-copy:hover img {
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
         -o-transform: scale(0.9);
            transform: scale(0.9);
} */

.youtube-details .note-block {
    padding: 24px 0px 0px 0px;
}
.youtube-details .note-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 10px;
}
.youtube-details .note-block p {
    font-size: 16px;
    font-weight: 400;
    color: #898989;
    margin-bottom: 10px;
}
.youtube-details .note-block p:last-child {
    margin-bottom: 0;
}
.youtube-details .note-block ul {
    font-size: 16px;
    font-weight: 400;
    color: #898989;
    margin: 0;
    padding: 0;
    list-style: none;
}
.youtube-details .note-block ul li {
    position: relative;
    margin: 0 0 5px 0;
    padding: 0 0 0 20px;
}
.youtube-details .note-block ul li::after {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    background: #9b67ff;
}

.youtube-details .confirmed-block {
    margin-top: 24px;
}
.youtube-details .confirmed-block .confirmb-title {
    font-size: 20px;
    font-weight: 600;
    color: #ff444e;
    margin-bottom: 15px;
}
.youtube-details .confirmed-block .confirmb-title .number {
    color: #fff;
    background-color: #ef1424;
    border-radius: 50px;
    padding: 3px 15px;
    margin-left: 10px;
    display: inline-block;
}
.youtube-details .confirmed-block .confirmed-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.youtube-details .confirmed-block .confirmed-list li {
    width: calc(50% - 15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}
.youtube-details .confirmed-block .confirmed-list li .clist-details {
    display: flex;
    align-items: center;
}
.youtube-details .confirmed-block .confirmed-list li .clist-details .image {
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 10px;
}
.youtube-details .confirmed-block .confirmed-list li .clist-details .image .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 43px;
    height: 43px;
    border-radius: 100%;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    color: #2f2f2f;
    background-color: #e9e9e9;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.youtube-details .confirmed-block .confirmed-list li .clist-details .image .icon:hover {
    background-color: #d5d5d5;
}
.youtube-details .confirmed-block .confirmed-list li .clist-details .name h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0px;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.youtube-details .confirmed-block .confirmed-list li .clist-details .name h3:hover {
    color: #ff444e;
}
.youtube-details .confirmed-block .confirmed-list li .clist-details .name p {
    font-size: 14px;
    font-weight: 500;
    color: #7b00ff;
    margin-bottom: 0px;
}
.youtube-details .confirmed-block .confirmed-list li .clist-button {
    display: flex;
    align-items: center;
}
.youtube-details .confirmed-block .confirmed-list li .clist-button a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 5px 15px;
    margin-left: 10px;
    display: inline-block;
}
.youtube-details .confirmed-block .confirmed-list li .clist-button a.followAccount {
    color: #ff444e;
    border: 1px solid #ff444e;
}
.youtube-details .confirmed-block .confirmed-list li .clist-button a.followAccount:hover {
    color: #fff;
    background-color: #ff444e;
}
.youtube-details .confirmed-block .confirmed-list li .clist-button a.btn-perform {
    padding: 0;
    margin: 0;
    color: #1cd1c1;
    border: 0;
}
.youtube-details .confirmed-block .confirmed-list li .clist-button a.btn-perform:hover {
    color: #ff444e;
}
.youtube-details hr {
    background-color: #bfbfbf;
}


/* sidemenu :start */
.sidemenu-wrap {
    background-color: #fff;
    padding: 0px 20px 0px 20px;
}
.sidemenu-title {
    padding: 20px 0px;
}
.sidemenu-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #350e6a;
    margin-bottom: 0;
}

.sidemenu-wrap .accordion-item {
    border: 0;
}
.sidemenu-wrap .accordion-item:first-child {
    border-top: 1px solid #e4e4e4;
}
.sidemenu-wrap .accordion-item .accordion-header {
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.sidemenu-wrap .accordion-item:last-child .accordion-header {
    border-bottom: 0;
}
.sidemenu-wrap .accordion-item .accordion-header .accordion-label {
    padding: 20px 0px;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    width: calc(100% - 30px);
}
.sidemenu-wrap .accordion-item .accordion-button {
    box-shadow: none !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 20px 0px;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    width: 30px;
}
.sidemenu-wrap .accordion-item .accordion-button::after {
    width: 12px;
    height: 12px;
    background-size: contain;
    background-position: center;
}
.sidemenu-wrap .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.sidemenu-wrap .accordion-item .accordion-button:hover, 
.sidemenu-wrap .accordion-item .accordion-button.active, 
.sidemenu-wrap .accordion-item .accordion-button:not(.collapsed) {
    color: #350e6a;
    background-color: transparent;
}
.sidemenu-wrap .accordion-item .accordion-label:hover, 
.sidemenu-wrap .accordion-item .accordion-button.active + .accordion-label, 
.sidemenu-wrap .accordion-item .accordion-button:not(.collapsed) +  .accordion-label {
    color: #350e6a;
    background-color: transparent;
}
.sidemenu-wrap .accordion-item .accordion-body {
    padding: 0;
}
.sidemenu-wrap .submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidemenu-wrap .submenu-list li {
    border-bottom: 1px solid #e4e4e4;
}
.sidemenu-wrap .submenu-list li:last-child {
    border-bottom: 0;
}
.sidemenu-wrap .submenu-list.sub li:last-child {
    border-bottom: 1px solid #e4e4e4;
}
.sidemenu-wrap .submenu-list li a {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    padding: 20px 30px 20px 0px;
    display: flex;
    align-items: center;
    position: relative;
}
.sidemenu-wrap .submenu-list.sub li a {
    padding: 20px 30px;
}
.sidemenu-wrap .submenu-list li a::after {
    content: '';
    position: absolute;
    right: 0;
}
.sidemenu-wrap .submenu-list li a:hover, 
.sidemenu-wrap .submenu-list li a.active {
    color: #350e6a;
}
.sidemenu-wrap .submenu-list li a.active::after {
    content: url('../images/dots.svg');
}
/* sidemenu :end */



/* community :start */
.community-block {
    padding: 15px 0px;
    border-top: 1px solid #e4e4e4;
     word-break: break-all;
}
.community-block .comb-title {
    font-size: 18px;
    font-weight: 400;
    color: #7c00ff;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.community-block .comb-title:hover {
    color: #ff444e;
}
.community-block .comb-details {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: #2b2b2b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.community-block .comb-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.community-block .comb-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.community-block .comb-bottom ul li.author {
    display: flex;
    align-items: center;
}
.community-block .comb-bottom ul li.author img {
    width: 24px;
    height: 24px;
    border: 1px solid #593984;
    border-radius: 100%;
    margin-right: 10px;
}
.community-block .comb-bottom ul li.author span {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: #350e6a;
}
.community-block .comb-bottom ul li:after {
    content: '|';
    font-size: 14px;
    color: #898989;
    margin: 0px 10px;
}
.community-block .comb-bottom ul li:last-child::after {
    display: none;
}
.community-block .comb-bottom ul li.time {
    font-size: 14px;
    color: #898989;
}
.community-block .comb-bottom .answers-count a {
    font-size: 14px;
    color: #898989;
    margin: 0px 10px;
    display: flex;
    align-items: center;
}
.community-block .comb-bottom .answers-count a img {
    margin-right: 7px;
}
.community-block .comb-bottom .answers-count a {
    color: #898989;
}
.community-block .comb-bottom .answers-count a:hover {
    color: #1cd1c1;
}

.adspace {
    width: 300px;
    height: auto;
    margin-left: 25px;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.currentsec-right .cursec-nav-2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.currentsec-right .cursec-nav-2 > li {
    margin-right: 10px;
}
.currentsec-right .cursec-nav-2 > li:last-child {
    margin-right: 0px;
}
.currentsec-right .cursec-nav-2 .csn-filter-wrap .dropdown-menu {
    padding: 0;
    border: 1px solid #d6d4d5;
    border-radius: 10px;
    filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.102));
    width: 150px;
    overflow: hidden;
}
.currentsec-right .cursec-nav-2 .csn-filter-wrap .dropdown-menu > li {
    border-bottom: 1px solid #f2f2f2;
}
.currentsec-right .cursec-nav-2 .csn-filter-wrap .dropdown-menu > li:last-child {
    border-bottom: 0;
}
.currentsec-right .cursec-nav-2 .csn-filter-wrap .dropdown-menu > li .dropdown-item {
    font-size: 14px;
    font-weight: 400;
    color: #606060;
    padding: 10px 15px;
}
.currentsec-right .cursec-nav-2 .csn-filter-wrap .dropdown-menu > li .dropdown-item:focus, 
.currentsec-right .cursec-nav-2 .csn-filter-wrap .dropdown-menu > li .dropdown-item:hover, 
.currentsec-right .cursec-nav-2 .csn-filter-wrap .dropdown-menu > li .dropdown-item.active {
    color: #fff;
    background-color: #f22354;
}
.currentsec-right .cursec-nav-2 .csnav-filter {
    width: 45px;
    height: 45px;
    color: #808081;
    background-color: #ebebec;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.currentsec-right .cursec-nav-2 .csnav-filter:hover {
    color: #fff;
    background-color: #ff444e;
}
.csnav-askquestion .btn-aaskq {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #ff444e;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.csnav-askquestion .btn-aaskq:hover {
    background-color: #ed3741;
}
.csnav-askquestion .btn-aaskq:focus {
    box-shadow: none;
}
.csnav-askquestion .btn-aaskq.dropdown-toggle {
    padding: 10px 12px 10px 8px;
    background-color: #ed3741;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.csnav-askquestion .btn-aaskq.dropdown-toggle:hover {
    background-color: #ff444e;
}
.csnav-askquestion .btn-aaskq.dropdown-toggle::after {
    display: none;
}
.csnav-askquestion .dropdown-menu {
    padding: 0;
    border: 1px solid #d6d4d5;
    border-radius: 10px;
    filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.102));
    width: 150px;
    overflow: hidden;
}
.csnav-askquestion .dropdown-menu > li {
    border-bottom: 1px solid #f2f2f2;
}
.csnav-askquestion .dropdown-menu > li:last-child {
    border-bottom: 0;
}
.csnav-askquestion .dropdown-menu > li .dropdown-item {
    font-size: 14px;
    font-weight: 400;
    color: #606060;
    padding: 10px 15px;
}
.csnav-askquestion .dropdown-menu > li .dropdown-item:focus, 
.csnav-askquestion .dropdown-menu > li .dropdown-item:hover, 
.csnav-askquestion .dropdown-menu > li .dropdown-item.active {
    color: #fff;
    background-color: #f22354;
}

.community-details-wrap {
    padding-top: 15px;
}
.community-details-wrap .comb-title {
    font-size: 18px;
    font-weight: 400;
    color: #7c00ff;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.community-details-wrap p {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.community-details-wrap .author {
    display: flex;
    align-items: center;
    padding: 0px 0px 15px 0px;
    border-bottom: 1px solid #e4e4e4;
}
.community-details-wrap .author .image img {
    width: 24px;
    height: 24px;
    border: 1px solid #593984;
    border-radius: 100%;
    margin-right: 10px;
}
.community-details-wrap .author .details {
    display: flex;
    flex-direction: column;
}
.community-details-wrap .author .details .name {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    color: #350e6a;
}
.community-details-wrap .author .details .date {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    color: #898989;
}

.community-details-wrap .answers-wrap {
    padding: 15px 0px 0px 40px;
}
.community-details-wrap .answers-wrap .totalanswers-num h3 {
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    color: #ff444e;
}

.community-details-wrap .answerb-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e4e4e4;
    padding: 0px 0px 20px 0px;
    margin: 0px 0px 20px 0px;
}
.community-details-wrap .answerb-bottom .author {
    padding-right: 10px;
    padding-bottom: 0;
}
.community-details-wrap .answerb-bottom .answer-voting-wrap {
    display: flex;
    align-items: center;
    padding: 0px;
}
.community-details-wrap .answerb-bottom .answer-voting-wrap i {
    color: #7b00ff;
    margin-right: 5px;
}
.answerb-bottom .answer-voting-wrap span {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #2b2b2b;
}
.community-details-wrap .answerb-bottom .answer-voting-wrap.active i {
    font-weight: 900;
}
.community-details-wrap .answerb-bottom .answer-voting-wrap.active span {
    color: #7b00ff;
}
.community-details-wrap .addanswer-form {
    padding-bottom: 15px;
}
.community-details-wrap .addanswer-form textarea {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #2b2b2b;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    padding: 15px 15px;
    min-height: 90px;
    resize: none;
}
.community-details-wrap .addanswer-form textarea:focus {
    border-color: #ff444e;
    box-shadow: none;
}
.community-details-wrap .addanswer-form .btn-addanswer {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 19px;
    color: #fff;
    background-color: #ff444e;
    border-color: #ff444e;
    border-radius: 50px;
    padding: 12px 23px;
}
.community-details-wrap .addanswer-form .btn-addanswer:hover {
    background-color: #ed3741;
    border-color: #ed3741;
}
/* community :end */

/* profile :start */
.profilepg-wrap .myprofile-top {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.profilepg-wrap .myprofile-head {
    display: flex;
    align-items: center;
    padding: 20px 0px;
}
.profilepg-wrap .myprofile-head .profile-pic {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 30px;
}
.profilepg-wrap .myprofile-head .profile-pic .image {
    width: 100%;
    height: 100%;
}
.profilepg-wrap .myprofile-head .profile-pic .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
            border-radius: 50%;
}
.profilepg-wrap .myprofile-head .profile-pic .edit {
    position: absolute;
    top: 5px;
    right: 5px;
}
.profilepg-wrap .myprofile-head .profile-pic .edit span {
    width: 32px;
    height: 32px;
    background-color: #ff444e;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.profilepg-wrap .myprofile-head .profile-pic .edit span:hover {
    background-color: #7b00ff;
}

.profilepg-wrap .myprofile-head .profile-pic .account-type {
    position: absolute;
    bottom: 5px;
    right: -5px;
}
.profilepg-wrap .myprofile-head .profile-pic .account-type .image {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    flex-grow: 0;
}

.profilepg-wrap .myprofile-head .profile-details .profile-id {
    font-size: 20px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 0px;
}
.profilepg-wrap .myprofile-head .profile-details .profile-follows ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin: 10px 0px;
}
.profilepg-wrap .myprofile-head .profile-details .profile-follows ul li {
    margin-right: 40px;
}
.profilepg-wrap .myprofile-head .profile-details .profile-follows ul li:last-child {
    margin-right: 0;
}
.profilepg-wrap .myprofile-head .profile-details .profile-follows ul li p {
    font-size: 15px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 10px;
    color: #6a6a6a;
    margin-bottom: 0;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.profilepg-wrap .myprofile-head .profile-details .profile-follows ul li p span {
    font-size: 27px;
    font-weight: 700;
    color: #46454c;
    display: block;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.profilepg-wrap .myprofile-head .profile-details .profile-follows ul li p:hover, 
.profilepg-wrap .myprofile-head .profile-details .profile-follows ul li p:hover span {
    color: #f42455;
}
.profilepg-wrap .myprofile-head .profile-follow {
    align-self: stretch;
    margin-left: auto;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
}
.profilepg-wrap .myprofile-head .profile-follow .btn-follow {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #ff444e;
    border: 1px solid #ff444e;
    border-radius: 50px;
    padding: 12px 28px;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
}
.profilepg-wrap .myprofile-head .profile-follow .btn-follow:hover {
    color: #ff444e;
    background-color: transparent;
}
.profilepg-wrap .myprofile-head .profile-follow .btn-message {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #7b00ff;
    border: 1px solid #7b00ff;
    border-radius: 50px;
    padding: 12px 28px;
    display: inline-block;
    text-align: center;
}
.profilepg-wrap .myprofile-head .profile-follow .btn-message:hover {
    color: #7b00ff;
    background-color: transparent;
}
.profilepg-wrap .profile-rewards ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
}
.profilepg-wrap .profile-rewards ul li {
    /* flex: 1; */
    margin-right: 50px;
}
.profilepg-wrap .profile-rewards ul .account-type {
    display: flex;
    align-items: center;
}
.profilepg-wrap .profile-rewards ul .account-type .image {
    width: 46px;
    height: 46px;
    margin-right: 10px;
    flex-shrink: 0;
    flex-grow: 0;
}
.profilepg-wrap .profile-rewards ul .account-type .name p {
    font-size: 16px;
    font-weight: 400;
    color: #6a6a6a;
    margin-bottom: 0;
}
.profilepg-wrap .profile-rewards ul .account-type .name p span {
    font-size: 18px;
    font-weight: 600;
    color: #46454c;
    display: block;
}
.profilepg-wrap .profile-rewards ul .you-earn p {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    color: #2b2b2b;
    display: block;
    margin-bottom: 0;
    display: inline-block;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.profilepg-wrap .profile-rewards ul .you-earn p span {
    font-size: 34px;
    font-weight: 600;
    display: block;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.profilepg-wrap .profile-rewards ul .you-earn p:hover, 
.profilepg-wrap .profile-rewards ul .you-earn p:hover span {
    color: #7b00ff;
}

.profilepg-wrap .profile-personal {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.profilepg-wrap .profile-personal > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.profilepg-wrap .profile-personal > ul > li {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}
.profilepg-wrap .profile-personal > ul > li strong {
    font-weight: 600;
}
.profilepg-wrap .profile-personal > ul > li p {
    font-size: 20px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 0;
    word-break: break-all; 
    max-width: calc(100% - 145px);
}
.profilepg-wrap .profile-personal > ul > li a {
    color: inherit;
}
.profilepg-wrap .profile-personal > ul > li a:hover {
    color: #ff444e;
}
.profilepg-wrap .profile-personal > ul > li a.edit {
    margin-left: 10px;
}

.profilepg-wrap .profile-personal .bio-block .title h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 10px;
}
.profilepg-wrap .profile-personal .bio-block .text {
    padding-right: 40px;
    position: relative;
}
.profilepg-wrap .profile-personal .bio-block .text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #2b2b2b;
    margin-bottom: 0;
}
.profilepg-wrap .profile-personal .bio-block .text .edit {
    position: absolute;
    top: 0;
    right: 10px;
}


.profilepg-wrap .profile-categories {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 20px;
    margin-bottom: 12px;
}

.profilepg-wrap .profile-sectitle-1 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.profilepg-wrap .profile-sectitle-1 .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #2b2b2b;
    margin: 0px 10px 0px 10px;
}
.profilepg-wrap .profile-sectitle-1 .add {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    color: #ff444e;
    border: 1px solid #ff444e;
    border-radius: 50px;
}
.profilepg-wrap .profile-sectitle-1 .add:hover {
    color: #fff;
    background-color: #ff444e;
    
}


.item-list-1 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.item-list-1 > li {
    padding: 5px 0px;
    margin-right: 7px;
}
.item-list-1 > li .item-block {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #ff444e;
    border: 1px solid #ff444e;
    border-radius: 50px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
}
.item-list-1 > li .item-block p {
    padding: 0px 5px;
    margin-bottom: 0;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.item-list-1 > li .item-block a.close {
    display: none;
    font-size: 14px;
    color: #ff444e;
    padding-left: 5px;
}
.item-list-1 > li .item-block:hover a.close {
    display: block;
}
.item-list-1 > li .item-block.add {
    font-size: 12px;
    padding: 10px 10.5px;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.item-list-1 > li .item-block.add:hover {
    color: #fff;
    background-color: #ff444e;
}

.for-new-item .item-add-dropdown {
    width: 280px;
    height: auto;
    padding: 10px 20px;
    margin: 10px 0px !important;
    border-radius: 20px;
    overflow: hidden;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}
.for-new-item .item-add-dropdown .new-item-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 270px;
    overflow-x: hidden;
    overflow-y: auto;
}
.for-new-item .item-add-dropdown .new-item-wrap > li {
    border-bottom: 1px solid #e4e4e4;
}
.for-new-item .item-add-dropdown .new-item-wrap > li .new-item-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}
.for-new-item .item-add-dropdown .new-item-wrap > li .new-item-block .form-check-label {
    font-size: 16px;
    font-weight: 500;
}
.for-new-item .item-add-dropdown .new-item-wrap > li .new-item-block .form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    margin: 0px 5px 0px 12px;
}
.for-new-item .item-add-dropdown .new-item-wrap > li .new-item-block .form-check-input:focus {
    border-color:inherit;
    box-shadow: none;
}
.for-new-item .item-add-dropdown .new-item-wrap > li .new-item-block .form-check-input:checked {
    background-color: #ff444e;
    border-color: #ff444e;
}
.for-new-item .item-add-dropdown .new-item-btns {
    display: flex;
    align-items: center;
    padding: 10px 0px;
}
.for-new-item .item-add-dropdown .new-item-btns .btn {
    font-size: 12px;
    font-weight: 500;
    color: #868686;
    border: 1px solid currentColor;
    border-radius: 50px;
    padding: 7px 22px;
    margin: 5px 10px 5px 0px;
}
.for-new-item .item-add-dropdown .new-item-btns .btn:last-child {
    margin-right: 0px;
}
.for-new-item .item-add-dropdown .new-item-btns .btn:focus {
    box-shadow: none;
}
.for-new-item .item-add-dropdown .new-item-btns .btn:hover {
    color: #fff;
    background-color: #868686;
}
.for-new-item .item-add-dropdown .new-item-btns .btn.save {
    color: #ff444e;
    border-color: currentColor;
}
.for-new-item .item-add-dropdown .new-item-btns .btn.save:hover {
    color: #fff;
    background-color: #ff444e;
}


.profilepg-wrap .profile-servicearea .profile-sectitle-1 .add {
    color: #7b00ff;
    border: 1px solid #7b00ff;
}
.profilepg-wrap .profile-servicearea .profile-sectitle-1 .add:hover {
    color: #fff;
    background-color: #7b00ff;
}
.profilepg-wrap .profile-servicearea .item-list-1 li .item-block {
    color: #7b00ff;
    border: 1px solid #7b00ff;
}
.profilepg-wrap .profile-servicearea .item-list-1 li .item-block a.close {
    color: #7b00ff;
}
.profilepg-wrap .profile-servicearea .item-list-1 li .item-block {
    color: #7b00ff;
    border: 1px solid #7b00ff;
}
.profilepg-wrap .profile-servicearea .item-list-1 li .item-block.add:hover {
    color: #fff;
    background-color: #7b00ff;
}
.profilepg-wrap .profile-servicearea .for-new-item .item-add-dropdown .new-item-wrap > li .new-item-block .form-check-input:checked {
    background-color: #7b00ff;
    border-color: #7b00ff;
}
.profilepg-wrap .profile-servicearea .for-new-item .item-add-dropdown .new-item-btns .btn.save {
    color: #7b00ff;
}
.profilepg-wrap .profile-servicearea .for-new-item .item-add-dropdown .new-item-btns .btn.save:hover {
    color: #fff;
    background-color: #7b00ff;
}


.profile-socialmedia {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.profile-socialmedia .prosm-block {
    width: 100%;
    height: 100%;
    padding: 12px 0px;
}
.profile-socialmedia .prosm-block > div {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 30px 30px;
    border: 2px solid #ededed;
    border-radius: 20px;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.profile-socialmedia .prosm-block:hover > div {
    border-color: #ff444e;
}
.profile-socialmedia .prosm-block > div .image {
    max-width: 100%;
}
.profile-socialmedia .prosm-block > div h3 {
    font-size: 16px;
    font-weight: 500;
    color: #2b2b2b;
    margin: 20px 0px 0px 0px;
}
.profile-socialmedia .prosm-block.disabled > div .image {
    filter: invert(0.4) sepia(0) saturate(1) hue-rotate(0deg) brightness(1.2);
}
.profile-socialmedia .prosm-block.disabled > div h3 {
    color: #bcbcbc;
}
/* profile :end */

/* Creators :start */
.creatorspg-right .creators-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.creatorspg-right .creators-ul > li {
    margin-left: 10px;
}
.creatorspg-right .creators-ul .csearch-wrap {
    min-width: 155px;
    max-width: 200px;
}
.creatorspg-right .creators-ul .csearch-wrap .creators-search {
    position: relative;
}
.creatorspg-right .creators-ul .csearch-wrap .creators-search .searchIcon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 100%;
    padding-right: 10px;
}
.creatorspg-right .creators-ul .csearch-wrap .creators-search input {
    font-size: 14px;
    border: 1px solid #d6d4d5;
    border-radius: 50px;
    padding: 10px 40px 10px 15px;
}
.creatorspg-right .creators-ul .creators-select .nice-select {
    font-size: 12px;
    border-radius: 50px;
    border: 1px solid #d6d4d5;
    width: 140px;
    padding-left: 12px;
}
.creatorspg-right .creators-ul .creators-select .nice-select:after {
    width: 7px;
    height: 7px;
    right: 10px;
}
/* Creators :end */

/* Toggle Button: Start */
.switch-toggle {
    margin: 0px 15px;
}
.tgl-1 {
    display: table;
}

.tgl-1 .toggle {
    width: 200px !important;
}

.tgl-1.w-2 .toggle {
    width: 100px !important;
}

.tgl-1.w-3 .toggle {
    width: 90px !important;
}

.tgl-1 label {
    font-size: 13px;
    font-weight: 400;
    line-height: 27px;
}

.tgl-1 .toggle-handle {
    background: #fff;
}

.tgl-1 .toggle.btn-primary {
    border: 1px solid #7b00ff;
    background: #7b00ff !important;
}

.tgl-1 .btn-primary.toggle-on {
    background: none;
    color: #fff;
    cursor: pointer;
    padding-right: 30px;
}

.tgl-1 .toggle-off {
    cursor: pointer;
    padding-left: 30px;
}

.tgl-1 .toggle.btn-default.off {
    border: 1px solid #dedede;
    background: #f1f1f1;
}

.tgl-1 .btn-default.off .toggle-handle {
    background: #FFF !important;
}

.tgl-1 .btn-default.off .toggle-handle::focus {
    background: #FFF !important;
}

/* Toggle button style two */
.styl-2 .btn-primary .toggle-handle {
    border-radius: 50%;
    width: 23px !important;
    height: 23px !important;
    padding: 0;
    left: -14px;
    top: 1px;
}

.styl-2 .btn-default.off .toggle-handle {
    border-radius: 50%;
    width: 23px !important;
    height: 23px !important;
    padding: 0;
    left: 13px;
    top: 1px;
    background: #ADB5BD !important;
}

.styl-2 .btn-primary,
.styl-2 .btn-default.off {
    border-radius: 50px;
    background: #FFF;
    height: 30px;
    min-height: 30px;
}

.styl-2 .toggle-group .btn.btn-primary,
.styl-2 .toggle-group .btn.btn-default {
    padding-top: 0;
    padding-bottom: 0;
    height: 25px;
}
/* Toggle Button: End */
/* Add Community :Start */
.form-style-1 .field input + label::before, 
.form-style-1 .field textarea + label::before, 
.form-style-1 .label-before, 
.form-style-1 .field input:focus + label::before, 
.form-style-1 .field input:valid + label::before, 
.form-style-1 .field textarea:focus + label::before, 
.form-style-1 .field textarea:valid + label::before, 
.form-style-1 .field .nice-select.form-field + label::before {
    line-height: 20px;
    font-size: 12px;
    top: -10px;
    background: #fff;
    padding: 0 6px;
    left: 24px;
}
.form-style-1 .field {
    position: relative;
    margin-bottom: 15px;
}
.form-style-1 .field label {
    display: initial;
}
.form-style-1 .field label::before {
    content: attr(title);
    position: absolute;
    top: 0;
    left: 30px;
    line-height: 50px;
    font-size: 14px;
    color: #707070;
    transition: 300ms all;
}
.form-style-1 .field .form-field {
    width: 100%;
    line-height: 40px;
    padding: 3px 30px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    border: 2px solid #dbdbdb;
    border-radius: 50px;
}
.form-style-1 .field textarea.form-field {
    resize: none;
    border-radius: 20px;
}
.form-style-1 .field .form-field:focus {
    outline: 0;
    border-color: #7c00ff;
}
.form-style-1 .field .nice-select.form-field + label::before, 
.form-style-1 .field input:valid + label::before, 
.form-style-1 .field textarea:valid + label::before {
    content: attr(data-title);
}
.form-style-1 .field .nice-select.form-field:focus + label::before, 
.form-style-1 .field input:focus + label::before, 
.form-style-1 .field textarea:focus + label::before {
    color: #7c00ff;
}
.form-style-1 .field .nice-select {
    height: 50px;
}
.form-style-1 .field .nice-select::after {
    width: 10px;
    height: 10px;
    right: 20px;
    margin-top: -8px;
}
.form-style-1 .field .nice-select .list {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    max-height: 200px;
    overflow-y: auto;
}
.nice-select .option.selected {
    font-weight: inherit;
}


.addquestion-frm-wrap .buttons {
    display: flex;
    justify-content: flex-end;
}
.addquestion-frm-wrap .buttons .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    border: 1px solid #666666;
    background-color: transparent;
    border-radius: 50px;
    padding: 8px 22px;
    margin-left: 7px;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.addquestion-frm-wrap .buttons .btn:hover {
    color: #fff;
    background-color: #666666;
}
.addquestion-frm-wrap .buttons .btn.btn-addquestion {
    color: #fff;
    background-color: #ff444e;
    border-color: #ff444e;
}
.addquestion-frm-wrap .buttons .btn.btn-addquestion:hover {
    color: #fff;
    background-color: #7b00ff;
    border-color: #7b00ff;
}

.addquestion-user {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    border-bottom: 1px solid #e4e4e4;
}
.addquestion-user .usrimage {
    width: 24px;
    height: 24px;
    border: 1px solid #593984;
    border-radius: 100%;
    margin-right: 10px;
}
.addquestion-user .usrname {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: #350e6a;
}
/* Add Community :End */

/* My Community :Start */
.myquestion-count {
    padding: 15px 0px;
    border-bottom: 1px solid #e4e4e4;
}
.myquestion-count h4 {
    font-size: 18px;
    font-weight: 600;
    color: #350e6a;
    margin-bottom: 0;
}

.myquestions-block {
    padding: 15px 0px;
    border-top: 1px solid #e4e4e4;
}
.myquestions-block .myquestions-title {
    font-size: 18px;
    font-weight: 400;
    color: #7c00ff;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.myquestions-block .myquestions-details {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: #2b2b2b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.myquestions-block .myquestions-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.myquestions-block .myquestions-bottom .myq-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.myquestions-block .myquestions-bottom .myq-left ul li {
    display: flex;
    align-items: center;
}
.myquestions-block .myquestions-bottom .myq-left ul li::after {
    content: '|';
    font-size: 14px;
    color: #898989;
    margin: 0px 10px;
}
.myquestions-block .myquestions-bottom .myq-left ul li:last-child::after {
    display: none;
}
.myquestions-block .myquestions-bottom .myq-left ul li.answers-count a {
    font-size: 14px;
    color: #898989;
    display: flex;
    align-items: center;
}
.myquestions-block .myquestions-bottom .myq-left ul li.answers-count a img {
    margin-right: 7px;
}
.myquestions-block .myquestions-bottom .myq-left ul li.time {
    font-size: 14px;
    color: #898989;
}
.myquestions-block .myquestions-bottom .myq-right .delete {
    font-size: 11px;
    font-weight: 500;
    color: #ff444e;
    border: 1px solid #ff444e;
    border-radius: 50px;
    padding: 5px 12px;
    display: inline-block;
}
.myquestions-block .myquestions-bottom .myq-right .delete:hover {
    color: #fff;
    background-color: #ff444e;
}
/* My Community :End */
/* Youtube Detail: Start */
.submitted-section {
    padding: 20px 10px;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: flex-start;
            align-items: flex-start;
}
.submitted-section>div {
    margin-right: 50px;
}
h4.style-1 {
    font-size: 18px;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0 0 10px 0;
}
.submitted-section .date-time {
    font-weight: 400;
    font-size: 16px;
    display: flex;
}
.submitted-section .date-time span {
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    color: #afafaf;
    margin: 0 15px 0 0;
}
.submitted-section .date-time span i {
    margin: 0 5px 0 0;
    color: #5900b8;
    position: relative;
}
.screenshots-sec {
    padding: 0 10px 15px 10px;
}
.screenshots-sec .cell-row {
    margin: 0;
    padding: 0;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.screenshots-sec .cell-row .cell {
    height: 150px;
    -webkit-flex: 1 0 20%;
        -ms-flex: 1 0 20%;
            flex: 1 0 20%;
    background: #f2f2f2;
    margin: 0 0 0 0;
    width: 25%;
}
.screenshots-sec .cell-row .cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Youtube Detail: End */

/* Recent Transactions :start */
.recenttrans-block {
    padding: 12px 0px;
    width: 100%;
    height: 100%;
}
.recenttrans-block .rtb-inner {
    display: flex;
    align-items: center;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 10px 15px;
    width: 100%;
    height: 100%;
}
.recenttrans-block .rtb-inner .icon {
    flex-shrink: 0;
    margin-right: 15px;
}
.recenttrans-block .rtb-inner .icon span {
    font-size: 14px;
    font-weight: 600;
    width: 50px;
    height: 50px;
    background-color: #e9e9e9;
    border: 1px solid #cdbae6;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}
.recenttrans-block .rtb-inner .details {
    flex: 1;
}
.recenttrans-block .rtb-inner .details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 5px;
}
.recenttrans-block .rtb-inner .details h4 {
    font-size: 14px;
    font-weight: 400;
    color: #898989;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}
.recenttrans-block .rtb-inner .details h4 i {
    font-size: 16px;
    margin-right: 8px;
}
.recenttrans-block .rtb-inner .details h4 i.yt {
    color: #FF0000;
}
.recenttrans-block .rtb-inner .details h4 i.insta {
    color: #C13584;
}
.recenttrans-block .rtb-inner .details h4 i.fb {
    color: #4267B2;
}
.recenttrans-block .rtb-inner .details h4 i.tweet {
    color: #1DA1F2;
}
.recenttrans-block .rtb-inner .details h4 i.cash {
    color: #795548;
}
.recenttrans-block .rtb-inner .details time {
    font-size: 12px;
    font-weight: 400;
    color: #898989;
    margin-bottom: 0px;
}
.recenttrans-block .rtb-inner .reward {
    flex-shrink: 0;
}
.recenttrans-block .rtb-inner .reward {
    display: flex;
    align-items: center;
}
.recenttrans-block .rtb-inner .reward .coin {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.recenttrans-block .rtb-inner .reward .coin img {
    margin-left: 5px;
    position: relative;
    top: -2px;
}
.recenttrans-block .rtb-inner .reward .coin .plus {
    color: #11b404;
}
.recenttrans-block .rtb-inner .reward .coin .minus {
    color: #f44336;
}
.recenttrans-block .rtb-inner .reward .coin i {
    font-size: 22px;
    color: #ffc107;
    margin-left: 3px;
}
/* Recent Transactions :End */
/* Chat screen :Start */
.chat-screen-wrap {
    width: 100%;
    height: 619px;
    border: 1px solid #f1f1f1;
    display: flex;
    position: relative; 
    top: -1px;
}

.chat-screen-wrap .left {
    padding: 0;
    min-width: 270px;
    background: #f9f9f9;
    border-right: 1px solid #f1f1f1;
    padding: 20px 15px;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.chat-screen-wrap .left .search-row {
    position: relative;
}

.chat-screen-wrap .left .search-row input {
    width: 100%;
    height: 40px;
    border: 1px solid #d3d1d2;
    background: #fbfbfb;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    outline: none;
    padding: 0 60px 0 15px;
    font-size: 14px;
}

.chat-screen-wrap .left .search-row input::placeholder {
    color: #9d9c9f;
    font-size: 14px;
    font-weight: 400;
}

.chat-screen-wrap .left .search-row button {
    width: 50px;
    height: 100%;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    border: 0px;
    outline: none;
    padding: 0 0 0 0;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.chat-screen-wrap .left .user-list {
    padding: 20px 0 0 0;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: calc(100% - 40px);
}

.chat-screen-wrap .left .user-list .fix {
    height: 100%;
}

.chat-screen-wrap .left ul.listing {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 100%;
    height: 100%;
}

.chat-screen-wrap .left ul.listing .img-bx {
    width: 43px;
    height: 43px;
    background: #e9e9e9;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #2b2b2b;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
}

.chat-screen-wrap .left ul.listing li {
    width: 100%;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 0 20px 0;
    position: relative;
    cursor: pointer;    
}

.chat-screen-wrap .left ul.listing li span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0 10px;
    line-height: 16px;
}

.chat-screen-wrap .left ul.listing li span label {
    display: block;
    margin: 0;
    font-size: 10px;
    color: #7b00ff;
    cursor: pointer;    
}

.chat-screen-wrap .left ul.listing li.active::after,
.chat-screen-wrap .left ul.listing li:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 25px;
    height: 6px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../images/dots.svg");
}

.chat-screen-wrap .right {
    width: 100%;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 20px 15px 20px;
}

.chat-screen-wrap .right .top {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
}

.chat-screen-wrap .right .top .cell-left {
    padding: 10px 47px 10px 0;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-end;
            align-items: flex-end;
}

/* .chat-screen-wrap .right .top .cell-left img {
    width: 37px;
    height: 37px;
    margin: 0 10px 0 0;
} */
.chat-screen-wrap .right .top .cell-left .imgThumb,
.chat-screen-wrap .right .top .cell-right .imgThumb {
    min-width: 37px;
    min-height: 37px;
    font-size: 14px;
    font-weight: 400;
    color: #2b2b2b;
    margin: 0 10px 0 0;
    background: #ff444e;
    color: #FFF;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
}
.chat-screen-wrap .right .top .cell-right .imgThumb {
    margin-right: 0;
    margin-left: 10px;
    background: #e9e9e9;
    color: #2b2b2b;
}
.chat-screen-wrap .right .top .cell-left span {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #f1f1f1;
    font-size: 14px;
    color: #0c0c0c;
    border-bottom-left-radius: 0;
    padding: 8px 15px 8px 20px;
    display: block;
}

.chat-screen-wrap .right .top .cell-right {
    padding: 10px 0 10px 47px;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-end;
            align-items: flex-end;
}

.chat-screen-wrap .right .top .cell-right span {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #7b00ff;
    font-size: 14px;
    color: #fff;
    border-bottom-right-radius: 0;
    padding: 8px 15px 8px 20px;
    display: block;
}
/* .chat-screen-wrap .right .top .cell-right img {
    margin-left: 10px;
    width: 37px;
    height: 37px;
} */

.chat-screen-wrap .right .bottom {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f1f1f1;
    padding: 20px 0;
}

.chat-screen-wrap .right .bottom textarea {
    width: 100%;
    height: 85px;
    padding: 15px 15px;
    border: 1px solid #d6d4d5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    resize: none;
}

.chat-screen-wrap .right .bottom .button-cell {
    padding: 15px 0 0 0;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.chat-screen-wrap .right .bottom .button-cell a {
    margin: 0 0 0 10px;
    height: 36px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 30px;
    border: 0px;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    line-height: 36px;
    text-align: center;
}

.chat-screen-wrap .right .bottom .button-cell a.submit {
    background: #ff444e;
    color: #fff;
}

.chat-screen-wrap .right .bottom .button-cell a.submit:hover {
    background: #7b00ff;
}

.chat-screen-wrap .right .bottom .button-cell a.clear {
    background: #f1f1f1;
    color: #585858;
}

.chat-screen-wrap .right .bottom .button-cell a.clear:hover {
    background: #7b00ff;
    color: #fff;
}
/* Scrollbar */
.chat-screen-wrap .simplebar-scrollbar:before {
    background: #d4d4d4;
}
.chat-screen-wrap .simplebar-track.simplebar-vertical {
    right: -17px;
}
.chat-screen-wrap .right .top .simplebar-track.simplebar-vertical {
    right: -22px;
}
/* Chat screen :End */

/* Notification :Start */
.notification-block-outer .notification-block {
    display: flex;
    align-items: flex-start;
    padding: 20px 20px;
    border-bottom: 1px solid #e4e4e4;
}
.notification-block-outer  .notification-block .icon span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 49px;
    height: 49px;
    font-size: 19px;
    font-weight: 400;
    color: #2b2b2b;
    background-color: #e9e9e9;
    border-radius: 100%;
    overflow: hidden;
}
.notification-block-outer  .notification-block .details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #360d69;
    margin-bottom: 3px;
}
.notification-block-outer .notification-block .details p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #898989;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  	text-overflow: ellipsis;
}
.notification-block-outer .notification-block .details time {
    font-size: 12px;
    font-weight: 400;
    color: #898989;
}
.notification-block-outer .notification-block.read {
    background-color: #f0f4f6;
}
.notification-block-outer .notification-block.read .details h4 {
    color: #898989;
}
.notification-block-outer .notification-block:hover {
    background-color: #f5f5f5;
}
/* Notification :End */

.third-column {
    width: 250px;
    height: auto;
    margin-left: 25px;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.downloadapp-widget {
    padding: 20px;
    background-color: #fff;
    overflow: hidden;
}
.downloadapp-widget .title {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e4e4e4;
}
.downloadapp-widget .title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #350e6a;
    margin-bottom: 2px;
}
.downloadapp-widget .title h4 {
    font-size: 14px;
    font-weight: 500;
    color: #350e6a;
    margin-bottom: 0;
}
.downloadapp-widget .app-links {
    display: flex;
    flex-direction: column;
}
.downloadapp-widget .app-links a {
    display: inline-block;
    margin-bottom: 10px;
}
.downloadapp-widget .app-links a:last-child {
    margin-bottom: 0px;
}
.downloadapp-widget .app-links a img {
    width: 100%;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
}
.downloadapp-widget .app-links a:hover img {
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05);
}

.mobile-user-top {
    width: 100%;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 0 0 0;
    padding: 15px;
    position: relative;
    cursor: pointer;
    border: 1px solid #e4e4e4;
    border-top: 0px;
    background: #f2f2f2;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}
.mobile-user-top .img-bx {
    width: 43px;
    height: 43px;
    background: #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #2b2b2b;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    border: 1px solid #dfd9d9;
}
.mobile-user-top span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0 10px;
    line-height: 16px;
}
.mobile-user-top label {
    display: block;
    margin: 0;
    font-size: 10px;
    color: #7b00ff;
    cursor: pointer;    
}
.viewUser {
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 4px;
    background-color: #1cd1c1;
    border: 1px solid #1cd1c1;
}
.viewUser:focus {
    border: 1px solid #1cd1c1;
    background-color: #1cd1c1;    
}


/* Success Modal :start */
.successModal .modal-content {
    border-radius: 20px;
}
.successModal .successmodal-content {
    text-align: center;
    padding: 50px 50px;
}
.successModal .successmodal-content .successicon i {
    font-size: 70px;
    color: #4caf50;
}
.successModal .successmodal-content .successtxt {
    margin: 20px 0px 30px 0px;
}
.successModal .successmodal-content .successtxt h3 {
    font-size: 26px;
    font-weight: 700;
    color: #350e6a;
    margin-bottom: 5px;
}
.successModal .successmodal-content .successtxt p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-bottom: 0px;
}
.btn-done {
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #ff444e;
    border: 1px solid #ff444e;
    background-color: transparent;
    border-radius: 50px;
    padding: 8px 40px;
    margin-left: 7px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.btn-done:hover {
    color: #fff;
    background-color: #ff444e;
}
/* Success Modal :end */
.socialModal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.2;
}
.socialModal .btn-close:hover {
    opacity: 1;
}
.socialModal .modal-dialog {
    min-width: 600px !important;
}
.socialModal .modal-content {
    -webkit-border-radius: 15px;
            border-radius: 15px;
}
.socialModal .modal-body {
    text-align: center;
    padding: 45px 70px;
    -webkit-border-radius: 15px;
            border-radius: 15px;
}
.socialModal .modal-body p {
    font-size: 16px;
    color: #000000;
    line-height: 26px;
    margin: 20px 0 20px 0;
}
.socialModal .modal-body p span {
    color: #FF444E;
    font-weight: 700;
}
.socialModal .modal-body h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
}
.socialModal .modal-body h6 sup {
    font-size: 14px;
    color: #0B77BE;
    font-weight: 600;
    display: block;
    margin: 0 0 7px 0;
    top: 0;
    bottom: 0;
    line-height: normal;
}
.socialModal .modal-body .continue-btn {
    display: table;
    padding: 0 60px;
    background: #7B00FF;
    color: #fff;
    height: 50px;
    margin: 20px auto 0 auto;
    -webkit-border-radius: 25px;
            border-radius: 25px;
}
.socialModal .modal-body .continue-btn:hover {
    background: #EE2824;
}
.socialModal .modal-body .continue-btn .inner {
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: center;
            align-items: center;
}
.socialModal .modal-body .continue-btn .inner img {
    margin: 0 0 0 10px;
}
.socialModal .modal-body .link {
    color: #EE2824;
    text-decoration: underline;
    font-size: 14px;
    display: table;
    margin: 10px auto 0 auto;
}
.socialModal .modal-body .link:hover {
    text-decoration: none;
}
ul.list-style-1 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}
ul.list-style-1 li {
    position: relative;
    margin: 0 0 10px 0;
    padding: 0 0 0 20px;
}
ul.list-style-1 li::after {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    background: #c5c5c5;
}
ul.list-style-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.list-style-1 span {
    font-weight: 700;
    color: #ff444e;
}
span.red-title {
    font-size: 18px;
    font-weight: 700;
    color: #ff444e;
    margin: 15px 0 10px 0;
    display: block;
}
.hd-typ-1 {
    font-weight: 700;
    font-size: 30px;
}
.hd-typ-1 span {
    color: #ff444e;
}

.accordion.CreateLine {
    margin-bottom: 40px;
}
.accordion.CreateLine .accordion-button::after {
    width: 17px;
    height: 10.5px;
    background-image: url("../images/arrow-2.png");
    background-size: 17px 10.5px;
}
.accordion.CreateLine .accordion-button:not(.collapsed)::after {
    background-image: url("../images/arrow-2-top.png");
    transform: rotate(-180deg);
}
.accordion.CreateLine .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #7b00ff;
}
.download-sec {
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    margin-top: 15px;
}
.download-sec a {
    /* width: 100px; */
    /* height: 40px; */
    -webkit-border-radius: 27px;
            border-radius: 27px;
    background: #000;
    padding: 15px 30px 16px 55px;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    font-size: 14px;
    position: relative;
    
    background: #ffffff;
    -webkit-box-shadow: 5px 5px 17px #d9d9d9, -5px -5px 17px #ffffff;
    box-shadow: 5px 5px 17px #d9d9d9, -5px -5px 17px #ffffff;
    border: 1px solid #eaeaea;
}
.download-sec span {
    line-height: 6px;
    display: block;
    font-weight: 700;
    color: #373737;
}
.download-sec span sup {
    display: block;
    line-height: normal;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 300;
}
.download-sec i {
    font-size: 20px;
    margin-right: 15px;
    position: absolute;
    top: 15px;
    left: 25px;
    color: #7b00ff;
}
.download-sec a.apple i {
    font-size: 25px;
    top: 12px;
    left: 25px;
}
.download-sec a:hover {
    background: #7b00ff;
}
.download-sec a:hover i {
    color: #fff;
}
.download-sec a:hover span {
    color: #fff;
}

/* invite and earn section :start */
.invitenearn-section {
    padding: 22px 0px 30px 0px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e4e4e4;
}
.invitenearn-section .inesec-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ff444e;
    margin-bottom: 10px;
}
.invitenearn-section .inesec-block p {
    font-size: 14px;
    font-weight: 400;
    color: #898989;
    margin-bottom: 10px;
}
.invitenearn-section .inesec-block .coupon {
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.invitenearn-section .inesec-block .coupon .coupon-code {
    font-size: 16px;
    font-weight: 600;
    color: #4e4d53;
    background-color: #f2f2f2;
    padding: 8px 20px;
    margin: 0px 10px 0px 0px;
    display: inline-block;
    border-radius: 50px;
}
.invitenearn-section .inesec-block .coupon .coupon-share {
    width: 32px;
    height: 32px;
    color: #fff;
    background-color: #7c00ff;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.invitenearn-section .inesec-block .coupon .coupon-share:hover {
    background-color: #f42455;
}
/* invite and earn section :start */