* {
  margin: 0;
  padding: 0;
  border: none;
  outline: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}

img {
  border: none;
  outline: 0;
  max-width: 100%;
  vertical-align: middle;
}

a,
div,
h1,
h2,
h3,
h4,
h5,
h6,
img,
p {
  text-decoration: none;
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none
}

a:focus,
a:hover {
  text-decoration: none
}

input[type=button],
input[type=email],
input[type=submit],
input[type=text],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none
}

select {
  cursor: pointer
}

::-moz-selection {
  background-color: #000000;
  color: #fff;
}

::selection {
  background-color: #000000;
  color: #fff;
}

::-webkit-input-placeholder {
  color: #9E9E9E;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

::-moz-placeholder {
  color: #9E9E9E;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #9E9E9E;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

::-webkit-input-placeholder:focus {
  color: #9E9E9E;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

p {
  font-size: 16px;
}

p.small {
  font-size: 12px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.transition {
  transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
}

.container {
  max-width: 1360px;
  margin: auto;
  width: 100%;
}

.shadow-paper {
  padding: 40px;
}

.content-wrap {
  padding: 40px;
}
.content-wrap.no-padding {
  padding: 0;
}

.form-group {
  margin-bottom: 15px;
}

.form-group .form-control {
  border-radius: 2px;
  border: 1px solid #515152;
  padding: 4px
   10px;
  color: #515152;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 34px;
  width: 100%
}
.form-group textarea.form-control{
  height: 95px;
  resize: none;
}

.form-group .form-control.bothIcon {
  padding-left: 25px;
  padding-right: 25px;
}

.form-group .form-control.prefix {
  padding-left: 25px;
}

.form-group .form-control.suffix {
  padding-right: 25px;
}
.form-group>div, .auth-form .form-group>div {
  position: relative;
}

 .form-group .form-control.suffix ~ .icon {
  position: absolute;
  top: 8px;
  bottom: 0;
  right: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-group .form-control.prefix ~ .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  display: flex;
  align-items: center;
}
.form-group label {
  color: #515152;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.form-group .required{
  color: #E57200;
  font-size: 16px;
}

.form-group select.form-control {
  background-image: url(../svg/bottom-icon.svg);
  background-position: calc(100% - 10px);
  background-repeat: no-repeat;
  padding-right: 30px;
}
.form-group .form-control.hasDatepicker {
  background-image: url(../svg/date-icon.svg);
  background-position: calc(100% - 10px);
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form-group .form-control.timepicker {
  background-image: url(../svg/time-icon.svg);
  background-position: calc(100% - 10px);
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form-group .form-control.downIcon {
  background-image: url(../svg/bottom-icon.svg);
  background-position: calc(100% - 10px);
  background-repeat: no-repeat;
  padding-right: 30px;
}

.form-group .error {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 8px;
}
.new-account .error{
  border-color: red !important;
}
.new-account .error + div{
  color: red !important;
}
.new-account input[disabled="disabled"]{
  opacity: 0.7;
  pointer-events: none;
}
.form-group-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.form-group-wrap .form-group {
  flex: 1 1 calc(23% - 10px);
}
.upload-area.custom-upload{
  border:1px dashed #515152;
  background-color: #E1E1E1;
  border-radius: 2px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn-primary,
.DSFORM_submit {
  border-radius: 2px !important;
  background-color: #E57200;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 5px 16px;
  cursor: pointer;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary {
  font-size: 20px;
  font-weight: 700;
  color: #E57200;
  border: 1px solid #E57200;
  padding: 5px 13px;
  background: none;
  border-radius: 2px;
  cursor: pointer;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary.small,.btn-secondary.small {
  font-size: 14px;
}
.btn-primary.middle,.btn-secondary.middle {
  font-size: 16px;
}
.DSFORM_submit {
  font-size: 16px;
  padding: 7px 48px;
}

.w-100 {
  width: 100%;
}
.max-width-100 {
  width: 100%;
}

.h-40 {
  height: 40px;
}
.mt-10{
  margin-top: 10px;
}
.mt-20{
  margin-top: 20px;
}
.mt-30{
  margin-top: 30px;
}
.pt-10{
  padding-top: 10px;
}
.pt-20{
  padding-top: 20px;
}
.pt-30{
  padding-top: 30px;
}
.mb-10{
  margin-bottom: 10px;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-30{
  margin-bottom: 30px;
}
.pb-10{
  padding-bottom: 10px;
}
.pb-20{
  padding-bottom: 20px;
}
.pb-30{
  padding-bottom: 30px;
}
.d-none{
  display: none !important;
}
.checkbox-wrap {
  display: block;
  position: relative;
  padding: 1px 0 1px 26px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #515152;
  text-transform: capitalize;
}

/* Hide the browser's default checkbox */
.checkbox-wrap input {
  position: absolute;
  opacity: 0;
  left: 0;
  cursor: pointer;
  /* height: 0;
  width: 0; */
  /* display: none; */
  z-index: 1;
}

/* Create a custom checkbox */
.checkbox-wrap .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border:1px solid #E57200;
  border-radius: 2px;
}
.checkbox-wrap input:checked ~ .checkmark {
  background-color: #E57200;
}
.checkbox-wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-wrap input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-wrap .checkmark:after {
  left: 5px;
  top: 0px;
  width: 3px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio-wrap {
  display: block;
  position: relative;
  padding: 1px 0 1px 26px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #515152;
  text-transform: capitalize;
}

/* Hide the browser's default radio */
.radio-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  left: 0;
  /* height: 0;
  width: 0;
  display: none; */
}

/* Create a custom radio */
.radio-wrap .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border:1px solid #E57200;
  border-radius: 100%;
}

.process-payment .radio-wrap .checkmark {
  top: 3px;
}

.radio-wrap input:checked ~  .checkmark {
  background-color: #E57200;
}
.radio-wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-wrap input:checked ~ .checkmark:after {
  display: block;
}
.radio-wrap .checkmark:after {
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 100%;
}
/* .radio-wrap label, .checkbox-wrap label {
  text-transform: uppercase;
} */
.row{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.col-25{
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-50{
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-75{
  width: 75%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-100{
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
/* --- Header --- */
.header-main {
  border: 1px solid #E1E1E1;
  padding: 16px 40px;
  float: none;
}

.header-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-wrap .logo-contain {
  max-width: 121px;
  width: 100%;
  float: none;
}

.header-btn .sub-title {
  color: #E57200;
  margin-bottom: 16px;
}

.auth-wrap {
  border: 1px solid #E1E1E1;
}

.header-btn {
  display: flex;
  flex-direction: column;
}

.header-btn>div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-btn .menu-btn {
  font-size: 20px;
  background: none;
  cursor: pointer;
  border: none;
  padding: 5px;
  display: none;
}

.header-btn .edit-btn {
  color: #6E7172;
  margin-left: 6px;
  font-size: 16px;
  font-weight: 700;
}

.clientnote {
  background-color: #0073e5;
  display: flex;
  align-items: center;
  padding: 12px 21px 12px 21px;
  gap: 20px;
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
}

.clientnote a {
  font-weight: 700;
  text-decoration-line: underline;
  color: #FFF;
}

.auth-form {
  max-width: 305px;
  margin: 120px auto;
  width: 100%;
}

.auth-form .sub-title {
  color: rgba(127, 127, 127, 0.50);
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0;
}

.auth-form .forgot-password {
  color: #0073e5;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}

.auth-form .join-text {
  color: #7F7F7F;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  text-align: center;
}

.auth-form .join-text a {
  color: #0073e5;
}

.footer-main {
  padding: 0 40px 40px 40px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.footer-text {
  color: #6E7172;
  font-size: 12px;
}

.social-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.dropdown-wrap {
  position: relative;
}

.dropdown-wrap .user-img {
  background: none;
  border: none;
  cursor: pointer;
}

.user-dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  max-width: 250px;
  -o-box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .2);
  -ms-box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .2);
  box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .2);
  border-radius: 6px;
  margin-top: 8px;
  z-index: 11;
  overflow: hidden;
}

.user-dropdown li {
  font-size: 16px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  cursor: pointer;
}

.user-dropdown li:last-child {
  border: none;
}

.user-dropdown li.active {
  background-color: #E57200;
  color: #fff;
}

.dropdown-wrap.active .user-dropdown {
  visibility: visible;
  opacity: 1;
}

/* --- Menu CSS --- */
.menu-header{
  background-color: #F5F5F5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.menu-bar ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #F5F5F5;
}

.menu-bar ul li {
  border-right: 1px solid #E1E1E1;
}

.menu-bar ul li a {
  color: #000000;
  font-size: 14px;
  padding: 25px 10px;
  display: inline-block;
  min-width: 184px;
  text-align: center;
  text-transform: capitalize;
}

.menu-bar ul li a.active {
  background-color: rgba(229, 114, 0, 0.12);
  color: rgba(229, 114, 0, 1);
  font-weight: 700;
}
.search-last{
  padding: 0 25px;
  max-width: 320px;
  width: 100%;
  border-right: none !important;
}
.geicomenu .search-last{
  max-width: 248px;
}
.multiselect-group{
  margin: 0;
}
.multiselect-group .form-control{
  font-size: 14px;
  height: 24px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 35px;
  border-color: #E57200;
}
.multiselect-group label{
  display: flex;
  align-items: center;
  gap:8px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 13px;
}
.checkbox-auth {
  color: #7F7F7F;
  font-weight: 700;
  margin-top: 10px;
}

.checkbox-auth a {
  color: #0073e5;
}

.checkbox-auth input {
  margin-right: 8px;
}

.client-login-btn {
  font-size: 16px;
  border-radius: 6px;
  padding: 8px 16px;
}

/* --- user Menu --- */
.content-body {
  border: 1px solid #E1E1E1;
}
.content-body.content-border-none{
  border: none;
}
.panel-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.left-panel,
.right-panel {
  width: 49%;
  border: 1px solid rgba(225, 225, 225, 1);
  padding: 30px;
}

.left-panel h3,
.right-panel h3 {
  color: #0073e5;
  margin-bottom: 10px;
}

.left-panel ul li,
.right-panel ul li {
  margin-bottom: 10px;
}

.left-panel ul li a,
.right-panel ul li a {
  background-color: #E57200;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  max-width: 295px;
  width: 100%;
  display: inline-block;
  padding: 16px 10px;
  border-radius: 2px;
  text-transform: capitalize;
}

.auto-login-part-new .box {
  display: -webkit-inline-box; /* Safari */
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  margin-top: 20px;
}

.auto-login-part-new .box picture {
  max-width: 342px;
  width: 100%;
}

/* .auto-login-part-new .box picture img {
  width: 100%;
  height: auto; 
  max-width: 100%;
  display: block;
  object-fit: contain;
} */

.auto-login-part-new .box p {
  color: #6E7172;
  font-size: 14px;
  margin-bottom: 6px;
}

.auto-login-part-new .box p:last-child {
  margin: 0;
}

#slider{
  /* margin:0 auto; */
  /* width:80%; */
  overflow:hidden;
}

.slides{
  overflow:hidden;
  animation-name:fade;
  animation-duration:1s;
  display:none;
}

.slides img{
  width:100%;
  max-width: 342px;
  object-fit: contain;
}
#dot{
  display: flex;
  justify-content: center;
}

.dot{
  display:inline-block;
  border-radius:50%;
  background:#d3d3d3;
  padding:8px;
  margin:10px 5px;
}
#dot .active{
  background:black;
}

/* --- Get Help --- */
.get-help-form p {
  color: #000000;
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}

.get-help-form p span {
  display: block;
  color: #515152;
  font-size: 16px;
  margin-top: 6px;
}

.get-help-form textarea {
  border: 1px solid #515152;
  width: 100%;
  min-height: 320px;
  resize: none;
  padding: 12px;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.get-help-form .DSFORM_submit {
  margin-left: auto;
  margin-top: 10px;
  display: flex;
}

.get-help-form textarea::-webkit-input-placeholder {
  color: #515152;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.get-help-form textarea::-moz-placeholder {
  color: #515152;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.get-help-form textarea:-ms-input-placeholder {
  color: #515152;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.get-help-form textarea::-webkit-input-placeholder:focus {
  color: #515152;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/* --- change form --- */
.change-form {
  max-width: 356px;
  width: 100%;
  margin: auto;
}

.change-form h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
}

.change-form .form-group>div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.change-form .form-group .common-label {
  text-align: right;
  width: 35%;
}

.change-form .form-group .form-control,
.change-form .form-group .error,
.change-form .form-group ul {
  width: calc(100% - 40%);
  margin-left: auto;
  position: relative;
  font-size: 14px;
}
.change-form .form-group .form-control::-webkit-input-placeholder {
  color: #9E9E9E;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.change-form .form-group .form-control::-moz-placeholder {
  color: #9E9E9E;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.change-form .form-group .form-control:-ms-input-placeholder {
  color: #9E9E9E;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.change-form .form-group .form-control::-webkit-input-placeholder:focus {
  color: #9E9E9E;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.change-form .common-warning .note {
  color: #515152;
  font-size: 11px;
}

.change-form .common-warning li {
  position: relative;
  background-image: url(../svg/right-icon.svg);
  background-position: left;
  background-repeat: no-repeat;
  padding-left: 22px;
  margin-top: 5px;
  color: #FF0000;
  font-size: 11px;
}
.change-form .common-warning li:first-child{
  padding: 0;
  background: none;
}
.change-form .btn-primary {
  font-size: 16px;
  padding: 5px 57px;
  margin: auto;
}
.eassy-pass-detail p {
  color: #515152;
  font-size: 16px;
  margin: 15px 0;
}
.eassy-pass-detail .pass-btn{
  display: flex;
  align-items: center;
  justify-content: center;
}
.eassy-pass-detail .btn-secondary {
  margin-right: 10px;
}

.eassy-pass-detail .btn-secondary,
.eassy-pass-detail .btn-primary {
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 12px;
  height: 34px;
}
/* --- View Transcripts --- */
.transcripts-wrap{
  padding: 0;
}

.transcripts-filter{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  padding: 20px;
}
.transcripts-filter .form-group{
  width: 200px;
}

.transcripts-filter .btn-group{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.transcripts-filter .btn-group button{
  width: 128px;
  font-size: 16px;
  padding: 3px 13px;
}
.transcripts-list .transcripts-header{
  background-color: #E1E1E1;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.transcripts-list h5{
  font-weight: 400;
  text-transform: uppercase;
}
.transcripts-header h5{
  font-weight: 400;
  color: #0073e5;
  text-transform: uppercase;
}
.transcripts-name{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #E1E1E1;
}
.transcripts-name h5{
  width: 200px;
  padding: 10px 20px;
  order: 1;
}
.transcripts-name .btn-list {
  padding:12px 15px;
  border-left: 1px solid #E1E1E1;
  border-right: 1px solid #E1E1E1;
  width: calc(100% - 360px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  order: 2;
}
.transcripts-name .btn-list button{
  color: #E57200;
  font-size: 12px;
  font-weight: 400;
  background-color:rgba(229, 114, 0, 0.15);
  border:1px solid #E57200;
  text-transform: uppercase;
  padding: 8.5px 8px;
  border-radius: 2px;
  cursor: pointer;
}
.attorney-serve-requests .btn-list button{
  color: #E57200;
  font-size: 12px;
  font-weight: 400;
  background-color:rgba(229, 114, 0, 0.15);
  border:1px solid #E57200;
  text-transform: uppercase;
  padding: 8.5px 12px;
  border-radius: 2px;
  cursor: pointer;
}
.attorney-serve-requests a {
  color: #0073e5;
}
.no-result {
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
  height: 100%; /* Ensure the parent has some height to center the content */
  text-align: center; /* Ensure text alignment is centered */
  font-size: 18px; /* Adjust the font size for better visibility */
  color: #555; /* A softer color for the text */
}
.transcripts-name .btn-list button.disable{
    background-color: #E0E0E0; /* Light grey background */
    color: #808080;          /* Dark grey text */
    border: 1px solid #B0B0B0; /* Light grey border */
    cursor: not-allowed;      /* Indicate it is not clickable */
    /* opacity: 0.7;           problematic for mobile view  Optional for a dimmed look */
}
.transcripts-name .progress{
  width: 160px;
  text-align: center;
  order: 3;
}
 .progress .btn{
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 8.5px 6px;
  border-radius: 2px;
  width: 142px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
 .progress .request-btn{
  border:1px solid #0073e5;
  background-color: rgba(8, 117, 121, 0.13);
  color: #0073e5;
}
 .progress .served-btn{
  border:1px solid #47BD1D;
  background-color: rgba(71, 189, 29, 0.25);
  color: #47BD1D;
}
 .progress .progress-btn{
  border:1px solid #FF0000;
  background-color: rgba(255, 0, 0, 0.15);
  color: #FF0000;
}
 .progress .noserve-btn{
  border:1px solid #6E7172;
  background-color: rgba(110, 113, 114, 0.12);
  color: #6E7172;
}
/* .transcripts-footer{
  background-color: #F5F5F5;
  text-align: center;
  padding:16px 10px;
} */
body.modal-open{
  overflow: hidden;
}
.modal {
  position: fixed;
  z-index: 11; /* 1 */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.is-visible {
  visibility: visible;
  opacity: 1;
}
.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal .modal-wrapper{
  max-width: 615px;
  width: 100%;
  margin: auto;
  border: 1px solid #E1E1E1;
  position: relative;
  z-index: 11;
  background-color: #fff;
}
.modal-header{
  background-color: #F5F5F5;
  position: relative;
}
.modal-heading{
  color: #E57200;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
}
.modal-header .modal-close{
  background: none !important;
  border: none !important;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  cursor: pointer;
}
.transcripts-modal .file-list{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  border-bottom: 1px solid rgba(239, 239, 239, 1);
}
.transcripts-modal .file-list label{
  display: flex;
  gap: 5px;
}
.transcripts-modal .file-list:last-child{
  border: none;
}
.transcripts-modal .file-list p{
  font-size: 16px;
  color: #E57200;
  font-weight: 500;
}
.transcripts-modal .file-list span{
  color: #C8C8C8;
}
.transcripts-modal .file-list .down-btn{
  border:1px solid #E57200;
  color: #E57200;
  font-size: 12px;
  background-color: rgba(229, 114, 0, 0.15);
  text-transform: uppercase;
  display: inline-block;
  padding: 9px 18px;
  border-radius: 2px;
  min-width: 110px;
  text-align: center;
}
/* --- My Statement --- */
.statement-form{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  padding: 20px;
}
.statement-form .form-group{
  margin: 0;
  max-width: 250px;
  width: 100%;
}

.statement-form .btn-primary{
  font-size: 16px;
  padding: 2px 16px;
}
.statement-detail{
  padding: 20px;
}
.statement-info{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 15px;
}
.statement-info > div{
  width: 30%;
}
.statement-info > .full{
  width: 100%;
}
.statement-info h3{
  font-size: 18px;
  margin-bottom: 3px;
}
.statement-info p{
  color: #000;
  font-size: 16px;
  margin-bottom: 3px;
}
.statement-info p:last-child{
  margin: 0;
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive table {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border: 1px solid #E1E1E1;
  border-spacing: 0;
  min-width: 1000px;
}
.table-responsive table thead{
  background-color: #F5F5F5;
}
.table-responsive table thead th{ 
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 5px;
  border-right: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
}
.table-responsive table tbody td{ 
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 5px;
  border-right: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
}
.table-responsive table tbody td .link{
  color: #0073e5;
  text-decoration: underline;
}
.table-responsive table thead th:last-child{
  border-right: none;
}
.table-responsive table tbody td:last-child{
  border-right: none;
}
.table-responsive table tbody tr:last-child td{
  border-bottom: none;
}
.table-responsive .dataTables_wrapper {
  font-size: 14px; 
}
.day-info{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #F5F5F5;
  padding: 20px 0;
}
.day-info div{
  width: 16%;
  text-align: center;
  padding: 15px 10px;
}
.day-info span{
  display: block;
}
.day-info h4{
  color: #E57200;
}
.remit-desc{
  background-color: #F5F5F5;
  text-align: center;
  padding: 30px 20px;
  max-width: 436px;
  width: 100%;
  margin: 30px auto;
}
.remit-desc h3{
  font-size: 18px;
  color: #515152;
  margin-bottom: 5px;
}
.remit-desc p{
  font-size: 18px;
  color: #515152;
}
.matric-form{
  padding: 40px;
}
.matric-form h3{
  text-align: center;
  text-transform: capitalize;
  font-size: 18px;
}
.matric-form h3 span{
  font-weight: 400;
  display: block;
  margin-top: 3px;
  font-size: 14px;
}
.matric-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 0 20px;
}
.matric-wrap .form-group{
  max-width: 200px;
  width: 100%;
}
.matric-btn{
  display:flex;
  justify-content: center;
}
.custom-tab-nav {
  display: flex;
  gap: 10px;
  margin: 30px 20px;
}
.schedule-page .inner-wrapper-2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 30px 20px 30px;
}
.schedule-page .inner-wrapper-2 h4{
  color: #E57200;
  text-transform: capitalize;
}
.schedule-page .inner-wrapper-2 .right-view ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap:10px;
}
.schedule-page .inner-wrapper-2 .right-view .btn-primary{
  font-size: 16px;
  display: flex;
  gap: 10px;
}
.custom-pagination{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap:10px;
  background-color: #F5F5F5;
  text-align: center;
  padding: 16px 10px;
}
.custom-pagination span{
  color:#000000;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.custom-pagination .active{
  width: 32px;
  height: 32px;
  justify-content: center;
  background-color: #E57200;
  border: 1px solid #E57200;
  border-radius: 2px;
  color: #fff;
}
.custom-pagination a{
  border:1px solid #8B8B8B;
  color: #131315;
  font-size: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.custom-pagination a:first-child, .custom-pagination a:last-child{
  border: none;
  width: auto;
  height: auto;
  gap: 5px;
}
.calender_view_tab{
  float: none !important;
  width: 100% !important;
}
.calender_view_tab table{
  width: 100%;
}
.video-download-desc{
  text-align: center;
  margin-bottom: 30px;
}
.video-download-desc h3{
  margin: 10px 0;
}
.tooltip{
  position: relative;
}
.tooltip .info-icon{
  cursor: pointer;
}
.tooltip-desc{
  position: absolute;
  top: 100%;
  right: -9px;
  background-color: #fff;
  -o-box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .2);
  -ms-box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .2);
  box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .2);
  padding: 10px 20px;
  min-width: 250px;
  border-radius: 2px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  visibility: hidden;
  opacity: 0;
}
.tooltip-desc.active{
  visibility: visible;
  opacity: 1;
}
.tooltip-desc::after {
  position: absolute;
  content: " ";
  top: -15px;
  right: 10px;
  margin-left: -5px;
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: rotate(180deg);
}
.tooltip-desc p{
  font-size: 12px;
}
.serve-form{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
.serve-form .form-group{
  display: flex;
  gap:10px;
  margin: 0;
}
.serve-form .form-group .form-control{
  max-width: 200px;
}
.serve-form .form-group .btn{
  height: 34px;
  min-width: 130px;
  font-weight: 700;
  font-size: 16px;
}
.serve-form .progress{
  display: flex;
  flex-wrap: wrap;
  gap:40px;
}
.serve-form .progress .btn{
  height: 34px;
  position: relative;
}
.serve-form .progress .btn:before{
  position: absolute;
  content: "";
  background-image: url(../svg/progress-btn.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  left: 140px;
}
.serve-form .progress .btn:last-child:before{
  display: none;
}
.serve-form .progress .btn:nth-last-child(2):before{
  background-image:none;
  background-color: #D9D9D9;
  width: 2px;
  height: 100%;
  left: 145px;
  top:0;
}
#order-history-page-new td {
  text-align: center;
  width: 20px;
}
/* .attorney-serve-requests td {
  text-align: center;
  width: 15px;
} */
.payform-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
}
#payform {
  width: 100%;
  margin-top: 15px;
}
.search-transcripts-form{
  display: flex;
  flex-wrap: wrap;
  gap:10px;
  padding: 15px;
}
.search-transcripts-form > .form-group{
  max-width: 200px;
  width: 100%;
}
.search-transcripts-btn{
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}
.search-transcripts-btn input{
  min-width: 128px;
}
.scheduling-page .tabelborder, .geico-browse-form .tabelborder{
  border-bottom: 1px solid #E1E1E1;
  padding: 30px;
}
.scheduling-page .title{
  font-size: 20px;
  color: #0073e5;
  margin-bottom: 15px;
}
.scheduling-page .note{
  color: #6E7172;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 10px 0;
}
.scheduling-page .remove-btn, .scheduling-page .remove-witness-btn{
  border: 1px solid #E50000;
  background-color: rgba(255, 0, 0, 0.15);
  color: #E50000;
  font-weight: 700;
  font-size: 16px;
  padding: 7px 32px;
  /* margin-top: 26px; */
  cursor: pointer;
}
.scheduling-page .text-italic{
  color: #000;
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
}
.scheduling-page .tabelborder-header{
  background-color: #F5F5F5;
  border-top: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
}
.scheduling-page .tabelborder-header .form-group{
  max-width: 440px;
  width: 100%;
  padding: 10px;
  background-color: rgba(229, 114, 0, 0.12);
  margin: 0;
}
.scheduling-page .tabelborder-header .form-group.max-650{
  max-width: 650px;
}
.scheduling-page .tabelborder-header .form-group label{
  color: #E57200;
}
.scheduling-page .tabelborder-header .form-group .form-control{
  border:1px solid #E57200;
  max-width: 320px;
  width: 100%;
}
#searchtabcontainer { 
  height:450px;
}
.userpreferences-table{
  margin: 20px 0 30px;
}
#designees_chosen ul {
  border-radius: 2px;
  border: 1px solid #515152;
  padding: 4px 10px;
  color: #515152;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}

#designees_chosen li {
  padding: 4px;
  padding-right: 24px;
  color: #515152;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  height: 24px;
}

#designees_chosen li .search-choice-close {
  position: absolute;
  top: 5px;
  right: 5px;
}

.attendee_email, .witness_section {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

#languagecontainer {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  width: 100%;
}

.attendee_email .remove-btn {
  margin-top: 12px;
}

.remove-witness-btn {
  margin-top: 12px;
}

.form-group input[type="checkbox"], .form-group input[type="radio"] {
  cursor: pointer;
}
.scheduling-page .tabelborder-header .flex{
  display: flex;
  align-items: center;
  gap: 10px;
}
/* .geico-browse-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
} */

/* --- Responsive CSS --- */
@media only screen and (max-width: 1199px) {
  .shadow-paper {
    padding: 30px 20px;
  }

  .content-wrap {
    padding: 30px 20px;
  }
  .content-wrap.no-padding {
    padding: 0;
  }
  .transcripts-wrap{
    padding: 0;
  }

  .header-main {
    padding: 16px 20px;
  }

  .footer-main {
    padding: 0 20px 30px 20px;
  }

  .auth-form {
    margin: 50px auto;
  }

  .auto-login-part-new .box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .header-btn .menu-btn {
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight color safari */
    display: flex;
  }
  
  .menu-bar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -1000px;
    right: 0;
    width: 250px;
    overflow: auto;
    background-color: #F5F5F5;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }

  .menu-bar.active {
    left: 0;
    visibility: visible;
    opacity: 1;
  }

  .menu-bar.active:before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .menu-bar ul {
    flex-direction: column;
    height: 100%;
    z-index: 1;
    position: relative;
  }

  .menu-bar ul li {
    border: none;
    width: 100%;
  }

  .menu-bar ul li a {
    width: 100%;
    min-width: 100%;
    text-align: left;
    padding: 16px 20px;
  }

  .overflow-hidden {
    overflow: hidden;
    height: 100vh;
  }
  .menu-header{
    justify-content: flex-end;
    padding:10px 20px;

  }
  .search-last{
    padding: 0;
  }
  .transcripts-filter{
    justify-content: space-between;
  }
  .transcripts-list .transcripts-header{
    padding: 10px 20px;
  }

  .transcripts-filter .form-group{
    width: 48.5%;
  }
  .transcripts-filter .btn-group button{
    width: 100px;
  }
  .transcripts-name h5{
    width: 50%;
    order: 1;
  }
  .transcripts-name .btn-list{
    width: 100%;
    padding: 10px 20px;
    order: 3;
  }
  .transcripts-name .progress{
    width:50%;
    text-align: right;
    padding: 10px 20px;
    order: 2;
  }
  .statement-info p{
    font-size: 14px;
  }
  .statement-form form{
    width: 100%;
  }
  .statement-form .form-group{
    max-width: 100%;
  }
  .day-info div{
    width: 30%;
  }
  .serve-form .form-group{
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .serve-form .form-group .form-control{
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .col-25,.col-50,.col-75{
    width: 100%;
  }
  .scheduling-page .remove-btn{
    margin: 0 0 15px;
  }
  .scheduling-page .tabelborder{
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {

  .left-panel ul li a,
  .right-panel ul li a {
    padding: 12px 6px;
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 20px;
  }

  .footer-logo {
    max-width: 220px;
  }

  .header-wrap .logo-contain {
    max-width: 80px;
  }

  .header-btn .sub-title {
    font-size: 14px;
  }

  .client-login-btn {
    font-size: 14px;
    padding: 5px 16px;
  }

  .get-help-form textarea {
    min-height: 150px;
  }

  .change-form {
    max-width: 100%;
  }

  .change-form .form-group .common-label {
    text-align: left;
    width: 25%;
  }

  .change-form .form-group .form-control,
  .change-form .form-group .error,
  .change-form .form-group ul {
    width: calc(100% - 30%);
  }
  .transcripts-header h5{
    width: 100%;
    margin-bottom: 10px;
  }
  .transcripts-header h5:last-child{
    margin-bottom: 0px;
  }
  .day-info div{
    width: 48%;
  }
  .statement-info{
    gap: 20px;
  }
  .statement-info p{
    font-size: 12px;
  }
  .matric-wrap .form-group{
    max-width: 100%;
  }
  .serve-form .progress .btn{
    min-width: 100%;
  }
  .serve-form .progress .btn:before{
    left: 0;
    right: 0;
    margin: auto;
    top: 45px;
    transform: rotate(90deg);
  }
  .serve-form .progress .btn:nth-last-child(2):before{
    transform: none;
    left: 0;
    top: 37px;
  }
  .search-transcripts-form > .form-group{
    max-width: 49%;
  }
}

@media only screen and (max-width: 575px) {

  .left-panel,
  .right-panel {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
  }

  .social-wrap {
    margin-bottom: 20px;
  }

  .change-form .form-group .common-label {
    width: 100%;
    margin-bottom: 8px;
  }

  .change-form .form-group .form-control,
  .change-form .form-group .error,
  .change-form .form-group ul {
    width: 100%;
  }
  .transcripts-filter .form-group{
    width: 100%;
  }
  .day-info div{
    width: 100%;
  }
  .statement-info > div{
    width: 100%;
    text-align: center;
  }
  .search-last{
    max-width: 100%;
  }
  .search-transcripts-form > .form-group{
    max-width: 100%;
  }
}

/* ===========================================
   Forgot Password & Reset Password Pages
   =========================================== */

/* Forgot Password Form */
.forgot-password-form {
  max-width: 500px;
  margin: 80px auto;
  text-align: center;
}

.forgot-password-form h2 {
  color: #0073e5;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.forgot-password-form p {
  color: #666;
  font-size: 13px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.forgot-password-form .error-message {
  color: #dc3545;
  font-size: 14px;
  margin-bottom: 16px;
}

.forgot-password-form .form-group {
  margin-bottom: 16px;
}

.forgot-password-form .form-control {
  max-width: 220px;
  margin: 0 auto;
  border-color: #ccc;
}

.forgot-password-form .btn-primary {
  width: auto;
  display: inline-flex;
  padding: 8px 24px;
  font-size: 14px;
}

/* Auth Form Heading Color - Brand Blue */
.auth-form h2 {
  color: #0073e5;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.auth-form .error-message {
  color: #dc3545;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Reset Password Container - Two Column Layout */
.reset-password-container {
  display: flex;
  gap: 40px;
  max-width: 800px;
  margin: 60px auto;
  align-items: flex-start;
}

.reset-password-form {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.reset-password-form h2 {
  color: #0073e5;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.reset-password-form .message {
  margin-bottom: 16px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.reset-password-form .form-group {
  margin-bottom: 16px;
}

.reset-password-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #515152;
}

.reset-password-form .form-group select {
  max-width: 220px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
  background-color: #fff;
  margin: 0 auto;
}

.reset-password-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  margin: 0 auto 16px auto;
  text-align: left;
}

.reset-password-form .checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.reset-password-form .checkbox-group label {
  display: inline;
  margin-bottom: 0;
}

.reset-password-form .form-control {
  max-width: 220px;
  border-color: #ccc;
  margin: 0 auto;
}

.reset-password-form .btn-primary {
  width: auto;
  display: inline-flex;
  padding: 8px 24px;
  font-size: 14px;
}

/* Password Requirements Info Box */
.password-requirements {
  flex: 0 0 280px;
}

.password-requirements .info-box {
  background: #f5f5f5;
  border-left: 4px solid #E57200;
  padding: 20px;
  border-radius: 0 4px 4px 0;
}

.password-requirements .info-box b {
  display: block;
  margin-bottom: 12px;
  color: #333;
}

.password-requirements .info-box ul {
  margin: 0;
  padding-left: 20px;
}

.password-requirements .info-box ul li {
  margin-bottom: 8px;
  color: #515152;
  font-size: 14px;
}

/* Responsive for Password Pages */
@media only screen and (max-width: 768px) {
  .reset-password-container {
    flex-direction: column;
    margin: 40px auto;
    padding: 0 20px;
  }

  .reset-password-form {
    max-width: 100%;
  }

  .password-requirements {
    flex: none;
    width: 100%;
  }
}