
.loader {
  width: 150px;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.loader span {
  font-size: 20px;
  text-transform: uppercase;
  margin: auto;
  color: #fff;
} 
.loader .ball {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: lightblue;
  animation: wbounce .4s alternate infinite;
}
.loader .ball:nth-child(2) {
  animation-delay: .1s;
}
.loader .ball:nth-child(3) {
  animation-delay: .2s;
}
.loader .ball:nth-child(4) {
  animation-delay: .3s;
}
@keyframes wbounce {
  from {transform: scale(0)}
  to {transform: scale(1)}
}
@-webkit-keyframes wbounce {
  from {transform: scale(0)}
  to {transform: scale(1)}
}
/* The side navigation menu */

  .page-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200000;
  }
  .page-load.keep {
    display: none
  }
  .endpoint-tit {
    background-image: linear-gradient(135deg, #0250c5, #110555);
    cursor: pointer;
    padding: 10px;
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .endpoint {
    height: 0;
    overflow: hidden;
    transition: height .5s ease;
  }
  .endpoint.active {
    height: auto;
  }
   /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  
  .side-con {
    position: fixed;
    width: calc(100% - 60px);
    height: 100%;
    overflow-y: auto;
    left: 110%;
    top: 0;
    z-index: 30;
    padding: 20px;
    padding-top: 80px;
    background: #fff;
    margin-bottom: 40px;
    max-width: 100%;
    overflow-x: hidden;
    transition: all .5s ease;
  }
  
  .side-con.active {
    left: 60px;  
  }
  .opennav {
    display: none;
    font-size: 25px;
  }
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    display: none;
  }
  
  @media screen and (max-width: 650px) {
    
    
    .side-con {
      width:100%;
      padding-top: 70px!important;
    }
    .side-con.active {
      left: 0; 
      padding: 20px; 
    }
    .opennav, .sidenav .closebtn {
        display: block;
    }
  }
  .sidenav.active {
    width: 250px;
  }
  
  
  /* The navigation menu links */
  .sidenav a {
    padding: 10px 10px 10px 32px;
    text-decoration: none;
    font-size: 15px;
    display: block;
    transition: 0.3s;
    margin-bottom: 20px;
    margin-right: 20px;
    color: gray;
    margin-left: 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  .sidenav h3 {
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
    padding: 8px 10px 8px 35px;
    font-size: 22px;
  }
  .sidenav a:hover, .sidenav a.active {
    background: rgba(0, 140, 255, 0.1);
    color: #000;
  }
  .sidenav ul {
    padding-left: 20px;
    margin: 0;
    list-style-type: none;
  }
  .sidenav ul li {
    padding: 0;
    margin: 0;
  }
  .sidenav ul li a {
    font-size: 13px;
    padding: 5px 5px 5px 32px;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

.alert-note {
  display: none;
}
.side-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.notification {
    font-size: 25px;
}
.admin-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}
@media screen and (max-width:500px) {
    .admin-pro {display:none;}
}
@media screen and (min-width:700px) {
  #search {min-width: 300px;}
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion:after {
  content: '\2304';
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2303";
}
/* dashboard */
.dash-menu {
  margin-top: 20px;
}
.dash-menu > a, .dash-menu >  a > div {
  margin-bottom: 15px;
}
.dash-menu-con {
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  border: 1px solid rgba(8, 176, 243, 0.1);
}
.dash-it {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 5px 5px 0px;
}

.table {
  border: 1px solid rgba(8, 176, 243, 0.1);
  margin-top: 30px;
}
.table thead {
  background-image: linear-gradient(135deg, #0250c5, #110555);
  color: #fff;
}
.table tr {border:none}
.dash-table tr th:nth-child(1) {
  min-width: 270px !important;
}
.dash-table tr th:nth-child(2) {
  min-width: 150px !important;
}
.dash-table tr th:nth-child(3) {
  min-width: 150px !important;
}
.content-area {
  width: 100%;
  margin: 0 auto;
}

.box {
  background-color: #fff;
  padding: 25px 20px;

}

.shadow {
  box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
}
.sparkboxes .box {
  padding-top: 30px;
  padding-bottom: 30px;
  text-shadow: 0 1px 1px 1px #666;
  box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
  position: relative;
}


.sparkboxes strong {
  position: relative;
  z-index: 3;
  color: #fff;
}


.sparkboxes .box1 {
  border-bottom: 3px solid #734CEA
}

.sparkboxes .box2 {
  border-bottom: 3px solid #34bfa3
}

.sparkboxes .box3 {
  border-bottom: 3px solid #f4516c;
}

.sparkboxes .box4 {
  border-bottom: 3px solid #00c5dc;
}

.spinner-border {
  display: none;
}
/* company profile */
.comp-form label {
  font-weight: 700;
  font-size: 16px;
}
.comp-form input, .comp-form textarea, .comp-form select {
  padding: 20px !important;
  background: rgba(108, 185, 252, 0.05);
  font-size: 16px;
}
.comp-form select {color:#000}
textarea {resize:none;}
.form-btn {
  background-image: linear-gradient(135deg, #0250c5, #110555);
  color: #fff;
  border: none;
  font-size: 18px;
  border-radius: 15px;
  padding: 20px;
  width:80%;
  max-width: 500px;
  margin:auto;
}
/* subscription */
.sub-container{
  width: 100%;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 20px;
}

.sub-container .form-outer{
  width: 100%;
  overflow: hidden;
}
.sub-container .form-outer .sub-step{
  display: flex;
  width: 400%;
}
.form-outer .sub-step .page{
  width: 25%;
  transition: margin-left 0.3s ease-in-out;
}
.form-outer .sub-step .page .title{
  text-align: left;
  font-size: 25px;
  font-weight: 500;
}
.form-outer .sub-step .page .field{
  width: 100%;
  height: 45px;
  margin: 45px 0;
  display: flex;
  position: relative;
}
.sub-step .page .field button{
  
  border: none;
  background-image: linear-gradient(135deg, #0250c5, #110555);
  margin-top: -20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 400;
  margin-left: 5px;
  text-transform: uppercase;
  transition: 0.5s ease;
}
.sub-step .page .field button:hover{
  background: #3f66d3;
}
.sub-step .page .btns button{
  margin-top: -20px!important;
}
.sub-step .page .btns button.prev{
  margin-right: 3px;
  font-size: 15px;
}
.sub-step .page .btns button.next{
  margin-left: 3px;
}
.sub-container .sub-progress-bar{
  display: flex;
  margin: 40px 0;
  user-select: none;
}
.sub-container .sub-progress-bar .step{
  text-align: center;
  width: 100%;
  position: relative;
}
.sub-container .sub-progress-bar .step p{
  font-weight: 500;
  font-size: 20px;
  color: gray;
  margin-bottom: 8px;
}
.sub-progress-bar .step .bullet{
  height: 25px;
  width: 25px;
  border: none;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  background: #a0b5f0;
}
.sub-progress-bar .step .bullet.active{
  border-color: #3f66d3;
  background: #3f66d3;
}
.sub-progress-bar .step .bullet span{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sub-progress-bar .step .bullet.active span{
  display: none;
}
.sub-progress-bar .step .bullet:before,
.sub-progress-bar .step .bullet:after{
  position: absolute;
  content: '';
  bottom: 11px;
  right: -200px;
  height: 3px;
  width: 200px;
  background: #a0b5f0;
}
.sub-progress-bar .step .bullet.active:after{
  background: #3f66d3;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 0.3s linear forwards;
}
@keyframes animate {
  100%{
    transform: scaleX(1);
  }
}
.sub-progress-bar .step:last-child .bullet:before,
.sub-progress-bar .step:last-child .bullet:after{
  display: none;
}
.sub-progress-bar .step p.active{
  color: #3f66d3;
  transition: 0.2s linear;
}
.sub-progress-bar .step .check{
  position: absolute;
  left: 50%;
  top: 18%;
  font-size: 15px;
  transform: translate(-50%, -50%);
  display: none;
}
.sub-progress-bar .step .check.active{
  display: block;
  color: #fff;
}

/* slider tab */
.wrapper{
  width: 100%;
  margin: 10px auto;
  padding: 10px 0;
  border-radius: 5px;
  background: #fff;
}

.wrapper .tabs{
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.wrapper .tabs label{
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #17a2b8;
  font-size: 17px;
  font-weight: 700;
  border-radius: 5px;
  margin: 0 5px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 400px) {
  .wrapper .tabs label {
    font-size: 12px;
    text-align: center;
  }
}
.wrapper .tabs label:hover{
  color: #3f66d3;
}
#home:checked ~ .tabs label.home,
#blog:checked ~ .tabs label.blog,
#code:checked ~ .tabs label.code,
#help:checked ~ .tabs label.help,
  #about:checked ~ .tabs label.about{
  color: navy;
}
.tabs label i{
  padding-right: 7px;
}
.tabs .slider{
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  bottom: 0;
  z-index: 0;
  background: transparent;
  border-bottom: 5px solid navy;
  transition: all 0.3s ease;
}
.tabs .slider.b {
  width: 25%
}
input[type="radio"]{
  display: none;
}
#blog:checked ~ .tabs .slider{
  left: 50%;
}
#blog:checked ~ .tabs .slider.b{
  left: 25%;
}
#code:checked ~ .tabs .slider{
  left: 50%;
}
#help:checked ~ .tabs .slider{
  left: 75%;
}
section .content{
  display: none;
  background: #fff;
  padding-top: 30px;
  text-align: left;
}
#home:checked ~ section .content-1,
#blog:checked ~ section .content-2,
#code:checked ~ section .content-3,
#help:checked ~ section .content-4,
#about:checked ~ section .content-5{
  display: block;
}
section .content .title{
  font-size: 21px;
  font-weight: 500;
  margin: 30px 0 10px 0;
}
section .content p{
text-align: justify;
}
.feat-list {
  text-align:left;
  list-style-type: none;
  padding: 10px;
  padding-left: 20px;
}
.feat-list li {
  font-size: 12px;
  line-height: 2;
}
.w-hide {display:none!important}
.sub-table tr td {
  padding: 10px 5px;
  font-size: 15px;
}
.sub-table tr td:nth-child(1) {
  text-align: left;
  font-weight: bold;
}
.sub-table tr td:nth-child(2) {
  text-align: right;
  font-weight: normal;
}
.sub-receipt {
  width: 100%;
  position: relative;
  padding: 20px 15px !important;
  max-width: 600px;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.watermark {
  font-size: 25px;
  font-weight: 900;
  font-family: arial;
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(0,0,255,0.3);
  transform: translate(-50%, -50%) rotate(-40deg);

}
.stat-page {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.stat-c {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border-width: 30px;
  border-style: solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stat-c.rec {
  width: 100px;
  height: 100px;
  border-width: 15px;
}
.stat-c.success {
  background: green;
  border-color: rgba(0,255,0,0.6);
}
.stat-c.pending {
  background: rgb(255, 165, 0);
  border-color: rgba(190, 124, 2, 0.6);
}
.stat-c.failed {
  background: rgb(255, 0, 0);
  border-color: rgba(202, 3, 3, 0.6);
}
.stat-c i {
  color: white;
  font-size: 100px;
  font-weight: 900;
}
.stat-c.rec i {
  color: white;
  font-size: 50px;
  font-weight: 700;
}
.stat-c~.stat-stat {
  font-size: 50px;
  font-weight: 900;
}
.stat-c.rec~.stat-stat {
  font-size: 25px;
  font-weight: 700;
}
.stat-c.success~.stat-stat {color: green}
.stat-c.pending~.stat-stat {color: orange}
.stat-c.failed~.stat-stat {color: red}
/* organization */
.company_image {
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 2px;
  border: 1px solid lightblue;
  position: relative;
}
.company_image.g {
  border-radius: 0;
  width: 140px;
  height: auto;
}
.company_image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.company_image.g img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.comp-im, .image-input {
  position: fixed;
  top: -100000px;
}
.comp_image_in {
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: 15px !important;
  color: #fff;
  background: rgb(50, 136, 165);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 5px;
}
.a-disc {
  display:none;
}
/* Employees Page */
.emp-table tr th:nth-child(1),
.emp-table2 tr th:nth-child(1) {
  min-width: 220px;
  max-width: 100%;
}
.ord-table tr th:nth-child(2),
.usr-table tr th:nth-child(1),
.cou-table tr th:nth-child(2) {
  min-width: 200px;
}
.cart-table tr th:nth-child(1),
.cart-table tr th:nth-child(2) {
  min-width: 170px;
}
.cou-table tr th:nth-child(3),
.cat-table tr th:nth-child(1),
.cat-table tr th:nth-child(3),
.subcat-table tr th:nth-child(1),
.subcat-table tr th:nth-child(3),
.subcat-table tr th:nth-child(4),
.brand-table tr th:nth-child(1),
.brand-table tr th:nth-child(2),
.brand-table tr th:nth-child(3) {
  min-width: 150px;
}
.usr-table tr th:nth-child(7),
.emp-table2 tr th:nth-child(2) {
  min-width: 250px;
}
.cart-table tr th:nth-child(5) {
  min-width: 200px;
}
.cart-table tr th:nth-child(6),
.ord-table tr th:nth-child(7),
.emp-table2 tr th:nth-child(3){
  min-width: 100px;
}

.cat-table tr th:nth-child(2),
.subcat-table tr th:nth-child(2) {
  min-width: 120px;
}
.ord-summ-table tr th:nth-child(2) {
  min-width: 200px;
}
.ord-table tr th:nth-child(5) {
  min-width: 200px;
}
.cou-table tr th:nth-child(6),
.emp-table2 tr th:nth-child(4) {
  min-width: 250px;
}
.ord-table tr th:nth-child(6) {
  max-width: 100px !important;
}
.emp-table tr th:nth-child(2) {
  min-width: 90px !important;
}
.emp-table tr th:nth-child(3) {
  min-width: 90px !important;
}
.emp-table tr th:nth-child(4) {
  min-width: 70px !important;
}
.emp-table tr th:nth-child(5) {
  min-width: 100px !important;
}
.emp-table tr th:nth-child(6) {
  min-width: 200px !important;
}
/*
@media screen and (max-width:600px) {
  .emp-table tr th:nth-child(3) {display:none}
  .emp-table tr td:nth-child(3) {display:none}
  #emp_per_page {display:none;}
}
@media screen and (max-width:500px) {
  .emp-table tr th:nth-child(4) {display:none}
  .emp-table tr td:nth-child(4) {display:none}
  .sort-filter {display:none;}
}
@media screen and (max-width:400px) {
  .emp-table tr th:nth-child(2) {display:none}
  .emp-table tr td:nth-child(2) {display:none}
  .cat-filter {display:none;}
}
*/
.nav-tabs {
  border: none;
  display: flex !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 15px;
}
.nav-tabs .nav-item {
  width: 33%;
  text-align: center;
}
.nav-tabs .nav-item.trf {
  width: 50%;
}
.nav-tabs .nav-item.ap {
  width: fit-content;
}
.tab-pane {
  padding: 0;
  padding-top: 0px;
  width: 100% !important;
}
.user-table tr td:nth-child(1) {
  font-weight: bold;
  min-width: 150px;
}
.user-table tr td:nth-child(2) {
  text-align: left;
}
.nav-tabs .nav-link {
  white-space: nowrap;
  color: gray;
  transition: all .3s ease;
}
.nav-tabs .nav-link.active {
  color:#fff;
  background-image: linear-gradient(135deg, #0250c5, #110555);
  border-color:#80bdff;
  outline:0;
  box-shadow:0 0 0 .2rem rgba(0,123,255,.25)
}
.emp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.add_emp_btn {
  border: none;
  padding: 15px 20px;
  background-image: linear-gradient(135deg, #0250c5, #110555);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  margin-right: 20px;
}
.page_nos, .com_page_nos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_no, .com_page_no {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bolder;
  border: 1px solid rgb(15, 56, 83);
  color: rgb(15, 56, 83);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
}
.page_no:hover, .com_page_no:hover, .page_no.active, .com_page_no.active {
  background: rgb(15, 56, 83);
  color: #fff;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgb(54, 207, 253);
  justify-content: center;
  align-items: center;
  z-index: 600;
}
.preloader.keep {
  display: none
}
@-webkit-keyframes cube {
  0% {
    -webkit-transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
            transform: rotate(45deg) rotateX(-25deg) rotateY(25deg); }
  50% {
    -webkit-transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
            transform: rotate(45deg) rotateX(-385deg) rotateY(25deg); }
  100% {
    -webkit-transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
            transform: rotate(45deg) rotateX(-385deg) rotateY(385deg); } }
@keyframes cube {
  0% {
    -webkit-transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
            transform: rotate(45deg) rotateX(-25deg) rotateY(25deg); }
  50% {
    -webkit-transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
            transform: rotate(45deg) rotateX(-385deg) rotateY(25deg); }
  100% {
    -webkit-transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
            transform: rotate(45deg) rotateX(-385deg) rotateY(385deg); } }

.cube {
  -webkit-animation: cube 2s infinite ease;
          animation: cube 2s infinite ease;
  height: 40px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  width: 40px; }
  .cube div {
    background-color: rgba(54, 207, 253, 0.1);
    height: 100%;
    position: absolute;
    width: 100%;
    border: 2px solid rgb(54, 207, 253); }
    .cube div:nth-of-type(1) {
      -webkit-transform: translateZ(-20px) rotateY(180deg);
              transform: translateZ(-20px) rotateY(180deg); }
    .cube div:nth-of-type(2) {
      -webkit-transform: rotateY(-270deg) translateX(50%);
              transform: rotateY(-270deg) translateX(50%);
      -webkit-transform-origin: top right;
              transform-origin: top right; }
    .cube div:nth-of-type(3) {
      -webkit-transform: rotateY(270deg) translateX(-50%);
              transform: rotateY(270deg) translateX(-50%);
      -webkit-transform-origin: center left;
              transform-origin: center left; }
    .cube div:nth-of-type(4) {
      -webkit-transform: rotateX(90deg) translateY(-50%);
              transform: rotateX(90deg) translateY(-50%);
      -webkit-transform-origin: top center;
              transform-origin: top center; }
    .cube div:nth-of-type(5) {
      -webkit-transform: rotateX(-90deg) translateY(50%);
              transform: rotateX(-90deg) translateY(50%);
      -webkit-transform-origin: bottom center;
              transform-origin: bottom center; }
    .cube div:nth-of-type(6) {
      -webkit-transform: translateZ(20px);
              transform: translateZ(20px); }

.emp_rep_dp {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 3px;
  border: 1px solid lightblue;
}
.message-con, .req-con {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 5px;
  display: none;
}
.message-con.active, .req-con.active {
  display: flex;
}
.message-box {
  width: 90%;
  max-width: 450px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: zoom .3s linear;
}
.req-box {
  width: 95%;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: zoom .3s linear;
}
@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}
@-webkit-keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}
.message-btns {
  display: flex;
  width: 100%;
  justify-content: center;
  gap:20px;
  align-items: center;
}
.modal-con {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 900;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-con.active {
  display: flex;
}
.modal-body {
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  max-width: 600px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}
.modal-body > .fa {
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 35px;
  cursor: pointer;
}
.modal-body .modal-content {
  border: none !important;
}
.email-body {
  width: 100%;
  overflow-x: auto;
}
.email-attachments {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.attach-item {
  padding: 10px 15px;
  background: rgba(236, 4, 4, 0.8);
  color: #fff;
}
.iframe-content {
  width: 100%;
  min-height: 600px;
  border: 1px solid lightblue;
}
.lefty tr td:nth-child(2) {
  text-align: right;
}

/* Resume */
.main-page {
  width: 210mm;
  min-height: 297mm;
  margin: 10mm auto;
  background: #fff;
  box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}
@media screen and (max-width:800px) {
  .main-page {
    transform: scale(0.8);
    margin-top: -50px;
  }
}
@media screen and (max-width:600px) {
  .main-page {
    transform: scale(0.6);
    margin-top: -200px;
    margin-left: -150px;
  }
}
@media screen and (max-width:500px) {
  .main-page {
    transform: scale(0.5);
    margin-top: -250px;
    margin-left: -170px;
  }
}
@media screen and (max-width:400px) {
  .main-page {
    transform: scale(0.4);
    margin-top: -300px;
    margin-left: -230px;
  }
}
.sub-page {
  padding: 1cm;
  min-height: 297mm;
}
.page-head img {
  width: 30mm;
  height: 30mm;
  border-radius: 4mm;
}
.res-header {
  background: lightblue;
  padding: 8px 12px;
  width: fit-content;
  border-radius: 0 20px 0 0;
  color: black !important;
  margin-bottom: 0;
}
.res-content {
  border-top: 1px solid lightblue;
  margin-top:0;  
  padding: 5px;
}
.res-content ul {
  padding-left:30px;
}
@page {
  size: A4;
  margin: 0;
}
@media print {
  html, body {
    width: 210mm;
    height: 297mm;
  }
  .res-btn {display:none}
  .main-page {
    margin: 0;
    border: initial;
    border-radius: initial;
    width: initial;
    min-height: initial;
    box-shadow: initial;
    background: initial;
    page-break-after: always;
  }
}
.temp-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.temp-con {
  position: relative;
  width: 100%;
  max-width: 270px;
  margin: 5px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 5px;
  padding: 10px;
}
.temp-con .temp-img {
  padding: 5px;
  position: relative;
}
.temp-con .temp-img img {
  width: 100%;
  height: 150px;
}
.temp-image {
  display: block;
  margin: 10px auto;
  padding: 10px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 10px;
  width: 100%;
  max-width: 700px;
  height: auto;
}.w-hide {
  display: none;
}
.temp-des ul {
  padding-left: 20px;
}
.temp-table {
  width: fit-content;
}
.temp-table tr td:nth-child(1) {
  min-width: 150px;
  font-weight: 600;
}
.temp-table tr td:nth-child(2) {
  
}
.temp-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.code-header {
  background: #222;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  padding: 5px 10px;
}
.lang-sel, .res-sel {
  border: none;
  background: none;
  color: #fff;
  outline: none;
}
.lang-sel option, .res-sel option {
  background: #222;
  color: #fff;
}
.ajax, .requests, .axios, .curl, .xmlhttprequest, .success-2, .error, .error-2, .error-3 {
  display: none;
}

.key {
  font-weight: bold;
}
.toggle {
  cursor: pointer;
  user-select: none;
  margin-right: 5px;
  color: #007bff;
}
.nested {
  display: none;
}
.open > .nested {
  display: block;
}

.tr-det {
  margin-left: 15px !important;
}
.tr-det li {
  padding: 5px 10px;
}

.wrapper{
	background: #fff;
    max-width: 500px;
	margin: 0px auto;
	padding: 10px 0;
	border-radius: 5px;
}

.wrapper .header{
	margin-bottom: 35px;
	display: flex;
	justify-content: center;
}

.wrapper .header ul{
	display: flex;
}

.wrapper .header ul li{
	margin-right: 50px;
	position: relative;
}

.wrapper .header ul li:last-child{
	margin-right: 0;
}

.wrapper .header ul li:before{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 55px;
	width: 100%;
	height: 2px;
	background: var(--secondary);
}

.wrapper .header ul li:last-child:before{
	display: none;
}

.wrapper .header ul li div{
	padding: 5px;
	border-radius: 50%;
}

.wrapper .header ul li p{
	width: 50px;
	height: 50px;
	background: var(--secondary);
	color: var(--white);
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
}

.wrapper .header ul li.active:before{
	background: var(--primary);
}

.wrapper .header ul li.active p{
	background: var(--primary);
}

.wrapper .form_wrap{
	margin-bottom: 35px;
}

.wrapper .form_wrap h2{
	color: var(--header-clr);
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.wrapper .form_wrap .input_wrap{
	width: 350px;
	max-width: 100%;
	margin: 0 auto 20px;
}

.wrapper .form_wrap .input_wrap:last-child{
	margin-bottom: 0;
}

.wrapper .form_wrap .input_wrap label{
	display: block;
	margin-bottom: 5px;
}

.wrapper .form_wrap .input_wrap .input{
	border: 2px solid var(--secondary);
	border-radius: 3px;
	padding: 10px;
	display: block;
	width: 100%;	
	font-size: 16px;
	transition: 0.5s ease;
}

.wrapper .form_wrap .input_wrap .input:focus{
	border-color: var(--primary);
}

.wrapper .btns_wrap{
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.wrapper .btns_wrap .common_btns{
	display: flex;
	justify-content: space-between;
}

.wrapper .btns_wrap .common_btns.form_1_btns{
	justify-content: flex-end;
}

.wrapper .btns_wrap .common_btns button{
	border: 0;
	padding: 12px 15px !important;
	background: blue;
	color: #fff;
	width: 47%;
  word-spacing: 20px;
	font-size: 16px;
	border-radius: 3px;
	transition: 0.5s ease;
	cursor: pointer;
}

.wrapper .btns_wrap .common_btns button.btn_back{
	background: gray;
}

.wrapper .btns_wrap .common_btns button.btn_next .icon{
	
	margin-left: 10px;
}

.wrapper .btns_wrap .common_btns button.btn_back .icon{
	
	margin-right: 10px;
}

.wrapper .btns_wrap .common_btns button.btn_next:hover,
.wrapper .btns_wrap .common_btns button.btn_done:hover{
	background: blue;
}

.wrapper .btns_wrap .common_btns button.btn_back:hover{
	background: gray;
}

.service-con {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 15px;
  margin-bottom: 10px;
}
.service-con.active {
  border: 1px solid blue;
  background: rgba(33, 80, 231, 0.2);
}
.service-con img {
  width: 40px;
  height: 40px;
}
#service-img {
  width: 80px;
  height: 80px;
  margin: 10px auto;
  display: block;
}
.transfer-loader {
  height: 4px;
  width: 130px;
  --c:no-repeat linear-gradient(orange 0 0);
  background: var(--c),var(--c),#d7b8fc;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}
@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}

#verify-name, #verify-name i {
  color: green;
  font-size: 13px !important;
}
.ana-table tr th {
  border: 1px solid #fff;
  text-align: center;
}
.table tr th, .table tr td {
  width: fit-content !important;
  white-space: nowrap !important;
}

/* Services Section */
.services {
  padding: 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 98%;
  margin: 0 auto;
  margin-bottom: 15px;
}

.service-grid.dash {
  grid-template-columns: repeat(auto-fit, minmax(2fr, 1fr));
}
.service-grid.why {
  grid-template-columns: repeat(auto-fit, minmax(1fr, 1fr));
}

.service-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.service-card.ch {
  overflow-x: auto !important;
}
.service-card.ch > div {
  min-width: 100% !important;
}
.service-card i {
  font-size: 35px;
  margin-bottom: 1rem;
  color: navy;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
}
/*
.service-card:hover i {
  color: var(--color-normal);
}
  */

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-card > h2 {
  text-align: center;
}
.dash .service-card > div:nth-child(1) {
  background: navy;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
  padding: 0;
  margin-bottom: 15px;
}
.dash .service-card i {
  font-size: 35px;
  color: #fff;
  margin: 0;
}

.dash .service-card h3 {
  color: rgb(14, 108, 196);
}
.cta-button {
  background-color: #FF6200;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}
