
/* Define CSS variables */

.spacer-section{
  height:50px;
}
.section-heading {
  font-family: "Helvetica Neue";
  text-transform: uppercase;
  font-size: 18px !important;
  letter-spacing: 5px;
}
.heading-divider.blue {
  background-color: #e98693;
}
.heading-divider {
  width: 50px;
  height: 2px;
}
.dragdrop-face-section {
  position: relative;
}

.dragdrop-facebox {
  overflow: hidden;
  width: 450px;
  border: 1px solid #eee;
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
}

.face-border-box.face-mask-section {

  height: 450px;
  width: 450px;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.face-border-box.face-section {
  position: absolute;
  top: 0;
  left: 0;
  height: 450px;
  width: 450px;
  padding: 0.5rem;
  text-align: center;
  overflow: hidden;
}

#draggable {
  padding: 0.5em;
  background-color: transparent;
  border: none;
}
#draggable img{
  max-width: unset!important;
}

#droppable {
  padding: 0.5em;
  display: none;
}

#droppable.active {
  display: block;
}
#droppable.active::after{
  content: "";
  display: block;
  width: 100%;
  border-bottom: 2px dashed #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(90deg);
}
.face-mask-lr-section{
  position: absolute;
  top: 0;
  left: 1%;
  width: 98%;
  height: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
}
.face-mask-lr-section .face-mask-left-section{
  text-align: left;
}
.face-mask-lr-section .face-mask-right-section{
  text-align: right;
}


#process {
  display: none;
  min-width: 100px;
}

#process.active {
  display: block;
}

#start {
  display: none;
  min-width: 100px;
}

#start.active {
  display: block;
}

  
.ui-widget-header {
  border: none;
  background: transparent;
}

.ui-widget-content.ui-draggable.ui-draggable-handle .zoom_outer #zoom {
  width: 100%;
  height: 100%;
  transform-origin: 0px 0px;
  transform: scale(1) translate(0px, 0px);
  cursor: grab;
}

.ui-widget-content.ui-draggable.ui-draggable-handle .zoom_outer #zoom>img {
  width: 100%;
  height: auto;
}

.face-section .ui-draggable-handle {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.face-section .ui-draggable-handle.zoom_outer {
  overflow: visible
}

.img-container {
  height: 100%;
  width: 100%;

}

.zoom_outer {
  opacity: 0.8;
}

.zoom {
  position: relative;
  z-index: 999;
}

/* --------------------spinners---------------------------- */
.face-mask-section {
  position: relative;
}

.sppiner-section {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
}

.ui-state-highlight .sppiner-section.active {
  display: block;
}


.spinner-01 {
  background-color: #cf0b02;
  position: absolute;
  top: 59%;
  left: 33%;
}

.spinner-02 {
  background-color: #cf0b02;
  position: absolute;
  top: 59%;
  left: 58%;
}


.loader {
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader 1s ease-in infinite;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(0.7);
    opacity: 0;
  }
}

.w-400 {
  width: 450px;
}


/* ---------------------------check box css------------------------------------------- */
.checkbox-wrapper-43 input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper-43 label {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.checkbox-wrapper-43 .check {
  cursor: pointer;
  position: relative;
  margin: auto;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
  font-size: 14px;
  font-weight: 600;
}

.checkbox-wrapper-43 {
  text-align: left;
}

.checkbox-wrapper-43 h6 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}

.checkbox-wrapper-43 .check svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* stroke: #c8ccd4; */
  stroke-width: 1.5;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}

.checkbox-wrapper-43 .check svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}

.checkbox-wrapper-43 .check svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}

.checkbox-wrapper-43 .check:hover:before {
  opacity: 1;
}

.checkbox-wrapper-43 .check:hover svg {
  stroke: #4285f4;
}

.checkbox-wrapper-43 input[type="checkbox"]:checked+.check svg {
  stroke: #4285f4;
}

.checkbox-wrapper-43 input[type="checkbox"]:checked+.check svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

.checkbox-wrapper-43 input[type="checkbox"]:checked+.check svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}

/* ----------------------------DRAG DROP DESIGN CSS------------------------------------------------ */
.uploadOuter {
  text-align: center;
  padding: 20px;
}

.uploadOuter strong {
  padding: 0 10px;
}

.dragBox {
  width: 450px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  font-weight: bold;
  line-height: 95px;
  color: #999;
  border: 2px dashed #ccc;
  display: block;
  transition: transform 0.3s;
  margin-top: 15px;
  z-index: 999;
}

.dragBox input[type="file"] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
}














/* ---------------------------------------MEDIA QUERY----------------------------------------------------------------- */
@media screen and (max-width:767px) {
  .dragdrop-facebox {
    width: 350px;
  }

  .face-border-box.face-mask-section {

    height: 350px;
    width: 350px;
  }

  .face-border-box.face-section {
    height: 350px;
    width: 350px;
  }

  .w-400 {
    width: 350px;
  }

  .dragBox {
    width: 350px;
  }
}


/* ---------------------------------------email verify page css start----------------------------------------------------------------- */
.email-verify-section .email-verify-box{
  background: #f5f5f5;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #ccc;
}
.verify-email-code{
  display: none;
}

.verify-email-code.active{
  display: block;
}
/* ---------------------------------------table page css start----------------------------------------------------------------- */

/* Table Styles */
.table-section .table-container{
  background: #f5f5f5;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #ccc;
}
.table-section .table-box{
  max-height: 400px;
  max-width: 100%;
  overflow: scroll;
}

.table-section .table-box::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
 
.table-section .table-box::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(248, 244, 244, 0.3);
}
 
.table-section .table-box::-webkit-scrollbar-thumb {
  background-color: #ccc;
  outline: 1px solid #fff;
  border-radius: 10px;
}

.fl-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.fl-table td, .fl-table th {
    text-align: center;
    padding: 8px;
}

.fl-table td, .fl-table th {
    border-right: 1px solid #f1f1f1;
    font-size: 12px;
}

.fl-table thead th {
    color: #ffffff;
    background: #4FC3A1;
}


.fl-table thead th:nth-child(odd) {
    color: #ffffff;
    background: #324960;
}

.fl-table tr:nth-child(even) {
    background: #F8F8F8;
}
.fl-table tr:nth-child(odd) {
  background: #FFFFFF;
}
.fl-table td:hover{
  background: #eceaea;
}
.table-section .text-header{
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.table-section .download-btn{
  padding: 0px 10px;
  min-width: 110px;
  height: 30px;
  background: #4FC3A1;
  border: 1px solid #4FC3A1;
  transition: all 0.5s ease;
}
.table-section .download-btn:hover{
  opacity: 0.8;
  background: #198754;
  border: 1px solid #198754;
}

.face-mask-left-table{
  display: none;
}
.face-mask-right-table{
  display: none;
}
.face-mask-left-table.active{
  display: block;
}
.face-mask-right-table.active{
  display: block;
}
#tableID.fl-table thead th select{
  display: block;
  height: 25px;
  border-radius: 6px;
}
table#tableID.dataTable thead .sorting{
 background-image: unset;
}
.dataTables_wrapper .dataTables_filter { 
  margin-bottom: 7px;
}
@media screen and (max-width:767px) {
  .table-section .table-box::-webkit-scrollbar {
    display: none;
  }
}


/*----------------------------- BOM from section css start --------------------------------------*/


.survey-form-section{
  background: #f4f4f4;
  border-radius: 0.5rem;
  padding: 2%;
  box-shadow: 0px 0px 12px #ccc;
}
#survey-form .form-group{
  display: flex;
}
#survey-form .form-group{
  margin-top:3%;
}

.mrgin-b-5{
  margin-bottom: 5px;
}
.survey-form-section .text-header{
  text-align: center;
  padding-bottom: 0px;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc
}
.contact{
	padding: 4%;
	height: 400px;
}

.control-label{
  font-size:16px;
	font-weight:600;
}

div .submit-button{
  padding-bottom: 5px;;
  text-align:right;
}

button.btn-submit{
  white-space: normal;
  width:auto;
	background: #00b2e2;
	color: #ffffff;
  font-weight: 600;
	width: 150px;
}
button.btn-submit:hover{
	background: #029cc7;
	color: #fff;
  font-weight: 600;
  box-shadow: 0px 0px 10px #029cc7 ;
}
button.btn-remove{
  white-space: normal;
  width:auto;
	background: #f84a15!important;
	color: #ffffff!important;
  border-color: #f44d23!important;
  font-weight: 600;
	width: 150px;
}
button.btn-remove:hover{
  background: #b42b01;
	color: #fff;
  font-weight: 600;
  box-shadow: 0px 0px 10px #b42b01 ;
}
.remove-only i{
  color:#f84a15;
}
.flex-end{
  justify-content: flex-end;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{ border-color:transparent;}
button.btn-submit.btn-addmore,button.btn-submit.btn-remove{
  width: 100px;
}
.btn-remove{
  visibility: hidden;
  opacity: 0;
}
.btn-remove.active{
  visibility: visible;
  opacity: 1;
}
.mrgin-b-5 .form-control:focus, .mrgin-b-5 .form-select:focus{
  box-shadow: unset;
}
.mrgin-b-5 .form-control, .mrgin-b-5 .form-select,.mrgin-b-5 .form-control::placeholder{
    color :#212529;
}
@media screen and (max-width:991px) {
  button.btn-submit,button.btn-remove{
    width: 130px;
  }
  .survey-form-section {
      padding: 3%;
  }
}
/*----------------------------- BOM from section css end --------------------------------------*/







/* -------------------------- certificate section css start ----------------------- */
.certificate-boxes .text-box{
  padding: 0 3rem;
}
.certificate-boxes .text-box p{
  text-align: justify;
  line-height: 1.7;
}
@media screen and (max-width:991px) {
  .certificate-boxes .text-box {
    padding: 0 1rem;
  }
}
@media screen and (max-width:767px) {
  .certificate-boxes .text-box{
    padding: 0 15px;
  }
}
/* -------------------------- certificate section  css end  ----------------------- */

/* -------------------------- course section  css start  ----------------------- */
.courses-section .swiper-container-courses {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 10px 10px 30px 10px;
  position: relative;
}
.min-heigh-300{
  min-height: 300px;
}
.courses-section .course-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  min-height: 350px;
}
.course-text-box{
  padding: 10px 20px 30px 20px;
}
  
    .course-box img {
        border-radius: 10px 10px 0px 0px;
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 15px;
    }
    .course-box h3 {
        margin: 0px 0 5px 0;
        font-size: 18px;
    }
    .course-box p {
        margin: 5px 0;
        font-size: 14px;
        color:#6d6e6e;
    }
    .course-box .price {
        font-size: 16px;
        color: #000;
        margin: 10px 0;
        font-weight: 700;
    }
    .course-box .learn-more-btn {
        margin-top: 10px;
        padding: 10px 20px;
        display: inline-block;
        border: none;
        background-color: #007BFF;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
    }
    .course-box .learn-more-btn:hover {
        background-color: #0056b3;
    }
    @media screen and (max-width:991px) {
      .min-heigh-300{
        min-height: 200px;
      }
    }
    @media screen and (max-width:767px) {
      .min-heigh-300{
        min-height: 250px;
      }
    }

/* -------------------------- course section  css end  ----------------------- */