@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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');
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden !important;
  font-family: 'Roboto'!important;
  margin: 0;
  background-color: #fff!important;
}
.header-section {
    background: transparent linear-gradient(90deg, #0c8daa 0%, #5d7ee7 100%) 0% 0% no-repeat padding-box;
}
.navsection {
  background: #fff;
}
p{font-size:17px!important;}

.container {
  max-width: 85vw !important;
  position:relative;
}

.admin-layout {
  display: flex;
}
#lang {
  border-radius: 15px;
  text-align: left;
  width: 54px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  outline: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  z-index: 1;
  box-sizing: border-box;
}
#lang img {
  width: 36px;
  margin-right: 6px;
}
#lang .selected {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-top: 0;
}
#lang .options {
  position: absolute;
  z-index: 999;
  top: 100%;
  left: -131px;
  width: 220px;
  max-height: 250px;
  background: #fff;
  overflow: hidden;
}
#lang .options p{
  color: #4c71dd;
}

#lang .options a {
  display: flex;
  align-items: center;
  padding: 3px 0px;
  box-sizing: border-box;
  background-image: none;
  color: #4c71dd;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1;
  opacity: 0;
  transform-origin: bottom;
  margin-left: -3px;
  transition: all 0.5s ease;
}
#lang .options a:first-child {
  border-radius: 15px 15px 0 0;
}
#lang .options a:last-child {
  border-radius: 0 0 15px 15px;
}

#lang:hover,
#lang.hover {
  overflow: visible;
  border-radius: 15px 15px 0 0;
}
#lang:hover .options a,
#lang.hover .options a {
  animation: dropdown 0.2s ease forwards;
}
#lang:hover .options a:nth-child(1),
#lang.hover .options a:nth-child(1) {
  animation-duration: 0.2s;
  animation-delay: 0s;
}
#lang:hover .options a:nth-child(2),
#lang.hover .options a:nth-child(2) {
  animation-duration: 0.3s;
  animation-delay: 0.1s;
}
#lang:hover .options a:nth-child(3),
#lang.hover .options a:nth-child(3) {
  animation-duration: 0.4s;
  animation-delay: 0.2s;
}

/* ::::::::::::::::::::::::::: ANIMATIONS */

@keyframes dropdown {
  0% {
    opacity: 0;
    transform: scaleY(0.98) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/*
-------------------------------------------------

---   MEDIA QUERIES   --->   #HEADER

-------------------------------------------------
*/

@media (max-width: 575px) {
#header {
    width: 100%;
    height: 66px;
    padding: 0 15px;
}
.header-space {
	height: 66px;
}  
#header .header .logo {
  max-width: 180px;
  float: left;
}
#header .header .logo img {
  width: 180px;
  transition: all ease-in-out 0.3s;
}
#header.shrink .header .logo img {
  width: 150px;
  transition: all ease-in-out 0.3s;
}
#header .header .menu {
  max-width: 210px;
  float: right;
}
#header .header .menu img {
  width: 36px;
  margin: 0 6px;
  transition: all ease-in-out 0.3s;  
}
#header .header .menu img:last-child {
  width: 30px;
  margin: 0 0 0 12px;
  transition: all ease-in-out 0.3s;
}
#header.shrink .header .menu img {
  width: 27px;
  transition: all ease-in-out 0.3s;  
}  
}



.main {
  max-width: 100%;
  display: grid;
  gap: 15px;
  padding: 36px;
  box-sizing: border-box;  
}
.main img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}

@media (max-width: 599px) {
  .main img {
    max-width: 100%;
    height: 210px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
.main {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 180px);  
}
.main img:nth-of-type(1) {
  grid-column: 1 / span 2;
}
.main img:nth-of-type(2) {
  grid-column: 3 / span 2;
}
.main img:nth-of-type(3) {
  grid-column: 1 / 1;
  grid-row: 2 / span 2;
}
.main img:nth-of-type(4) {
  grid-column: 2 / span 2;
  grid-row: 2 / 2;
}
.main img:nth-of-type(5) {
  grid-column: 2 / 2;
  grid-row: 3 / 3;
}
.main img:nth-of-type(6) {
  grid-column: 4 / 4;
  grid-row: 2 / 4;
}
.main img:nth-of-type(7) {
  grid-column: 3 / 3;
  grid-row: 3 / 3;
}
}

@media (min-width: 768px) {
.main {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 180px);  
}  
.main img:nth-of-type(2) {
  grid-column: 2 / span 2;
}
.main img:nth-of-type(3) {
  grid-column: 4 / 4;
  grid-row: 1 / span 3;
}
.main img:nth-of-type(4) {
  grid-column: 1 / 1;
  grid-row: 2 / span 2;
}
.main img:nth-of-type(5) {
  grid-column: 2 / 2;
  grid-row: 2 / 2;
}
.main img:nth-of-type(6) {
  grid-column: 3 / 3;
  grid-row: 2 / 2;
}
.main img:nth-of-type(7) {
  grid-column: 2 / span 2;
  grid-row: 3 / 3;
}
}

.sidebar .nav-list .submenu {
    display: none;
    padding: 15px;
}

.sidebar .nav-list .user-submenu .dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s;
    font-size: 15px;
}

.sidebar .nav-list .user-submenu.active .dropdown-icon {
    transform: rotate(180deg); /* Rotate icon when submenu is open */
}

.sidebar .nav-list .user-submenu.active .submenu {
    display: block;
}

.sidebar::-webkit-scrollbar {
    width: 2px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}



.submenu li {
    padding:5px 10px 5px 10px;
    border-bottom: none;
}
.submenu li:hover{
  background-color: #4C71DD;
}

.submenu li a {
    color: #ffffff;
    font-size: 14px;
}
.submenu li a::before {
  position: absolute;
  content: "\f105"; /* Unicode for the icon */
  font-family: 'Font Awesome 5 Free'; /* Make sure Font Awesome is loaded */
  font-weight: 900; /* Add this to ensure the icon is loaded correctly */
  left: 10px;
  display:none;
}

/* rgerge */

/* Submenu open class makes it visible */
.sidebar .nav-list .submenu.open {
    display: block;
}

/* Rotate dropdown icon when submenu is open */
.sidebar .nav-list .dropdown-icon.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s;
}
.menu li i{
    color: #4c71dd;
    margin-right: 15px;
}
.selected i{
    font-size: 17px !important;
    padding-left: 5px;
}

.options{
    padding: 10px;
}
.options i{
    padding: 10px;
    color: #fff;
}

.logo_img p{
  color: #ffffff;
  font-size: 20px;
}


.sidebar.open .logo_img{
display: none;
}
.submenu li a:hover{
color: #ffffff;
}

/* inner contant start here */
/* .fbox{
  padding: 50px 30px 40px 30px;
} */
.fbox {
    padding: 35px 40px 40px 40px;
}
.box {
  height: 100px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  background-blend-mode: multiply;

}
.fbox-data {
    text-align: center  ;
    padding-top: 40px;
}
.fbox-data p{
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    margin: 0;
}
.fbox-data h2{
    margin: 0;
    padding: 0;
    font-weight: 700;
}
.box p{
  margin: 0;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}
.box h6{
  font-weight: 700;
  font-size: 20px;
  color: #4c71dd;
}
.box .box-data{
  padding-left: 25px;
  margin-top: 15px;
}
.row .col-md-3:nth-child(1) .box {
  border-left: 6px solid #4E73DF;
}
.row .col-md-3:nth-child(2) .box {
  border-left: 6px solid #1CC88A;
}
.row .col-md-3:nth-child(3) .box {
  border-left: 6px solid #36B9CC;
}
.row .col-md-3:nth-child(4) .box {
  border-left: 6px solid #F6C23E;
}

.row .col-md-3:nth-child(1) .box h6{
  color: #4E73DF;
}
.row .col-md-3:nth-child(2) .box h6{
  color: #1CC88A;
}
.row .col-md-3:nth-child(3) .box h6{
  color: #36B9CC;
}
.row .col-md-3:nth-child(4) .box h6{
  color: #F6C23E;
}

.foot{
  height: 40px;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  position: fixed;
  bottom: 0;
  z-index: 10;
  color: #000;
  line-height: 40px;
  margin-left: -5%;
}

.logo_img img {
  height: auto;
  width: 66px;
  padding-top: 11px;
  margin-left: 32px;
}

.chart-side{
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.chart-box{
  padding-left: 20px;
}

.table-data {
  padding: 30px;
}
.add-link {
  height: 40px;
  background-color: #005aa7;
  border: none;
  color: #fff;
  border-radius: 5px;
}
.add-link a{
  color: #fff;
  text-decoration: none;
}
.btn-right{
  display: flex;
  justify-content: right;
}
.link-top {
  padding-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 20px;
}
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse:collapse;
  border-spacing: 0;
  border: 1px solid #b1b1b1;
}
.link-top .btn-primary{
  margin-top: 31px !important;
  background-color: #009cd0 !important;
  border: transparent !important;
}
.table-data table i{
padding: 5px;
margin: 3px;
background-color: #eee;
border-radius: 50%;
} 

.table-data table .fa-eye{
  color: #bb0ce7;
}

.table-data table .fa-check{
  color: #00aa39;
}
.table-data table .fa-xmark{
  color: #ff0000;
}
.table-data table .fa-pencil{
  color: #213294;
}

.mt-20
{
	margin-top:20px!important;
}

.data-tabnav .nav-link {
  background: #4c71dd;
  margin: 0 2px;
  margin-bottom: 0px;
  color: #fff;
}
table.dataTable thead th, table.dataTable thead td {
  font-weight: 600!important;
}
table.dataTable tbody th, table.dataTable tbody td {
  padding: 5px 10px!important;
}
.report-btn {
  padding: 2px 8px!important;
}




.wrapper {
     width: 650px;
     background: #fff;
     border-radius: 10px;
	 border: 1px solid #ccc;
	 margin-bottom:20px;
  
}
 .wrapper header {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     padding: 3px 30px 5px;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     background:#0233c5;
     border-radius: 10px 10px 0 0;
	   color:#fff;
}
 header .icons {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
}
 header .icons span {
     height: 25px;
  width: 25px;
  margin:0px 10px;
  cursor: pointer;
  color: #0e0e0e;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 50%;
  background: #fff;
  padding: 0px;
}
 .icons span:last-child {
     margin-right: -10px;
}
 header .icons span:hover {
     background: #f2f2f2;
}
 header .current-date {
     font-size: 1.45rem;
     font-weight: 500;
	 margin-bottom: 0;
}
 .calendar {
     padding: 10px 20px;
}
 .calendar ul {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     list-style: none;
     text-align: center;
}
 .calendar .days {
     margin-bottom: 20px;
}
 .calendar li {
     color: #333;
     width: calc(100% / 7);
     font-size:14px;
}
 .calendar .weeks li {
     font-weight: 500;
     cursor: default;
}
 .calendar .days li {
     z-index: 1;
     cursor: pointer;
     position: relative;
     margin-top: 20px;
}
 .days li.inactive {
     color: #aaa;
}
 .days li.active {
     color: #fff;
}
 .days li::before {
     position: absolute;
     content: "";
     left: 50%;
     top: 50%;
     height: 40px;
     width: 40px;
     z-index: -1;
     border-radius: 50%;
     -webkit-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
}
 .days li.active::before {
     background: #4C71DD;
}
 .days li:not(.active):hover::before {
     background: #f2f2f2;
}
.tacbox {
  margin: 40px 0!important;
}

.btn-submit button {
  display: block;
  text-align: center;
  margin: 0 auto;
  background-color: #005AA7;
  color: #fff;
  padding: 10px;
  border: none;
}

table.dataTable thead th, table.dataTable thead td {
  padding: 10px 11px !important;
}
.fa-pen{
  color: #1e90ff;
  font-size: 14px;
}
.btn-right .add-user{
  padding: 7px 10px;
  background-color: #005AA7;
  color: #fff;
  border-radius: 5px;
  margin: 0 5px;
}
.btn-right a{
  color: #fff;
  text-decoration: none;
}
.add-user i{
  padding-right: 5px;
}
.fa-arrow-left-long{
  padding-left: 10px;
}

.add-user-submit {
  height: 40px;
  width: 80px;
  background-color: #005AA7; 
  border: none;
  color: #fff; 
  border-radius: 5px;
  font-size: 16px; 
  cursor: pointer; 
  transition: background-color 0.3s ease;
}

.add-user-submit:hover {
  background-color: #005AA7;
}

.add-submit-btn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
#lang .options a:hover{
  background-color: #005AA7;
  color: #fff;
}
.dropdown-icon{
  font-size: 14px !important;
}
.nav-tabs .nav-link:hover {
  color: #fff;
}
.box-icon i{
  font-size: 35px;
  margin-top: 34px;
  color:#0e35a9;
  opacity: 0.5;
}
/* Highlighted style for selected dates */
.selected-date {
  background-color: #cecbcb; /* Light Pink background */
  color: #ffffff; /* White text for better contrast */
  font-weight: bold; /* Emphasize the selected date */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
  transform: scale(1.1); /* Slight zoom effect for emphasis */
  transition: all 0.2s ease; /* Smooth transition for changes */
}
.submit-btn button{
  margin-top: 32px;
}

/*----------Rajesh------------*/
a {text-decoration: none !important;}

.ng-invalid.ng-touched.form-control,
.ng-invalid.ng-touched.form-select,
.ng-invalid.ng-touched.form-check,
.ng-invalid.ng-touched.form-check.custom-checkbox,
.ng-invalid.ng-touched.form-select[multiple],
.ng-invalid.ng-touched.form-control[readonly],
.ng-invalid.ng-touched.form-select[readonly] {
  border-color: #dc3545 !important;
  box-shadow: inset 0 0 4px rgba(220, 53, 69, 0.75) !important;
  border-width: 1px !important;
}
.ng-invalid.ng-touched.form-editor > .angular-editor > .angular-editor-wrapper > .angular-editor-textarea {
  border: 1px solid #dc3545 !important;
  border-color: #dc3545 !important;
  box-shadow: inset 0 0 4px rgba(220, 53, 69, 0.75) !important;
  border-width: 1px !important;
  border-radius: 4px 4px 4px 4px !important;
}
.form-check-input[type="checkbox"].ng-invalid.ng-touched,
.form-check-input.ng-invalid.ng-touched {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
  border-width: 1px !important;
}
.form-check-input[type="checkbox"].ng-invalid.ng-touched ~ .form-check-label
{
  color: #dc3545 !important; 
}
.form-control[readonly],
.form-select[readonly] {
  background-color: #e9eaec;
  cursor: not-allowed !important;
}

/* Style entire input group as invalid */
.input-group.ng-invalid.ng-touched {
  border-color: #dc3545 !important;
  border-radius: 0.375rem;
  box-shadow: inset 0 0 4px rgba(220, 53, 69, 0.75) !important;
}

/* Optional: style inner elements if needed */
.input-group.ng-invalid.ng-touched .form-control,
.input-group.ng-invalid.ng-touched .input-group-text {
  border-color: #dc3545 !important;
}

/*----------Rajesh------------*/
.modal.show .modal-dialog {
  transform: none;
  z-index: 100000 !important;
}
.modal-backdrop.show {
  opacity: .2 !important; 
  z-index: 1 !important; 
}
.toggle-button {
  background: url(../images/moon.png) no-repeat center;
}

.toggle-button:checked {
  background: url(../images/sun.png) no-repeat center;
}
.loginbg-hm:before {
    background: url(../images/about-right-bg.png) no-repeat Center;
}

/* .about_page:before { */
  /* background: #16adcb url(../images/log-sec-bg.png) no-repeat; */
/* } */
.about_page h4 {
    color: #f9851e;
}

.about_page p {
  text-align:justify;
}

.sidenav {
  background: #077794 url(../images/sidebg.png) no-repeat bottom;
}

.innerhead {
  background: #acd7db url(../images/innerheadbg.png) no-repeat right;
}

.page-container {
    display: flex;
    margin-bottom: 80px;
    width: 100% !important;
}
.shifted .right-panel-content {
  position: relative;
  padding-left:30px;
}

.right-panel-content p {
  text-align: justify;
  line-height: 27px;
}

.right-panel-content h3 {
  color: #ffffff;
  background: #5b7ee5;
  display: inline-block;
  margin-top: 10px;
  font-size: 22px;
  padding: 5px;
}

.address-sec h4 {
  padding-bottom: 5px;
  font-size: 20px;
}

.address-sec i {
  height: 35px;
  width: 35px;
  background: #066380;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
}





/*****************chat--section**************/

.chat-box {
  height: 60%;
  width: 17%;
  position: fixed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 10000;
  box-shadow: 0 0 10px #5d7ee7 ;
  right: -7px;
  bottom: -1%;
  margin: 15px;
  background: #fff;
  border-radius: 5px;
  font-size: 13px;
  visibility: hidden;
}

.chat-box h5 {
  font-size: 14px;
  font-weight: 400;
}

.chat-box p {
  font-size: 12px !important;
  line-height: 17px;
  width: 98%;
}

.img-sec {
  width: 15%;
  margin-right: 3% !important;
}

.img-sec-tw {
  width: 15%;
  margin-left: 3% !important;
}

.chat-receive-text ul li p {
  padding: 4px 10px;
  margin: 0;
  border: 1px solid #c57312;
  border-radius: 20px;
  color: #511607;
}

.chat-box-header h3 {
  font-weight: 400;
  float: left;
  position: absolute;
  padding: 10px;
  background: #5d7ee7 ;
  color: #fff;
  font-size: 20px;
  width: 100%;
}

.chat-box-header p {
  float: right;
  position: absolute;
  right: 5px;
  cursor: pointer;
  height: 30px;
  width: 30px;
  line-height: 29px;
  margin: 0;
  color: #fff;
  border-radius: 50%;
  top: 7px;
  border: 1px solid #fff;
  text-align: center !important;
}

.chat-box-header i {
  color: #f8f9fa;
}

.chat-box-body {
  height: 100%;
  background: #fff;
  overflow-y: scroll;
  padding: 20px 10px;
  margin-top: 20%;
  overflow-x: hidden;
}

.chat-box-body-receive {
  margin-bottom: 5%;
  display: flex;
}

.chat-box-body-receive2 {
  margin-bottom: 5%;
  display: flex;
}


.chat-box-body-send {
  margin-top: 1%;
  display: flex;
}

.chat-box img {
  height: 35px;
  width: 35px;
  background: #fff;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid #c57414;
}

.chat-receive-text {
  background: #ffdc9926;
  padding: 10px;
  margin-top: 0;
  border: 1px solid #ecb36f33;
  border-radius: 10px;
  width: 85%;

}

.chat-receive-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.chat-receive-text ul li {
  padding: 2px;
}

.full-text {
  text-align: justify !important;
  padding: 15px 10px;
}

.chat-receive-text ul li p {
  padding: 4px 10px;
  margin: 0;
  border: 1px solid #c57312;
  border-radius: 20px;
  color: #511607;
  text-align: center !important;
}


.chat-box-footer input {
  padding: 8px 15px;
  border: none;
  -webkit-appearance: none;
  border-radius: 5px;
  background:#e0e7fb ;
  margin: 30px 8px;
  font-weight: 600;
  color: #333 !important;
  width: 80%;
  font-size: 12px;
}

.chat-box-footer input :focus-visible {
  padding: 8px 15px;
  border: none;
  -webkit-appearance: none;
  border-radius: 5px;
  background:#e0e7fb ;
  margin: 30px 8px;
  font-weight: 600;
  color: #333 !important;
  width: 80%;
  font-size: 12px;
}



.chat-box-footer .send {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 35px;
  width: 35px;
  color: #5d7ee7 ;
  text-align: center;
  border-radius: 50%;
  position: relative;
  border: 1px solid #5d7ee7 ;
}

.chat-send-text {
  background: transparent;
  padding: 10px;
  margin-top: 0;
  border: 1px solid #ecb36f33;
  border-radius: 10px;
  width: 85%;
  margin-bottom: 5%;
}

.chat-button {
  position: fixed;
  bottom: 20px;
  right: -10px;
  margin: 15px;
  z-index: 100;
  
}

.chat-button img {
  cursor: pointer;
  height: 60px;
  background: #fff;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid #a11015;
   box-shadow: 0 2.1px 1.3px rgba(0, 0, 0, 0.044), 0 5.9px 4.2px rgba(0, 0, 0, 0.054), 0 12.6px 9.5px rgba(0, 0, 0, 0.061), 0 25px 20px rgba(0, 0, 0, 0.1);
}

.hidden {
  display: none;
}

.morebtn
{
  cursor: pointer;
  font-weight: bold;
  width: 200px;
  display: flex;
    justify-content: center;
  padding: 10px;
   margin: 0 auto;
}


.chat-receive-text ul {
  list-style: none;
}

.chat-receive-text ul li {
  padding: 2px;
}

.sd-toggle {
  border: none !important;
  height:50px;
  background:transparent;
}

.sd-toggle i {
    border: 1px solid #cecece !important;
    color: #000000 !important;
    position: relative;
    left: 0;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}



#main {
    padding-right: 0px;
	width:100%;
	background:url(../../assets/images/opc-logo-bg.png) no-repeat;
	background-attachment: fixed;
    background-position: 50% 65%;
}

/* #main:before {
    position: absolute;
    content: "";
    padding-right: 0px;
    width: 100%;
    background: url(../../../../../../../assets/images/opc-logo-bg.png) no-repeat right bottom;
    height: 100%;
    right: 0;
    opacity: .4;
    bottom: 10%;
} */

.shifted {
    padding-right: 120px!important;
}

.innerpage-img {
    height: 350px;
    float: left;
    width: 30%!important;
    margin: 0 2% 1% 0;
    object-fit: contain;
}

.not-found {
    text-align: center;
    height: 40vh;
}

.not-found h2 {
   padding-top:50px;
   color: #c70b0b;
}

.chat-box-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.minister-row {
  display: flex;
  justify-content: center;
}

.home-gal {
  height: 325px;
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date
 {
    text-align: left!important;
}



.header-section h4 {
  padding-top: 20px;
  color: #ffffff;
}

.header-section h6 {
  color: #ccc;
}


.slider {
  width: 100%;
  position: relative;
  background: #e7e7e7;
  padding: 40px 0 20px 0;
}

.slideprev {
  position: absolute !important;
  top: 465px !important;
  z-index: 1 !important;
  background: transparent !important;
  border: 0 !important;
  color: #000000 !important;
  left: 55% !important;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}


.slidenext {
  position: absolute !important;
  top: 465px !important;
  z-index: 1 !important;
  background: transparent !important;
  border: 0 !important;
  color: #000000 !important;
  left: 65% !important;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}

.slider-box {
  margin: 70px 0 0 0;
  background: transparent;
  width: 100%;
  position: relative;
}

.slider-box:before {
  position: absolute;
  content: "";
  background: #1e9bb7;
  width: 40%;
  height: 100%;
  bottom: 0;
}

.slider:before {
  width: 35%;
height: 100%;
position: absolute;
top: 0;
right: 0;
content: "";
background:#1e9bb7;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
}


.slider-data h3
 {
    font-size: 40px;
    font-weight: 800;
    color: #276ec8;
}
.minister-sec {
  position: relative;
  z-index: 1;
  padding-top: 45px;
}

.minister-bx {
  display: flex!important;
  justify-content: center;
  align-items: center;
}

.minister-data {
  text-align: center;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  width: 48%!important;
  margin: 1%;
  position: relative;
  overflow: hidden;
  min-height: 218px;
}


.minister-data:before {
  position: absolute;
  background: #276ec8;
  content: "";
  height: 9px;
  width: 100%;
  left: 0px;
  bottom: 0px;
  z-index: 0;
  box-shadow: -1px 3px 8px #7e7e7e;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.minister-name h4 {
  font-size: 20px;
}

.minister-name h6 {
  font-size: 15px;
  font-weight: 400;
}

.blue-bar:before {
  background: #1650b8;
}

.orange-bar:before {
  background: #f9851e;
}

.green-bar:before {
  background: #62c3c4;
}


.about_page {
  padding:0;
  background: #fff;
  position: relative;
}

.about_page:before {
  padding: 30px 0;
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  height: 100%;
  opacity: .4;
  background: url(../../assets/images/bg.jpg) repeat center;
}



.about-data {
  padding:80px 0 20px 0;
  position:relative;
}
.about-data h6 {
    font-size: 18px;
}

.divider-bg {
  position: absolute;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0 0v60c9 0 18-3 25-10 13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s37 13 50 0c14-14 37-14 50 0 7 7 16 10 25 10V0H0Z" fill="%23FFFFFF"></path></svg>');
  width: 100%;
  height:28px;
  transform: rotate(180deg);
  z-index: 1;
  margin-top: -28px;
}

.divider-bg-two {
  position: absolute;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0 0v60c9 0 18-3 25-10 13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s36 14 50 0c13-14 36-14 50 0s37 13 50 0c14-14 37-14 50 0 7 7 16 10 25 10V0H0Z" fill="%23FFFFFF"></path></svg>');
  width: 100%;
  height: 28px;
  transform: rotate(360deg);
  z-index: 1;
  margin-top: -1px;
}

.notifications {
 /* background:#eeeeee url(../../../../assets/images/banner-bg.png) no-repeat; */
 background: #f5ac25;
background: linear-gradient(180deg, rgba(245, 172, 37, 0.65) 0%, rgba(54, 150, 209, 0.66) 100%);
  position: relative;
  background-position: 100% 100%;
}

 .notifications:before {
	position:absolute;
	content:"";
	/* background:url(../../../../assets/images/banner-bg.png) no-repeat;	 *//*Local*/
	background:url(../../assets/images/banner-bg.png) no-repeat;	/*Live*/
	height: 100%;
    width: 100%;
    bottom: 0;
} 

.about-divider {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

 
.import-content {
 border-left: 1px solid #cbcbcb;
  border-right: 1px solid #cbcbcb;
   border-bottom: 1px solid #cbcbcb;
    border-top: 4px solid #0e778f;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  min-height: 425px;
  overflow: hidden;
  background: #fff url(../../../../assets/images/medicine.png) no-repeat right bottom;
  box-shadow: 0px -23px 35px #0b0b0b1c;
  padding: 20px 0;
}

.import .nav-link {
  background:#aca9a9  !important;
}

.import .nav-tabs .nav-link.active {
  background: #1e9bb7 !important;
  color: #fff !important;
}
.import ul li a {
  color: #000;
  text-decoration: none;
}

.import a {
  text-decoration: none;
}

.import h3 {
    margin: 0;
    font-size:18px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    transition: color 0.3s ease;
    width: 100%;
    padding: 10px;
    background: #0c8daa;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.date-box {
  display: flex;
  width: 90%;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 12px;
}

.prdate {
  background: #577de1;
  color: #ffffff;
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 20px;
}

.prmy {
  width: 60%;
  color: #fff;
  background: #1e9bb7;
  text-align: center;
  border-bottom-right-radius: 20px;
  padding: 2px;
   display: flex;
    justify-content: center;
    align-items: center;
}

/* .readmore {
  position: absolute;
  bottom: 30px;
  color: #fff !important;
  left: 32%;
  padding: 4px 8px;
}

.arrow {
  color: #fff;
  background-color: #1e9bb7;
  margin: 1em 0;
  border-radius: 20px;
}

.arrow::after {
  display: inline-block;
  padding-left: 8px;
  content: "➞";
  transition: transform 0.3s ease-out;
}

.arrow:hover {
  color: #fff;
  background-color: #043f4c;
}

.arrow:hover::after {
  transform: translateX(4px);
}
 */
.gallery img {
    height: 310px;
    margin-bottom: 10px;
    border: 3px solid #787373;
    width: 99%;
}

.important-links {
    position: relative;
    background: #fff;
}


footer {
    background: #307abc url(../../../assets/images/footerbg.png) !important;
    color: #ecf0f1;
    padding-top: 40px;
    background-blend-mode: multiply;
}

.footer-logo-sec
{
	position:relative;
	text-align: center;
	top: -50px;
}


.footer-logo-sec:before {
   position: absolute;
    content: "";
    width: 100%;
    left: 0;
    background: #307abc;
    height: 30%;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    top: -40px;
}

.copy-right {
    background-color: #0c7d97;
    padding: 15px 0;
    margin-top: 20px;
}

.copy-right p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.fabTrigger {
    position: fixed;
    bottom:110px;
    right: 4px;
    background: #007bff;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1002;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2.1px 1.3px rgba(0, 0, 0, 0.044), 0 5.9px 4.2px rgba(0, 0, 0, 0.054), 0 12.6px 9.5px rgba(0, 0, 0, 0.061), 0 25px 20px rgba(0, 0, 0, 0.1);
}


.toolbar-contact {
  padding: 1px 0 0;
  position: fixed;
  z-index: 1000;
  bottom:195px;
  text-align: center;
  right: 11px;
					   
								   
}

.toolbar-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


.toolbar-contact ul li:nth-child(1) {  
   animation-delay:0.8s;
}
.toolbar-contact ul li:nth-child(2) {
  animation-delay: 0.7s;
}
.toolbar-contact ul li:nth-child(3) {
  animation-delay: 0.6s;
}
.toolbar-contact ul li:nth-child(4) {
  animation-delay: 0.5s;
}

.toolbar-contact ul li:nth-child(5) {
  animation-delay: 0.4s;
}
.toolbar-contact ul li:nth-child(6) {
  animation-delay:0.3s;
}
.toolbar-contact ul li:nth-child(7) {
  animation-delay:0.2s;
}
.toolbar-contact ul li:nth-child(8) {
  animation-delay:0.1s;
}
.toolbar-contact ul li:nth-child(9) {
  animation-delay: 0s;
}

/* Add more nth-child rules if needed */

@keyframes slideIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.last {
  display: block;
  color: #e0dddd;
  padding: 5px 0;
  margin: 3px;
  transition: 0.6s;
  width: 40px;
  height: 40px;
  border-bottom: 0 !important;
}


.tollbarfont {
  padding: 7px 0;
}

.toolbar-contact ul li a:hover {
  padding: 5px 0px;
  transition: 0.5s;
  margin-left: 5px;
}

.toolbar-contact ul li i {
  font-weight: 600;
  color: #ffffff;
}

.toolbar-sl-share {
  margin-right: 7%;
}

.toolbar-sl-share ul {
  text-align: right;
  margin-bottom: 0 !important;
}

.toolbar-sl-share ul li {
  display: inline-block;
  padding: 5px;
  color: #e0dddd;
}


.toolbar-contact img {
  height: 25px;
  padding: 3px;
}

.toggle-button {
  -webkit-appearance: none;
  outline: none;
  width: 25px;
  height: 25px;
  position: relative;
  transition: 0.4s;
  background-size: 20px;
  cursor: pointer;
}

.toggle-button:checked {
  background-size: 20px;
}

.lang-toggle-button {
  -webkit-appearance: none;
  outline: none;
  width: 25px;
  height: 25px;
  position: relative;
  transition: 0.4s;
  content: "E";
  background-size: 20px;
  cursor: pointer;
}

.lang-toggle-button:checked {
  content: "o";
  background-size: 20px;
}

.toolbar-contact ul li {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 5px;
    width: 40px;
    height: 40px;
    background: #427ccd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	 transform: translateY(40px);
	  opacity: 0;
  animation: slideIn 0.3s ease forwards;
}

.toolbar-contact ul li a {
  color: #fff;
  text-decoration: none;
}

.foot-img p {
    font-size:16px;
    color: #fff;
    margin: 0;
}

.footlinks ul li a {
    color: #ecf0f1!important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.innercontent {
    background: #fff;
}

.button-container {
  margin: 60px auto 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position:absolute;
  bottom:65px;
  left:32%;
}

.rdbutton {
  position: relative;
  color: white;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
  border: 1px solid white;
  border-radius: 1000px;
  padding: 5px 15px;
  box-shadow: 0 2px 5px 0 rgba(3, 6, 26, 0.15);
  transition: 0.5s all ease-in-out;
  background: #577de1;
}
.rdbutton:hover {
  cursor: pointer;
  background: #1e9bb7;
  color: #fff;
  -webkit-animation: none;
          animation: none;
}

.rdbutton-wiggle {
  -webkit-animation: wiggle 4s 2s infinite;
          animation: wiggle 4s 2s infinite;
}

.morebutton-container {
    width: 100%;
    text-align: center;
}

@-webkit-keyframes wiggle {
  5%, 50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}

@keyframes wiggle {
  5%, 50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}


.footlinks h3,
.foot-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    padding-bottom: 5px;
}

table > thead > tr > th
 {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	background:#ccc!important;
	background: #87c7d7 !important;
}

.loadmodal-close {
   position: absolute;
    right: -50px;
    top: -30px;
    background: #fff8f800;
    border: none;
    color: #fff;
    font-size: 30px;
}

#onload .modal-dialog {
    max-width: 700px!important;
}

.load-slider img {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover;
}

.login-img
{
	width:100%;
}
#wrapper{
  min-height: 50vh;
}

.import-content .tab-content>.active {
    display: block;
    height: 350px;
}

.imp-links-slider {
  overflow: hidden; /* Ensure logos stay inside the container */
}

.imp-links-slider .slick-slide img {
  width: 100%; /* Make the logos responsive */
  height: auto; /* Maintain aspect ratio */
}

.serch-contain h4 {
    font-size: 17px;
    font-weight: 600;
    color: #307abc;
}