@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Source+Sans+Pro:wght@600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}
html,
body {
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 600px) {
  body {
    padding: 2px;
  }
}

.login-bg {
  background-color: #7e82c8;
}

.login-form {
  background: #fff;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
  max-width: 900px;
  margin: 100px auto 100px;
  text-align: center;
  border-radius: 10px;
}

.login-text {
  background-color: #eefcf9;
  border-radius: 10px 10px 10px 10px;
  padding: 50px;
}
.login-text h6 {
  font-weight: bold;
  font-size: 28px;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 0.5ch;
}

.login-text p {
  font-size: 13px;
  color: rgb(153, 153, 153);
}

.login-text input {
  margin-top: 40px;
  border: none;
  border-bottom: 1px solid rgb(131, 131, 131);
  outline: 0;
  padding: 0px 0px 7px 0px;
  width: 100%;
  background-color: #eefcf9;
  font-size: 14px;
}

.login-text .forget-pass {
  font-size: 12px;
  margin-top: 30px;
  text-align: end;
  color: #444;
  font-weight: 500;
}

.login-text .login-button {
  background: #7579e7;
  width: 40%;
  outline: 0;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 9px;
  margin-right: 59%;
  border-radius: 5px;
}

.login-image h6 {
  font-weight: bold;
  font-size: 21px;
}

.login-image img {
  width: 330px;
  height: 330px;
  padding: 20px;
}

/*sidebar*/
.side-bar {
  background: #363996;
  backdrop-filter: blur(15px);
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 1;
  padding: 3px;
  overflow-y: auto;
}
.side-bar .menu {
  width: 100%;
}
.menu .logo {
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  text-align: center;
  padding: 15px;
}
.side-bar .menu .item {
  position: relative;
  cursor: pointer;
}

.side-bar .menu .item a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 0px 15px;
  line-height: 60px;
}

.side-bar .menu .item a .dropdown {
  position: absolute;
  right: 0;
  margin: 20px;
  transition: 0.3s ease;
}

.side-bar .menu .item .sub-menu {
  background: rgba(255, 255, 255, 0.1);
  display: block;
}

.side-bar .menu .item .sub-menu a {
  font-size: 12px;
  line-height: 40px;
}

.side-bar .menu .item a:hover {
  background: #fff;
  transition: 0.3s ease;
  color: #000;
  border-radius: 10px;
}

.side-bar .menu .item i {
  margin-right: 15px;
}

.close-btn {
  position: absolute;
  color: #fff;
  font-size: 20px;
  right: 0;
  margin: 25px;
  cursor: pointer;
  display: none;
}

.menu-btn {
  position: absolute;
  color: #000;
  font-size: 20px;
  margin: 25px;
  cursor: pointer;
}

.notification-bar {
  height: 50px;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  color: #000;
}
.notification-bar h5 {
  margin-left: 230px;
  padding-top: 11px;
  font-weight: normal;
}

/*main page*/
.main-content {
  width: 82%;
  margin-left: 230px;
}

@media only screen and (max-width: 600px) {
  .side-bar {
    background: #363996;
    backdrop-filter: blur(15px);
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    overflow-y: auto;
    transition: 0.6s ease-in-out;
    transition-property: left;
  }

  .side-bar.active {
    left: 0;
  }
  .side-bar .menu {
    width: 100%;
  }

  .side-bar .menu .item {
    position: relative;
    cursor: pointer;
  }

  .side-bar .menu .item a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 60px;
  }

  .side-bar .menu .item a:hover {
    background: fff;
    transition: 0.3s ease;
    color: #000;
  }

  .side-bar .menu .item i {
    margin-right: 15px;
  }

  .close-btn {
    position: absolute;
    color: #fff;
    font-size: 20px;
    right: 0;
    margin: 25px;
    cursor: pointer;
    display: block;
  }

  .menu-btn {
    position: absolute;
    color: #000;
    font-size: 20px;
    margin: 15px;
    cursor: pointer;
  }

  .main-content {
    width: 100%;
    margin-left: 0px;
    padding: 5px;
  }

  .main-content .header h5 {
    margin: 20px;
    font-weight: normal;
  }
  .notification-bar h5 {
    margin-left: 56px;
    padding-top: 14px;
    font-weight: normal;
  }
  .login-form {
    background: #fff;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
    max-width: 900px;
    margin: 100px 10px 100px;
    text-align: center;
    border-radius: 10px;
  }
}
.page-name {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}

.custom-button {
  background-color: #363996;
  border: none;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin: 15px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.upArrow-button {
  background-color: #363996;
  border: none;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin: 15px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.submit-custom-button {
  background-color: #363996;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin: 10px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.custom-btn-outline {
  background-color: white;
  /* border-color: #363996; */
  border: 1px solid #363996;
  color: #363996;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin: 15px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.auditcard {
  border: none !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 5px;
}
.cardheader {
  background-color: #d8dcf6;
}

.cardheader p {
  font-weight: 500;
  font-size: 14px;
  padding: 14px;
  margin-bottom: 0px;
}

.empty-image {
  text-align: center;
  margin-top: 100px;
}
.empty-image img {
  width: 250px;
}
.empty-image p {
  font-size: 12px;
}
.branch-profile {
  border: 1px solid #363996;
  margin: 20px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 15px;
}
.risk {
  border: 1px solid #363996;
  margin: 20px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 15px;
}
.branch-profile h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.risk h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.branch-profile .bg-primary {
  background-color: #16c79a !important;
  font-size: 11px;
}
.risk .bg-primary {
  background-color: #f2a828 !important;
  font-size: 11px;
}

.branch-profile .profile_1 {
  border: 1px solid #16c79a;
  border-radius: 6px;
}
.risk .b_risk {
  border: 1px solid #16c79a;
  border-radius: 6px;
}
.profile_1 h6 {
  padding: 20px 15px 15px 15px;
  margin-bottom: 0px;
}
.b_risk h6 {
  padding: 20px 15px 15px 15px;
  margin-bottom: 0px;
}
.branch-profile .profile_2 {
  border: 1px solid #16c79a;
  border-radius: 6px;
  margin-top: 10px;
}
.risk .c_risk {
  border: 1px solid #16c79a;
  border-radius: 6px;
  margin-top: 10px;
}
.profile_2 h6 {
  padding: 20px 15px 15px 15px;
  margin-bottom: 0px;
}
.c_risk h6 {
  padding: 20px 15px 15px 15px;
  margin-bottom: 0px;
}
.check {
  padding: 15px;
}
.check i {
  color: #16c79a;
}
.risk_check {
  padding: 15px;
}
.risk_check i {
  color: #16c79a;
}
.risk-summary {
  border: 1px solid #363996;
  margin: 20px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.risk-summary h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 14px;
}

.table-header {
  background-color: #f2f2f2;
}
.table-header th {
  font-size: 13px;
}
.risk-summary tbody {
  font-size: 11px;
}
.risk-summary tbody td {
  font-weight: bold;
}
.table {
  margin-bottom: 0px !important;
}
.table > :not(caption) > * > * {
  padding: 0.8rem 0.8rem !important;
}
.modal-header {
  border-bottom: none !important;
}
.btn-close {
  box-sizing: none !important;
}

.filter-form label {
  font-size: 12px;
  font-weight: bold;
}
.filter-form input {
  background-color: #f2f2f2;
  border: none;
  padding: 5px;
  border-radius: 5px;
  margin-top: 5px;
}
.filter-form input::placeholder {
  font-size: 12px;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #363996;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
}

.my-float {
  margin-top: 22px;
}

/*branch profile page */
.b-profile {
  border: 1px solid #363996;
  margin: 20px 0px 0px 0px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.b-profile h6 {
  font-weight: bold;
  margin-top: 35px;
}

.branch-icon {
  background-color: #36399625;
  width: 80px;
  margin: 30px;
  border-radius: 5px;
}
.branch-icon img {
  width: 50px;
  margin: 15px;
}

@media only screen and (max-width: 600px) {
  .branch-icon {
    display: none;
  }
  .branch-icon img {
    width: 30px;
    margin: 15px;
  }
}

.b-profile1 {
  border: 1px solid #363996;
  border-radius: 5px;
  margin-top: 5px;
  cursor: pointer;
}
.b-profile1 p {
  font-weight: bold;
  font-size: 14px;
  margin: 10px;
}
.b-profile1 i {
  color: #363996;
  margin: 13px;
}
.space {
  margin-top: 0px;
}

@media only screen and (max-width: 600px) {
  .b-profile1 {
    border: 1px solid #363996;
    border-radius: 5px;
    margin: 5px;
  }
  .b-profile h6 {
    font-weight: bold;
    margin: 10px;
  }
  .space {
    margin-top: 20px;
  }
}

.b-risk {
  border: 1px solid #363996;
  border-radius: 5px;
  margin: 20px 0px 20px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.b-risk h6 {
  font-weight: bold;
  margin: 20px;
}
.b-risk .card {
  margin: 10px;
}
.b-risk h6 {
  font-weight: bold;
  margin: 20px;
  font-size: 14px;
}
.b-risk .card {
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.accordion-button {
  color: #363996 !important;
  background-color: #36399623 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: bold;
  padding: 0.8rem 1rem !important;
}
.accordion-button:not(.collapsed)::after {
  transform: none !important;
}
.b-risk .accordion-body p {
  font-size: 12px;
  font-weight: 600;
}
.b-summary {
  border: 1px solid #363996;
  border-radius: 5px;
  margin: 20px 0px 20px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.b-summary h6 {
  font-weight: bold;
  margin: 20px;
  font-size: 14px;
}

.branch-profile-form {
  border: 1px solid #363996;
  border-radius: 5px;
  margin-bottom: 20px;
}

/*branch profile form*/
.b-form p {
  font-size: 12px;
  color: rgb(146, 145, 145);
  margin: 20px 20px 0px 20px;
}
.b-form span {
  font-size: 12px;
  color: #000;
  margin: 0px 20px 0px 20px;
  font-weight: 600;
}

/*branch profile form 1*/
.b-form-heading {
  font-size: 12px;
}
.branch-profile-form1 .card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 10px;
  border: none;
  padding: 5px;
  margin-bottom: 20px;
}
.b-form1 p {
  margin: 20px 0px 10px 20px;
  font-size: 13px;
  font-weight: 600;
}
.b-form1-input {
  margin: 0px 20px 0px 20px;
  width: 93%;
  border: 1px solid rgba(197, 197, 197, 0.568);
  border-radius: 5px;
  padding: 5px;
}
.b-form1-select {
  width: 93%;
  margin-left: 20px;
  font-size: 14px;
  border: 1px solid rgba(197, 197, 197, 0.568);
}
.radio-btn {
  display: inline;
}
.radio-btn input {
  margin: 0px 0px 0px 20px;
}
.radio-btn label {
  margin-left: 10px;
  font-size: 14px;
}

.accordion-body {
  padding: 15px !important;
  cursor: pointer;
}

.b-form1 textarea {
  width: 93%;
  margin-left: 20px;
  border: 1px solid rgba(197, 197, 197, 0.568);
  border-radius: 5px;
  font-size: 12px;
  padding: 10px;
}
.multiple-inputs {
  margin: 0px 20px 0px 20px;
  width: 93%;
  border: 1px solid rgba(197, 197, 197, 0.568);
  border-radius: 5px;
  padding-bottom: 5px;
}
.m-input {
  width: 93%;
  border: 1px solid rgba(197, 197, 197, 0.568);
  border-radius: 5px;
  padding: 5px;
  margin: 10px 0px 0px 10px;
}

.bottom-margin {
  margin-bottom: 30px;
}

/*Branch Profile2 form1*/
.branch-profile2-form1 {
  border: 1px solid #363996;
  border-radius: 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 10px;
  margin-bottom: 20px;
  margin-right: 20px;
}

.branch-profile2-form1 th {
  background-color: #fff;
  padding: 15px;
}
.branch-profile2-form1 .abc {
  background-color: #f2f2f2;
}

.branch-profile2-form1 .table-header1 td {
  padding: 20px;
  background-color: #d9dae9d2;
  font-size: 12px;
  font-weight: 600;
}

.branch-profile2-form1 td {
  font-size: 12px;
  font-weight: bold;
  padding: 20px;
  border: 0.5px solid rgb(233, 230, 230);
}

.branch-profile2-form2 .card {
  border: none;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.branch-profile2-form2 .card-header {
  background-color: #cecff6c9;
}
.card-header span {
  font-size: 14px;
  font-weight: 600;
  color: #1b1d6d;
}
.p-text {
  font-weight: 600;
  font-size: 12px;
}
.p-text1 {
  font-size: 12px;
  margin-top: 4px;
}

/*credit risk tab view page*/

.creditrisk-tab {
  margin-top: 20px;
  margin-right: 24px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #444;
  border-color: #363996 !important;
  border-bottom: 3px solid #363996 !important;
  box-shadow: 4px 4px 2px 1px rgba(0, 0, 255, 0.2);
}

.nav-link {
  color: #444 !important;
  font-size: 14px;
  font-weight: 500;
}
.creditrisk-table th {
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.creditrisk-table tbody td {
  font-size: 13px;
}
.total {
  background-color: #3639961e;
}
.total td {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff !important;
  background-color: #363996 !important;
}

.summary-tab {
  margin-top: 20px;
}
.grand-total {
  border: 1px solid #363996;
  border-radius: 5px;
}
.grand-total-heading {
  padding: 10px;
  background-color: #f2f2f2;
}
.grand-total-heading h6 {
  font-weight: bold;
  margin-left: 10px;
}
.grid-container-total {
  display: grid;
  grid-template-columns: 200px 200px 200px 200px 200px;
  padding: 10px;
  margin-left: 3rem;
  margin-top: 10px;
}
.grid-item-total {
  text-align: left;
}

.cf-grid-container-total {
  display: grid;
  grid-template-columns: 180px 180px 180px 180px 180px 180px;
  padding: 10px;
  margin-top: 10px;
  margin-left: 10px;
}
.cf-grid-item-total {
  text-align: left;
}
.cf-grid-item-total p {
  font-size: 12px;
}
.cf-grid-item-total h6 {
  font-weight: bold;
}

.grid-item-total h6 {
  font-weight: bold;
}
.grid-item-total p {
  font-size: 12px;
}

.credit-risk-heading {
  color: #363996;
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 30px;
}
.operational-risk-heading {
  color: #363996;
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 30px;
}
.earning-risk-heading {
  color: #363996;
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 30px;
}

.earning-risk-summary {
  margin-bottom: 40px;
}
.credit-risk-summary thead {
  font-size: 14px;
  background-color: #f2f2f2;
}

.credit-risk-summary tbody {
  font-weight: bold;
  font-size: 13px;
  background-color: #fff;
}

.operational-risk-summary thead {
  font-size: 14px;
  background-color: #f2f2f2;
}

.operational-risk-summary tbody {
  font-weight: bold;
  font-size: 13px;
  background-color: #fff;
}

.earning-risk-summary thead {
  font-size: 14px;
  background-color: #f2f2f2;
}

.earning-risk-summary tbody {
  font-weight: bold;
  font-size: 13px;
  background-color: #fff;
}

.credit-function-heading {
  color: #363996 !important;
  font-size: 12px;
  font-weight: bold;
}

.credit-function-grand-total {
  border: 2px solid #3639965b;
  border-radius: 5px;
}

.ques-card {
  border-left: 3px solid #363996 !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-top: 30px;
}
.ques {
  font-size: 13px;
  font-weight: bold;
  padding: 20px;
}

.border-div {
  width: 3px;
  background-color: #363996;
  height: 7rem;
  margin-top: 36px;
}

.ans-field-header {
  margin: 0px 0px 0px 20px;
  font-size: 12px;
}
.ans-field {
  margin: 0px 0px 0px 20px;
  font-size: 13px;
  font-weight: bold;
}

.error-msg {
  font-size: 12px;
  color: red;
  margin-left: 20px;
  display: none;
}

.audit-form .card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 10px;
  border: none;
  padding: 5px;
  margin-bottom: 20px;
  margin-top: 10px;
}

#top-margin {
  margin-top: 20px;
}

@media only screen and (max-width: 600px) {
  #top-margin {
    margin-top: 0px;
  }
}

.auditor-tickets {
  padding: 10px 10px 10px 10px;
  border-radius: 5px;
  margin: -10px 0px 10px 10px;
}

.Annexure-button {
  background-color: #363996;
  color: #fff;
  padding: 5px 8px 5px 8px;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  text-decoration: none;
}

/*credit risk page */
.annexure-form label {
  font-size: 12px;
  font-weight: bold;
}
.annexure-form input {
  background-color: #f2f2f2;
  border: none;
  padding: 5px;
  border-radius: 5px;
  margin-top: 5px;
  width: 100%;
}
.annexure-form input::placeholder {
  font-size: 12px;
}

.annexure-form textarea {
  font-size: 12px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 5px;
  margin-top: 5px;
}

.disabled-btn {
  background-color: #afb0d5;
  cursor: default;
}

#outer {
  width: 100%;
  text-align: center;
}
.inner {
  margin-right: 45px;
  display: inline-block;
}

#tbl_data_1 {
  padding: 5px;
  padding-bottom: 9px;
  padding-left: 15px;
  /* text-align: right; */
  /* margin-right: 45px; */
}

.footer {
  color: #fff;
  position: fixed;
  bottom: 0;
  width: fit-content;
  right: 0;
  background-color: rgba(47, 46, 46, 0.8);
  font-size: 10px;
  margin-left: 200px;
  padding: 5px;
  z-index: 3;
}

.footer p {
  font-size: 7px;

  margin-bottom: 0px;
}

.table1-header{
	background-color: #f2f2f2;

}

.table1-header th {
  font-size: 13px;
}

.table1 {
  margin-bottom: 0px !important;
}
.table1 > :not(caption) > * > * {
  padding: 0.8rem 0.8rem !important;
}
.name11{
  color: #000000;
  font-size: 11px;
  text-decoration: none;
  display: block;
  padding: 0px 15px;
  text-align: center;

  /* line-height: 60px;   */
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* footer css */
.site-footer
{
  background-color:#ffffff;
  padding:10px 20px 0px 5px;
  font-size:12px;
  line-height:24px;
  color:#000000;
 
}


.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:5px 0
}
.site-footer h6
{
  color:#ff0000;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:3px
}

.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:10px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}


.footer1 {
  color: #fff;
  position: fixed;
  bottom: 0;
  width: fit-content;
  right: 0;
  background-color: rgba(47, 46, 46,
  0.8);
  font-size: 10px;
  /* border-top-left-radius: 15px; */
  padding: 5px;
  z-index: 3;
}

.footer1 p{

  font-size: 10px;

  margin-bottom:0px;
}

input[type="file"]::file-selector-button {
  border-radius: 4px;
  padding: 0 16px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  margin-right: 16px;
  transition: background-color 200ms;
}

/* file upload button hover state */
input[type="file"]::file-selector-button:hover {
  background-color: #f3f4f6;
}

/* file upload button active state */
input[type="file"]::file-selector-button:active {
  background-color: #e5e7eb;
}


.question-container {
  border: 1px solid #ccc;
  padding: 15px; /* Increased padding for more space */
  margin: 10px; /* Increased margin for more space */
  background-color: #f7f7f7;
}

/* Style for the question text */
.question-text {
  font-weight: bold;
  font-size: 18px; /* Increased font size */
  margin-bottom: 10px; /* Increased margin for more space */
}

.question-list {
  list-style: none;
  padding: 0;
}

/* Style for the individual buttons */
.question-list button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #fff; /* White background color */
  color: #333; /* Text color */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* Hover effect */
.question-list button:hover {
  background-color: #f5f5f5; /* Light gray background color on hover */
}


.nav-link.active {
  text-decoration: underline;
}



