/*=========================
|Font family
==========================*/
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");

/*=========================
|VARIABLES Font Css
==========================*/
:root {
    --primary: #505050;
    --primary-purple: #3b3855;
    --secondary: #b7583a;
    --white: #ffffff;
    --text-black: #505050;
    --black: #000000;
    --text-gray: #8f8f8f;
    scroll-behavior: auto;
}

/*=========================
|body css
==========================*/

* {
    margin: 0px;
    padding: 0px;
    outline: 0px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b3855;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #780100;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #3b3855 #f1f1f1;
}
body {
    color: var(--primary);
    font-family: "Public Sans", serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
/*    overflow: hidden;*/
}



img{
    width:100%;
}
.overflowhidden{
    overflow: hidden;

}

/*=========================
| Heading Css
==========================*/

h1 {
    font-size: 2em;
    font-family: "Public Sans", serif;
    font-weight: bold;
    color: var(--primary-blue);
}
h2 {
    font-size: 2em;
    font-family: "Public Sans", serif;
    font-weight: bold;
    color: var(--primary-blue);
}
h3 {
    font-size: 1.5em;
    font-family: "Public Sans", serif;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 0em;
}

h4,
h5,
h6 {
    font-family: "Public Sans", serif;
    font-weight: normal;
}

p {
    font-size: 1em;
    margin: 0px;
    color: var(--text-gray);
}

ul {
    margin: 0px;
    padding: 0px;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-gray);
}

/*=========================
|Table css
==========================*/

.pt-10 {
    padding-top: 10px;
}
.pt-15 {
    padding-top: 15px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-25 {
    padding-top: 25px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-35 {
    padding-top: 35px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-45 {
    padding-top: 45px;
}
.pt-50 {
    padding-top: 50px;
}
.pt-60 {
    padding-top: 60px;
}
.pt-70 {
    padding-top: 70px;
}
.pt-80 {
    padding-top: 80px;
}
.pt-90 {
    padding-top: 90px;
}
.pt-100 {
    padding-top: 100px;
}

/*=========================
|Margin css
==========================*/
.mt-10 {
    margin-top: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-60 {
    margin-top: 60px;
}
.mt-100 {
    margin-top: 100px;
}

/*=========================
|section padding
==========================*/
.sp-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.sp-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.sp-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.sp-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.sp-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/*=========================
* Form
*==========================*/
.form-control:focus {
    box-shadow: unset;
    border-color: var(--primary-purple);
}
.form-control {
    border-radius: 10px;
}
form label {
    color: var(--primary-purple);
}
.iti--allow-dropdown{
    width:100%;
}
.select2{
    display:block;
}

.select2-selection {
    border: 1px solid #e5e5e5 !important;
    min-height: 40px;
    border-radius: 10px !important;
}
.select2-selection__rendered {
    line-height: 40px !important;
    padding-left: 12px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    margin-left: -10px !important;
    margin-top: 6px !important;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn-primary {
    color: #fff;
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 1.15em;
    text-transform: capitalize;
}
.btn-primary:focus, .btn-primary:active{
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);    
}
.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-info{
    background-color: #a9a1ef;
    border-color: #a9a1ef;
}
.btn-success{
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}
.btn-warning{
    background-color: var(--black);
    border-color: var(--black);
}

.icon-btn{
    width: 40px;
    height: 40px;
    padding: 5px;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*=========================
* Form
*==========================*/

.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.form-check-input:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(59 56 85 / 18%);
}


/*=========================
* button
*==========================*/
.btn-check:focus + .btn,
.btn:focus {
    box-shadow: unset !important;
}
.btn-secondary {
    border-radius: 10px;
    background-color: var(--secondary);
    border: 0px;
    font-size: 0.8em;
    padding: 10px 40px;
}
.btn-secondary:hover {
    background-color: var(--primary-purple);
}

/*========================================
* hg-main-body-wraper
*=========================================*/
.hg-main-body-wraper {
    background-image: url(../image/icons/hg-background-img.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom left;
    background-attachment: fixed;
    
}

.hg-main-body-wraper:before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180.25deg,
        #a9a1ef -86.54%,
        rgba(130, 123, 187, 0) 28.39%
    );
    z-index: -1;
    top: 0px;
    left: 0px;
}

/*========================================
* hg-main-header
*=========================================*/
.header-inner-wrapper{
    width: 100%;
}
.header-inner-wrapper .img-fluid{
    height: 115px !important;
}
.header-inner-wrapper .header-main-content{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.hyg-category-content{
    margin-top: -45px;
}

.hg-main-header {
    padding: 10px 30px 20px 30px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    position: sticky;
    top: 0px;
    z-index: 999;
}
.hg-main-header.hero-sticky {
    background-color: #f7f7fe;
}
.hg-main-header {
}
.hgapp-top-header {
    width: calc(100% - 250px);
    position: relative;
}
.hgapp-top-header:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        180.23deg,
        rgba(169, 161, 239, 0.4) -89.35%,
        rgba(130, 123, 187, 0) 19.37%
    );
    border-radius: 20px;
    z-index: -1;
}
.hgapp-top-slbar {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;;
    margin-bottom: 20px;
}
.hg-search-box-wrap {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lang-control {
    display: flex;
}
.hg-search-box-wrap select.form-control {
    max-width: 160px;
    font-size: 15px;
    color: #928d85;
}
.hg-search-box-wrap select:focus, .hg-search-box-wrap input:focus{
    border: 1px solid #ced4da;
}
.lang-control ul {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--secondary);
}
.lang-control ul li label{
    padding: 7px 15px;
    background: #f9f9f9;
    color: #fff;
    color: var(--black);
    cursor: pointer;
}
.lang-control ul li input {
    display: none;
}
.lang-control ul li label {
    display: block;
    cursor: pointer;
}
.lang-control ul li label:hover {
    background-color: var(--primary-purple);
    color: #fff;
}
.lang-control ul li:hover label {
    color: #fff;
}
.lang-control ul li:not(:last-child) {
    border-right: 1px solid #fff;
}
.lang-control ul li.active label{
    background: var(--secondary);
    color: var(--white);
}
.lang-control ul li.active label {
    color: #fff;
}
.hg-search-box-wrap form {
    max-width: 600px;
    width: 100%;
}
.hg-search-box-wrap .btn-search {
    background-color: var(--primary-purple);
    border-radius: 0px 50px 50px 0px;
}
.hg-search-box-wrap .btn-search i {
    color: var(--white);
}
.hg-search-box-wrap .form-control {
    border-radius: 50px 0px 0px 50px;
    outline: 0px;
}
.hgapp-video-filter-wrap .hgvideo-category {
    display: flex;
    gap: 30px;
    /*touch-action: pan-y;*/
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: 0.4s;
    padding-bottom: 4px;
}
.hgapp-video-filter-wrap .hgvideo-category:hover{
     -ms-overflow-style: inherit !important;
    scrollbar-width: inherit !important; 
}

.hg-main-content-wraper {
    display: flex;
    gap: 40px;
    padding: 20px 30px 0px 30px;
}
.hgapp-leftcard {
    flex-grow: 1;
    height: 100vh;
    padding-right: 30px;
    padding-left: 5px;
    z-index: 1;
}
.hgapp-left-wraper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    height: 80vh;
    position: fixed;
    width: 200px;
    top: 150px;
}
.hgapp-rightcard {
    width: calc(100% - 250px);
}
.hgapp-leftcard .mobile-header {
    display: none;
}
.hgapp-menu-wraper {
}
.hgapp-menu-wraper:before {
    content: "";
    position: absolute;
    background: linear-gradient(
        5deg,
        rgb(183 88 58 / 0%) 0.35%,
        #b7583a 42.33%,
        rgba(183, 88, 58, 0) 90%
    );
    width: 1px;
    height: 400px;
    right: 0;
    top: 0;
}
/*=================================*/
.hgapp-header-right-wrap{}

.hgapp-header-right-wrap{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
.hgapp-menu-mobile{
    display:none;
}
.hgapp-menu-mobile .toggle-btn {
    padding: 2px 6px;
    font-size: 32px;
    border: 1px solid var(--text-gray);
    line-height: 0px;
}
.hgapp-menu-mobile .navbar-nav .nav-link {
    color: var(--text-black);
    font-size: 1em;
}

/*===============================
*hg-search-box-wrap
*=================================*/

.hgapp-menu-wrap .navbar-nav {
    gap: 10px;
    height: 400px;
    overflow-y: auto;
}
.hgapp-menu-wrap .navbar-nav .nav-link {
    color: var(--text-black);
    font-size: 1em;
}
.hgapp-menu-wrap .navbar-nav {
    margin-bottom: 40px;
    margin-top: 30px;
}

.hpapp-copyright {
    font-size: 0.75em;
    color: var(--text-gray);
    margin-top: 40px;
}
.hgapp-leftcard-bottom {
}
.hgapp-leftcard-bottom p {
    font-size: 0.75em;
    color: var(--text-gray);
}

/*=====================================
* hgapp-right-wraper
*======================================*/
.hgapp-right-wraper {
}
.hgapp-right-wraper .hgapp-right-top-fixed {
    position: absolute;
}
.hgapp-right-wraper {
}

/*=====================================
* hgapp-video-filter-wrap
*======================================*/
.hgapp-video-container {
    background: linear-gradient(
        180.23deg,
        rgba(169, 161, 239, 0.4) -89.35%,
        rgba(130, 123, 187, 0) 19.37%
    );
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
    padding-top: 20px;
}
.hgapp-video-filter-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hgapp-video-filter-wrap .hgvideo-category {
	display: flex;
	column-gap: 10px !important;
	height: 100%;
	flex-wrap: wrap;
	overflow: inherit;
	gap: unset;
	row-gap: 10px;
	z-index: 2;
	padding-left: 190px;
}

.hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav, 
.hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav_all a{
    font-size: 0.75em;
    color: var(--text-black);
    border: 1px solid transparent;
    border-radius: 50px;
    height: 40px;
}
.hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav_all a{
    display: block;
}
.hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav label, .hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav_all a {
	padding: 10px 20px;
	cursor: pointer;
	text-transform: capitalize;
}
.hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav.active, .hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav:hover, 
.hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav_all a.active, .hgapp-video-filter-wrap .hgvideo-category .hgvideo_cat_nav_all a:hover{
	border: 1px solid #a9a1ef;
	color: var(--black);
	height: 40px;
}
/*.hgapp-video-content-wraper {*/
/*    max-width: 767px;*/
/*    margin: 10px auto 0 auto;*/
/*}*/
.hgapp-video-content-wraper {
	max-width: 100%;
	margin: 10px auto 0 auto;
	padding: 0 17% 0 12%;
}
.video-card-container {
    height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.video-single-item {
    position: relative;
    height: calc(100vh - 140px);
}
.video-card-container {
    height: calc(100% - 90px);
    display: flex;
    /*overflow: hidden;*/
    flex-direction: column;
    justify-content: space-between;
}
.hgapp-video-content-wraper .video-single-item {
    background-color: #f9f9f9;
    padding: 25px 43px 40px 43px;
    border-radius: 20px;
    border: 1px solid;
    border-image-source: linear-gradient(
        179.79deg,
        rgba(76, 76, 76, 0.2) 0.18%,
        rgba(153, 153, 153, 0) 18.24%
    );
    margin-bottom: 30px;
    overflow: hidden;
}

#paypal-button-container{
    max-width: 720px;
    margin: 0 auto;
    margin-top: 83px !important; 
}


.hgapp-samllscreen .video-single-item {
    background-image: unset !important;
}
.hgapp-samllscreen .slide-nextprev-wrap {
    display: none !important;
}
.video-single-item .video-header {
    margin-bottom: 0px;
}
.video-single-item .hgvideo-details {
    padding-top: 10px;
}
.video-single-item .video-title {
    margin: 0;
    width: calc(100% - 20px);
    font-size: 23px;
}
.video-single-item .video-short-des {
    margin-top: 8px;
    margin-bottom: 10px;
    color: #505050;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.video-single-item .video-short-des-text {
    margin-top: 8px;
    margin-bottom: 10px;
    color: #505050;
    overflow-y: auto;
    display: -webkit-box;
    -webkit-line-clamp: 20;
    -webkit-box-orient: vertical;
    padding-top: 15px;
}
.top-title {
    display: flex;
    justify-content: space-between;
}
.top-title .tigger-icon {
    margin-top: 10px;
}
button.dropdown-dot-trigger {
    border: none;
    background: transparent;
}
.video-single-item .video-tag {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
}
.video-single-item .video-tag a {
    color: #b7583a;
}
.video-single-item ul.video-meta-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}
.video-single-item
    ul.video-meta-wrap
    li:not(ul.video-meta-wrap li.fullview-more-tools) {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.video-footer {
    margin-top: 23px;
}
.social-share .icon {
    border: 1px solid #ffffff33;
    background-color: #dadada;
    width: 40px;
    height: 40px;
    line-height: 35px;
    display: block;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 5px;
    cursor: pointer;
}
.social-share .icon svg {
    width: 18px;
    height: 18px;
}
.social-share .icon:hover,
.social-share .icon.active {
    background-color: var(--secondary);
}
.social-share .icon:hover i {
    color: var(--white) !important;
}
.social-share .icon:hover svg path,
.social-share .icon.active svg path {
    background-color: var(--secondary);
    fill: var(--white) !important;
}

.social-share .icon img {
    width: 20px;
}
.social-share {
    color: #393939;
}

.hgapp-vidoe-tools .screen-tool i {
	border: 1px solid #ffffff33;
	background-color: #dadada;
	width: 40px;
	height: 40px;
	line-height: 35px;
	display: flex;
	text-align: center;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 5px;
	cursor: pointer;
	position: relative;
	top: -3px;
	left: -1px;
	justify-content: center;
	align-items: center;
}
.hgapp-vidoe-tools .screen-tool i:hover{
     background-color: var(--secondary);
}

.offcanvas-setting {
    position: absolute;
    top: 27px;
    right: 50px;
    width: 280px;
    border-right: 0px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background-color: var(--white);
    padding: 20px;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}
.offcanvas-setting.active {
    visibility: visible;
}
.popup_content ul li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: var(--black);
}
.popup_content ul li:not(:last-child) {
    margin-bottom: 15px;
}
.offcanvas-setting .btn-close {
    position: absolute;
    right: 10px;
    font-size: 14px;
    top: 10px;
    outline: none;
    box-shadow: none;
}

.hgapp-video-card {
    position: relative;
}
.hgapp-video-card .video-js {
    width: auto !important;
    margin:0px auto !important;
    box-shadow: 0px 4px 20px 0px #00000040;
    border-radius: 8px;
    overflow:hidden;
    height:100% !important;
    padding:0px !important;
}
.hgapp-video-card video{
    position:relative !important;
    
}
.hgapp-vidoe-tools {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.hgapp-video-card .screen-tool button {
    border: 0px;
    outline: 0px;
    box-shadow: unset;
    background-color: transparent;
}

.hgapp-video-card .screen-tool button.hgv-fs {
    color: var(--white);
}

.hgapp-video-card video {
    border-radius: 8px;
}

.hgapp-video-card .vjs-big-play-button {
    display: none !important;
}

.video-js .vjs-control-bar {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    display: flex !important;
}

.video-js:hover .vjs-control-bar {
    opacity: 1 !important;
}

.hgapp-video-card {
    border-radius: 8px;
    overflow: hidden;
    margin:0px auto;
}
.vjs-poster img {
   object-fit: contain !important;
}

.video-js .vjs-control-bar {
    flex-wrap: wrap;
    height: auto !important;
}
.video-js .vjs-progress-control {
    width: 100% !important;
}
.video-js .vjs-progress-control .vjs-progress-holder {
    margin: 0px !important;
}
.video-js .vjs-progress-control,
.video-js .vjs-load-progress,
.video-js .vjs-play-progress,
.video-js .vjs-progress-control .vjs-progress-holder {
    height: 8px !important;
}
.video-js .vjs-load-progress {
    background: #d9d9d9 !important;
}
.video-js .vjs-play-progress {
    background-color: #a59de9 !important;
}
.video-js .vjs-play-progress:before,
.video-js .vjs-load-progress div,
.video-js .vjs-fullscreen-control {
 /*   display: none !important;*/
}
.video-js .vjs-play-control {
    position: absolute;
    bottom: 40px;
}
.video-js .vjs-time-control {
    position: absolute !important;
    bottom: 40px;
    left: 40px;
}
.video-js .vjs-volume-panel {
    position: absolute !important;
    right: 40px;
    bottom: 40px;
}

/*========== Full Screen section CSS Start =========*/

.hgapp-video-content-wraper.hgapp-fullscreen {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
}

.hgapp-video-content-wraper.hgapp-fullscreen .video-card-container {
	max-width: 100%;
	width: 100%;
	position: relative;
	margin: auto;
	height: 100%;
	padding: 0 60px;
	align-content: center;
}
.hgapp-video-content-wraper.hgapp-fullscreen .video-header {
	position: absolute;
	bottom: unset;
	left: 15px;
	z-index: 99;
	max-width: 100%;
	top: 50%;
	max-width: 80%;
    left: 60px;
	transform: translateY(-50%);
}
/*.hgapp-video-content-wraper.hgapp-fullscreen .video-header .video-title{*/
/*    height: 85px !important;*/
/*}*/
.hgapp-video-content-wraper.hgapp-fullscreen .video-single-item {
    padding: 0px;
    background-size: cover;
    backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(85vh - 140px);
    margin-bottom:15vh;
}
/*.hgapp-video-content-wraper.hgapp-fullscreen .video-single-item {*/
/*    margin-bottom: 30px;*/
/*}*/
.hgapp-video-content-wraper.hgapp-fullscreen .hgapp-video-card {
    border-radius: 0px;
    height: 100%;
}
.hgapp-video-content-wraper.hgapp-fullscreen .hgapp-video-card .video-js {
    height: 100%;
}
.hgapp-video-content-wraper.hgapp-fullscreen .video-single-item:before {
    content: "";
    background: #00000099;
    backdrop-filter: blur(10px);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.hgapp-video-content-wraper.hgapp-fullscreen .social-share {
    position: absolute;
    right: 60px;
    top: 50%;
    margin-top: 0 !important;
    transform: translateY(-50%);
}
.hgapp-video-content-wraper.hgapp-fullscreen .social-share .icon i {
    font-size: 25px;
    line-height: 40px;
    color: #717171;
}
.hgapp-video-content-wraper.hgapp-fullscreen
    .video-single-item
    .hgvideo-details {
    display: flex;
    flex-direction: column-reverse;
}
.hgapp-video-content-wraper.hgapp-fullscreen
    .video-single-item
    .hgvideo-details
    .date {
    display: none;
}
.social-share li.fullview-more-tools,
.hgapp-video-content-wraper.hgapp-fullscreen
    .video-header
    .video-other-setting {
    display: none;
}

.hgapp-video-content-wraper.hgapp-fullscreen
    .social-share
    li.fullview-more-tools {
    display: block;
}
.hgapp-video-content-wraper.hgapp-fullscreen .social-share li {
    position: relative;
}
.hgapp-video-content-wraper.hgapp-fullscreen .dropdown-dot-trigger {
    transform: rotate(90deg);
}
.hgapp-video-content-wraper.hgapp-fullscreen .dropdown-dot-trigger svg path {
    fill: var(--white);
}
.hgapp-video-content-wraper.hgapp-fullscreen .offcanvas-setting {
    top: unset;
    bottom: 0px;
    right: 60px;
}

.video-background-image img {
    width: 100%;
    position: absolute;
    height: 100%;
}

.hgapp-video-content-wraper.hgapp-fullscreen .video-meta-wrap {
    flex-direction: column;
    text-align: center;
}
.hgapp-video-content-wraper.hgapp-fullscreen .social-share {
    color: var(--white);
}
.hgapp-video-card video {
   /* object-fit: cover;*/
}

.hgapp-video-content-wraper.hgapp-fullscreen .video-tag a,
.hgapp-video-content-wraper.hgapp-fullscreen .video-title {
    color: var(--white);
}
.hgapp-video-content-wraper.hgapp-fullscreen .video-short-des {
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
.hgapp-video-content-wraper.hgapp-fullscreen ul.video-meta-wrap {
    gap: 20px;
}
.video-large-title {
    position: absolute;
    width: 140px;
    right: 28%;
    top: 28%;
}
.video-large-title h1 {
    color: var(--white);
}
.hgapp-video-content-wraper.hgapp-fullscreen .popup_content span {
    color: var(--black);
}

.hgapp-video-content-wraper.hgapp-fullscreen .hgapp-video-card video {
    border-radius: 0px;
}
.hgapp-fullscreen .video-single-item .video-header {
    display: block;
}
.hgapp-fullscreen .video-single-item .video-header.active {
    display: none;
}

/*========================
*Login & Reg
*=========================*/
.hgapp-logre-wraper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hgapp-register-card {
    max-width: 900px;
}
.hgapp-logre-card .hgapplg-title {
    text-align: center;
    font-size: 1.85em;
    line-height: 1em;
    padding-bottom: 20px;
    position: relative;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.hgapplg-title:before {
    content: "";
    width: 100%;
    position: absolute;
    height: 1px;
    background: linear-gradient(
        5deg,
        rgb(183 88 58 / 0%) 0.35%,
        #b7583a 42.33%,
        rgba(183, 88, 58, 0) 90%
    );
    bottom: 0;
    left: 50%;
    transform: translateX(-46%);
}
.hgapp-logre-card .submit-btn {
	padding-top: 20px;
	column-gap: 15px;
}
.hgapp-logre-card .submit-btn a{
    background-color: #b7583a;
    border-color: #b7583a;    
}
.hgapp-logre-card .submit-btn button, .hgapp-logre-card .submit-btn a:hover{
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}
.hgapp-logre-card .submit-btn button:hover{
    background-color: #b7583a;
    border-color: #b7583a;
}
.hgapp-logre-card .submit-btn button, .hgapp-logre-card .submit-btn a{
    font-size: 15px;
}
.hgapp-logre-card .submit-btn .btn-primary {
	padding: 10px 25px;
}
.ask-question button:hover, .ask-question button:focus{
    background-color: #b7583a !important;
    border-color: #b7583a !important;    
}
.hgapp-logre-footer {
    text-align: center;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1em;
}
.hgapp-logre-footer a {
    color: var(--secondary);
    opacity: 0.8;
}
.hgapp-logre-footer a:hover {
    text-decoration: underline;
}

.mobile_country_c .iti {
    width: 100% !important;
}
.d-none {
    display: none;
}

.social-share-links ul {
    display: flex;
    gap: 18px;
    justify-content: center;
}
.social-share-links ul li button {
    border: 0px;
    background-color: transparent;
}

.social-share-links ul li button svg {
    width: 35px !important;
    height: 35px !important;
}
.share-inner-title{
    font-size: 13px;
    margin-top: 2px;
    transition: 0.4s;
}
.whatsapp-share-option:hover .share-inner-title{
    color: #40c351;
}
.facebook-share-option:hover .share-inner-title{
    color: #249ef0;
}
.twitter-share-option:hover .share-inner-title{
    color: #000;
}
.linkdin-share-option:hover .share-inner-title{
    color: #0288d1;
}

.modal-content {
    padding: 30px;
    border-radius: 15px;
}
.modal-header {
    padding: 0px;
    padding-bottom: 20px;
}
.modal-body {
    padding: 0px;
    padding-top: 20px;
}
.modal-title {
    font-size: 1.15em;
    font-weight: 600;
    color: var(--primary);
}
.hg-copyvideo {
    padding-top: 30px;
}
.hg-copyvideo input {
}

.hg-copyvideo .btn-secondary {
    padding: 10px 14px;
    font-size: 1em;
}

/*=========================================
* Video Comment
*==========================================*/
.hgapp_video_comment_wraper {
    position: fixed;
    max-width: 520px;
    background: #ffffff;
    top: 0;
    right: -100%;
    z-index: 999;
    height: 100%;
    padding: 20px;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
    transition: 0.5s ease-in-out;
}
.hgapp_video_comment_wraper.active {
    right: 0px;
}
.hgvideo-info-cc {
}
.hgapp_video_comment_wraper .c-profile-wrap .topinfo-element {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-profile-wrap .topinfo-element img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.c-profile-wrap .topinfo-element .btn-primary {
    padding: 7px 25px;
}

.hgvideo-info-cc .hgvideo-cc-profile {
    padding: 10px 0px;
    border-bottom: 1px solid #ced4da;
    margin-bottom: 12px;
}
.hgvideo-info-cc .hgvideo-cc-profile .cv-title {
    font-size: 1.15em;
    color: var(--black);
    font-weight: 600;
}
.hgvideo-c-viewer-wraper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 63vh;
	padding-right: 20px;
	overflow-y: scroll;
}
.hgvideo-comments-viewer {
    display: flex;
    gap: 10px;
}
.hgvideo-comments-viewer img.user-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: unset !important;
    border: 1px solid #ced4da;
    background: #f4f3fd;
}
.hgvideo-comment-count{
    display:flex;
    gap:15px;
}
.hgvideo-comment-count {
    font-size: 1.05em;
    padding-bottom: 12px;
    border-bottom: 1px solid #ced4da;
    margin-bottom: 20px;
}
.hgvideo_comment_form input, 
.hgvideo_comment_form-child input{
    border-radius: 0px;
    border: 0px;
    border-top: 1px solid #ced4da;
    padding: 10px 0px;
}
.hgvideo_comment_form-child{
    position: relative;
}
.hgvideo_comment_form-child .close-reply{
  position: absolute;
  right: -16px;
  background: #000;
  border: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  opacity: 1;
  top: -20px;   
}

/*===================================================
                 Profile Page Style
====================================================*/
.member-count-history .video-count h2 {
	font-size: 27px;
	line-height: 30px;
	margin-bottom: 3px;
	width: 100%;
}
.member-count-history .video-count span {
	margin-bottom: 10px;
	display: block;
	width: 100%;
	font-size: 14px;
}
.card-wrap-style {
	background-color: #fff;
	padding: 25px 20px;
	border-radius: 10px;
	box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
	border: 1px solid #b8b2f169;
}
.member-count-history .save-post-col h2 {
	font-size: 36px;
	margin-bottom: -35px;
}
.card-wrap-style.video-count{
    text-align: center;
    height: 164px;
}
.pro-memebership-wrapper p{
    font-size: 13px;
}
.pro-memebership-wrapper label {
	font-size: 17px;
	color: #505050;
}
.save-post-col .video-count{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.profile-design-section .nav-pills{
    column-gap: 26px;
}
.profile-design-section .nav-item button{
    background-color: transparent;
    color: var(--primary-purple);
    padding: 0;
}
.profile-design-section .nav-item  .active{
    background-color: transparent;
    color: var(--secondary);
    position: relative;
}
.profile-design-section .nav-item .active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    left: 0;
    bottom: -9.5px;
}
.profile-design-section .profile-tab {
    border-bottom: 1px solid #e6e2e2;
    margin-bottom: 28px !important;
}
.profile-design-section .profile-tab li{
    padding-bottom: 8px;
}
.profile-design-section .profile-avatar{
    width: 150px;
    height: 150px;
    margin: 0px auto;
    position: relative;
}
.profile-design-section .profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.profile-design-section .camera-icon{
    position: relative;
}
.profile-design-section .profile-container{
    position: relative;
}
.profile-design-section .camera-icon{
    width: 150px;
    height: 150px;
    position: absolute;
    left: 0;
    top: 0;
}
.profile-design-section .profile-container input{
    width: 150px;
    height: 150px;
    display: block;
    opacity: 0;
    cursor: pointer;
}
.profile-design-section .pro-element-col{
    display: flex;
    align-items: center;
}
.profile-design-section .profile-element-row{
    margin-top: 30px;
}
.profile-design-section .profile-content{
    text-align: center;
}
.profile-design-section .profile-content h2{
    font-weight: 500;
    margin-bottom: 3px;
}
.profile-design-section .profile-content h4 {
    font-size: 17px;
    font-weight: 300;
    line-height: 23px;
}
.profile-design-section .camera-inner-icon{
    position: relative;
    border: 1px solid #ddd;
    border-radius: 50%;
}
.profile-design-section .camera-inner-icon::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.4s;
    border-radius: 50%;
    background: #00000045;
}
.profile-design-section .camera-inner-icon i{
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    opacity: 0;
    font-size: 25px;
    margin-top: -19px;
    transition: 0.4s;
    transform: translate(-50%);
}
.profile-design-section .camera-icon:hover .camera-inner-icon::before{
    opacity: 1;
}
.profile-design-section .camera-icon:hover .camera-inner-icon i{
    opacity: 1;
}
.profile-design-section td, .profile-design-section th{
    vertical-align: middle;
}
.profile-design-section thead{
    background:#f7f7fe;
}
.profile-design-section th{
    padding:15px;
}
.profile-info-col p{
    color: var(--primary-purple);
}
.profile-info-col p span{
    color: var(--text-gray);
}
.profile-info-col p i{
    color: #B7583A96;
    margin-right: 3px;
}
.membership-packages-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.packages_item {
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #b8b2f169;
    max-width: 380px;
    width: 100%;
    text-align: center;
    background-color: var(--white)
}
.package-content-top{
    height: 195px;
}
.packages_item.active {
    box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 50%);
    margin: 0px 0px;
    z-index: 9;
    background: #3b3855;
    color: #FFF;
    padding: 40px 25px;
}
.packages_item.active .pc_title{
    color:var(--white);
}
.packages_item .pc_title{
    font-size: 2.25em;
    font-weight: 600;
    color: #3b3855;
}
.packages_item.active .btn:hover{
    background-color: var(--white);
    color: var(--primary-purple);
}

.packages_item .pc_price {
    margin-top: 0px;
    font-size: 1.5em;
    font-weight: 800;
    color: var(--secondary);
}

.packages_item .pc_button {
    margin: 20px 0px;
}
.packages_item .pc_button .btn {
	font-size: 0.8em;
	padding: 10px 24px;
}

.packages_item .Pc_details ul li{
    text-align: left;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    border: 1px solid #ced4da99;
    border-bottom: 0;
}
.packages_item .Pc_details ul li span{
    font-size: 15px;
}
.packages_item .Pc_details ul li:first-child{
    border-radius:5px 5px 0px 0px;
}
.packages_item .Pc_details ul li:last-child{
    border-bottom: 1px solid #ced4da99;
    border-radius:0px 0px 5px 5px;
}
.packages_item .Pc_details ul li .header_title{
    width:70%;
    border-right: 1px solid #ced4da99;
    padding:10px;
}
.packages_item .Pc_details ul li .feature_value{
    width:30%;
    text-align: center;
    padding:10px;
    font-weight:600;
}
.packages_item .Pc_details ul li{}

.packages_item .Pc_details ul li i{
    color: var(--secondary);
    font-size: 1.15em;
}
/*.packages_item:first-child .pc_price{*/
/*    height: 140px;*/
/*}*/
.packages_item.active .Pc_details ul li i{
    color: var(--white);
}
.membership-card-design{
    max-width: 760px;
}
.membership-card-design .inner-cards, .membership-card-design .member-history-table{
    background: #F9F9F9;
    border-radius: 15px;
    padding: 35px 35px;
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.membership-card-design .inner-cards p span{
    color: var(--primary-purple);
}
.membership-card-design .inner-cards p{
    color: var(--text-gray);
    margin-bottom: 5px
}
.membership-card-design .inner-cards p:last-child{
    margin-bottom: 0;
}
.membership-card-design .btn-secondary{
    margin-top: 15px;
    font-size: .9em;
    padding: 13px 35px;
}
.membership-history{
    margin-top: 40px;
}
.membership-history h3 {
    font-size: 1.45em;
    line-height: 1em;
    color: var(--primary-purple);
    font-weight: 400;
    position: relative;
}
.membership-history h3::after {
    content: '';
    width: 158px;
    position: absolute;
    height: 1px;
    background: linear-gradient(5deg, rgb(183 88 58 / 0%) 0.35%, #B7583A 42.33%, rgba(183, 88, 58, 0) 90%);
    bottom: -10px;
    left: 0;
}
.membership-card-design .member-history-table{
    margin-top: 33px;
}
.membership-card-design .member-history-table table tr:nth-child(even){
    background: #ebf3f9;
}
.membership-card-design .member-history-table table tr:nth-child(odd){
    background: #ffffff;
}
.membership-card-design .member-history-table table thead tr{
    background: #B7583AB2 !important;
}
.membership-card-design .member-history-table table thead tr td{
    padding: 6px 20px;
    color: #ffffff;
    border: 1px solid #B7583AB2;
}
.membership-card-design .member-history-table table tbody tr td{
    padding: 8px 20px;
    font-size: 15px;
}
.membership-card-design .member-history-table tbody tr td{
    border: 1px solid #0000001c;
}

/*=======================================================
* explore-card-wraper
=========================================================*/

.explore-card-wraper{
    max-width: 1024px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.explore-post-items {
    padding: 15px;
    background: #F9F9F9;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.explore-post-items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
    pointer-events: none;
    height: 50px;
    width: 100%;
    border-color: rgba(76, 76, 76, 0.2);
    border-style: solid;
    border-width: 1px 0px 0px 0px;
}

.explore-post-items:hover{
 box-shadow: 0px 2px 20px 0px #00000024;
}
.explore-post-items:hover .explore-element-top h2{
    color: var(--secondary);
}
.explore-post-items .explore-element-top{
    max-width: 640px;
}
.explore-post-items .explore-element-top h2{
    font-size:1.5em;
    color:#282828;
}
.explore-post-items .explore-element-top  p{
    color:#505050;
}
.explore-post-items .col-lg-12 .explore-element-top{
    max-width: 100%;
    width: 100%;
}
.explore-post-items .explore-contents-wrap{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap:40px;
    padding: 15px 0px;
}
.explore-post-features img{
    width: 100%;
    height: 100%;
}
.explore-post-items .post-social-setting ul{
    display: flex;
    gap:15px;
}
.explore-post-items .post-social-setting ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    gap: 15px;
    background: #dadada70;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.explore-element-bottom{
    display: flex;
    gap: 40px;
}
.explore-post-items .post-social-setting ul li .element-icon{
    cursor: pointer;
    padding: 5px 15px;
}
.explore-element-bottom .post-author{
    display: flex;
    gap:10px;
    align-items: center;
    font-size: 12px;
}
.explore-element-bottom .post-author .ep-author-image img{
    width: 34px;
    height: 34px;
    border-radius: 50%;
}
.explore-post-features{
    height: 100%;
    position: relative;
}
.explore-post-features .epost-video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    color: #FFF;
    font-size: 1.75em;
    background: #E4E4E45C;
    border-radius: 50%;
    border: 1px solid #DFDFDF;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -25px;
    margin-left: -25px;
}
.explore-post-features img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.explore-post-items .post-social-setting ul li.post-icon-box.e-post-like{
    padding: 0px 10px;
    gap: 0px;
}
.explore-post-items .post-social-setting ul li.post-icon-box.e-post-like .element-icon{
    padding: 5px 10px;
    position: relative;
}
.explore-post-items .post-social-setting ul li.post-icon-box.e-post-like .element-icon.like:before{
    content: '';
    width: 1px;
    height: 60%;
    background-color: #CBCBCB;
    position: absolute;
    right: 0;
    top: 20%;
}

.explore-post-items .post-social-setting ul li.post-icon-box.e-post-like .element-icon.active svg path, .explore-post-items .post-social-setting ul li.post-icon-box .element-icon:hover svg path{
    fill:#B7583A;
}
.hgapp-video-card img{
  object-position: top center;
  pointer-events:none;  
  object-fit: cover;
  
  height: 100%;
}

 .vjs-poster img{
    pointer-events:none;
}


/*================================
*breadcrum-scetion
*=================================*/
.breadcrum-scetion{
    padding: 40px 0px;
    text-align: center;
}

.card-wrap-style .hgcard-title{
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--primary-purple);
    font-weight: 600;
}
.package_order_table{
  /*  border-radius: 10px;
    border:1px solid #ced4da !important;
    overflow: hidden;*/
}
.package_order_table table{
    width: 100%;
    margin-bottom: 0px;
}
.package_order_table .package-name{
    width: 100%;
}
.package_order_table .table>:not(:last-child)>:last-child>*{
    border-bottom-color: #ced4da;
}
.package_order_table th, .package_order_table td{
    padding: 10px;
    border: 1px solid #ced4da;
}
.package_order_table thead, .package_order_table thead{
    background: #3b3855;
    color:#FFF;
}
.place-order .btn{
    width: 100%;
    font-size: 1em;
}



/*===================================================
*thank-you-card
*====================================================*/
.hg-100{
    height: 75vh;
}
.thank-you-card, .cancel-you-card{
    text-align: center;
    padding: 30px;
}
.thank-you-card img, .cancel-you-card img{
    margin-bottom: 30px;
}
.thank-you-card h2, .cancel-you-card h2{
    text-transform: uppercase;
    color: var(--primary-purple);
}

/*=======================================
*hgapp-question-message-section
*========================================*/
.hgapp-question-message-section{
    padding-bottom:80px;
}
.hgapp-quesans-list-wrapper{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items:end;
    width:100%;
}
.hgapp-quesans-list-wrapper .hgapp-question-answer-item{
    background: #FFF;
    padding: 20px;
    box-shadow: 0px 5px 17px 0px rgb(241 239 252);
    border-radius: 20px;
    border: 1px solid #f5e7e3;
    width:100%;
}
.hgapp-quesans-list-wrapper .hgapp-question-answer-item.answer{
    background:#FAFAFA;
}
.hgapp-quesans-list-wrapper .hgapp-status .status{
    width: min-content;
    padding:5px 15px !important;  border-radius: 10px;
}
.hgapp-quesans-list-wrapper .author-element-box .author-image{
    width: 30px;
}
.hgapp-quesans-list-wrapper .author-element-box .author-image img{
    width: 100%;
}
.hgapp-quesans-list-wrapper .hgapp-question-title{
    padding: 10px 20px;
    background-color: #f1effc73;
    margin: 15px 0px;
    border-radius: 5px;
}
.hgapp-quesans-list-wrapper .hgapp-question-title h3{
    font-size:1.15em;
    font-weight:400;
    line-height:1.5em;
    margin-bottom:0px;
}
.hgapp-quesans-list-wrapper .hgapp-author-content{
    gap: 40px;
    justify-content: space-between;
}
.hgapp-quesans-list-wrapper .author-element-box {
    gap: 20px;
}

.hgapp-quesans-list-wrapper .hgapp-download-action{
    display: flex;
    justify-content: center;
}
.hgapp-quesans-list-wrapper .hgapp-download-action .btn{
    font-size:0.9em;
}
.hgapp-quesans-list-wrapper .hgapp-useractions{
    gap: 10px;
}
.hgapp-question-answer-item.answer{
    width: calc(100% - 50px);
}

.hgapp-quesans-list-wrapper .hgapp-question-answer{
    padding: 10px 20px;
    background-color: #f1effc;
    margin: 15px 0px;
    border-radius: 5px;
}

/*======================================
*hgapp-notification-wrap
========================================*/
.hgapp-notification-wrap {
	width: auto;
	position: relative;
	display: flex;
	align-items: center;
	column-gap: 15px;
	justify-content: flex-end;
}
.mark-read-notification a {
	border-radius: 10px;
	background-color: var(--secondary);
	border: 0px;
	font-size: 0.75em;
	padding: 5px 12px;
	display: inline-block;
	color: #fff;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	line-height: 18px;
	position: relative;
	top: 13px;
	left: 15px;
}
.mark-read-notification {
	position: relative;
	background: #fff;
	width: 100%;
	height: 54px;
}
.mark-read-notification a:hover{
    background-color: var(--primary-purple);
}
.mark-read-notification a span{
    padding-right: 10px;
}
.hgapp-notification-wrap .dropdown-toggle{
    border:0px !important;
    background:transparent;
}
.hgapp-notification-wrap .dropdown-toggle .noti-count{
position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: #b7583a;
    border-radius: 50%;
    font-size: 10px;
    color: #FFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 10px;
    right: 4px;
}
.hgapp-notification-wrap .dropdown-toggle::after{
    display:none !important;
}
.hgapp-notification-wrap .dropdown-toggle i{
    font-size: 1.5em;
}
.hgapp-notification-wrap .dropdown-menu{
    background: #f9f9f9;
    padding: 0;
    overflow: hidden;
    box-shadow: 0px 3px 23px 0px rgb(197 194 194 / 50%);
}
.hgapp-notification-wrap .dropdown-menu ul {
	width: 320px;
	padding: 0px;
	height: 400px;
	overflow-x: auto;
	display: flex;
	flex-direction: column;
	gap: 0px;
	/*padding-top: 55px;*/
}
.notification-box {
    padding:15px;
    border-bottom: 1px solid #ced4da;
}
.notification-box h3{
    font-size: 1em;
    font-weight: 500;
    margin: 0px;
    color: var(--primary);
    line-height: 1.3em;
}

.notification-box p{
    font-size: .85em;
    font-weight: 400;
    margin: 0px;
    color: var(--primary);
}

.notification-box.unread, .notification-box:hover{
    background:#f7f7fe;
}
.fullview-screen{
    position:relative;
}
.fullview-screen button{
    border:0px;
    background-color: transparent;
}

.fullview-screen .hgapp-vidoe-tools {
    position: relative;
    bottom: -2px;
    right: 0px;
    z-index: 99;
}
.hgapp-fullscreen .hgapp-vidoe-tools {
	position: relative;
	bottom: 1px;
	right: 0.6px;
	z-index: 99;
}

.hgapp-video-content-wraper.hgapp-fullscreen .hgapp-vidoe-tools i{
    font-size:1em !important;
}



.hgapp-fullscreen .video-short-des-text{
    color: #fff !important;
}

.post-social-setting .icon.active svg path {
	color: #b7583a;
	fill: #b7583a;
}

.hgapp-register-card .iti__selected-country{
    height: 37px !important;
}

.comment-childs-container:not(:first-child){
    border-bottom: 1px solid #ddd;
    padding: 6px 0;
}
.comment-childs-container .comment-childs-container{
    border-top: 0;
}
/*.comment-child-new{*/
/*    border-bottom: 0 !important;*/
/*}*/
.comment-childs-container .comment-childs-container{
    border-bottom: 0;
    padding-left: 35px;
}
.comment-childs-container .comment-childs-container .comment-childs-container {
    padding-left: 0px;
}
.hgapp-video-card .screen-tool i {
	border: 0;
	background-color: transparent;
	width: auto;
	height: auto;
	cursor: pointer;
	position: relative;
	top: 0px;
	left: -1px;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
}
.hgapp-video-card .screen-tool i:hover{
    background-color: transparent;
}

.hgapp-video-content-wraper.hgapp-fullscreen .hgapp-vidoe-tools i {
	top: 0px !important;
	left: 0px !important;
}
.we-chat-icon {
	background: #3b3855;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 170px;
	margin: 0 auto;
	border-radius: 5px;
	padding: 1px 1px 6px 1px;
	margin-bottom: 25px;
	transition: 0.4s;
}
.we-chat-icon img{
    width: 100%;
    background: #fff;
    border-radius: 5px;
    transition: 0.4s;
}
.we-chat-icon span {
	width: 100%;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	margin-top: 6px;
}
#copy-video-link-button{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hg-copyvideo input{
    height: 43px;
    font-size: 14px;
    line-height: 20px;
}
.share-copy-link span {
	text-align: center;
	width: 100%;
	display: block;
	margin-top: -9px;
	color: #3b3855;
	font-size: 16px;
	font-weight: 500;
}
.pro-memebership-wrapper{
    display: flex;
    column-gap: 25px;
    justify-content: center;
}

.auth-user-name {
	text-align: center;
	font-size: 0.9em;
	background-color: #b7583a;
	border-radius: 50px;
	color: #FFF;
	margin: 10px auto 0px;
	padding: 2px 20px;
	display: inline-block;
	position: absolute;
}

.video-single-item-text .video-header{
    height: 100%;
}
.video-single-item-text .video-header .hgvideo-details{
    height: auto;
    position: relative;
}
.video-single-item-text .video-header .hgvideo-details .video-tag{
    position: absolute;
    bottom: 60px;
}
.cancel-you-card img, .thank-you-card img{
    width: auto !important;
}

.video-details-view .hgapplg-title {
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
	align-items: center;
}
.video-details-view .hgapplg-title .btn-close {
	width: 0.5em;
	height: 0.5em;
	position: relative;
	top: -17px;
}
.video-details-view .hgapplg-title span {
	color: #505050;
	font-size: 22px;
	line-height: 27px;
	font-weight: 700;
	text-transform: capitalize;
}
.video-details-view .modal-body{
    max-height: 100%;
  -webkit-line-clamp: 20;
  overflow-y: auto;
  display: -webkit-box;
  -webkit-line-clamp: 20;
  -webkit-box-orient: vertical;
}
.video-details-view .modal-content {
	padding: 50px 40px;
}


.more-pointer{
    cursor: pointer;
}


/*=============== Comment Dsign Style ====================*/
.hgvideo_comment_form, .hgvideo_comment_form-child{
    display: flex;
    align-items: center;
}
.hgvideo_comment_form .submit-comment, 
.hgvideo_comment_form-child .submit-comment{
	margin-top: 0 !important;
	height: 46px;
	background: #b7583a;
	border: 0;
	outline: 0;
	box-shadow: none;
	color: #ffff;
	padding: 6px 10px;
	transition: 0.4s;
}
.hgvideo_comment_form .submit-comment:hover{
    background: #000;
}
.hgvideo_comment_form .comment-div, .hgvideo_comment_form-child .comment-div{
 border-radius: 5px 0px 0px 5px !important;    
}
.vjs-fullscreen-control {
	top: -40px !important;
	right: 0;
	left: unset;
	position: absolute !important;
}



.explore-element-top a p {
  display: -webkit-box;               
  -webkit-box-orient: vertical;      
  -webkit-line-clamp: 7;              
  overflow: hidden;                   
  -moz-box-orient: vertical;          
  scrollbar-width: none;              
  -ms-overflow-style: none;           
}
.singel-page .video-single-item {
	height: 100%;
	width: 94%;
	transition: 0.8s;
}
.singel-page .hgappvideo-wrapper{
    transition: 0.8s;
}
.singel-page.comment_active_hg .video-single-item {
	width: 65%;
}
.singel-page .video-single-item .video-short-des-text {
	-webkit-line-clamp: unset !important;
	max-height: unset;
}
.singel-page .hgapp-video-content-wraper {
	padding: 0 3% 0 2%;
}
.video-single-item .video-short-des {
	overflow: inherit;
	display: block;
	-webkit-line-clamp: unset;
}
.singel-page .hgappvideo-wrapper{
    display: flex;
    column-gap: 70px;
}
.singel-page.comment_active_hg .hgappvideo-wrapper {
	align-items: flex-start;
}
.singel-page .single-right-side{
    width: 6%;
}
.singel-page.comment_active_hg .single-right-side{
    width: 35%;
    transition: 0.5s;
}
.singel-page .hgapp_video_comment_wraper {
	position: relative;
	max-width: 100%;
	height: 100%;
	padding: 0px;
	box-shadow: none;
	width: 100%;
	margin-top: 30px;
	right: 0;
	z-index: inherit;
	display: none;
}
.singel-page.comment_active_hg .hgapp_video_comment_wraper{
    display: block;
}
.singel-page .social-share, .singel-page.comment_active_hg .single-right-side{
	position: sticky;
	top: 138px;
}
.singel-page.comment_active_hg  .social-share{
    position: inherit;
    top: 0;
}
.singel-page .hgvideo_comment_form {
	margin-top: 0;
	position: relative;
	background: #fff;
	position: absolute;
	bottom: unset;
	width: 100%;
	left: 0;
	top: -10px;
}
.singel-page .hgvideo-comments{
    padding-top: 50px;
}
.singel-page .video-meta-wrap {
	display: flex;
	column-gap: 15px;
	flex-wrap: wrap;
	row-gap: 15px;
}
.singel-page.comment_active_hg .video-meta-wrap{
    flex-wrap: nowrap;
}
.singel-page .video-meta-wrap li{
    width: 100%;
}
.singel-page.comment_active_hg .video-meta-wrap li{
    width: inherit;
}
.singel-page .hgvideo-cc-profile{
    display: none;
}
.singel-page .ignore_touchmove{
    text-align: center;
}
.singel-page .social-share {
	margin-top: 0 !important;
}
.singel-page .hgvideo-c-viewer-wraper {
	height: 56vh;
}
.singel-page.comment_active_hg .comment_close_btn {
	position: absolute;
	top: -98px;
	right: 0;
	z-index: 999;
}
.singel-page.comment_active_hg .comment_close_btn i {
	color: #b7583a;
}





@media only screen and (max-width: 1400px) {
     .hang-payment-section .payment-col{
        width: 100% !important;
    }   
}



