* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none !important;
  outline: none !important;
}

img {
  border: none;
}

.clr {
  clear: both;
}

/*LOGIN-SECTION*/

.login-wrap {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-in {
  width: 75%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 23.248px 0px rgba(0, 0, 0, 0.25);
}

.login-logo {
  flex: 50%;
  height: 100%;
  padding: 50px 0;
  display: flex;
  position: relative;
}

.logo {
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
}

.logo img {
  width: 300px;
  height: 100%;
}

.login-form {
  flex: 50%;
  background: #032D62;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px
}

.login-form form {
  width: 100%;
  height: auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.login-form form p.error-message {
  color: #FF3434;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  width: 100%;
  display: none;
}

.login-form form p.error-message img {
  margin-right: 5px;
}

.login-form form p.error-message.show {
  display: block;
}

.login-form form h1 {
  color: #FDBA31;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

.login-txt {
  width: 100%;
  height: 100%;
  border: none;
  color: #444;
  font-size: 15px;
  font-weight: 500;
  padding: 0px 45px 0px 55px;
}

.login-txt::placeholder {
  color: #032D62;
}

.password-eye {
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  top: auto;
  right: 15px;
  border: none;
  align-items: center;
  background: none;
  justify-content: center;
  transition: .5s;
}

.password-eye::placeholder {
  color: var(--inputclr, #444);
}

.password-eye i {
  color: #C0C0C0;
  cursor: pointer;
}

.password-eye .fa-eye-slash:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-close.svg);
}

.password-eye .fa-eye:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/login-page/icons/eye-open.svg);
}

.login-btn {
  width: 100%;
  height: auto;
  color: #000 !important;
  border: none;
  display: flex;
  border-radius: 10px;
  background: #FDBA31;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 0;
}

.login-labl {
  cursor: pointer;
  display: flex;
  align-items: stretch;
  margin: 10px 0px 30px 15px;
  font-size: 13px;
}

.login-rmb {
  margin-right: 8px;
}

.login-lbl {
  width: 100%;
  height: 45px;
  margin-bottom: 0;
  border-radius: 10px !important;
  border: none;
  background: #FFF;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.login-lbl img {
  width: 45px;
  height: 45px;
  position: absolute;
  left: 0px;
}

.rembr-me {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  justify-content: flex-start;
}

.rembr-me input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  border: 1px solid #fff;
  appearance: none;
  border-radius: 3px;
}

.rembr-me input[type="checkbox"]:checked {
  accent-color: #FDBA31;
  appearance: auto;
}

/*LOGIN-SECTION*/

/*LOGIN-SUCC-SECTION*/

#login-succ .modal-dialog {
  max-width: 380px;
  height: 100%;
  margin: 0rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#login-succ .modal-content {
  border-radius: 10px;
  background: #FFF;
}

#login-succ .logout-in h1 {
  font-weight: 600;
  font-size: 30px;
  margin: 10px 0 10px 0;
  color: #000;
}

#login-succ .logout-in img {
  width: 55px;
  box-shadow: 0px 0px 10px 0px #00000040;
  border-radius: 50%;
}

#login-succ .logout-in p {
  margin: 20px 0;
  color: #333;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

#login-succ .logout-in-btn {
  border: none;
  padding: 8px 60px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  background: #032d62;
  line-height: normal;
}

#login-succ .modal-body {
  padding: 2.4rem 1rem;
}

#login-succ .modal-content button.close {
  width: 22px;
  height: 22px;
  opacity: .5;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 99;
}

#login-succ .modal-content button.close img {
  width: 100%;
  height: 100%;
}

/*LOGIN-SUCC-SECTION*/


/* TABLE-PAGES */

.influ-wrap {
  width: 100%;
  height: auto;
}

.influ-strip {
  background: linear-gradient(-90deg, rgba(172, 117, 47, 1) 0%, rgba(253, 210, 155, 1) 200%);
  display: flex;
  align-items: center;
}

.influ-logo {

  /*flex-basis: 17%;*/
  width: 229px;
  background: #000;
  padding: 10px 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.influ-logo img {
  width: 40px;
  margin-right: 8px;
}

.influ-logo a {
  font-size: 25px;
  color: #B07D3C;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.influ-strip form {
  width: auto;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  margin-left: 15px;
}

.menu-btn:hover {
  color: #fff !important;
}

.influ-in {
  width: 100%;
  height: auto;
  padding: 20px !important;
}

.admin-heading {
  width: 100%;
  height: auto;
}

.admin-heading h1 {
  font-weight: 700;
  font-size: 28px;
  color: #171748;
  margin: 0px 0 20px 0;
}

.influ-strip-2 {
  width: 100%;
  height: auto;
  background: #FDBA31;
  padding: 10px;
  border-radius: 0px;
  margin-bottom: 20px;
}

.influ-strip-2 form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.influ-search {
  width: 300px;
}

.invite-user {
  flex-basis: 50%;
  text-align: right;
  margin-left: auto;
}

.invite-user a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
}

.invite-user i {
  font-size: 22px;
  margin-left: 10px;
}

.admin-icon {
  flex-basis: auto;
  height: 100%;
  width: auto;
  margin-left: auto;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  text-transform: uppercase;
}

.admin-icon img {
  width: 35px;
  background-color: #FFF;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 1px;
}

.admin-icon span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
}

.influ-search label {
  width: 100%;
  margin-bottom: 0 !important;
  display: inline-flex;
  background: #fff;
  align-items: baseline;
  border-radius: 20px;
}

.influ-search label input {
  width: 100%;
  height: 37px;
  position: relative;
  background: #ffffff;
  border: none;
  color: #333;
  padding: 0px 10px;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  border-radius: 30px;
}

.influ-search label input::placeholder {
  color: #333;
  line-height: 20px;
}

.influ-search label button {
  width: 40px;
  height: 100%;
  border: none;
  background: none;
  padding: 10px;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-left: auto;
}

.influ-search label button img {
  width: 100%;
}

.influ-btns {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.influ-btns ul {
  padding: 0;
  margin: 0;
  text-align: right;
}

.influ-btns ul li a {
  background: #fff;
  display: block;
  color: #000;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.influ-btns ul li a i {
  color: #000;
  font-size: 14px;
}

.influ-btn {
  color: #fff !important;
  font-weight: 500;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
  border-radius: 6px;
  background: #032D62;
  display: flex;
  align-items: center;
  gap: 5px;
}

.influ-btn img {
  width: 21px;
  height: auto;
}

.influ-btn i {
  font-size: 15px;
  color: #fff;
  margin-right: 0;
  margin-left: 5px;
  width: auto;
  height: 21px;
  display: flex;
  align-items: center;
}

.influ-btn i.far.fa-chevron-down.active {
  transform: rotate(180deg);
}


.influ-btn input {
  width: 70px;
  min-width: 70px;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #000;
  text-align: right;
  caret-color: transparent;
}

.influ-btn input::placeholder {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

/*.influ-btn i {
font-size: 14px;
font-weight: 400;
margin-right: 10px;
}*/

/*.influ-btns form button i {
font-size: 15px;
color: #000;
margin-right: 0;
}
*/
.influ-btns form select {
  cursor: pointer;
  background: #fff;
  display: block;
  color: #000;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  outline: none;
  border: none;
  margin-left: 10px;
  /*-webkit-appearance: none;
  -moz-appearance: none;
  position: relative;*/
}

/*.influ-btns form select:after {
 position: absolute;
content: '';
background-image: url(../images/dropdown.png);
width: 40px;
height: 30px;
top: 0;
right: 0;
background-repeat: no-repeat;
background-position: right;
background-size: contain;
z-index: 999999;
}*/
.quotes-list {
  width: max-content;
}

.influ-btns-label {
  position: relative;
  margin: 0;
  z-index: 1;
  margin-left: 0px;
  width: 100%;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  /*  text-transform: uppercase;*/
  align-items: center;
}

.influ-btns form label input[type=checkbox] {
  margin-right: 10px;
  accent-color: #171748;
}

.daterange-btn {
  width: auto;
  height: auto;
  background: #032d62;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.daterange-btn img {
  width: 15px;
  height: 21px;
  position: absolute;
  right: 10px;
}

.daterange-btn input[type="text"] {
  padding: 8.5px 30px 8.5px 10px;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  color: #fff;
  border: none;
  border-radius: 20px;
  background-color: transparent;
  width: auto;
  cursor: pointer;
}

.daterange-btn input[type="text"]::placeholder {
  color: #fff;
}

.influ-table {
  width: 100%;
  height: auto;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
}

.influ-table table {
  width: max-content;
  min-width: 100%;
  height: auto;
  text-align: center;
}

.table-responsive {
  overflow-x: auto;
  padding-bottom: 0px;
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: rgba(3, 45, 98, 0.31);
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: #032D62;
  border-radius: 20px;
}

.influ-table table tr:nth-child(1) {
  background: #032D62;
}

.influ-table table tr:last-child {
  border-bottom: 1px solid #E5E5E5;
}

.influ-table table tr th {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 50px;
  color: #fff;
  border-right: 1px solid #FEB8FF;
}

.influ-table table tr th:last-child {
  border-right: none;
}

.influ-table table tr td {
  border-right: 1px solid #032D62;
  border-bottom: 1px solid #032D62;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  padding: 10px;
  vertical-align: middle;
}

.influ-table table tr td.profile-picture img {
  width: 55px;
  height: auto;
}

.influ-table table tr td form {
  width: 100%;
  height: auto;
}

.influ-table-btn {
  padding: 8px 25px;
  background: #197E00;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  border: none;
}

.influ-table table tr td:last-child {
  border-right: none;
}

.influ-table table tr:nth-child(odd) td {
  /* background: #B1BECE; */
  background: rgb(177 190 206 / 50%);
}

.influ-table table tr td a {
  display: inline-block;
  margin: 0 5px;
}

.influ-table table tr td a img {
  width: 20px;
  height: 20px;
}

.status-btn {
  width: auto;
  height: auto;
}

.status-btn a {
  background: #008000;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
}

.status-btn.red-btn a {
  background: #E21919;
}

.respond-btn {
  border-radius: 8px;
  background: #032D62;
  text-align: center;
}

.respond-btn a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}

.responded-btn {
  border-radius: 8px;
  background: #FDBA31;
  text-align: center;
}

.responded-btn a {
  color: #032D62;
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}

.pdf-icn a img {
  width: 20px !important;
  margin: 0 5px;
}

.influ-table p {
  font-size: 13px;
  color: #032D62 !important;
  font-weight: 500;
  text-align: right;
  margin: 0;
  /* position: absolute; */
  /* right: 20px; */
  /* top: auto; */
}

.influ-table p span {
  font-weight: 500 !important;
}

.influ-pagi {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 35px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.influ-pagi ul {
  padding: 0px;
  margin: 0;
  display: inline-block;
}

.influ-pagi ul li {
  list-style: none;
  display: inline-block;
  margin: 0 4px;
}

.influ-pagi ul li a {
  font-size: 15px;
  font-weight: 500;
  transition: .5s;
  color: rgba(0, 0, 0, 0.80);
  border: 1px solid rgba(0, 0, 0, 0.80);
  width: 35px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.influ-pagi ul li:first-child a {
  width: auto;
  border: none;
}

.influ-pagi ul li:last-child a {
  width: auto;
  border: none;
}

.influ-pagi ul li:first-child a:hover {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.80);
  font-weight: 500;
  background: none;
}

.influ-pagi ul li:last-child a:hover {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.80);
  font-weight: 500;
  background: none;
}

.influ-pagi ul li.active a {
  color: #032D62;
  background: #FDBA31;
  border-color: #FDBA31;
  transition: .5s;
}

.influ-pagi ul li a:hover {
  color: #032D62;
  background: #FDBA31;
  border-color: #FDBA31;
  transition: .5s;
}

.influ-pagi form {
  position: absolute;
  right: 0;
}

.influ-pagi-in select {
  padding: 10px 15px;
  background: #D3D7EA33;
  border: none;
  outline: none;
  box-shadow: 0px 0px 4px rgb(0 0 0 / 5%);
  cursor: pointer;
  font-size: 13px;
  color: #171748;
}

/* TABLE-PAGES */



/* PRIVACY-POLICY-PAGE */

.privacy-policy-wrap {
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 1px 11px 0px rgba(0, 0, 0, 0.25);
}

.privacy-policy-inner {
  width: 100%;
  height: auto;
}

.privacy-policy-inner h1 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.privacy-policy-inner h2 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.privacy-policy-inner p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.privacy-policy-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.privacy-policy-btn button {
  border-radius: 5px;
  background: #032D62;
  padding: 7px 60px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.privacy-policy-btn button.active {
  background: #FDBA31;
  color: #032D62;
}


/* PRIVACY-POLICY-PAGE */


/* FAQ-PAGE */

.faq-wrap {
  width: 100%;
  height: auto;
  background: #ffffff;
  padding: 20px 0px;
}

.faq-wrap .accordion-header {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  padding: 15px 110px 15px 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-wrap .accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
}

.faq-wrap .accordion-item {
  width: 100%;
  border-radius: 5px;
  border-top: 1px solid #dee2e6;
}

.faq-wrap .accordion-button {
  border-radius: 5px;
  outline: none;
  box-shadow: none;
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-button-over {
  position: absolute;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  top: auto;
}

.accordion-button-over a {
  width: 22px;
  height: 22px;
  display: block;
}

.accordion-button-over a img {
  width: 100%;
  height: 100%;
}

.faq-wrap .accordion-button::after {
  background-image: url(../images/faq-plus.svg);
  background-size: 22px;
  width: 22px;
  height: 22px;
  position: absolute;
  right: auto;
}

.faq-wrap .accordion-button:not(.collapsed)::after {
  background-image: url(../images/faq-minus.svg);
  background-size: 22px;
  width: 22px;
  height: 22px;
}

.faq-wrap .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000;
}

.faq-wrap .accordion-body {
  font-weight: 500;
  font-size: 13px;
  color: #333;
  padding: 10px;
  line-height: 25px;
  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}


/* FAQ-PAGE */


/* NEW-CSS */

#content main .influ-table nav {
  background: none;
  padding: 35px 0;
  position: relative;
  height: auto;
}

#content main .influ-table nav .d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between {
  justify-content: center !important;
}

#content main .influ-table nav .d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between ul.pagination {
  margin: 0;
  gap: 8px;
}


ul.pagination li span,
ul.pagination li a {
  font-size: 15px;
  font-weight: 500;
  transition: .5s;
  color: rgba(0, 0, 0, 0.80) !important;
  border: 1px solid rgba(0, 0, 0, 0.80) !important;
  width: 35px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

ul.pagination li span:hover,
ul.pagination li a:hover {
  color: #032D62;
  background: #FDBA31;
  border-color: #FDBA31;
  transition: .5s;
}

ul.pagination li.active span {
  color: #032D62 !important;
  background: #FDBA31;
  border-color: #FDBA31 !important;
  transition: .5s;
}

ul.pagination li:first-child span,
ul.pagination li:first-child a {
  width: auto;
  border: none !important;
  background: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

ul.pagination li:last-child span,
ul.pagination li:last-child a {
  width: auto;
  border: none !important;
  background: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

#content main .influ-table nav .d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between div:first-of-type {
  position: absolute;
  right: 20px;
  top: auto;
}

/* NEW-CSS */