/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
:root {
  --white-color: #fff;
  --blue-color: #4070f4;
  --grey-color: #707070;
  --grey-color-light: #aaa;
}
body {
  background-color: #fff;
  transition: all 0.5s ease;
}
body.dark {
  background-color: #333;
}
body.dark {
  --white-color: #333;
  --blue-color: #fff;
  --grey-color: #f2f2f2;
  --grey-color-light: #aaa;
}
.fontroboto {
  font-family: "Poppins", sans-serif;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-500 {
  font-weight: 500;
}

/* navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 29px 0px 0px;
  z-index: 1000;
  box-shadow: 0 0 1px var(--grey-color-light);
}
.logo_item {
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: 22px;
  font-weight: 500;
  color: var(--blue-color);
}
.navbar img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
}
.search_bar {
  height: 43px;
  max-width: 430px;
  width: 100%;
}
.search_bar input {
  height: 100%;
  width: 100%;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  background-color: var(--white-color);
  color: var(--grey-color);
  border: 1px solid #e6e6e6;
  padding: 0 20px;
}
.navbar_content {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.navbar_content i {
  cursor: pointer;
  font-size: 20px;
  color: var(--grey-color);
}

/* sidebar */
.sidebar {
  background: #f6f7f9;
  width: 290px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 85px 12px 15px 12px;
  z-index: 100;
  overflow-y: scroll;
  box-shadow: 0 0 1px var(--grey-color-light);
  transition: all 0.5s ease;
}
.sidebar.close {
  padding: 60px 0;
  width: 80px;
}
.sidebar::-webkit-scrollbar {
  display: none;
}
.menu_content {
  position: relative;
}
.menu_title {
  margin: 15px 0;
  padding: 0 20px;
  font-size: 16px;
}
.sidebar.close .menu_title {
  padding: 6px 30px;
}
.menu_title::before {
  color: var(--grey-color);
  white-space: nowrap;
}
.menu_dahsboard::before {
  content: "Dashboard";
}
.menu_editor::before {
  content: "Editor";
}
.menu_setting::before {
  content: "Setting";
}
.sidebar.close .menu_title::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 18px;
  border-radius: 12px;
  background: var(--grey-color-light);
}
.menu_items {
  padding: 0;
  list-style: none;
}

.navlinkarrow{
  font-size: 24px;
  /* color: #000; */
}
.navlink_icon {
  position: relative;
  font-size: 22px;
  min-width: 50px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 6px;
}
.navlink_icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: calc(100% + 100px);
  left: -20px;
}
.navlink_icon:hover {
  background: var(--blue-color);
}

.sidebar .nav_link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 4px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  /* color: var(--grey-color); */
  white-space: nowrap;
  font-size: 16px;
}
.sidebar.close .navlink {
  display: none;
}
.nav_link:hover {
  color: var(--white-color) !important;
  background: #0130cb !important;
}
.nav_link:active {
  color: var(--white-color) !important;
  background: #0130cb !important;
}

.sidebar.close .nav_link:hover {
  background: var(--white-color);
}
.submenu_item {
  cursor: pointer;
}
.submenu {
  display: none;
}
.submenu_item .arrow-left {
  position: absolute;
  right: 10px;
  display: inline-block;
  margin-right: auto;
}
.sidebar.close .submenu {
  display: none;
}
.show_submenu ~ .submenu {
  display: block;
}
.show_submenu .arrow-left {
  transform: rotate(90deg);
}
.submenu .sublink {
  padding: 4px 12px 4px 30px;
  font-size: 13.5px;
}
.bottom_content {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 280px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.bottom {
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  justify-content: space-around;
  padding: 18px 0;
  text-align: center;
  width: 100%;
  color: var(--grey-color);
  border-top: 1px solid var(--grey-color-light);
  background-color: var(--white-color);
}
.bottom i {
  font-size: 20px;
}
.bottom span {
  font-size: 18px;
}
.sidebar.close .bottom_content {
  width: 50px;
  left: 15px;
}
.sidebar.close .bottom span {
  display: none;
}
.sidebar.hoverable .collapse_sidebar {
  display: none;
}
#sidebarOpen {
  display: none;
}

.nav_link.sublink :after {
  background-color: #0130cb;
  color: #fff;
  padding-top: 4px;
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .sidebar {
    top: 0rem;
  }
  #sidebarOpen {
    font-size: 25px;
    display: block;
    margin-right: 10px;
    cursor: pointer;
    color: var(--grey-color);
  }
  .sidebar.close {
    left: -100%;
  }
  .search_bar {
    display: none;
  }
  .sidebar.close .bottom_content {
    left: -100%;
  }
  /* .bottamvideoafter {
    bottom: 170px !important;
  } */
 
}

.sidebar-content {
  width: calc(100% - 290px);
  margin-left: 290px;
  margin-top: 4rem;
  
}
.theme1 {
  color: #0026a2;
  font-weight: 500;
  font-size: 23px;
  text-decoration: underline;
}
p {
  font-size: 15px;
  line-height: 1.8em;
  color: #000;
  margin: 8px 0;
  -webkit-font-smoothing: antialiased;
}
.f25 {
  font-size: 24px;
}
.div1 {
  width: 280px;
  padding: 15px 0px 15px 0px;
}
.div2 {
  width: calc(100% - 280px);
  display: flex;
  justify-content: space-between;
  /* background-color: #fff; */
  padding: 8px 11px 9px 70px;
}
li {
  line-height: 30px !important;
  font-size: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  li {
    line-height: 30px;
    font-size: 15px;
  }
  /* .bottamvideoafter {
    bottom: 170px !important;
  } */

 
}
@media screen and (min-width: 1200px) and (max-width: 1480px) {
  .bottamvideoafter {
    position: relative;
    bottom: 145px !important;
    height: 200px;
    background-color: #fff;
  }


}


/* @media screen and (min-width: 1150px) and (max-width: 1250px) {
  .sidebar-content {
    width: calc(100% - 240px);
    margin-left: 280px;
    margin-top: 5rem;
    padding: 15px 20px 20px 20px;
}
} */
@media screen and (max-width: 768px) {
  .sidebar-content {
    width: 100%;
    margin-left: 0;
   
    margin-top: 5rem;
  }
  .div1 {
    width: 100%;
    background-color: #fff;
    padding: 15px 0px 15px 0px;
  }
  .div2 {
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
    width: calc(100% - 200px)!important;
    padding: 8px 10px 9px 10px!important;
  }
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 0px 0px;
    z-index: 1000;
    box-shadow: 0 0 1px var(--grey-color-light);
  }
  .logo_item i {
    padding-left: 15px;
  }
  iframe{
    width: -webkit-fill-available;

  }
  .changetoggle {
    padding: 6px 4px 7px 4px !important;
    border-radius: 4px !important;
    width: fit-content;
}
.tab.active a{
  border-color: #FFF;
  background-color: #FFF;
  color: #0130cb;
}

.tab a{
  cursor: pointer;
  font-size: 14px !important;
  line-height: 16px !important;
  border-radius: 4px !important;
  padding: 5px 6px !important;

}




  /* .bottamvideoafter {
    bottom: 367px !important;
  } */
  /* .bottamvideoafter {
    bottom: 153px !important;
  } */
}
video {
  border-radius: 5px;
}
.nav_link.sublink.active {
  background-color: #0130cb !important;
  color: #fff !important;
  padding-top: 4px;
  padding-bottom: 4px;
}
.bottamvideoafter {
  position: relative;
  bottom: 187px !important;
  height: 200px;
  background-color: #fff;
}
.bottamvideobefore {
  position: relative;
  bottom: -65px;
  height: 70px;
  background-color: #fff;
  /* transform: translate(10px, 114px); */
}
.steps {
  transform: translate(0px, -68px);
}
/* .breadcrumb-item:active{
   color: #000;
   font-weight: 800;
} */
.item3{
  color: #000;
  font-size: 14px;
  font-weight: 500;

}

.bitems{
  color: #8C8C8C;
  font-size: 14px;
  font-weight: 400;
 
}

.opdadmin{
  font-size: 14px;
  font-weight: 500;
}
.subtext{
font-size: 12px;
font-weight: 600;
}


/* 
.active  .fa-angle-right{
  transform: rotate(270deg) !important;
} */

@media only screen and (min-width: 321px) and (max-width: 350px){
  .bottamvideoafter {
      bottom: 330px !important;
  }
  }
@media only screen and (min-width: 351px) and (max-width: 385px) {
  .bottamvideoafter {
    bottom: 345px !important;
  }
}
@media only screen and (min-width: 385px) and (max-width: 400px) {
  .bottamvideoafter {
    bottom: 333px !important;
  }
}
@media only screen and (min-width: 400px) and (max-width: 447px) {
  .bottamvideoafter {
    bottom: 325px !important;
  }
}
@media only screen and (min-width: 447px) and (max-width: 481px) {
  .bottamvideoafter {
    bottom: 304px !important;
  }
}

@media (min-width: 481px) and (max-width: 520px) {
  .bottamvideoafter {
    bottom: 288px !important;
  }
  
}
@media (min-width: 520px) and (max-width: 540px) {
  .bottamvideoafter {
    bottom: 268px !important;
  }
}
@media (min-width: 540px) and (max-width: 575px){
  .bottamvideoafter {
    bottom: 260px !important;
  }
}
@media (min-width: 575px) and (max-width: 620px){
  .bottamvideoafter {
    bottom: 241px !important;
  }
}
@media (min-width: 620px) and (max-width: 650px){
  .bottamvideoafter {
    bottom: 222px !important;
  }
}
@media (min-width: 650px) and (max-width: 690px){
  .bottamvideoafter {
    bottom: 200px !important;
  }
}
@media (min-width: 690px) and (max-width: 720px){
  .bottamvideoafter {
    bottom: 180px !important;
  }
}
@media (min-width: 720px) and (max-width: 745px){
  .bottamvideoafter {
    bottom: 170px !important;
  }
}
@media (min-width: 745px) and (max-width: 762px){
  .bottamvideoafter {
    bottom: 170px !important;
  }
}
@media (min-width: 762px) and (max-width: 768px){
  .bottamvideoafter {
    bottom: 168px !important;
  }
}
@media (min-width: 768px) and (max-width: 815px) {
  .bottamvideoafter {
    bottom: 284px !important;
  }
}
@media (min-width: 815px) and (max-width: 863px) {
  .bottamvideoafter {
    bottom: 288px !important;
  }
}
@media (min-width: 862px) and (max-width: 887px) {
  .bottamvideoafter {
    bottom: 245px !important;
  }
}
@media (min-width: 887px) and (max-width: 925px) {
  .bottamvideoafter {
    bottom: 226px !important;
  }
}
@media (min-width: 925px) and (max-width: 970px) {
  .bottamvideoafter {
    bottom: 218px !important;
  }
}
@media (min-width: 970px) and (max-width: 991px) {
  .bottamvideoafter {
    bottom: 185px !important;
  }
}
@media (min-width: 991px) and (max-width: 1041px) {
  .bottamvideoafter {
    bottom: 287px !important;
  }
}
@media (min-width: 1041px) and (max-width: 1109px) {
  .bottamvideoafter {
    bottom: 272px !important;
  }
}
@media (min-width: 1109px) and (max-width: 1185px) {
  .bottamvideoafter {
    bottom: 250px !important;

  }
}
@media (min-width: 1185px) and (max-width: 1265px) {
  .bottamvideoafter {
    bottom: 256px !important;
  }
}

.iframelink{
  color: #474040;
  font-size: 16px;
  font-weight: 600;


}
iframe {
  /* border: 0; */
  width: 100%;
}

.sublisttext{
margin-left: 12px;
}

.sublisttext1{
  padding-left: 20px;
  padding-right: 8px;

  }




 #sidebar, dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
 font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  list-style: none;
}




.sidebar-content .tab-content ol,
.sidebar-content .tab-content li {
  list-style: decimal inside !important;
}



#sidebar .nav {
  
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}



a {
  text-decoration: none;
}



.nav a,
.nav label {
  display: block;
  padding: .50rem;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all .25s ease-in;
  transition: all .25s ease-in;
  /* font-family: Noto Sans Telugu !important; */
  font-family: "Poppins", sans-seri !important;
}


.item-list a,
.item-list label {
  padding:0;
}

.item-list.show,
.sub-item-list.show,
.sub-sub-item-list.show {
    max-height: 1000px; /* Change to a suitable max height */
}

.item-list,
.sub-item-list,
.sub-sub-item-list {
 max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .5s ease-in-out;
  transition: max-height .5s ease-in-out;
}


label > span {
  float: right;
  
}

/* .toggle input[type=checkbox]:checked + label > span {
  transform: rotate(-180deg);
}
.rotate {
  transform: rotate(180deg);
} */
/* 
.toggle input[type="checkbox"]:not(:checked) + label > span {
  transform: rotate(-180deg);
} */


#sidebar a {
  padding: 3px 8px;
  text-decoration: none;
  font-size: 14px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

#sidebar .dropdown-btn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #000;
  font-weight: 500;
  padding: 9px 5px;
  background-color: inherit;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sideheading{
  /* color: #000 ; */
  font-size: 14px !important;
  font-weight: 600 !important;
}
#sidebar .dropdown-btn i {
  margin-left: 10px;
}

#sidebar .dropdown-container {
  display: none;
  /* padding-left: 15px; */
}

#sidebar .dropdown-container a {
  padding: 8px 9px;
  text-decoration: none;
  font-size: 14px;
  color: #818181;
  display: flex;
  align-items: center;
  transition: 0.3s;
  width: auto;
}

/* #sidebar .active {
  background-color: #4caf50;
  color: white;
} */

.rotate-icon {
  transition: transform 0.3s ease-in-out;
}

.rotate-icon-down {
  transform: rotate(0deg);
}

.rotate-icon-right {
  transform: rotate(180deg);
}


.telugu li a,
.telugu li label {
  font-family: Noto Sans Telugu !important;
}

.oaicon{
  font-size: 18px;
}

 a {
	text-decoration:none;
}
.dropdown-container a{
  margin-left: 15px;
}

.fontstyle,.fontstyle span{
    font-family: Noto Sans Telugu !important;
}
.liststyle{
  list-style: disc;
}
.translate{
  border: 2px solid #0130cb;
  padding: 0px 9px;
}
.translate:hover{
  border: 2px solid #0130cb;
  padding: 0px 9px;
}
.translate:active{
  border: 2px solid #0130cb !important;
  padding: 0px 9px;
}
.opdbigicon{
  font-size: 21px;
  font-weight: 500;
}
.opdheading{
    font-size: 18px !important;
    font-weight: 500 !important;
}




.textchangeicon{
    text-align: -webkit-right;
}

.tab a{
  cursor: pointer;
  font-weight: 500 !important;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.001em;
  padding: 5px 10px;
  font-weight: 400;
  border-bottom-color: white;
  margin-bottom: -1px;
  border-radius: 6px;
  color: #fff !important;
}


.changetoggle{
  display: flex;
  background-color: #0130cb;
  padding: 8px 4px;
  border-radius: 8px;
  width: fit-content;
}
.tab.active a{
  border-color: #FFF;
  background-color: #FFF;
  color: #0130cb !important;
}
.tab-content {
  display: none;
  padding: 10px;
}

.tab-content.active {
  display: block;
}
.viewbtn{
  background-color: #0130cb;
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  text-decoration: auto;
  display: block;
  text-align: center;
  width: -webkit-fill-available !important;
}

.out-line{
  border : 0.1px solid #98A2B3
}

/* .fa-angle-right{
   transform: rotate(90deg);
} */

.footerarea{
  background: #142035 !important;
  position: fixed;
  bottom: 0 !important;
  width: 100% !important;
}