.footer-fix {
  min-height: 100%;
  margin-bottom: -30px;
}

@media print {
  footer {
    display: none !important;
  }

  html,
  body {
    height: 99% !important;
  }

  .login-btn {
    display: none !important;
  }
}

html,
body {
  height: 100%;

}

/* common things */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.relative {
  position: relative;
}

.f-left {
  float: left;
}

.r-right {
  float: right;
}

.orage-color {
  color: #e32837;
}

.bold {
  font-weight: bold;
}

.color-black,
.notifications li a,
.table-pagination li a {
  color: #000;
}

.h-none::after {
  display: none;
}

.mt-40 {
  margin-top: 40px;
}

.mt30-min {
  margin-top: -30px;
}

a {
  text-decoration: none !important;
  cursor: pointer;
}

button:focus {
  outline: none !important;
}

input:focus {
  border-color: #e32837 !important;
}

.self-center {
  align-self: center;
}

/* common things */

/* menu */
.nav-main {
  justify-content: space-between !important;
}

.nav-main a {
  color: #e32837;
}

.nav-main img {
  width: 60%;
}
/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Optional: to align properly */
}

/* menu */

/* header */
.login-btn {
  background: #e32837;
  border: none;
  color: #fff;
  padding: 8px 25px;
  border-radius: 6px;
  display: inline-block;
}

/* header */

/* login form css start */
.login-form input {
  width: 100%;
  height: 45px;
  border-radius: 40px;
  border: 1px solid gray;
  padding-left: 55px;
  margin-bottom: 20px;
}

.login-form h3 {
  font-family: emoji;
}

.login-form input:focus {
  /*border-radius: 4px;
    transition: all 0.5s ease;*/
  outline: none;
}

.modal-footer .main-button,
.login-button .main-button,
.inner-right-panel .main-button {
  background-image: linear-gradient(to right, #df4f5b, #e32837);
  padding: 10px 40px;
  border-radius: 40px;
  color: #fff;
  transition: all 0.5s ease;
  border: none;
}

.modal-footer .main-button:hover,
.login-button .main-button:hover,
.inner-right-panel .main-button:hover {
  color: #fff;
  background-image: linear-gradient(to right, #df4f5b, #e32837);
  transition: all 0.5s ease;
}

button.close {
  z-index: 1;
}

.login-modal .modal-header {
  border-bottom: none;
}

.login-modal {
  position: relative;
}

.form-vertical {
  height: 100vh;
}

.login-form {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  max-width: 550px;
  transform: translate(-50%, -50%);
  justify-content: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.login-form .form-group {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, .2);
  padding: 30px 30px 0 30px;
}

.login-form {
  padding: 15px;
}

.form-check input {
  height: auto;
  width: auto;
}

.form-remember input {
  margin-top: 7px;
  cursor: pointer;
}

.form-remember label {
  cursor: pointer;
}

.lost-pass a,
.lost-pass a:hover {
  color: #e32837;
  text-decoration: none;
}

.login-form img {
  text-align: center;
  margin: auto;
  display: block;
  margin-top: -89px;
  background: #fff;
  margin-bottom: 20px;
}

.bi-eye-fill,
.bi-eye-fill-confirm {
  display: none;
  right: 30px;
  position: absolute;
  top: 46px;
  cursor: pointer;
}

.user svg,
.passkey,
.user i {
  position: absolute;
  left: 15px;
  top: 32px;
  background: #e32837;
  font-size: 45px;
  margin: 0px;
  width: auto !important;
  padding: 13px;
  border-radius: 19px 0px 0px 19px;
  color: #fff;
}

.inherit-form i {
  font-size: 19px;
}

.newpass .bi-eye-fill,
.newpass .bi-eye-fill-confirm {
  top: 13px;
}

.email svg,
.newpass svg {
  top: 0px;
}

/* login form css end */

/* regustration form */
.profile-pic-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pic-holder {
  text-align: center;
  position: relative;
  border-radius: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  margin-top: 20px;
}

.pic-holder .pic {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.pic-holder .upload-file-block,
.pic-holder .upload-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(90, 92, 105, 0.7);
  color: #f8f9fc;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pic-holder .upload-file-block {
  cursor: pointer;
}

.pic-holder:hover .upload-file-block {
  opacity: 1;
}

.pic-holder.uploadInProgress .upload-file-block {
  display: none;
}

.pic-holder.uploadInProgress .upload-loader {
  opacity: 1;
}

/* Snackbar css */
.snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 14px;
  transform: translateX(-50%);
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

legend {
  text-align: right;
}

input,
select {
  font-family: 'Roboto', sans-serif;
  border: solid 1px #89a6bb;
  padding: 0.5rem;
  border-radius: 3px;
}

h2 {
  margin: 3rem 0 1rem;
}

.date-field {
  width: 50px;
  text-align: center;

  &--year {
    width: 60px;
  }
}

.single-date-field {
  width: 120px;
}

.field-inline-block {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

.shadow-outer {
  box-shadow: 0 0 2px 4px #f1f1f1;
  padding: 15px;
}

.select-input .select2-container {
  width: 100% !important;
}

/* regustration form */

/* Add Party Css */
.submit-btn-add {
  width: auto !important;
  margin: auto;
  padding: 6px 35px !important;
  height: 50px !important;
}

/* Add Party Css */

/* dashboard */
.mainDIv-box {
  border: 1px solid #000;
  padding: 40px 0;
  text-align: center;
  background: #e32837;
  border-radius: 10px;
}

.mainDIv-box-outer {
  display: flex;
  justify-content: center;
}

.mainDIv-box svg {
  font-size: 40px;
  color: #fff;
}

.mainDIv-box i {
  font-size: 40px;
  color: #fff;
}

.mainDIv-box h3 {
  color: #fff;
  font-family: 'poppins';

}

/* dashboard */

/*View All mainDIv*/
#myInput {
  background-image: url('/css/searchicon.png');
  /* Add a search icon to input */
  background-position: 10px 12px;
  /* Position the search icon */
  background-repeat: no-repeat;
  /* Do not repeat the icon image */
  width: 100%;
  /* Full-width */
  font-size: 16px;
  /* Increase font-size */
  padding: 12px 20px 12px 40px;
  /* Add some padding */
  border: 1px solid #ddd;
  /* Add a grey border */
  margin-bottom: 12px;
  /* Add some space below the input */
}

#myTable {
  border-collapse: collapse;
  /* Collapse borders */
  width: 100%;
  /* Full-width */
  border: 1px solid #ddd;
  /* Add a grey border */
  font-size: 18px;
  /* Increase font-size */
  overflow: auto;
}

#myTable th,
#myTable td {
  text-align: left;
  /* Left-align text */
  padding: 12px;
  /* Add padding */
}

#myTable tr {
  /* Add a bottom border to all table rows */
  border-bottom: 1px solid #ddd;
}

#myTable tr.header,
#myTable tr:hover {
  /* Add a grey background color to the table header and on hover */
  background-color: #f1f1f1;
}

.center {
  text-align: center !important;
}

.center svg {
  margin-right: 10px;
  color: #e32837;
}

.search-adjust {
  margin-top: -42px;
  margin-left: 10px;
  display: block;
  margin-bottom: 19px;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.table-data tr th {
  background: #e32837;
  color: #fff;
}

.search-input {
  border-radius: 6px;
}

table {
  border-collapse: collapse;
  border-radius: 1em;
  overflow: hidden;
  outline: 1px solid #ddd;
}

.table-data tr th {
  position: sticky;
  top: 0;
}

/*View All mainDIv End*/

/* form */
.avatar-upload {
  position: relative;
  max-width: 205px;
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  display: table-cell;
  text-align: center;
}

.avatar-edit svg {
  vertical-align: middle;
}

.avatar-upload .avatar-edit input+label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

.avatar-upload .avatar-preview {
  width: 130px;
  height: 130px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.party-info label {
  font-weight: bold;
}

.party-info span {
  border: 1px solid #000;
  width: 100%;
  padding: 5px;
  border-radius: 6px;
  display: block;
}

.self-center {
  align-self: center;
}

/* form */

/* search frontend */
.container-4 {
  max-width: 449px;
  margin: auto;
}

.container-4 input {
  border-radius: 50px 0px 0px 50px !important;
  width: 405px;
}

.container-4 button {
  border: none;
  background: #2f1e72;
  color: #fff;
  padding: 13px;
  margin-left: -5px;
}

.search-fe tr td {
  border-bottom: none;
}

.search-btn {
  border-radius: 0px 50px 50px 0px;
}

/* search frontend */

/* footer */
.footer-two {
  /*position: absolute;*/
  bottom: 0;
  text-align: center !important;
  width: 100%;
  background: #e32837;
  color: #fff;
  /* height: 30px; */
  padding: 5px;
}

.footer-two a {
  color: #fff;
  text-decoration: underline !important;
}

.footer-two a:hover {
  color: #dbc7c7;
}



/* footer */

/* responsive start */

@media (max-width: 991px) {
  .nav-main ul li a {
    display: block !important;
    border-bottom: 1px solid #d4d4d4;
  }

  .nav-main {
    background: transparent !important;
  }

  .navbar-dark .navbar-toggler-icon {
    background-image: url('../images/toggle-black.png') !important;
  }

  .setMain-box {
    padding: 25px 0 !important;
  }
  .setMain-Box2 {
    padding: 40px 0px !important;
  }
}

@media (max-width: 600px) {
  .login-form input {
    font-size: 12px;
  }
 
}
@media (max-width:767px ){
  .backbtn {
    display: none ;
  }
}

@media (max-width: 480px) {

  .form-remember,
  .lost-pass {
    float: none !important;
    text-align: center;
    margin-bottom: 10px;
  }

  .login-form {
    top: 57% !important;
  }

  .modal-footer {
    margin-top: 20px !important;
  }

  .login-form h1 {
    font-size: 28px;
  }

  .login-form p {
    font-size: 14px;
  }

  .nav-main {
    display: flex !important;
  }

  .headerSet {
    flex-wrap: nowrap !important;
  }

  .nav-main img {
    width: 30%;
  }

  .mainLogo {
    width: 45% !important;
  }

  .outer-boxSet {
    display: block !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  .mainDIv-box h3 {
    font-size: 26px !important;
  }
}

@media only screen and (max-width:320px) {
  .space-between {
    display: block !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .mandatory {
    text-align: center !important;
    padding-top: 8px !important;
  }
  .logoutBtnSet {
    padding: 4px 10px  !important;
  }

}
@media only screen and (min-width:480px) and (max-width:572px) {
  .nav-main {
    display: flex !important;
  }

  .headerSet {
    flex-wrap: nowrap !important;
  }

  .nav-main img {
    width: 15% !important;
  }

  .mainLogo {
    width: 20% !important ;
  }

}
@media only screen and (min-width:476px) and (max-width:840px) {
  .nav-main img {
    width: 16% !important;
  }

  .mainLogo {
    width: 30% !important ;
  }

}

.colmdset {
  display: block !important;


}

.headingSet {
  font-size: 25px !important;
}

.hidden {
    display:none;
}



/* /* responsive end  */