@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/** BASIC CSS **/
:root {
    --darkmaincolor:#e90000;
    --mainlightcolor:#f4a928;
     --maincolor:#f69f04;
	--btncolor:#e90000;
	--btnhovercolor:#d10303;
    --sidebar:#202C45;
    --sidebarlink:#2c3852;
    --sidebarlinkhover:#404d68;
    --black:#000000;
	--fontcolor:#555;
	--lightgray:#f2f2ff;
    --white:#fff;
}
* { 
	margin: 0; 
	padding: 0; 
	border:none; 
	outline:none;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box;
	box-sizing: border-box;	}
	

html, body{
	min-height:100vh;
	max-width:100%;
	min-width:100%;
	background:var(--lightgray);    
    /* background: url(../images/loginbg2.jpg) no-repeat fixed; */
    background-position: center center;
    background-size: cover;
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	line-height:18px; 
	color:#000;
	font-weight:normal;
	font-style:normal;
	overflow-x:hidden;}
	
p {
	font-size: 15px;
	color: var(--fontcolor);
	line-height: 23px;
	font-weight: 400;}
	
h1,h2,h3,h4,h5,h6{
     margin:0;
	 color:var(--fontcolor);}

a {
	text-decoration:none;
	outline: none;
	color: var(--fontcolor);}
	
:focus { 
	outline: none; }
	
a:focus {
	outline: none;}
	
a:hover, a:focus {
	color:  var(--maincolor);
	text-decoration: none;}
		
hr{
	background:#e3e3e3;
	border-top:1px solid #333;}
	
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;}
	
::selection {
	text-shadow: none;
	background:  var(--maincolor);
	color: #fff;}
	
::-moz-selection {
 text-shadow: none;
 background:  var(--maincolor);
 color:#fff;}
 
a, input, select, textarea, img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;}
		
.clearfix {
	clear: both;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 0;}
			
.hidden{ 
	display: none !important;}
	
.show{ 
	display: block !important;}
	
.floatl{ 
	float: left;}
	
.floatr{
	float: right;}
	
.nopad{
	padding:0 !important;}

.nopadl{
	padding-left:0;}
	
.nopadr{
	padding-right:0;}
	
.btn:focus,button:focus,.form-control:focus{
	outline:0;
	box-shadow:0 0 0 0 transparent;
}
ul,ol{
	padding-left: 0;
}	

/** BASIC CSS END HERE **/ 
.menubar{
	display: flex;
	background:var(--sidebar);
    position: fixed;
	border: none;
	left: 0;
	right: initial;
	border-color: var(--white);
    border:0 !important;
    border-radius: 0 0 0 0;
    z-index: 999;
    width: 260px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-sizing: border-box;
    height: 100%;
    border-right-width: 1px;
    border-right-style: solid;
    overflow: hidden;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.main_body{
    margin-left: 260px;
	margin-right: 0;
	transition: margin-left 0.2s linear;
    min-height: auto;
    position: relative;
    padding-top: 78px;
}
.header_title {
    width: 100%;
    height: 75px;
    padding: 13px;
    /* display: table; */
    background: #fff;
}
.header_title h1{
	font-size: 19px;
    width: max-content;
    display: table-cell;
    vertical-align: middle;
	text-align: center;
	color: var(--white);
    font-weight: bold;
}
.header_title img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*------category-filter----------*/
.category_filter h2 {
	font-size: 15px;
    background: var(--maincolor);
    color: var(--white);;
    padding: 12px;
    border-radius: 0;
    margin-bottom: 7px;
}
#accordian {
    width: 100%;
    margin: 0;
    color: #404040;
	overflow: hidden;
	padding: 0 12px;
}
#accordian h3 {
	background: var(--sidebarlink);
	position: relative;
	border-radius: 5px;
}
#accordian h3 a {
    padding: 0 10px;
	font-size: 14px;
	line-height: 41px;
	font-weight: 500;
    display: block;
    color: var(--white);
	text-decoration: none;
}
#accordian li > h3 a span ,
#accordian ul ul li a span, #accordian h4 span{
	color: var(--white);
}
#accordian h3:hover {
	background: var(--darkmaincolor);
}
#accordian i {
    margin-right: 10px;
}
#accordian li {
    list-style-type: none;
    border-bottom: 1px solid #ffffff3d;
}
#accordian li:last-child{
    border-bottom: 0px solid #ffffff3d;
}
#accordian li.active {
    border-radius: 7px;
    background: var(--sidebarlinkhover);
}
#accordian li.active h3{
    background: var(--white);
}
#accordian li.active h3 a{
    color: var(--maincolor);
}
#accordian li.active h3 a span{
    color: var(--maincolor);
}
#accordian ul ul li a, #accordian h4 {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    line-height: 23px;
    display: block;
    padding: 5px 15px;
    transition: all 0.15s;
	position: relative;
	border-radius: 5px;
	font-weight: 500;
}
#accordian li.active > ul li a span{
    color: var(--white);
}
#accordian ul ul li {
    border-bottom: 0px !important;
}
#accordian ul ul li:hover a,
#accordian ul ul li.active a {
	background: var(--maincolor);
    color: var(--white) !important;
}
#accordian ul ul li.active a span,
#accordian ul ul li a:hover span
{
    color: var(--white) !important;
}
#accordian ul ul {
    display: none;
	padding: 11px;
}
#accordian li.active > ul {
	display: block;
}
#accordian ul ul ul {
    margin-left: 15px;
    border-left: 1px dotted rgba(0, 0, 0, 0.5);
}
#accordian a:not(:only-child):after{
    content: "\f104";
    font-family: fontawesome;
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 14px;
    color: var(--white);
}
#accordian li h3:not(:only-child):after{
    content: "\f104";
    font-family: fontawesome;
    position: absolute;
    right: 10px;
    top: 13px;
    font-size: 14px;
    color: var(--white);
}
#accordian li.active > a:not(:only-child):after,
#accordian li.active h3:not(:only-child):after {
    content: "\f107";
    color: var(--maincolor);
}
/*------end category-filter----------*/

.profile_sec {
    width: 100%;
    height: 100%;
	display: table;
	padding-right: 20px;
}
.display-middle{
	display: table-cell;
	vertical-align: middle;
}
.profile_img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: auto;
    cursor: pointer;
    border: 2px solid var(--mainlightcolor);;
	background: #b9b9b9;
	position: relative;
}
.profile_img img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
}
.profile_img:before{
    content: "\f0d7";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: var(--maincolor);
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 0;
    right: -16px;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
}
.dropdown_profile {
    position: absolute;
    top: 60px;
    right: 18px;
    width: 166px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 #bdbdbd9c;
	padding: 10px 7px;
	transform: scale(0);	
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
.dropdown_profile.open{
    top: 72px;
	transform: scale(1);
}
.dropdown_profile ul {
    text-align: left;
    list-style: none;
    margin: 0;
}
.dropdown_profile ul li.loginid{
    font-size: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e8e8e8;
    color: #959595;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dropdown_profile ul li a{
	display: block;
    width: 100%;
	padding: 8px 11px;
    border-radius: 5px;
}
.dropdown_profile ul li a span{
	color: var(--maincolor);
}
.dropdown_profile ul li a:hover{
	background: #E7E7EE;
	color: #404040;
}
.topmenubar {
    position: fixed;
    /* width: 100%; */
    left: 0;
    right: 0;
    top: 0;
	height: 75px;
    padding: 12px 20px;
    background: var(--white);
    z-index: 9;
}
.dash-container {
    width: 100%;
    min-height: 86vh;
    padding: 20px 30px 16px 30px;
}
.dashboard_bx {
    background-color: var(--maincolor);
    color: #fff;
    padding: 30px 30px 0px;
    border-radius: 6px;
    box-shadow: 0 2px 5px 0 var(--mainlightcolor);
    margin-bottom: 30px;
}
.dash_bx {
	display: table;
    width: 100%;
    height: 110px;
    margin-bottom: 30px;
    border: 1px solid var(--mainlightcolor);
    border-radius: 8px;
    padding: 20px 20px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.dash_bx:hover {
	background: var(--mainlightcolor);
}
.total_content,.icon_Set{
	display: table-cell;
	vertical-align: middle;
}
.icon_Set{
	text-align: right;
}
.dash_bx h1{
	font-size: 35px;
    color: #e8f5ff;
    font-weight: 800;
}
.dash_bx h5{
	font-size: 15px;
    color: var(--white);
}
.dash_bx span{
	font-size: 36px;
	color: var(--mainlightcolor);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.dash_bx:hover span{
	color: var(--maincolor);
}
.collapse_nav {
    display:none;
}
.dash_title {
    width: 100%;
    height: 100%;
    text-align: right;
    display: table;
}
.dash_title h5 {
    display: table-cell;
    vertical-align: middle;
    font-size: 15px;
    color: var(--maincolor);
}
.dash_title h5 small{
    font-size: 10px;
    color: var(--black);
}
.page_title {
    font-size: 22px;
    margin-bottom: 25px;
    margin-top: 20px;
    color:var(--maincolor);
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    width: max-content;
    border-left: 2px solid var(--maincolor);
    border-right: 2px solid var(--maincolor);
    padding-left: 20px;
    padding-right: 20px;
}
/* .page_title::after{
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--maincolor);
    position: absolute;
    right: -100%;
    top: 0;
    bottom: 0;
    margin: auto;
} */
.dash_card{
    background: #fff;
    padding: 20px 20px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 40px;
}
.dash_card .title {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 20px;
}
form label{
    font-size: 14px;
    color: var(--black);
    margin-bottom: 5px;
}
.form-control,
#DataTables_Table_0_length select ,
#DataTables_Table_0_filter input{
    padding: 9px;
    border-radius: 6px;
    border: 1px solid #e2e2e2 !important;
}
.form-control:focus,.form-control:hover,
#DataTables_Table_0_length select:hover,
#DataTables_Table_0_length select:focus,
#DataTables_Table_0_filter input:hover,
#DataTables_Table_0_filter input:focus{
    border: 1px solid #adadad !important;
}
.btn_common{
    margin-top: 15px;
    margin-right: 10px;
    text-transform: none;
    white-space: nowrap;
    border-radius:6px;
    color: #fff;
    background: var(--btncolor);
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08929em;
    box-shadow: 0 2px 5px 0 var(--btncolor);
}
.btn_common:hover,.btn_common:focus{
    color: #fff;
    background: var(--btnhovercolor);
}
.table tr td,.table tr th{
    vertical-align: middle;
    text-align: left;
    padding: 8px 10px !important;
    border-bottom: 1px solid #eaeaea !important;
}
table.dataTable thead th, table.dataTable thead td,
table.dataTable.no-footer {
    border-bottom: 1px solid #eaeaea !important;
}
.table{
    background: #fff;
}
.table>:not(caption)>*>* {
    border-bottom-width: 0;
}
.table tr td img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
    border: 1px solid #c3c2c2;
}
ul.button-ico-list {
    list-style: none;
    display: flex;
    width: 100%;
    margin: 10px auto;
    justify-content:center;
}
ul.button-ico-list li {
    width: 47%;
    text-align: center;
    margin: 0 4px;
}
ul.button-ico-list li a{    
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
}
.del_btn {
    background: #d1074a;
}
.del_btn:hover,.del_btn:focus{
    background: #bb0340;
}
.edit_btn {
    background: #f1c909;
}
.edit_btn:hover,.edit_btn:focus{
    background: #dbb704;
}
.view_btn {
    background: #0081d8;
}
.view_btn:hover,.view_btn:focus{
    background: #0069af;
}
.view_btn2 {
    background: #9c27b0;
}
.view_btn2:hover,.view_btn:focus{
    background: #8b1c9e;
}
.view_btn3 {
    background: #0caa8d;
}
.view_btn3:hover,.view_btn:focus{
    background: #078d74;
}
/* .paginate_button,
.dataTables_wrapper .dataTables_paginate .paginate_button{
    border-radius:6px;
    color: var(--maincolor) !important;
    border: 1px solid var(--maincolor);
} */
/* .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{
    border-radius:6px;
    color: #fff !important;
    background: var(--mainlightcolor);
    border: 1px solid var(--mainlightcolor);
} */
.paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    border-radius:6px;
    color: #fff !important;
    background: var(--maincolor);
    border: 1px solid var(--maincolor);
}

/*--------------------admin-login------------------*/
.login_sec {
    padding: 100px 15px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}
.login_bx {
    max-width: 370px;
    height: max-content;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    margin: auto;
    background: var(--white);
    padding: 21px 20px;
    border-radius: 5px;
    box-shadow: 0 7px 20px -9px #0006;
}
.login_bx h2{
    color: var(--maincolor);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 13px;
}
.otrs_link{
    margin-top: 24px;
    display: block;
    color: var(--maincolor);
    font-size: 14px;
    font-weight: 500;
}
.logo_admin {
    max-width: 100%;
    width: 142px;
    height: auto;
    margin-left: auto;
    text-align: center;
    margin-right: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.solid_dashbx img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 20px auto;
    display: block;
}
.solid_dashbx {
    text-align: center;
    padding: 1rem;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 1px 2px 10px #d2d2d2;
    color: #fff;
    background: var(--maincolor);
    opacity:1;
    transition: all 0.5s;
	-webkit-transition:  all 0.5s;
	-moz-transition: all 0.5s;
	transition:  all 0.5s;
}
.school_dash .col-sm-4:nth-child(1) .solid_dashbx{
    background: linear-gradient(
        142deg
        , rgb(254 179 36) 40%, rgb(239 160 44) 67%);
}
.school_dash .col-sm-4:nth-child(1) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , rgb(254 179 36) 0%, rgb(239 160 44) 0%);
}
.school_dash .col-sm-4:nth-child(2) .solid_dashbx{
    background: linear-gradient(
        142deg
        , #03a9f4 40%, rgb(0 140 204) 67%)
}
.school_dash .col-sm-4:nth-child(2) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , #03a9f4 0%, rgb(0 140 204) 0%)
}
.school_dash .col-sm-4:nth-child(3) .solid_dashbx{
    background: linear-gradient(
        142deg
        , #8bc34a 40%, #4caf50 67%);
}
.school_dash .col-sm-4:nth-child(3) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , #8bc34a 0%, #4caf50 0%);
}
.school_dash .col-sm-4:nth-child(4) .solid_dashbx{
    background: linear-gradient(
        142deg
        , #9c27b0 40%, rgb(126 10 146) 67%);
}
.school_dash .col-sm-4:nth-child(4) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , #9c27b0 0%, rgb(126 10 146) 0%);
}
.school_dash .col-sm-4:nth-child(5) .solid_dashbx{
    background: linear-gradient(
    142deg
    , rgba(254,106,36,1) 40%, rgba(254,68,36,1) 67%);
}
.school_dash .col-sm-4:nth-child(5) .solid_dashbx:hover{
    background: linear-gradient(
    142deg
    , rgba(254,106,36,1) 0%, rgba(254,68,36,1) 0%);
}
.school_dash .col-sm-4:nth-child(6) .solid_dashbx{
    background: linear-gradient(
        142deg
        , rgb(2 210 164) 40%, #00bcd4 67%);
}
.school_dash .col-sm-4:nth-child(6) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , rgb(2 210 164) 0%, #00bcd4 0%);
}
.school_dash .col-sm-4:nth-child(7) .solid_dashbx{
    background: linear-gradient(
        142deg
        , rgb(254 36 36) 40%, rgb(195 0 0) 67%);
}
.school_dash .col-sm-4:nth-child(7) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , rgb(254 36 36) 0%, rgb(195 0 0) 0%);
}
.school_dash .col-sm-4:nth-child(8) .solid_dashbx{
    background: linear-gradient(
        142deg
        , rgb(83 135 234) 40%, rgb(33 88 243) 67%);
}
.school_dash .col-sm-4:nth-child(8) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , rgb(83 135 234) 0%, rgb(33 88 243) 0%);
}
.school_dash .col-sm-4:nth-child(9) .solid_dashbx{
    background: linear-gradient(
        142deg
        , rgb(49 1 111) 40%, rgb(64 30 125) 67%);
}
.school_dash .col-sm-4:nth-child(9) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , rgb(49 1 111) 0%, rgb(64 30 125) 0%);
}
.school_dash .col-sm-4:nth-child(10) .solid_dashbx{
    background: linear-gradient(
        142deg
        , #cddc39 40%, rgb(169 183 35) 67%);
}
.school_dash .col-sm-4:nth-child(10) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , #cddc39 0%, rgb(169 183 35) 0%);
}
.school_dash .col-sm-4:nth-child(11) .solid_dashbx{
    background: linear-gradient(
        142deg
        , rgb(0 222 204) 40%, rgb(127 95 255) 67%);
}
.school_dash .col-sm-4:nth-child(11) .solid_dashbx:hover{
    background: linear-gradient(
        142deg
        , rgb(0 222 204) 0%, rgb(127 95 255) 0%);
}
.school_dash .col-sm-4:nth-child(12) .solid_dashbx{
    background:linear-gradient(
        142deg
        , rgb(28 160 76) 40%, rgb(3 107 64) 67%);
}
.school_dash .col-sm-4:nth-child(12) .solid_dashbx:hover{
    background:linear-gradient(
        142deg
        , rgb(28 160 76) 0%, rgb(3 107 64) 0%);
}
.solid_dashbx:hover {
    box-shadow: 5px 8px 8px #b2b2b2;
    opacity: 1;
}
.form_group_title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 15px;
}
.form_group_title h2{
    font-size: 20px;
    color: #777;
}
.form_group_title h1{
    font-size: 17px;
    color: #000;
    font-weight: 600;
}
.form_group_title h1 span,
.form_group_title h2 span{
    color:var(--maincolor);
    font-size: 13px;
}
.form_group_title .btn{
    background: var(--btncolor);
    color: #fff;
}
.form_group_title .btn:hover{
    background: var(--btnhovercolor);
    color: #fff;
}
.form-check-input:checked {
    background-color: var(--maincolor);
    border-color: var(--maincolor);
}
.form-check-input:checked + label{
    color: var(--maincolor);
}
.form-check-input:focus {
    border-color: var(--maincolor);
    outline: 0;
    box-shadow: 0 0 0 0 var(--maincolor);
}
.courses_list .form-check{
    display: inline-block;
    margin-right: 13px;
}
.form-check label{
    cursor: pointer;
}
.table_download_icon{
    position: relative;
    width: 50px;
    height: 50px;
}
.table_download_icon a{
    background: red;
    color: #fff;
    width: 20px;
    display: block;
    height: 20px;
    text-align: center;
    line-height: 1.5;
    border-radius: 6px;
    position: absolute;
    bottom: -3px;
    right: -3px;
    margin: auto;
}
.course_title {
    background: var(--sidebarlinkhover);
    display: inline-block;
    padding: 4px 7px;
    margin: 2px;
    font-size: 13px;
    border-radius: 5px;
    color: #fff;
}
.marksheet_tbl{
    
}


.container--tabs {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    border-bottom: 1px solid var(--sidebarlinkhover);
    width: 100%;
    overflow: auto;
  }
  .container--tabs .tab {
    min-height: 2em;
    font-size: 14px;
    padding: 10px 5px;
    box-sizing: border-box;
    width: 160px;
    min-width: 160px;
    text-align: center;
    cursor: pointer;
    background-color: var(--sidebarlinkhover);
    color: white;
    transition: background-color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0px 0px;
  }
  .container--tabs .tab:hover {
    background-color: var(--maincolor);
    transition: background-color 0.25s;
    color: white;
  }
  .container--tabs .tabs--active {
    background-color: var(--maincolor);
    color: white;
    pointer-events: none;
  }
  
  .content {
    display: none;
  }
  
  .content--active {
    display: block;
  }
  
.set_iconlogo {
    width: 150px;
    background: var(--darkmaincolor);
    color: #fff;
    margin-bottom: 0;
    padding: 6px;
    border-radius: 10px 10px 0px 0;
}
  .profile_img_upload {
    width: 150px;
    height: 188px;
    position: relative;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
.profile_img_upload img{
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 0 0 7px 7px;
    margin-bottom: 4px;
    border: 1px solid #bebdbd;
}
.profile_img_upload label{
    cursor: pointer;
    background: var(--maincolor);
    color: #fff;
    padding: 8px;   
    width: 100%;
    text-align: center;
    border-radius: 7px;
}
.format_img {
    width: 100%;
    height: 150px;
    border: 1px solid #000;
    margin-bottom: 20px;
}
.format_img img{
    width: 100%;
    height:100%;
    object-fit: contain;
}
.preview {
    width: 152px;
    height: 83px;
}
.preview img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.copy_right {
    background: #ffffff54;
    text-align: center;
    padding: 10px;
    margin-top: 15px;
    font-size: 12px;
}
.copy_right a{
    color: var(--btncolor);
}
.btn-close {
    background: transparent;
    color: red;
    font-weight: bold;
}
.max-scroll{
    max-height:200px;
    overflow:auto;
}
.select2-container .select2-selection--single{
    height: 35px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 33px;
}
.userprofile_img {
    width: 200px !important;
    height: 200px !important;
    border: 1px solid #d0bebe;
    border-radius: 50%;
    margin-bottom: 20px;
}

/*-chat-*/
.chat_container {
    position: relative;
    width: 100%;
    height: 76vh;
    background: #efefef;
}
.chat_container.large {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999999;
}
.chat_head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #ffff;
    padding: 6px;
    height: 53px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.chat_head .search_chat{
    width:100%;
}
.chat_head button{
    width:100%;
    width: 33px;
    background: #333;
    color: #fff;
}
.chat_head button:hover,.chat_head button:focus{
    color: #fff;
}
.chat_footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 10px;
    height: 154px;
}
.chat_start_bottom {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.chat_list {
    position: absolute;
    left: 0;
    right: 0;
    top: 53px;
    bottom: 155px;
    display: flex;
    align-items: end;
}
.chat_list ul{
    list-style: none;
    margin: 0;
    width: 100%;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; */
}
.chat_list li {
    display: flex;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 20px;
}
.chat_list li.mechat{
    justify-content: end;
    text-align: end;
}
.chat_list li.youchat{
    justify-content: start;
}
.chat_list li.mechat .chat_box {
    background: hsl(170deg 100% 95%);
}
.chat_list li.youchat .chat_box{
    background: #fff;
}
.chat_list li .chat_box {
    width: auto;
    min-width: 151px;
    max-width: 490px;
    background: #fff;
    border-radius: 7px;
    padding: 0.8rem;
    position: relative;
}
.chat_list li .chat_box p{
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 17px;
}
.chat_list li .chat_box p a{
    color: #0069af !important;
}
.chat_list li .chat_box small {
    display: block;
    color: #b2b2b2;
    position: absolute;
    top: 102%;
    font-size: 10px;
}
.chat_list li.mechat .chat_box small{
    right: 0;
}
.chat_list li.youchat .chat_box small{
    left: 0;
}
.chat_list li .chat_box .delchat {
    position: absolute;
    right: 11px;
    bottom: 10px;
    color: red;
    cursor: pointer;
}
/*-end chat-*/
.cover_img {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}
.cover_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.cover_img .center_logo{
    position: absolute;
    width: 130px;
    height: 130px;
    right: 10px;
    bottom: 7px;
    border-radius: 10px;
    padding: 0;
    background: #fff;
    padding: 10px;
    object-fit: contain;
}
.newmsg {
    position: absolute;
    left: 0;
    top: 4px;
}