/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
	scroll-behavior: smooth;
}

body,
html {
	font-family: 'Poppins';
	overflow: hidden;
	background: #eef3ff;
	min-height: auto !important;
	top: 0 !important;
}

p {
	font-weight: 400;
}

a {
	color: #7632FF;
	text-decoration: none;
	transition: 0.5s all;
}

a:hover {
	color: #000000;
	text-decoration: none;
}

html,
body {
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins';
}


/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Black.woff2') format('woff2'), url('../fonts/Poppins-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'), url('../fonts/Poppins-ExtraLight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'), url('../fonts/Poppins-ExtraBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Thin.woff2') format('woff2'), url('../fonts/Poppins-Thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/*--------------------------------------------------------------
# Sidebar css 
--------------------------------------------------------------*/

.admin_main {
	margin-left: 280px;
	transition: 0.1s all;
}

.admin_full {
	margin: 0;
}

.admin_header {
	height: 70px;
	background-color: #7632ff;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.sidebar_btn {
	font-size: 18px;
	color: #fff !important;
}

.siderbar_section {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9;
	width: 280px;
	height: 100vh;
	background-image: url(../img/sidebar2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-right: 10px solid #7632ff;
	transition: 0.1s all;
}
.vaccine_category {
    margin: 0 20px;
}
.hide_sidebar {
	width: 0;
	left: -100%;
}

.siderbar_section::after {
	position: absolute;
	top: 0;
	content: '';
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.6;
}

.siderbar_inner {
	position: relative;
	z-index: 1;
}

.sidebar_logo img {
	max-width: 160px;
	margin: 0 auto;
	filter: drop-shadow(1px -1px 0px white);
}

.sidebar_logo {
	text-align: center;
	padding: 50px 20px;
}

.sidebar_menus ul li a {
	color: #fff;
	font-weight: 500;
	display: block;
	font-size: 16px;
	padding: 17px 20px;
	border-radius: 20px 0 0 20px;
	position: relative;
}

.sidebar_menus ul li a i {
    margin: 0 !important;
    width: 30px;
}

/* .sidebar_menus ul li a::after{
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	height: 30px;
	width: 30px;
	background-color: #7632ff;
} */
.sidebar_menus ul li a.active {
	background-color: #7632ff;
}

/*--------------------------------------------------------------
# Sidebar css 
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Login css
--------------------------------------------------------------*/ 
.container {
	max-width: 1240px;
} 
.login_page {
    background-image: url(../img/login-bg.jpg);
    height: 100vh;
    background-size: cover;
    background-position: right;
    position: relative;
} 
.login_page::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.2;
}
.logo_comman {
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.logo_comman img {
    max-width: 280px;
    filter: drop-shadow(1px 2px 4px white);
}
.login_page_form {
	height: 100vh;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 45px;
	position: relative;
	z-index: 1;
} 
.formheader h1 {
	font-size: 28px;
	font-weight: 700;
	color: #7632ff;
	margin-bottom: 10px;
}

.formheader p {
	font-size: 15px;
	margin: 0;
}

.form-design .form-control {
	border-radius: 10px;
	height: 50px;
	font-size: 14px;
	padding: 11px 18px;
	box-shadow: unset;
}

.form-design .form-control:focus {
	border: 1px solid #7632FF;
}

.form-design .form-group label {
	display: block;
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 500;
}

.form-design .form-group {
	margin-bottom: 22px;
}

.form-design .for_got {
	font-size: 14px;
	font-weight: 500;
	display: block;
}

.comman_btn {
	background-color: #7632ff;
	color: #fff;
	border: 1px solid #7632ff;
	transition: 0.3s all;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 34px;
	display: inline-block;
	border-radius: 50px;
}

.comman_btn:hover {
	background-color: transparent;
	color: #7632ff;
}

.count_Sec {
	display: block;
	font-weight: 600;
	color: #f20;
	font-size: 16px;
}

/*--------------------------------------------------------------
# Login css
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# ADmin Main
--------------------------------------------------------------*/

.Profile_dropdown button img {
	max-width: 100%;
}

.Profile_dropdown button {
	height: 70px;
	width: 70px;
	border-radius: 50px;
	border: 0 !important;
	background-color: transparent !important;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: unset !important;
}

.Profile_dropdown .dropdown-item {
	color: #7632ff;
	font-weight: 500;
	font-size: 13px;
}

.dashboard_boxcontent h2 {
	margin: 0 0 5px;
	color: #fff;
	font-weight: 500;
	font-size: 22px;
}

.dashboard_boxcontent span {
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	display: block;
}

.dashboard_icon {
	color: #fff;
	font-size: 44px;
}

.dashboard_box {
    background-color: #7632ff;
    border-radius: 10px;
    padding: 25px;
    justify-content: center;
    align-items: center;
}

.admin_panel_data {
	padding: 50px;
}

.height_adjust {
	height: calc(100vh - 70px);
	overflow-y: auto;
	overflow-x: hidden;
}

.table_header {
    background-color: #7632ff;
    text-align: center;
    border-radius: 10px 10px 0 0;
    padding: 16px 10px;
}

.table_header h2 {
    color: #fff;
    font-size: 17px;
    margin: 0;
    font-weight: 600;
}

.comman_tables {
	background-color: #fff;
	padding: 0;
	border-radius: 10px;
	overflow: hidden;
}

.comman_tables th {
	color: #7632ff;
	background-color: #f2f2f2;
	font-size: 14px;
	font-weight: 600;
	padding: 15px 20px;
	border: 0;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
}

.comman_tables td {
    color: #000;
    font-size: 14px;
    padding: 15px 20px;
    border: 0;
    text-align: center;
    vertical-align: middle;
    border-bottom: 2px solid #f2f2f2;
    white-space: nowrap;
}

/* .comman_tables tbody tr:nth-child(even) td {
	background-color: #f2f2f2;
} */

.table>:not(:first-child) {
	border-top: 0;
}

.check_toggle label {
	position: relative;
	display: inline-block;
	font-weight: 400;
	color: #fff;
	font-size: 14px;
	padding-right: 27px;
}

.check_toggle label::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 38px;
    height: 18px;
    background-color: #cacaca;
    border-radius: 10px;
    transition: 0.5s all;
}

.check_toggle label::before {
	position: absolute;
	content: '';
	top: 2px;
	right: 21px;
	width: 14px;
	height: 14px;
	background-color: #ffffff;
	border-radius: 50px;
	z-index: 1;
	transition: 0.5s all;
}

.check_toggle input:checked~label::after {
    background-color: #7632ff;
}

.check_toggle input:checked~label::before {
	right: 3px;
	background-color: #fff;
}

.check_toggle {
	width: 100%;
	margin-top: -29px;
	margin-left: 10px;
}

::-webkit-scrollbar {
	display: none;
}

.pet_box_details {
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
}

.pets_img img {
	max-width: 100%;
	height: 130px;
	width: 100%;
	object-fit: cover;
}

.pets_mainbox {
	background-color: #eef3ff;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}

.pets_data {
	padding: 18px 10px;
}

.pets_data span {
	display: block;
	font-size: 13px;
	margin-top: 5px;
	font-weight: 400;
	color: #000;
}

.pets_data h2 {
	font-size: 15px;
	font-weight: 600;
	color: #000000;
	margin-bottom: 10px;
}

.user_imgg {
	height: 100px;
	width: 100px;
	display: flex;
	margin: 0 auto 20px;
	align-items: center;
	justify-content: center;
	background-color: #eef3ff;
	border-radius: 50px;
}

.user_imgg img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50px;
}

.user_informations {
	border-radius: 10px;
}

/* .user-details-part .check_toggle {
    margin: 0;
    position: absolute;
    right: 0;
    left: auto;
    text-align: right;
    top: 40px;
} */

.userinfor_box strong {
	font-weight: 600;
	font-size: 15px;
}

.head_details {
	position: relative;
	display: inline-block;
}

.head_details::after {
	position: absolute;
	content: '';
	top: 11px;
	right: -90px;
	height: 4px;
	width: 80px;
	background-color: #7632ff;
	border-radius: 60px;
}

.content_management_box {
	border: 2px solid #fff;
	border-radius: 10px;
	padding: 25px 18px;
	position: relative;
	background-color: #fff;
}

.content_management_box button {
	position: absolute;
	right: 29px;
	top: -21px;
	text-align: center;
	background-color: #7632ff !important;
	display: inline-flex;
	border-radius: 50px;
	border: 2px solid #fff !important;
	align-items: center;
	justify-content: center;
	height: 38px;
	width: 38px;
	font-size: 16px;
}

.content_management_box .dropdown-menu a {
	padding: 8px 10px;
	font-size: 13px;
	display: block;
	margin: 0;
	transition: 0.5s all;
	color: #fff;
}

.content_management_box .dropdown-menu a:hover {
	background-color: #fff;
	color: #7632ff;
}

.content_management_box .dropdown-menu {
	border: 0;
	background-color: #7632ff;
	box-shadow: 0 0 20px #7632ff29;
	border-radius: 10px;
	transform: unset !important;
	top: 24px !important;
	right: 30px !important;
	min-width: 110px;
	padding: 0;
	overflow: hidden;
}

.content_management_box .dropdown-menu a:last-child {
	border-top: 1px solid;
}

.content_management_box h2 {
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 18px;
}

.content_management_box p {
	font-size: 15px;
	line-height: 26px;
}

.content_management_box .dropdown {
	position: unset;
}

.list-circle {
	list-style: circle;
	padding: 0 0 0 32px;
	margin: 0;
}

.list-circle p {
	margin-bottom: 0;
}

.list-circle li {
	margin-bottom: 6px;
}

.account_profile .circle .profile-pic {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

.account_profile .circle {
	overflow: hidden;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	border: 2px solid #ffffff;
}

.account_profile .p-image {
	position: absolute;
	top: 10px;
	right: -2px;
	background-color: #ffffff;
	color: #e0dce1;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50px;
	font-size: 13px;
	border: 2px solid #dfdddf;
}

.account_profile .file-upload {
	display: none;
}

.account_profile .p-image i {
	color: #081424;
}

.pets_img {
	position: relative;
}

.years_show {
	position: absolute;
	bottom: 5px;
	right: 5px;
	background-color: #fff;
	display: inline-block;
	padding: 2px 11px;
	font-size: 12px;
	border-radius: 50px;
	font-weight: 600;
	color: #000;
}

.tables_btns_design {
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 500;
	border-radius: 4px;
}

.bg-red {
	background-color: #f20;
	border-color: #f20;
}

.bg-red:hover {
	color: #f20;
}

.help-support-part .check_toggle {
	margin-top: -23px;
}

.reply_modal .modal-header,
.reply_modal .modal-footer {
	background-color: #7632ff;
	border: 0;
	color: #fff;
}

.reply_modal .modal-dialog {
	max-width: 580px;
}

.reply_modal .modal-title {
	font-size: 15px;
	font-weight: 500;
}

.reply_modal .btn-close {
	color: #fff;
	opacity: 1;
	filter: invert(1);
}

.message_send .form-control {
	border-radius: 50px;
	height: 50px;
	font-size: 14px;
	padding: 11px 18px;
	box-shadow: unset;
	border: 0;
}

.send_btn {
	border: 0;
	height: 50px;
	border-radius: 50px;
	width: 52px;
	display: block;
	font-size: 22px;
	background-color: #ffff;
	color: #7632ff;
}

.user_chat_box {
	display: inline-flex;
	background-color: #f2f2f2;
	align-items: center;
	justify-content: flex-end;
	padding: 12px 24px;
	font-weight: 400;
	font-size: 14px;
	border-radius: 20px 20px 0 20px;
}

.admin_chat_box {
	display: inline-flex;
	background-color: #7632ff;
	align-items: center;
	justify-content: flex-end;
	padding: 12px 24px;
	font-weight: 400;
	font-size: 14px;
	border-radius: 20px 20px 20px 0;
	color: #fff;
}

.time_chat {
	display: block;
	font-size: 11px;
	font-weight: 400;
	margin: 5px 0 0;
}

.head_vaccine {
	font-size: 15px;
	font-weight: 500;
	display: block;
	position: relative;
	padding-left: 16px;
}

.head_vaccine::after {
	position: absolute;
	content: '';
	top: 7px;
	left: 0;
	height: 8px;
	width: 8px;
	background-color: #7632ff;
	border-radius: 60px;
}

.Profile_dropdown .dropdown-menu {
	transform: unset !important;
	top: 78px !important;
	right: 0 !important;
	left: auto !important;
	min-width: 180px;
	text-align: left;
	border: 0 !important;
	border-radius: 17px;
	box-shadow: 0 7px 6px #0000000d;
	padding: 14px 2px;
}

.Profile_dropdown .dropdown-menu::after {
	position: absolute;
	content: '';
	top: -11px;
	right: 23px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 12px solid white;
}
.edit_content_btn {
	border-radius: 5px;
	padding: 6px 11px;
	font-size: 13px;
	font-weight: 400;
	width: auto;
	position: absolute;
	right: 30px;
	top: -20px;
	color: #fff !important;
	background-color: #7632ff !important;
} 
.vaccine_name {
    display: inline-block;
    padding: 5px 20px;
    background-color: transparent;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #7632ff;
    transition: 0.3s all;
    border: 2px solid #7632ff;
    position: relative;
    cursor: pointer; 
    margin: 0 10px;
}
.cut_icon {
    position: absolute;
    right: -6px;
    background-color: #fff !important;
    border: 2px solid;
    border-radius: 50px;
    display: inline-flex;
    width: 15px;
    height: 15px;
    align-items: center;
    justify-content: center;
    top: 7px;
    font-size: 10px;
}
.vaccine_name.active{
	background-color: #7632ff;
	color: #fff;
}

.vaccine_name:hover {
	background-color: #7632ff;
	color: #fff;
}

.vaccine_category_slider .owl-item {
	text-align: center;
}

.vaccine_category_slider .owl-nav button {
	background-color: #ffffff !important;
	color: #7632ff !important;
	height: 30px;
	width: 30px;
	border-radius: 50px;
	font-size: 26px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: -30px;
	margin-right: 40px;
	border: 2px solid !important;
}

.vaccine_category_slider .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: 2px;
}

.vaccine_category_slider .owl-nav button.owl-next {
	margin-right: -30px;
}

.vaccine_category_slider .owl-nav button span {
	margin-top: -2px;
}

.vaccine_category_slider .owl-stage-outer {
	z-index: 5;
}

.translation-links a img {
	max-width: 22px;
	margin-right: 10px;
}

.translation-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	width: 128px;
	margin: 0 8px;
	border-radius: 10px;
	padding: 0;
	color: #7632ff;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	border: 2px solid #ffffff;
	height: 50px;
}

div#google_translate_element {
	display: none;
}

.skiptranslate {
	display: none;
}

.translation-links a:focus {
	background-color: #7632ff;
	color: #fff;
	border-color: #7632ff;
}
.add_video_btn {
    font-size: 13px;
    font-weight: 600;
    background-color: #fff;
    padding: 9px 13px;
    display: inline-block;
    border-radius: 50px;
    cursor: pointer;
    color: #7632ff;
}
.supportmain {
    border-top: 2px solid #f2f2f2;
    padding-top: 20px;
}
.Update_modal .modal-content {
    border: 0;
    border-radius: 30px;
    text-align: center;
}
.all_video_header .form-design .form-control {
	height: 38px;
	border-radius: 6px;
	padding: 0 17px;
	box-shadow: unset !important;
	border: 0;
}

.icons_set i {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 14px;
	color: #7632ff;
	font-weight: 600;
	cursor: pointer;
}

 
.video_show_box:hover::after{
    opacity: 0.1;
}

.video_btn {
	position: relative;
	z-index: 1;
}
.video_show_box {
    position: relative;
    overflow: hidden;
    height: 166px;
    border-radius: 10px 10px 0 0;
}
.play-btn {
    width: 70px;
    height: 70px;
    background: radial-gradient(#7632ff 50%, rgb(255 255 255 / 32%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}
.video_show_box video {
    width: 100%;
}
.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 7px solid rgb(118 50 255 / 55%);
    top: -28%;
    left: -30%;
    background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
	border-left: 15px solid #7632ff;
	transform: scale(20);
}

.play-btn:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0;
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

.remove_video {
    position: absolute;
    color: #7632ff !important;
    top: 0px;
    right: 0;
    z-index: 1;
    font-size: 18px;
    background-color: #fff;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 0 0 0 20px;
}
.play-button-wrapper {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}
.play-button-wrapper .circle-play-b {
	cursor: pointer;
	pointer-events: auto;
}
.play-button-wrapper .circle-play-b svg {
	width: 50px;
	height: 50px;
	fill: #fff;
	stroke: #ffffff;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	opacity: 0.9;
}
.video_main {
    border-radius: 10px;
}
.edit_category_btn {
    color: #fff !important;
    font-weight: 700;
    display: inline-block;
    margin-right: 10px;
    font-size: 19px;
}
.video_show_bottom {
    padding: 15px 16px;
}
.username_main {
    color: #7632ff;
    font-weight: 600;
    font-size: 15px;
}
.buyself {
    color: #363538;
    font-weight: 600;
    font-size: 14px;
}
.remove_box {
    background-color: #fff;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 0 0 0 10px;
    z-index: 9;
}
.edit_category_modal .modal-dialog {
    max-width: 830px;
}
.edit_category_modal .modal-header {
    padding: 18px 30px;
}
.upload_Requests span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: #f00;
    position: absolute;
    right: 0px;
    top: -4px;
    border-radius: 40px;
	color: #fff;
    font-size: 12px;
}

.red_circle {
    position: absolute;
    right: -8px;
    background-color: #f20;
    display: flex;
    align-items: center;
    top: 7px;
    justify-content: center;
    width: 16px;
    border-radius: 50px;
    font-size: 10px;
    height: 16px;
    color: #fff;
    line-height: 16px;
}
.cut_icon i {
    position: relative;
    top: 1px;
    right: 0px;
}
.video_show_bottom .comman_btn {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 24px;
    border-radius: 4px;
}
/*--------------------------------------------------------------
# ADmin Main
--------------------------------------------------------------*/
.Update_modal .btn-close {
    position: absolute;
    right: 20px;
    opacity: 1;
    filter: contrast(0.5);
}
.Update_modal_content h2 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
}
.Update_modal_content p {
    margin: 0 0 25px;
    font-size: 16px;
}
.adjust_margin {
    margin-left: -90px;
}
  
.addvideo_modal .form-design .form-control {
    padding: 14px 20px;
}

.choose_file label {
    position: absolute;
    top: 0;
    background-color: #7632ff;
    height: 49px;
    color: #fff;
    display: flex !important;
    align-items: center;
    width: 120px;
    justify-content: center;
    text-align: center;
    border-radius: 12px 0 0 10px;
    font-size: 13px !important;
	cursor: pointer;
}
.editbtn_box {
    background-color: #7632FF;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    border-radius: 0 0 0 20px;
    z-index: 9;
    top: 0;
    font-size: 13px;
    color: #fff !important;
    padding-left: 4px;
}
.category_listiing li {
    width: 23%;
    margin: 6px 5px;
    list-style: none;
}
.category_listiing li a {
    color: #7632ff;
    font-size: 13px;
    font-weight: 500;
    display: block;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid;
    text-align: center;
    padding: 6px 12px;
}
.category_listiing li a.active{
	color: #fff;
	background-color: #7632ff;
}
.userdetails_check .check_toggle span {
    display: block;
    font-weight: 500;
    font-size: 14px;
}
.userdetails_check .check_toggle label {
    margin-left: 23px;
    margin-top: 1px;
}