/*================================================
1. Global CSS
2. Mixins Css
3. Buttons

11. Home Two Menu CSS
12. Home Two Hero CSS 
13. Home Two About CSS
14. Home Two Knowledge Box CSS
15. Home Two Support Fourm CSS
16. Home Two Documentation CSS
17. Home Two Blog Area CSS
18. Home Two Footer CSS
19. Home two Newsletter CSS
20. Home Two Testimonial CSS

21. FAQ Page CSS
22. Sign Up Page CSS
23. Login Page CSS
24. Blog Grid Page CSS
25. Blog Sidebar Page CSS
26. 404 Page CSS
27. Contact Page CSS
28. Blog Details Page CSS
29. Topic Page CSS
30. Ask A Qsn page CSS
31. Topic Details page CSS
32. Forum Qsn Page CSS
33. Documents Page CSS

================================================*/
/*================================================
1. Global Css
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Mitr:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --font-mitr: 'Mitr', sans-serif;
  --font-work-sans: 'Work Sans', sans-serif;
  --primary-color: #006F30;
  --green-color: #03C170;
  --light-blue-color: #3093EF;
  --dark-blue-color: #118CB3;
  --orenge-color: #F27C3A;
  --red-color: #ef1212;
  --background: #F4F3F5;
  --bg-color: #1D1D1D;
  --bg-dark: #242526;
  --bg-dark2: #202327;
  --text-color: #1F2937;
  --text-color2: #595959;
  --white: #fff;
  --text-light: #9E9E9E;
  --text-light2: #DBDBDB;
  --placeholder-text:#878787;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-mitr);
}

::-moz-selection {
  color: var(--white);
  background: var(--primary-color);
}

::selection {
  color: var(--white);
  background: var(--primary-color);
}

/*================================================
1. Mixing Css
=================================================*/
body {
  font-family: var(--font-mitr);
}

a {
  color: unset;
  text-decoration: none;
}
a:focus {
  outline: 0 solid;
}
a:hover {
  text-decoration: none;
  color: unset;
}

i.bx {
  vertical-align: middle;
}

.pt-110 {
  padding-top: 110px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-110 {
    padding-top: 90px;
  }
}
@media (max-width: 991px) {
  .pt-110 {
    padding-top: 80px;
  }
}

.pb-110 {
  padding-bottom: 110px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-110 {
    padding-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-25 {
  padding-top: 25px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.btn-hover {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.btn-hover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--bg-color);
  width: 100%;
  height: 100%;
  transition: 0.5s;
  border-radius: 5px;
  z-index: -1;
  transform: scaleX(0);
}
.btn-hover:hover {
  color: #fff !important;
}
.btn-hover:hover::after {
  transform: scaleX(1);
}

.page-title-and-breadcurmb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .page-title-and-breadcurmb {
    flex-wrap: wrap;
  }
}
.page-title-and-breadcurmb .page-title {
  margin-right: 20px;
}
.page-title-and-breadcurmb .page-title h4 {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-mitr);
}
.page-title-and-breadcurmb.two {
  background-color: var(--white);
  padding: 13px 18px;
  border-radius: 5px;
}
.page-title-and-breadcurmb.two .page-title h4 {
  margin-bottom: 0;
  font-size: 22px;
}

nav {
  display: flex;
  align-items: center;
}
nav .breadcrumb {
  margin: 0;
}
nav .breadcrumb .breadcrumb-item {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: var(--bg-color);
  transition: 0.35ms;
}
nav .breadcrumb .breadcrumb-item:hover {
  color: var(--primary-color);
}
nav .breadcrumb .breadcrumb-item.active {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
}
nav .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: url("/assets/images/icons/breadcrumb-icon.svg");
}

.page-title2 {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 30px;
}
.page-title2 .title-logo {
  margin-right: 15px;
}
.page-title2 h5 {
  margin-bottom: 0px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.layout-wrapper {
  max-width: 100%;
  min-width: 100%;
}

.primary-btn {
  border: none;
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
}

.lg-btn {
  padding: 12px 24px;
}

/*================================================
2. Form Css
=================================================*/
.form-box {
  width: 100%;
}

.form-inner {
  text-align: start;
  position: relative;
}
.form-inner label {
  font-family: var(--font-mitr);
  font-size: 16px;
  font-weight: 400;
  color: var(--bg-color);
  margin-bottom: 10px;
  line-height: 1;
}
.form-inner input, .form-inner textarea {
  width: 100%;
  height: 56px;
  border: 1px solid rgba(108, 46, 185, 0.08);
  border-radius: 5px;
  padding: 12px 20px;
  outline: none;
  transition: all 0.4s ease-in;
  background-color: transparent;
  font-size: 15px;
  color: var(--text-color2);
  font-family: var(--font-work-sans);
  background-color: #F8F8F8;
}
@media (max-width: 767px) {
  .form-inner input, .form-inner textarea {
    padding: 8px 15px;
  }
}
.form-inner input:focus, .form-inner textarea:focus {
  border: 1px solid rgba(108, 46, 185, 0.5);
  background-color: #FFFFFF;
}
.form-inner input::-moz-placeholder, .form-inner textarea::-moz-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: var(--placeholder-text);
}
.form-inner input::placeholder, .form-inner textarea::placeholder {
  font-size: 12px;
  font-weight: 500;
  color: var(--placeholder-text);
}
.form-inner.style-2 .form-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 972px;
  width: 100%;
  height: 56px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.form-inner.style-2 .form-content .primary-btn {
  font-size: 17px;
  border-radius: 4px;
  white-space: nowrap;
}
.form-inner.style-2 .form-content .lg-btn {
  padding: 15px 20px;
  height: 56px;
  display: flex;
  align-items: center;
}
.form-inner.style-2 label {
  margin-bottom: 20px;
}
.form-inner.style-2 input {
  width: 100%;
  border-radius: unset;
  border: none;
  border: 1px solid rgba(108, 46, 185, 0.08);
}
.form-inner.style-2 input:focus {
  border: 1px solid rgba(108, 46, 185, 0.5);
  background-color: #FFFFFF;
}
.form-inner.style-3 {
  margin-bottom: 50px;
}
.form-inner.style-3 label {
  margin-bottom: 20px;
}
.form-inner.style-3 .form-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 661px;
}
.form-inner.style-3 .form-content .form-input-area {
  display: flex;
  max-width: 550px;
  width: 100%;
  height: 50px;
  background: var(--background);
  border-radius: 4px;
}
.form-inner.style-3 .form-content .form-input-area input {
  border: none;
  background-color: transparent;
}
.form-inner.style-3 .form-content .form-input-area .primary-ok-btn {
  background: var(--bg-color);
  color: var(--white);
  padding: 16px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px 10px 10px 50px;
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
}
.form-inner.style-3 .form-content .btn-secondary {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--primary-color);
  background: var(--background);
  border-radius: 5px;
  border: none;
  padding: 12.5px 19px;
}
@media (max-width: 767px) {
  .form-inner.style-3 .form-content .btn-secondary {
    padding: 8px 20px;
  }
}
.form-inner.style-3 .form-content .btn-secondary:focus {
  box-shadow: none;
}

.modal-backdrop {
  display: none;
}

/*================================================
select2 css start
=================================================*/
.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 12px;
  font-weight: 500;
  color: var(--placeholder-text);
  line-height: 45px;
  padding: 0 15px;
}

.select2-container--default .select2-selection--single {
  background-color: var(--white);
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  height: 48px;
  transition: all 0.4s ease-in;
}
.select2-container--default .select2-selection--single:focus {
  border: 1px solid var(--primary-color);
  box-shadow: 0px 0px 15px rgba(108, 46, 185, 0.1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
  position: absolute;
  top: 3px;
  right: 10px;
  width: 20px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary-color);
  color: white;
}

.select2-search__field {
  outline: unset;
}
.select2-search__field:focus {
  border: 1px solid var(--primary-color);
}

/*================================================
 search with btn
=================================================*/
.input-with-btn {
  max-width: 350px;
  width: 100%;
}
.input-with-btn input {
  width: 100%;
  border-radius: 5px 0 0 5px;
  background: var(--white);
  border: none;
  outline: none;
  padding: 7px 20px;
  transition: all 0.4s ease;
}
.input-with-btn input:focus {
  box-shadow: 0px 0px 15px rgba(108, 46, 185, 0.1);
}
.input-with-btn input::-moz-placeholder {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light) 3;
}
.input-with-btn input::placeholder {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light) 3;
}
.input-with-btn button {
  outline: none;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 0 5px 5px 0;
  min-width: 55px;
}
.input-with-btn.style2 {
  max-width: 100%;
}
.input-with-btn.style2 input {
  width: 100%;
  border-radius: 5px 0 0 5px;
  background: var(--white);
  border: none;
  outline: none;
  padding: 7px 20px;
  transition: all 0.4s ease;
  border: 1px solid #EEEEEE;
  padding: 11px 10px;
}
.input-with-btn.style2 input:focus {
  box-shadow: 0px 0px 15px rgba(108, 46, 185, 0.1);
}
.input-with-btn.style2 input::-moz-placeholder {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light) 3;
}
.input-with-btn.style2 input::placeholder {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light) 3;
}
.input-with-btn.style2 button {
  outline: none;
  border: none;
  background: #F4F4F4;
  color: var(--text-light) 3;
  border-radius: 0 5px 5px 0;
  min-width: 55px;
}

.form-box-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
}

/*================================================
 switch css
=================================================*/
.form-switch {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .form-switch {
    justify-content: end;
  }
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-check-input {
  cursor: pointer;
  border-color: var(--primary-color);
}

.ui-widget-header {
  border: none;
  color: var(--primary-color);
  background: rgba(var(--primary-color), 0.2);
  font-weight: bold;
  font-size: 16px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: unset;
  background: rgba(var(--primary-color), 0.1);
  font-weight: normal;
  color: var(--text-color);
  border-radius: 2px;
  font-size: 14px;
  text-align: center;
  transition: all 0.5s ease-out 0s;
}
.ui-state-default:hover, .ui-widget-content .ui-state-default:hover, .ui-widget-header .ui-state-default:hover, .ui-button:hover, html .ui-button.ui-state-disabled:hover:hover, html .ui-button.ui-state-disabled:active:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ui-widget.ui-widget-content {
  border: none;
  box-shadow: 0px 0px 15px rgba(108, 46, 185, 0.1);
  z-index: 1;
}

.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
  position: absolute;
  top: 8px;
  width: 1.2em;
  height: 1.2em;
  border-radius: 5px;
  background: transparent;
  color: #000;
}
.ui-datepicker .ui-datepicker-next:hover, .ui-datepicker .ui-datepicker-prev:hover {
  border: unset;
}

.datepicker-icon {
  position: absolute;
  bottom: 11px;
  transform: translateY(-50%);
  right: 15px;
}

/*================================================
3. Header Css
=================================================*/
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 999;
  transition: 0.55s ease;
  border-bottom: 1px solid transparent;
}
.header-area.sticky {
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
}
.header-area .sidebar-header {
  background: var(--white);
  max-width: 330px;
  width: 100%;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.55s ease;
  min-height: 70px;
}
@media (max-width: 1500px) {
  .header-area .sidebar-header {
    max-width: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-area .sidebar-header {
    max-width: 170px;
  }
}
@media (max-width: 991px) {
  .header-area .sidebar-header {
    max-width: 70px;
  }
}
.header-area .sidebar-header.slide {
  max-width: 70px;
  padding: 26px 25px;
  transition: 0.55s ease;
}
.header-area .sidebar-header.slide .header-logo-icon {
  display: none;
  visibility: hidden;
}
.header-area .sidebar-header.slide .header-logo {
  display: none;
  visibility: hidden;
}
.header-area .main-conent-header {
  width: calc(100% - 330px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 70px;
  min-height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--white);
  transition: 0.55s ease;
  gap: 25px;
}
@media (max-width: 1500px) {
  .header-area .main-conent-header {
    width: calc(100% - 280px);
    margin-left: 280px;
    padding: 8px 30px;
  }
}
@media (max-width: 1199px) {
  .header-area .main-conent-header {
    justify-content: end;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-area .main-conent-header {
    width: calc(100% - 170px);
    padding: 13px 40px;
  }
}
@media (max-width: 991px) {
  .header-area .main-conent-header {
    width: calc(100% - 70px);
    padding: 13px 30px;
  }
}
.header-area .main-conent-header.slide {
  width: calc(100% - 70px);
  transition: 0.55s ease;
}
.header-area .main-conent-header .offer-area {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .header-area .main-conent-header .offer-area {
    display: none;
    visibility: hidden;
  }
}
.header-area .main-conent-header .offer-area svg {
  fill: var(--primary-color);
  margin-right: 10px;
}
.header-area .main-conent-header .offer-area p {
  margin-bottom: 0;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 15px;
  color: var(--text-color2);
}
.header-area .main-conent-header .offer-area p a {
  color: var(--primary-color);
  text-decoration: underline;
}
.header-area .main-conent-header .nav-right {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1500px) {
  .header-area .main-conent-header .nav-right {
    gap: 25px;
  }
}
.header-area .main-conent-header .nav-right .add-balance-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-icon svg {
  fill: var(--primary-color);
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content {
  line-height: 1;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content h6 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 17px;
  color: var(--primary-color);
  margin-bottom: 5px;
  line-height: 1;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content h6 span {
  font-size: 12px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-btn {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--bg-color);
  line-height: 1;
  background-color: transparent;
  padding: 0;
  border: none;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-btn:focus {
  box-shadow: none;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .specification-modal {
  background-color: rgba(29, 29, 29, 0.35);
  z-index: 99999;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog {
  max-width: 920px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content {
  padding: 30px 15px 30px 50px;
  background: #FFFFFF;
  border-radius: 10px;
  border: none;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header {
    margin-bottom: 15px;
  }
}
@media (max-width: 1399px) {
  .header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header {
    margin-bottom: 15px;
  }
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .currency-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: rgba(0, 111, 48, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .currency-icon {
    margin-bottom: 15px;
  }
}
@media (max-width: 1399px) {
  .header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .currency-icon {
    margin-bottom: 15px;
  }
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .currency-icon span {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background-color: rgba(0, 111, 48, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .currency-icon span i {
  color: var(--white);
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .modal-title {
  font-family: var(--font-mitr);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--bg-color);
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .btn-close {
  background: transparent;
  color: var(--bg-dark);
  transition: 0.35s;
  position: absolute;
  right: 25px;
  top: 25px;
  height: unset;
  width: unset;
  padding: 0;
  margin: 0;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .btn-close i {
  line-height: 1;
  font-size: 30px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-header .btn-close:hover {
  color: red;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body {
  padding: 0;
  max-height: 490px;
  padding-right: 30px;
  overflow-y: auto;
  overflow-x: hidden;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body::-webkit-scrollbar {
  width: 5px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 111, 48, 0.25);
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body::-webkit-scrollbar-track {
  background: #E8E8E8;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body h5 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: var(--bg-color);
  margin-bottom: 5px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area {
  margin-bottom: 30px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area ul li {
  font-size: 18px;
  font-family: var(--font-mitr);
  font-weight: 400;
  position: relative;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area ul li .form-check-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  z-index: -1;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area ul li .form-check-input:checked ~ label {
  background-color: var(--primary-color);
  color: var(--white);
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area ul li label {
  border: 1px solid var(--primary-color);
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area #OtherPrice {
  padding-top: 20px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area #OtherPrice .input-area {
  display: flex;
  align-items: center;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area #OtherPrice .input-area input {
  height: 48px;
  background: #F4F3F5;
  border: 1px solid rgba(108, 46, 185, 0.08);
  border-radius: 5px;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 15px;
  color: var(--text-color2);
  width: 100%;
  padding: 20px 20px;
  outline: none;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-amount-area #OtherPrice .input-area button {
  padding: 10px 35px;
  height: 48px;
  border: none;
  background-color: var(--primary-color);
  border-radius: 5px;
  margin-left: -5px;
  color: var(--white);
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord {
  margin-bottom: 25px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord {
    margin-bottom: 20px;
  }
}
@media (max-width: 1399px) {
  .header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord {
    margin-bottom: 20px;
  }
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option {
  display: inline-block;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  padding: 10px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option .pay-with-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--primary-color);
  padding: 10px 15px;
  border-radius: 5px;
  position: relative;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option .pay-with-card::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 75px;
  background: #EEEEEE;
  right: -55px;
  top: -12px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option .pay-with-card .pay-card-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option .pay-with-card .pay-card-info .pay-card-text h6 {
  font-size: 15px;
  color: var(--bg-color);
  margin-bottom: 3px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option .pay-with-card .pay-card-info .pay-card-text p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option .pay-with-card .check-box {
  height: 29px;
  width: 29px;
  background-color: green;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option ul li {
  border: 1px solid var(--primary-color);
  padding: 8px 40px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option ul li.active .checked {
  opacity: 1;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option ul li .checked {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  opacity: 0;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .payment-option ul li .checked i {
  color: white;
  margin-left: 2px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .input-area label {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 15px;
  color: #1D1D1D;
  margin-bottom: 8px;
  display: block;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .input-area input {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color2);
  border: 1px solid rgba(108, 46, 185, 0.2);
  border-radius: 5px;
  height: 48px;
  padding: 12px 20px;
  outline: none;
  background-color: #F8F8F8;
  width: 100%;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .choose-payment-mathord .input-area textarea {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color2);
  border: 1px solid rgba(108, 46, 185, 0.2);
  border-radius: 5px;
  padding: 12px 20px;
  outline: none;
  background-color: #F8F8F8;
  width: 100%;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .total-amount-area {
  padding-top: 30px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .total-amount-area {
    padding-top: 20px;
  }
}
@media (max-width: 1399px) {
  .header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .total-amount-area {
    padding-top: 20px;
  }
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .total-amount-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .total-amount-area ul li {
  font-family: var(--font-mitr);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color2);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .total-amount-area ul li:last-child {
  color: #000;
  font-weight: 400;
  padding-top: 10px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .pay-btn {
  padding-top: 25px;
}
.header-area .main-conent-header .nav-right .add-balance-area .balance-content .modal-dialog .modal-content .modal-body .pay-btn button {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-mitr);
  color: var(--white);
  border: none;
  outline: none;
  background-color: var(--primary-color);
  padding: 20px 20px;
  width: 100%;
  border-radius: 5px;
}
.header-area .main-conent-header .nav-right ul.header-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 25px;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifications-area {
  position: relative;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifications-area .notifacation-icon {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifications-area .notifacation-icon svg {
  fill: var(--primary-color);
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifications-area span {
  height: 12px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 10px;
  font-family: var(--font-work-sans);
  position: absolute;
  top: 5px;
  right: -5px;
  z-index: 1;
}
.header-area .main-conent-header .nav-right ul.header-icons li .dropdown-toggle::after {
  display: none;
  visibility: hidden;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card {
  top: 17px !important;
  max-width: 280px;
  min-width: 280px;
  background-color: var(--white);
  border: 1px solid #eee;
  z-index: 999;
  padding: 0;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card .title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mitr);
  text-align: center;
  color: var(--text-color);
  padding: 15px;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block !important;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li {
  display: flex;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid #eee;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li:last-child {
  border-bottom: 1px solid #eee;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li .icon {
  margin-right: 10px;
  padding-left: 10px;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li .icon img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li .content {
  padding-right: 10px;
  margin-top: -3px;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li .content h6 {
  margin-bottom: 3px;
  line-height: 1.1;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li .content h6 a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  font-family: var(--font-mitr);
  color: var(--text-color);
  transition: 0.35s;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li .content h6 a:hover {
  color: var(--primary-color);
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li .content span {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-work-sans);
  color: var(--text-color);
  display: flex;
  align-items: center;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card > ul li .content span img {
  padding-right: 5px;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card .view-all a {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-work-sans);
  text-align: center;
  display: block;
  color: var(--text-color);
  padding: 10px;
  transition: 0.35s;
}
.header-area .main-conent-header .nav-right ul.header-icons li .notifacion-card .view-all a:hover {
  color: var(--primary-color);
}
.header-area .main-conent-header .nav-right .admin-area .dropdown-toggle::after {
  display: none;
  visibility: hidden;
}
.header-area .main-conent-header .nav-right .admin-area .admin-thumb img {
  height: 44px;
  width: 44px;
  max-width: 100%;
  border-radius: 50%;
}
.header-area .main-conent-header .nav-right .admin-area .admin-desig {
  text-align: start;
}
.header-area .main-conent-header .nav-right .admin-area .admin-desig h6 {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  font-family: var(--font-mitr);
  margin-bottom: 0;
}
.header-area .main-conent-header .nav-right .admin-area .admin-desig p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-work-sans);
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .header-logo {
    display: none;
    visibility: hidden;
  }
}

.header-logo-icon {
  display: none;
  visibility: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-logo-icon {
    display: block;
    visibility: visible;
  }
}

.admin-area button {
  border: none;
  outline: none;
  background-color: var(--white);
}
.admin-area button::after {
  content: unset;
}
.admin-area .dropdown-menu {
  box-shadow: 0px 4px 20px rgba(52, 55, 59, 0.1);
  border: 1px solid transparent;
  padding: 0;
  position: absolute;
  top: 10px !important;
  border-radius: unset;
}
.admin-area .dropdown-item {
  padding: 7px 15px;
  transition: all 0.5s ease;
}
.admin-area .dropdown-item i {
  margin-right: 8px;
}
.admin-area .dropdown-item.active, .admin-area .dropdown-item:active {
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary-color);
}
.admin-area .dropdown-item:hover {
  color: var(--white);
  background-color: var(--primary-color);
}
@media (max-width: 991px) {
  .admin-area .admin-desig {
    display: none;
    visibility: hidden;
  }
}

.counter-area {
  margin-bottom: 30px;
}
.counter-area .counter-single {
  background-color: var(--green-color);
  border-radius: 5px;
  padding: 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border: 6px solid var(--white);
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .counter-area .counter-single {
    padding: 25px;
    gap: 15px;
  }
}
@media (max-width: 1399px) {
  .counter-area .counter-single {
    padding: 25px 20px;
    gap: 15px;
  }
}
.counter-area .counter-single.two {
  background-color: var(--light-blue-color);
}
.counter-area .counter-single.three {
  background-color: var(--orenge-color);
}
.counter-area .counter-single.four {
  background-color: var(--dark-blue-color);
}
.counter-area .counter-single .coundown p {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 0;
  line-height: 21px;
}
.counter-area .counter-single .coundown h3 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 0;
}
.counter-area .counter-single .coundown span {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 36px;
  color: var(--white);
}
.counter-area.two .counter-single {
  background-color: var(--green-color);
  border-radius: 5px;
  padding: 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border: none;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .counter-area.two .counter-single {
    padding: 25px 15px;
    gap: 15px;
  }
}
@media (max-width: 1399px) {
  .counter-area.two .counter-single {
    padding: 25px 15px;
    gap: 15px;
  }
}
.counter-area.two .counter-single.two {
  background-color: var(--light-blue-color);
}
.counter-area.two .counter-single.three {
  background-color: var(--orenge-color);
}
.counter-area.two .counter-single.four {
  background-color: var(--dark-blue-color);
}
.counter-area.two .counter-single .coundown p {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 21px;
}
.counter-area.two .counter-single .coundown h3 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 0px;
}
.counter-area.two .counter-single .coundown span {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}

/*================================================
Main Container Area
=================================================*/
footer {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 555;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 10px 50px;
  right: 0;
}
footer.sticky {
  box-shadow: -4px 0px 4px rgba(29, 29, 29, 0.15);
}
@media (max-width: 1500px) {
  footer {
    flex-wrap: wrap;
    padding: 10px 30px;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  footer {
    justify-content: center;
    text-align: center;
  }
}
footer.footer2 {
  max-width: 100%;
  margin-left: 0;
}
footer .devloper-area p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--text-color2);
  margin-bottom: 0;
}
footer .devloper-area p a {
  color: var(--primary-color);
  font-family: var(--font-mitr);
}
footer .footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  footer .footer-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer-menu ul li {
  padding: 0px 15px;
}
footer .footer-menu ul li:first-child {
  padding-left: 0;
}
footer .footer-menu ul li:last-child {
  padding-right: 0;
}
footer .footer-menu ul li a {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--text-color2);
}

.main-container {
  max-width: 100%;
  min-width: 100%;
  overflow: hidden;
}

.main-content {
  position: relative;
  margin-top: 70px;
  margin-left: 330px;
  max-width: calc(100% - 330px);
  width: 100%;
  padding: 40px 65px;
  background: var(--background);
  transition: 0.55s ease;
  min-height: calc(100vh - 150px);
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .main-content {
    padding: 40px 25px;
  }
}
@media (max-width: 1500px) {
  .main-content {
    max-width: calc(100% - 280px);
    margin-left: 280px;
  }
}
@media (max-width: 1399px) {
  .main-content {
    padding: 40px 25px;
  }
}
@media (max-width: 767px) {
  .main-content {
    padding: 40px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-content {
    max-width: calc(100% - 170px);
    width: 100%;
    margin-left: 170px;
  }
}
@media (max-width: 991px) {
  .main-content {
    max-width: calc(100% - 70px);
    width: 100%;
    margin-left: 70px;
  }
}
.main-content.slide {
  max-width: calc(100% - 70px);
  width: 100%;
  margin-left: 70px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-content.slide {
    max-width: calc(100% - 70px);
    width: 100%;
    margin-left: 70px;
  }
}
@media (max-width: 991px) {
  .main-content.slide {
    max-width: calc(100% - 70px);
    width: 100%;
    margin-left: 70px;
  }
}
.main-content.slide footer {
  max-width: calc(100% - 70px);
  width: 100%;
  margin-left: 70px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-content.slide footer {
    max-width: calc(100% - 70px);
    width: 100%;
    margin-left: 70px;
  }
}
@media (max-width: 991px) {
  .main-content.slide footer {
    max-width: calc(100% - 70px);
    width: 100%;
    margin-left: 70px;
  }
}
.main-content.order-content {
  padding-bottom: 130px;
}
.main-content.order-content .single-order-option {
  background: #F4F3F5;
  border-radius: 10px;
  padding: 80px 20px;
}
.main-content.order-content .single-order-option .content {
  max-width: 366px;
  width: 100%;
  margin: auto;
  text-align: center;
}
.main-content.order-content .single-order-option .content h4 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 22px;
  color: #000000;
  margin-bottom: 12px;
}
.main-content.order-content .single-order-option .content p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color2);
  margin-bottom: 0;
}
.main-content.order-content .single-order-option .content a {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 23px;
  padding: 5px 25px;
}
.main-content.order-content .single-order-option .content a::after {
  border-radius: 23px;
}
.main-content.order-content .single-order-option .content .modal-btn {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 23px;
  padding: 5px 25px;
  border: none;
}
.main-content.order-content .single-order-option .content .modal-btn::after {
  border-radius: 23px;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog {
  max-width: 1060px;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content {
  position: relative;
  padding: 0;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header {
  padding: 50px 50px 30px 50px;
}
@media (max-width: 767px) {
  .main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header {
    padding: 50px 15px 30px 15px;
  }
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header {
  gap: 50px;
  width: 100%;
  border-color: #eee;
}
@media (max-width: 576px) {
  .main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .modal-title {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 24px;
  color: var(--bg-color);
  margin-bottom: 0;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .modal-title {
    margin-right: 15px;
  }
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header form {
  width: 100%;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .form-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .form-inner input {
  height: 48px;
  background: #F4F3F5;
  border: 1px solid rgba(108, 46, 185, 0.08);
  border-radius: 24px;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: var(--text-color2);
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .form-inner button {
  height: 48px;
  width: 75px;
  border-radius: 24px;
  background: #EBE3F3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .btn-close {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #006F30;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -18px;
  top: -18px;
  padding: 0;
  margin: 0;
  opacity: 1;
  cursor: pointer;
  transition: 0.35s;
}
@media (max-width: 1199px) {
  .main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .btn-close {
    top: 5px;
    right: 5px;
  }
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .btn-close i {
  font-size: 20px;
  color: var(--primary-color);
  transition: 0.35s;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .btn-close:hover {
  background-color: var(--primary-color);
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .btn-close:hover i {
  color: var(--white);
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-body {
  max-height: 530px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  padding: 30px 35px 50px 50px;
}
@media (max-width: 767px) {
  .main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-body {
    padding: 30px 5px 50px 15px;
  }
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-body::-webkit-scrollbar {
  width: 15px;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-body::-webkit-scrollbar-thumb {
  background: #D3CECE;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .modal-body::-webkit-scrollbar-track {
  background: #E8E8E8;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification {
  text-align: initial;
  background: #F4F3F5;
  border-radius: 10px;
  padding: 40px 30px;
}
@media (max-width: 576px) {
  .main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification {
    padding: 40px 20px;
  }
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .title h4 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 0;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .title .bookmar-icon {
  transition: 0.35s;
  cursor: pointer;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .title .bookmar-icon svg {
  fill: var(--text-color2);
  transition: 0.35s;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .title .bookmar-icon.active svg {
  fill: var(--primary-color);
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .title .bookmar-icon:hover svg {
  fill: var(--primary-color);
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .edit-btn-and-time {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .edit-btn-and-time {
    flex-wrap: wrap;
  }
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .edit-btn-and-time .edit-btn1 a {
  background: var(--white);
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 14px;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .edit-btn-and-time .time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 14px;
  color: #005959;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .price-and-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  gap: 10px;
}
@media (max-width: 576px) {
  .main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .price-and-select-btn {
    flex-wrap: wrap;
  }
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .price-and-select-btn .price p {
  margin-bottom: 0;
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 22px;
  color: #000000;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .price-and-select-btn .price p span {
  font-size: 16px;
  font-weight: 400;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .price-and-select-btn .select-btn a {
  padding: 5px 20px;
  border-radius: 5px;
  color: var(--text-color);
  background-color: var(--white);
  border: 1px solid rgba(108, 46, 185, 0.2);
  padding: 7px 31px;
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .price-and-select-btn .select-btn a::after {
  border-radius: 5px;
  background-color: var(--primary-color);
}
.main-content.order-content .single-order-option .specification-modal .modal-dialog .modal-content .single-specification .price-and-select-btn .select-btn a:hover {
  color: var(--white);
}

/*================================================
SideBar Area
=================================================*/
.sidebar-wrapper {
  width: 100%;
  max-width: 330px;
  background: var(--bg-color);
  padding: 50px 15px;
  position: fixed;
  top: 70px;
  left: 0;
  bottom: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 2;
  transition: 0.55s ease;
}
@media (max-width: 1500px) {
  .sidebar-wrapper {
    max-width: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar-wrapper {
    max-width: 170px;
  }
}
@media (max-width: 991px) {
  .sidebar-wrapper {
    max-width: 70px;
    padding: 20px 10px;
  }
}
.sidebar-wrapper.slide {
  max-width: 70px;
}
.sidebar-wrapper.slide .sidebar-menu-wrapper ul a {
  max-width: 50px;
  padding: 5px 5px;
}
.sidebar-wrapper.slide .sidebar-menu-wrapper ul a svg {
  margin-bottom: 0;
}
.sidebar-wrapper.slide .sidebar-menu-wrapper ul a h6 {
  display: none;
  visibility: hidden;
}
.sidebar-wrapper.slide .sidebar-content {
  display: none;
  visibility: hidden;
}
.sidebar-wrapper {
  /* width */
}
.sidebar-wrapper::-webkit-scrollbar {
  width: 6px;
}
@media (max-width: 767px) {
  .sidebar-wrapper::-webkit-scrollbar {
    width: 4px;
  }
}
.sidebar-wrapper {
  /* Track */
}
.sidebar-wrapper::-webkit-scrollbar-track {
  background: var(--text-light2);
}
.sidebar-wrapper {
  /* Handle */
}
.sidebar-wrapper::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--text-light) 3;
}
.sidebar-wrapper {
  /* Handle on hover */
}
.sidebar-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-color), 0.8);
}

.sidebar-toggle-button {
  cursor: pointer;
}

.sidebar-menu-wrapper {
  position: relative;
}
.sidebar-menu-wrapper ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.sidebar-menu-wrapper ul li a {
  display: block;
  width: 138px;
  background: var(--bg-dark);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 16px 5px;
  transition: all 0.5s ease-out 0s;
  border-radius: 5px;
}
@media (max-width: 1500px) {
  .sidebar-menu-wrapper ul li a {
    max-width: 108px;
  }
}
@media (max-width: 991px) {
  .sidebar-menu-wrapper ul li a {
    max-width: 50px;
    padding: 5px 5px;
  }
}
.sidebar-menu-wrapper ul li a:hover {
  background: var(--primary-color);
}
.sidebar-menu-wrapper ul li a:hover svg {
  transform: scale(1.12);
  transition-delay: 0.2s;
}
.sidebar-menu-wrapper ul li a.active {
  background: var(--primary-color);
}
.sidebar-menu-wrapper ul li a.active svg {
  transform: scale(1.12);
  transition-delay: 0.2s;
}
.sidebar-menu-wrapper ul li a svg {
  fill: var(--text-light2);
  margin-bottom: 15px;
  transition: all 0.65s ease;
  margin-bottom: 15px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .sidebar-menu-wrapper ul li a svg {
    margin-bottom: 0;
  }
}
.sidebar-menu-wrapper ul li a h6 {
  color: var(--text-light2);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sidebar-menu-wrapper ul li a h6 {
    display: none;
    visibility: hidden;
  }
}

.sidebar-content {
  padding: 0px 20px;
  margin-bottom: 120px;
}
@media (max-width: 1500px) {
  .sidebar-content {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .sidebar-content {
    display: none;
    visibility: hidden;
  }
}
.sidebar-content h4 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}
.sidebar-content p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 0;
}
.sidebar-content .email-area {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 30px;
}
.sidebar-content .email-area .email-icon svg {
  fill: var(--white);
}
.sidebar-content .email-area .email-content h5 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 0px;
}
.sidebar-content .email-area .email-content a {
  font-family: var(--font-mitr);
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.8;
  transition: 0.35s;
}
.sidebar-content .email-area .email-content a:hover {
  opacity: 1;
}
.sidebar-content .support-area {
  position: fixed;
  bottom: 20px;
  left: 35px;
  display: flex;
  align-items: center;
}
.sidebar-content .support-area .support-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: relative;
}
.sidebar-content .support-area .support-icon::before {
  content: "";
  height: 100%;
  width: 103%;
  border-radius: 50%;
  background-color: #D9D9D9;
  position: absolute;
  z-index: -5;
  top: -5px;
  left: 1px;
}
.sidebar-content .support-area .support-icon::after {
  content: url("../images/icons/sidebar-support-bg.svg");
  position: absolute;
  z-index: -1;
  top: -3px;
  left: 0;
}
.sidebar-content .support-area .support-icon svg {
  fill: var(--white);
}
.sidebar-content .support-area .support-content {
  background-color: var(--primary-color);
  border-radius: 39.5px;
  padding: 10px 50px 12px;
  margin-left: -35px;
  position: relative;
  z-index: 1;
}
.sidebar-content .support-area .support-content::before {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 39.5px;
  background-color: #D9D9D9;
  position: absolute;
  z-index: -1;
  top: -2px;
  left: 0;
}
.sidebar-content .support-area .support-content::after {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 39.5px;
  background-color: var(--primary-color);
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0;
}
.sidebar-content .support-area .support-content h5 {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 0;
}

.eg-table-wrapper {
  background-color: var(--white);
  border-radius: 5px;
  padding: 45px 50px;
  position: relative;
}
@media (max-width: 1199px) {
  .eg-table-wrapper {
    padding: 45px 25px;
  }
}
@media (max-width: 767px) {
  .eg-table-wrapper {
    padding: 45px 15px;
  }
}
.eg-table-wrapper::before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: var(--primary-color);
  border-radius: 5px 5px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.eg-table-wrapper .table-title-and-sort-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .eg-table-wrapper .table-title-and-sort-area {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.eg-table-wrapper .table-title-and-sort-area .table-title-area {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .eg-table-wrapper .table-title-and-sort-area .table-title-area {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.eg-table-wrapper .table-title-and-sort-area .table-title-area h4 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 24px;
  color: var(--bg-color);
  margin-bottom: 0;
}
.eg-table-wrapper .table-title-and-sort-area .status-select {
  display: flex;
  align-items: center;
  position: relative;
}
.eg-table-wrapper .table-title-and-sort-area .status-select > span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: var(--white);
  background: #006F30;
  border-radius: 2px;
  display: inline-block;
  padding: 1px 4px;
  position: absolute;
  left: 22px;
  z-index: 9;
}
.eg-table-wrapper .table-title-and-sort-area .status-select .nice-select {
  background-color: transparent;
  border-radius: 5px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-work-sans);
  color: var(--text-color2);
  height: unset;
  line-height: unset;
  outline: none;
  padding: 8px 45px 8px 80px;
  border-radius: 5px;
  background: #FFFFFF;
  border: 1px solid #006F30;
}
.eg-table-wrapper .table-title-and-sort-area .status-select .nice-select.open {
  border-radius: 5px 5px 0 0;
}
.eg-table-wrapper .table-title-and-sort-area .status-select .nice-select::after {
  border-bottom: unset;
  border-right: unset;
  display: block;
  height: 6px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 58%;
  border-radius: 2px;
  width: 9px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--primary-color);
  transform: rotate(0deg);
}
.eg-table-wrapper .table-title-and-sort-area .status-select .nice-select .list {
  background-color: #fff;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 1px;
  position: absolute;
  top: 100%;
  min-width: 100%;
  left: 0;
  z-index: 999;
  border-color: var(--primary-color);
  border: 1px solid #006F30;
  border-top: none;
  width: unset;
}
.eg-table-wrapper .table-title-and-sort-area .status-select .nice-select .list .option {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
}
.eg-table-wrapper .table-title-and-sort-area .status-select .nice-select .list .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.eg-table-wrapper .table-title-and-sort-area .status-select .nice-select .option:hover, .eg-table-wrapper .table-title-and-sort-area .status-select .nice-select .option.focus, .eg-table-wrapper .table-title-and-sort-area .status-select .nice-select .option.selected.focus {
  background-color: rgba(0, 111, 48, 0.15);
  color: var(--bg-color);
}
.eg-table-wrapper .table-title-and-sort-area .status-select .nice-select.open:after {
  transform: rotate(-180deg);
  top: 55%;
  right: 27px;
}
.eg-table-wrapper .table-title-and-sort-area .total-entries {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eg-table-wrapper .table-title-and-sort-area .total-entries > span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color2);
}
.eg-table-wrapper .table-title-and-sort-area .total-entries .total-select {
  display: flex;
  align-items: center;
  position: relative;
}
.eg-table-wrapper .table-title-and-sort-area .total-entries .total-select > span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
  position: absolute;
  left: 15px;
  z-index: 9;
}
.eg-table-wrapper .table-title-and-sort-area .total-entries .total-select .nice-select {
  border-radius: 5px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-work-sans);
  color: var(--text-color2);
  height: unset;
  line-height: unset;
  outline: none;
  padding: 5px 45px 5px 70px;
  border-radius: 5px;
  background: #FFFFFF;
  border: 1px solid #eee;
}
.eg-table-wrapper .table-title-and-sort-area .total-entries .total-select .nice-select::after {
  border-bottom: 1px solid var(--bg-color);
  border-right: 1px solid var(--bg-color);
  display: block;
  height: 8px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
}
.eg-table-wrapper .table-title-and-sort-area .total-entries .total-select .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 3px;
  min-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
}
.eg-table-wrapper .table-title-and-sort-area .total-entries .total-select .nice-select .list .option {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
}
.eg-table-wrapper .table-title-and-sort-area .total-entries .total-select .nice-select .list .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.eg-table-wrapper .table-title-and-sort-area .total-entries .total-select .nice-select .option:hover, .eg-table-wrapper .table-title-and-sort-area .total-entries .total-select .nice-select .option.focus, .eg-table-wrapper .table-title-and-sort-area .total-entries .total-select .nice-select .option.selected.focus {
  background-color: rgba(0, 111, 48, 0.15);
  color: var(--bg-color);
}
.eg-table-wrapper .table-title-and-sort-area .category-select-area {
  display: flex;
  align-items: center;
  position: relative;
}
.eg-table-wrapper .table-title-and-sort-area .category-select-area > span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
  z-index: 9;
  position: absolute;
  left: 15px;
}
.eg-table-wrapper .table-title-and-sort-area .category-select-area .nice-select {
  background-color: transparent;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-work-sans);
  color: var(--bg-color);
  height: unset;
  line-height: unset;
  outline: none;
  padding: 5px 45px 5px 85px;
  border-radius: 5px;
  background: #FFFFFF;
  border: 1px solid #eee;
}
.eg-table-wrapper .table-title-and-sort-area .category-select-area .nice-select::after {
  border-bottom: 1px solid var(--bg-color);
  border-right: 1px solid var(--bg-color);
  display: block;
  height: 8px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
}
.eg-table-wrapper .table-title-and-sort-area .category-select-area .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 3px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  min-width: 100%;
}
.eg-table-wrapper .table-title-and-sort-area .category-select-area .nice-select .list .option {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
}
.eg-table-wrapper .table-title-and-sort-area .category-select-area .nice-select .list .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.eg-table-wrapper .table-title-and-sort-area .category-select-area .nice-select .option:hover, .eg-table-wrapper .table-title-and-sort-area .category-select-area .nice-select .option.focus, .eg-table-wrapper .table-title-and-sort-area .category-select-area .nice-select .option.selected.focus {
  background-color: rgba(0, 111, 48, 0.15);
  color: var(--bg-color);
}

.numberOfShow-and-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  gap: 10px;
}
@media (max-width: 991px) {
  .numberOfShow-and-pagination {
    flex-wrap: wrap;
  }
}
.numberOfShow-and-pagination .number-of-show span {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color2);
  line-height: 24px;
}

.pagination-area .pagination {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination-area .pagination .page-item .page-link {
  border: none;
  padding: 0px 10px;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}
.pagination-area .pagination .page-item .page-link svg {
  fill: none;
}
.pagination-area .pagination .page-item .page-link svg circle {
  stroke: var(--primary-color);
}
.pagination-area .pagination .page-item .page-link svg path {
  fill: var(--primary-color);
}
.pagination-area .pagination .page-item .page-link:focus {
  background-color: transparent;
  box-shadow: none;
}
.pagination-area .pagination .page-item .page-link:hover {
  background-color: transparent;
  color: var(--bg-color);
}
.pagination-area .pagination .page-item .page-link:hover svg {
  fill: none;
}
.pagination-area .pagination .page-item .page-link:hover svg circle {
  stroke: var(--bg-color);
}
.pagination-area .pagination .page-item .page-link:hover svg path {
  fill: var(--bg-color);
}
.pagination-area .pagination .page-item:first-child a {
  padding-left: 0;
}
.pagination-area .pagination .page-item.active .page-link {
  background-color: transparent;
  color: var(--bg-color);
}
.pagination-area .pagination .page-item.active .page-link svg {
  fill: none;
}
.pagination-area .pagination .page-item.active .page-link svg circle {
  stroke: var(--bg-color);
}
.pagination-area .pagination .page-item.active .page-link svg path {
  fill: var(--bg-color);
}
.pagination-area .pagination .page-item.disabled .page-link {
  color: var(--text-color2);
}
.pagination-area .pagination .page-item.disabled .page-link svg {
  fill: none;
}
.pagination-area .pagination .page-item.disabled .page-link svg circle {
  stroke: var(--text-color2);
}
.pagination-area .pagination .page-item.disabled .page-link svg path {
  fill: var(--text-color2);
}

.eg-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 5px !important;
}
.eg-table thead {
  background: var(--primary-color);
  border-radius: 5px !important;
}
.eg-table thead tr {
  border-width: 1px;
}
.eg-table thead tr th {
  font-family: var(--font-mitr);
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--white);
  opacity: 1;
  padding: 16px 22px;
  vertical-align: top;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .eg-table thead tr th {
    padding: 16px 20px;
  }
}
@media (max-width: 1399px) {
  .eg-table thead tr th {
    padding: 16px 20px;
  }
}
@media (max-width: 991px) {
  .eg-table thead tr th {
    display: none;
  }
}
.eg-table tbody tr {
  background-color: var(--white);
  border-radius: 5px;
  border: 1px solid #F0E4FF;
  border-radius: 5px;
}
.eg-table tbody tr td {
  font-family: var(--font-work-sans);
  font-weight: 400;
  color: var(--bg-color);
  font-size: 15px;
  line-height: 21px;
  vertical-align: middle;
  padding: 12px 20px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .eg-table tbody tr td {
    padding: 16px 20px;
  }
}
@media (max-width: 1399px) {
  .eg-table tbody tr td {
    padding: 16px 20px;
  }
}
@media (max-width: 991px) {
  .eg-table tbody tr td {
    display: block;
    width: 100%;
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
}
.eg-table tbody tr td .statu-btn {
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  text-transform: capitalize;
  text-align: left;
}
@media (max-width: 991px) {
  .eg-table tbody tr td .statu-btn {
    text-align: end;
  }
}
.eg-table tbody tr td .statu-btn.purple {
  color: var(--primary-color);
}
.eg-table tbody tr td .statu-btn.green {
  color: #03C170;
}
.eg-table tbody tr td .statu-btn.pink {
  color: #EB4898;
}
.eg-table tbody tr td .statu-btn.orenge {
  color: var(--orenge-color);
}
.eg-table tbody tr td .statu-btn.light-blue {
  color: var(--light-blue-color);
}
.eg-table tbody tr td .statu-btn.dark-blue {
  color: var(--dark-blue-color);
}
.eg-table tbody tr td .statu-btn.red {
  color: #F52E2E;
}
.eg-table tbody tr td .statu-btn2 {
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  transition: 0.35s;
}
@media (max-width: 991px) {
  .eg-table tbody tr td .statu-btn2 {
    text-align: end;
  }
}
.eg-table tbody tr td .statu-btn2.purple {
  color: var(--primary-color);
}
.eg-table tbody tr td .statu-btn2.green {
  color: #03C170;
}
.eg-table tbody tr td .statu-btn2.orenge {
  color: var(--orenge-color);
}
.eg-table tbody tr td .statu-btn2.light-blue {
  color: var(--light-blue-color);
}
.eg-table tbody tr td .statu-btn2.dark-blue {
  color: var(--dark-blue-color);
}
.eg-table tbody tr td .statu-btn2:hover {
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .eg-table tbody tr {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .eg-table tbody {
    display: block;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .eg-table {
    display: block;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .eg-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    text-align: left;
    padding-left: 15px;
    font-weight: 600;
    color: var(--text-color);
  }
}
.eg-table.current-activitis tbody tr td:first-child {
  font-weight: 500;
}
.eg-table.overview-table tbody tr td:nth-child(3) {
  font-weight: 500;
}
.eg-table.overview-table tbody tr td:nth-child(5) {
  font-weight: 500;
}

.order-process-area {
  background: var(--white);
  border-radius: 5px;
  padding: 30px 25px 40px;
}
@media (max-width: 1199px) {
  .order-process-area {
    padding: 30px 25px 40px;
  }
}
@media (max-width: 767px) {
  .order-process-area {
    padding: 20px 15px 30px;
  }
}
.order-process-area h4 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: var(--bg-color);
  margin-bottom: 20px;
}
.order-process-area .order-card {
  position: relative;
}
.order-process-area .order-card img {
  border-radius: 5px;
  min-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.order-process-area .order-card::after {
  content: "";
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.order-process-area .order-card .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.order-process-area .order-card .video-play a {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  z-index: 9;
  position: relative;
  transition: 0.35s;
}
.order-process-area .order-card .video-play a:hover {
  border-color: var(--white);
}

.frequently-qustions-area {
  background: var(--white);
  border-radius: 5px;
  padding: 30px 24px 40px;
}
@media (max-width: 1199px) {
  .frequently-qustions-area {
    padding: 30px 25px 40px;
  }
}
@media (max-width: 767px) {
  .frequently-qustions-area {
    padding: 20px 15px 30px;
  }
}
.frequently-qustions-area h4 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: var(--bg-color);
  margin-bottom: 20px;
}
.frequently-qustions-area .accordion .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 24px;
}
.frequently-qustions-area .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.frequently-qustions-area .accordion .accordion-item .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 25px;
  font-family: var(--font-mitr);
  font-size: 16px;
  font-weight: 400;
  color: var(--bg-color);
  text-align: left;
  background-color: var(--white);
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .frequently-qustions-area .accordion .accordion-item .accordion-button {
    padding: 12px 15px;
  }
}
.frequently-qustions-area .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.frequently-qustions-area .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white);
}
.frequently-qustions-area .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/acc-down.svg");
  background-size: unset;
  transform: unset;
}
.frequently-qustions-area .accordion .accordion-item .accordion-button::after {
  background-image: url("../images/icons/acc-up.svg");
  background-size: unset;
  transform: unset;
  height: 12px;
  width: 12px;
}
.frequently-qustions-area .accordion .accordion-item .accordion-body {
  font-family: var(--font-work-sans);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text-color2);
  padding-bottom: 0;
}

.eg-wrapper {
  background-color: var(--white);
  border-radius: 5px;
  padding: 45px 50px;
  position: relative;
  height: 100%;
}
@media (max-width: 1399px) {
  .eg-wrapper {
    padding: 45px 25px;
  }
}
@media (max-width: 767px) {
  .eg-wrapper {
    padding: 45px 15px;
  }
}
.eg-wrapper::before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: var(--primary-color);
  border-radius: 5px 5px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.eg-wrapper .service-title {
  margin-bottom: 30px;
}
.eg-wrapper .service-title h4 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 24px;
  color: var(--bg-color);
  margin-bottom: 10px;
}
.eg-wrapper .service-title p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color2);
  margin-bottom: 0;
}
.eg-wrapper .service-title.style-2 {
  margin-bottom: 40px;
}
.eg-wrapper .service-title.style-2 h4 {
  font-weight: 400;
  margin-bottom: 20px;
}
.eg-wrapper .service-title.style-2 p {
  font-size: 17px;
}
.eg-wrapper .service-title.style-2 p.first-text {
  margin-bottom: 5px;
}
.eg-wrapper .service-title.style-3 {
  margin-bottom: 10px;
}
.eg-wrapper .service-title.style-3 h4 {
  font-weight: 400;
  margin-bottom: 20px;
}
.eg-wrapper .service-title.style-3 p {
  font-size: 17px;
}
.eg-wrapper .service-title.style-3 p.first-text {
  margin-bottom: 5px;
}
.eg-wrapper .service-title.style-4 {
  margin-bottom: 30px;
}
.eg-wrapper .service-title.style-4 h4 {
  font-weight: 400;
  margin-bottom: 20px;
}
.eg-wrapper .service-title.style-4 p {
  font-size: 17px;
}
.eg-wrapper .service-title.style-5 {
  margin-bottom: 30px;
}
.eg-wrapper .service-title.style-5 h4 {
  font-weight: 400;
  margin-bottom: 20px;
}
.eg-wrapper .service-title.style-5 h6 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 31px;
  color: var(--bg-color);
  margin-bottom: 20px;
}
.eg-wrapper .service-title.style-5 p {
  font-size: 17px;
}
.eg-wrapper .instraction label {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--bg-color);
  margin-bottom: 15px;
}
.eg-wrapper .instraction textarea {
  width: 100%;
  background: #F8F8F8;
  border: 1px solid rgba(108, 46, 185, 0.08);
  border-radius: 5px;
  padding: 30px;
  outline: none;
  min-height: 150px;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--text-color2);
}
.eg-wrapper.style-2 p {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-color2);
}
.eg-wrapper.style-2 p span {
  color: #FF1D1D;
}

.single-image-upload .title h5 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 20px;
  line-height: 31px;
  color: var(--bg-color);
  margin-bottom: 25px;
  text-transform: capitalize;
}
.single-image-upload .title h5 span {
  color: var(--primary-color);
}
.single-image-upload .link-drop-area textarea {
  width: 100%;
  background: #F8F8F8;
  border: 1px solid rgba(108, 46, 185, 0.08);
  border-radius: 5px;
  padding: 30px;
  outline: none;
  min-height: 200px;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--text-color2);
  transition: 0.35s;
}
.single-image-upload .link-drop-area textarea:hover {
  border: 1px dashed #006F30;
}
.single-image-upload .image-drop-area {
  position: relative;
}
.single-image-upload .image-drop-area .dropzone {
  background: #F8F8F8;
  min-height: 200px !important;
  border: 1px dashed #A4A4A4;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.single-image-upload .image-drop-area .dropzone .icon {
  margin-bottom: 30px;
}
.single-image-upload .image-drop-area .dropzone .content h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: var(--bg-color);
  margin-bottom: 15px;
}
.single-image-upload .image-drop-area .dropzone .content p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--text-color2);
}
.single-image-upload .image-drop-area .dropzone .content p span {
  font-weight: 500;
}
.single-image-upload .image-drop-area .dropzone.dz-started {
  flex-direction: row;
  flex-wrap: wrap;
}
.single-image-upload .image-drop-area .dropzone.dz-started .icon {
  display: none;
  visibility: hidden;
}
.single-image-upload .image-drop-area .dropzone.dz-started .content {
  display: none;
  visibility: hidden;
}
.single-image-upload .image-drop-area .dropzone .dz-error-mark {
  display: none;
  visibility: hidden;
}
.single-image-upload .image-drop-area .dropzone .dz-error-message {
  display: none;
  visibility: hidden;
}
.single-image-upload .image-drop-area .dropzone .dz-remove {
  z-index: 999;
  position: absolute;
  display: block;
  top: 0%;
  left: 0%;
  margin-left: -16px;
  margin-top: -16px;
}
.single-image-upload .image-drop-area .dropzone .dz-remove svg {
  fill: #006F30;
}
.single-image-upload .image-drop-area .dropzone .dz-remove:hover svg {
  fill: red;
}
.single-image-upload .image-drop-area .dropzone .dz-preview {
  background-color: transparent;
}
.single-image-upload .image-drop-area .dropzone .dz-message {
  margin: 0;
}
.single-image-upload .image-drop-area .dropzone .dz-message button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.single-image-upload .image-drop-area .dropzone:hover {
  border: 1px dashed #006F30;
  background-color: transparent;
  background-size: 30px 30px;
  background-image: linear-gradient(-45deg, #F6F6F6 25%, transparent 25%, transparent 50%, #F6F6F6 50%, #F6F6F6 75%, transparent 75%, transparent);
  animation: stripes 2s linear infinite;
}
@keyframes stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 30px;
  }
}
.single-image-upload .images-quantity {
  margin: 20px 0;
}
.single-image-upload .images-quantity h6 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--primary-color);
  margin-bottom: 0;
}
.single-image-upload .images-quantity .quantity-nav input {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-color);
  font-family: var(--font-mitr);
  margin: 0;
  padding: 7px 20px;
  vertical-align: middle;
  box-sizing: content-box;
  margin: 0;
  text-align: left;
  border: 1px solid rgba(108, 46, 185, 0.2);
  border-radius: 5px;
  outline: none;
  text-align: left;
}
.single-image-upload .images-quantity .quantity-nav input::-webkit-inner-spin-button, .single-image-upload .images-quantity .quantity-nav input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-image-upload .images-quantity .nice-number {
  display: inline-flex;
  justify-content: stretch;
  align-items: center;
  gap: 15px;
}
.single-image-upload .images-quantity .nice-number button {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 26px;
  border: 1px solid #006F30;
  outline: none;
  transition: 0.35s;
}
.single-image-upload .images-quantity .nice-number button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.page-title-and-breadcurmb {
  gap: 20px;
}
.page-title-and-breadcurmb .page-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.page-title-and-breadcurmb .page-title h4 {
  margin-right: 20px;
  margin-bottom: 0;
}
.page-title-and-breadcurmb .page-title .order-type {
  background-color: var(--primary-color);
  border-radius: 50px;
}
.page-title-and-breadcurmb .page-title .order-type .nice-select {
  background-color: transparent;
  border-radius: 5px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-work-sans);
  color: var(--white);
  height: unset;
  line-height: unset;
  outline: none;
  padding: 8px 45px 8px 25px;
}
.page-title-and-breadcurmb .page-title .order-type .nice-select::after {
  border-bottom: unset;
  border-right: unset;
  display: block;
  height: 6px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 58%;
  width: 9px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--white);
  transform: rotate(0deg);
}
.page-title-and-breadcurmb .page-title .order-type .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 2px;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 9;
  border-color: var(--primary-color);
}
.page-title-and-breadcurmb .page-title .order-type .nice-select .list .option {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
}
.page-title-and-breadcurmb .page-title .order-type .nice-select .list .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.page-title-and-breadcurmb .page-title .order-type .nice-select .option:hover, .page-title-and-breadcurmb .page-title .order-type .nice-select .option.focus, .page-title-and-breadcurmb .page-title .order-type .nice-select .option.selected.focus {
  background-color: rgba(0, 111, 48, 0.15);
  color: var(--bg-color);
}
.page-title-and-breadcurmb .page-title .order-type .nice-select.open:after {
  transform: rotate(-180deg);
  top: 55%;
  right: 27px;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav {
  margin: 0;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav li {
  margin-right: 15px;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav li:last-child {
  margin-right: 0;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link {
  padding: 7px 20px;
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--bg-color);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(108, 46, 185, 0.3);
  border-radius: 50px;
  background-color: var(--white);
}
@media (max-width: 1700px) {
  .page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link span {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 111, 48, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link span img {
  opacity: 0;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.active {
  border: 1px solid rgb(108, 46, 185);
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.active span {
  border: 1px solid #006f30;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.active span img {
  opacity: 1;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.other span {
  height: unset;
  width: unset;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.other .three-dot {
  height: 18px;
  width: 18px;
  border: 1px solid #8690FA;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.other .three-dot img {
  opacity: 1;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.other .nice-select {
  background-color: transparent;
  border-radius: 5px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-work-sans);
  color: var(--bg-color);
  height: unset;
  line-height: unset;
  outline: none;
  padding: 0px 20px 0px 0px;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.other .nice-select::after {
  border-bottom: 1px solid var(--bg-color);
  border-right: 1px solid var(--bg-color);
  display: block;
  height: 8px;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  right: 0px;
  top: 58%;
  width: 8px;
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.other .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  border-color: var(--primary-color);
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.other .nice-select .list .option {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
}
.page-title-and-breadcurmb .page-title .image-upload-options .nav .nav-link.other .nice-select .list .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.page-title-and-breadcurmb .page-title.style-2 {
  gap: 20px;
}
.page-title-and-breadcurmb .page-title.style-2 .btn-primary1 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
  background: var(--primary-color);
  border-radius: 4px;
  border: none;
  padding: 8px 28px;
}
@media (max-width: 767px) {
  .page-title-and-breadcurmb .page-title.style-2 .btn-primary1 {
    padding: 8px 20px;
  }
}
.page-title-and-breadcurmb .page-title.style-2 .btn-primary1:focus {
  box-shadow: none;
}
.page-title-and-breadcurmb nav {
  min-width: 120px;
}
.page-title-and-breadcurmb nav ol {
  flex-wrap: nowrap;
}

.order-form-wrapper .tab {
  display: none;
}
.order-form-wrapper .tab .service-area {
  width: 100%;
}
.order-form-wrapper .tab .service-area .row {
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1700px) {
  .order-form-wrapper .tab .service-area .row {
    gap: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .order-form-wrapper .tab .service-area .row {
    justify-content: center;
    gap: unset;
  }
}
@media (max-width: 1399px) {
  .order-form-wrapper .tab .service-area .row {
    justify-content: center;
    gap: unset;
  }
}
.order-form-wrapper .tab .service-area .row .col-xxl-3 {
  width: unset;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .order-form-wrapper .tab .service-area .row .col-xxl-3 {
    width: 25%;
  }
}
@media (max-width: 1399px) {
  .order-form-wrapper .tab .service-area .row .col-xxl-3 {
    width: unset;
  }
}
.order-form-wrapper .tab .service-area.two .row {
  justify-content: center;
  gap: 0px;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card {
  max-width: 223px;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .order-form-wrapper .tab .service-area .select-wrap .single-service-card {
    max-width: unset;
  }
}
@media (max-width: 1399px) {
  .order-form-wrapper .tab .service-area .select-wrap .single-service-card {
    max-width: unset;
  }
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card .service-card-img {
  position: relative;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card .service-card-img > img {
  border-radius: 5px 5px 0px 0px;
  max-width: 100%;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .order-form-wrapper .tab .service-area .select-wrap .single-service-card .service-card-img > img {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .order-form-wrapper .tab .service-area .select-wrap .single-service-card .service-card-img > img {
    width: 100%;
  }
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card .service-card-img .check-box {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #F4F3F5;
  border: 1px solid rgba(108, 46, 185, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -14px;
  right: -14px;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card .service-card-img .check-box img {
  opacity: 0;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card .service-card-content {
  background-color: rgba(0, 111, 48, 0.1);
  border-radius: 0px 0px 5px 5px;
  text-align: center;
  padding: 10px 20px;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card .service-card-content h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--primary-color);
  margin-bottom: 0;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card.style-2 {
  max-width: unset;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card.style-2 .service-card-img {
  position: relative;
  border-radius: 5px;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card.style-2 .service-card-img > img {
  width: 100%;
  border-radius: 5px;
  max-width: 100%;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card.style-2 .service-card-img .check-box {
  height: 40px;
  width: 40px;
  top: unset;
  bottom: -20px;
  right: unset;
  left: 50%;
  transform: translateX(-50%);
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card.style-2 .service-card-content {
  background-color: unset;
  border-radius: unset;
  text-align: center;
  padding: 40px 20px;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card.style-2 .service-card-content h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 10px;
}
.order-form-wrapper .tab .service-area .select-wrap .single-service-card.style-2 .service-card-content p {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--bg-color);
}
.order-form-wrapper .tab .service-area .select-wrap.selected .service-card-img {
  position: relative;
}
.order-form-wrapper .tab .service-area .select-wrap.selected .service-card-img > img {
  border-radius: 5px 5px 0px 0px;
  max-width: 100%;
}
.order-form-wrapper .tab .service-area .select-wrap.selected .service-card-img .check-box {
  background: var(--primary-color);
  border: 1px solid rgb(108, 46, 185);
}
.order-form-wrapper .tab .service-area .select-wrap.selected .service-card-img .check-box img {
  opacity: 1;
}
.order-form-wrapper .tab .service-area .select-wrap.selected .service-card-content {
  background-color: var(--primary-color);
}
.order-form-wrapper .tab .service-area .select-wrap.selected .service-card-content h6 {
  color: var(--white);
}
.order-form-wrapper .note-and-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.order-form-wrapper .note-and-btn .note p {
  margin-bottom: 0;
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: var(--bg-color);
}
.order-form-wrapper .note-and-btn .note p span {
  font-family: var(--font-mitr);
  color: var(--primary-color);
}
.order-form-wrapper .note-and-btn .form-btn {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 576px) {
  .order-form-wrapper .note-and-btn .form-btn {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.order-form-wrapper .note-and-btn .form-btn .primary-btn1 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  background-color: var(--primary-color);
  padding: 13px 31px;
  border: none;
  outline: none;
  border-radius: 5px;
}
.order-form-wrapper .note-and-btn .form-btn .primary-btn1 svg path {
  fill: var(--white);
}
.order-form-wrapper .note-and-btn .form-btn .primary-btn1 svg circle {
  stroke: var(--white);
  fill: none;
}

.service-area2 {
  width: 100%;
}
.service-area2 h6 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 31px;
  color: var(--bg-color);
  margin-bottom: 25px;
}
.service-area2 .row {
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1700px) {
  .service-area2 .row {
    gap: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .service-area2 .row {
    justify-content: center;
    gap: unset;
  }
}
@media (max-width: 1399px) {
  .service-area2 .row {
    justify-content: center;
    gap: unset;
  }
}
.service-area2 .row .col-xxl-3 {
  width: unset;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .service-area2 .row .col-xxl-3 {
    width: 25%;
  }
}
@media (max-width: 1399px) {
  .service-area2 .row .col-xxl-3 {
    width: unset;
  }
}
.service-area2.two .row {
  justify-content: center;
  gap: 0px;
}
.service-area2 .select-wrap .single-service-card {
  max-width: 223px;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .service-area2 .select-wrap .single-service-card {
    max-width: unset;
  }
}
@media (max-width: 1399px) {
  .service-area2 .select-wrap .single-service-card {
    max-width: unset;
  }
}
.service-area2 .select-wrap .single-service-card .service-card-img {
  position: relative;
}
.service-area2 .select-wrap .single-service-card .service-card-img > img {
  border-radius: 5px 5px 0px 0px;
  max-width: 100%;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .service-area2 .select-wrap .single-service-card .service-card-img > img {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .service-area2 .select-wrap .single-service-card .service-card-img > img {
    width: 100%;
  }
}
.service-area2 .select-wrap .single-service-card .service-card-img .check-box {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #F4F3F5;
  border: 1px solid rgba(108, 46, 185, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -14px;
  right: -14px;
}
.service-area2 .select-wrap .single-service-card .service-card-img .check-box img {
  opacity: 0;
}
.service-area2 .select-wrap .single-service-card .service-card-content {
  background-color: rgba(0, 111, 48, 0.1);
  border-radius: 0px 0px 5px 5px;
  text-align: center;
  padding: 10px 20px;
}
.service-area2 .select-wrap .single-service-card .service-card-content h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--primary-color);
  margin-bottom: 0;
}
.service-area2 .select-wrap .single-service-card.style-2 {
  max-width: unset;
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-img {
  position: relative;
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-img > img {
  width: 100%;
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-img .check-box {
  height: 40px;
  width: 40px;
  top: unset;
  bottom: -20px;
  right: unset;
  left: 50%;
  transform: translateX(-50%);
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-img.style-2 {
  padding-top: 22px;
  padding-bottom: 45px;
  min-height: 190px;
  background: var(--background);
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-img.style-2 > img {
  width: unset;
  padding-right: 20px;
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-img.style-2 .popular-img {
  padding-right: 0;
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-content {
  background-color: unset;
  border-radius: unset;
  text-align: center;
  padding: 40px 20px;
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-content h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 10px;
}
.service-area2 .select-wrap .single-service-card.style-2 .service-card-content p {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--bg-color);
}
.service-area2 .select-wrap.selected .service-card-img {
  position: relative;
}
.service-area2 .select-wrap.selected .service-card-img > img {
  border-radius: 5px 5px 0px 0px;
}
.service-area2 .select-wrap.selected .service-card-img .check-box {
  background: var(--primary-color);
  border: 1px solid rgb(108, 46, 185);
}
.service-area2 .select-wrap.selected .service-card-img .check-box img {
  opacity: 1;
}
.service-area2 .select-wrap.selected .service-card-content {
  background-color: var(--primary-color);
}
.service-area2 .select-wrap.selected .service-card-content h6 {
  color: var(--white);
}

.step-title {
  margin-bottom: 35px;
}
.step-title h4 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 22px;
  line-height: 35px;
  color: var(--bg-color);
  margin-bottom: 10px;
}
.step-title p {
  margin-bottom: 0;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--text-color2);
}

.step-wrap .step-card {
  cursor: pointer;
  text-align: center;
  width: 170px;
}
@media (max-width: 1399px) {
  .step-wrap .step-card {
    width: 158px;
  }
}
@media (max-width: 576px) {
  .step-wrap .step-card {
    margin: 0 auto;
  }
}
.step-wrap .step-card .step-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  border: 1px solid rgba(108, 46, 185, 0.14);
  position: relative;
  margin-bottom: 13px;
}
.step-wrap .step-card .step-img > img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.step-wrap .step-card .step-img .check-box {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #F4F3F5;
  border: 1px solid rgba(108, 46, 185, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 14px;
  right: 0px;
}
.step-wrap .step-card .step-img .check-box img {
  opacity: 0;
}
.step-wrap .step-card .step-img .check-box.style-2 {
  width: 40px;
  height: 40px;
  right: 15px;
}
.step-wrap .step-card .step-img.style-2 {
  width: 232px;
  height: 232px;
}
.step-wrap .step-card .step-img.style-2 > img {
  width: 204px;
  height: 204px;
}
.step-wrap .step-card .step-content h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: var(--bg-color);
  margin-bottom: 0;
}
.step-wrap .step-card .step-content p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--bg-color);
  margin-bottom: 0;
}
.step-wrap .step-card .step-content p span {
  font-weight: 500;
  font-size: 15px;
}
.step-wrap .step-card.two .time {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #F3EFF8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.step-wrap .step-card.two .time h3 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 38px;
  line-height: 32px;
  color: var(--bg-color);
  margin-bottom: 10px;
}
.step-wrap .step-card.two .time span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--bg-color);
}
.step-wrap .step-card.style-2 .company-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #F3EFF8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-wrap .step-card.style-2 .company-select .order-type {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #F3EFF8;
  display: flex;
  justify-content: center;
}
.step-wrap .step-card.style-2 .company-select .order-type .nice-select {
  background: transparent;
  border: none;
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: #000000;
  padding: 43px 0;
}
.step-wrap .step-card.style-2 .company-select .order-type .nice-select::after {
  right: 30px;
  top: 90px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  width: 14px;
  height: 14px;
}
.step-wrap .step-card.style-2 .company-select .order-type .nice-select .list {
  margin-top: 70px;
  left: -28px;
}
.step-wrap .step-card.style-2 .company-select .order-type .nice-select .option {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  color: #000000;
  padding-left: 30px;
}
.step-wrap .step-card.style-3 {
  width: 100%;
}
.step-wrap .step-card.style-3 .step-content {
  width: 232px;
}
.step-wrap .selected .step-card .step-img {
  border: 1px solid rgb(108, 46, 185);
}
.step-wrap .selected .step-card .step-img .check-box {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.step-wrap .selected .step-card .step-img .check-box img {
  opacity: 1;
}
.step-wrap .selected .step-card.two .time h3 {
  color: var(--primary-color);
}
.step-wrap .row {
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1700px) {
  .step-wrap .row {
    gap: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .step-wrap .row {
    justify-content: space-between;
    gap: unset;
  }
}
@media (max-width: 1399px) {
  .step-wrap .row {
    justify-content: space-between;
    gap: unset;
  }
}
@media (max-width: 576px) {
  .step-wrap .row {
    justify-content: center;
    gap: unset;
  }
}
.step-wrap .row .col-xxl-4 {
  width: unset;
  margin: 20px 0;
}
@media (max-width: 991px) {
  .step-wrap .row .col-xxl-4 {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .step-wrap .row .col-xxl-4 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .step-wrap .row .col-xxl-4 {
    width: 100%;
  }
}
.step-wrap.two .row {
  justify-content: unset;
  gap: unset;
}
.step-wrap.three .row {
  justify-content: unset;
  gap: unset;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .step-wrap.three .row {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .step-wrap.three .row {
    gap: unset;
    justify-content: flex-start;
  }
}
.step-wrap.three {
  margin-bottom: 70px;
}

.summary-table-wrapper {
  height: 100%;
}
.summary-table-wrapper .summary-table {
  width: 100%;
  margin-bottom: 75px;
}
.summary-table-wrapper .summary-table tr td {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--bg-color);
  padding: 5px 0;
}
.summary-table-wrapper .summary-table tr td span {
  font-weight: 300;
}
.summary-table-wrapper .summary-table tr td:last-child {
  display: flex;
  justify-content: end;
}
.summary-table-wrapper .summary-table tr td:last-child span {
  font-family: var(--font-work-sans);
  font-weight: 400;
  line-height: 1;
}
.summary-table-wrapper .summary-table tr:first-child td {
  padding: 0px 0 5px;
}
.summary-table-wrapper .summary-table tr:last-child td {
  padding: 5px 0 0px;
}
.summary-table-wrapper .summary-table tr:nth-child(2) {
  border-bottom: 1px solid #D9D9D9;
}
.summary-table-wrapper .summary-table tr:nth-child(2) td {
  padding: 5px 0 15px;
}
.summary-table-wrapper .summary-table tr:nth-child(3) td {
  padding: 15px 0 5px;
}
.summary-table-wrapper .summary-table tr:nth-child(6) {
  border-bottom: 1px solid #D9D9D9;
}
.summary-table-wrapper .summary-table tr:nth-child(6) td {
  padding: 5px 0 15px;
}
.summary-table-wrapper .summary-table tr:nth-child(7) td {
  padding: 15px 0 5px;
}
.summary-table-wrapper .summary-table tr:nth-child(8) {
  border-bottom: 1px solid #D9D9D9;
}
.summary-table-wrapper .summary-table tr:nth-child(8) td {
  padding: 5px 0 15px;
}
.summary-table-wrapper .summary-table tr:nth-child(9) td {
  padding: 15px 0 5px;
}
.summary-table-wrapper ul.price-table {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 17px;
}
.summary-table-wrapper ul.price-table.border-none {
  border-bottom: none;
}
.summary-table-wrapper ul.price-table li {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: #1D1D1D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 17px;
}
.summary-table-wrapper ul.price-table li h6 {
  margin-bottom: 0;
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: #1D1D1D;
}
.summary-table-wrapper ul.price-table li span {
  font-family: var(--font-work-sans);
  line-height: 1;
}
.summary-table-wrapper .total-price {
  width: 100%;
  height: 100px;
  background: #FAFAFA;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
}
.summary-table-wrapper .total-price::after {
  content: "";
  background: #006F30;
  height: 100%;
  width: 4px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px 0px 0px 5px;
}
.summary-table-wrapper .total-price::before {
  content: "";
  background: #006F30;
  height: 100%;
  width: 4px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0px 5px 5px 0px;
}
.summary-table-wrapper .total-price h3 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 36px;
  color: var(--bg-color);
  margin-bottom: 0;
  height: 160px;
  width: 160px;
  border-radius: 50%;
  background: #F3EFF8;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*================================================
      Setting Area
=================================================*/
.setting-wrapper {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 50px 40px;
  display: flex;
  gap: 60px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .setting-wrapper {
    gap: 30px;
    padding: 50px 30px;
  }
}
@media (max-width: 1399px) {
  .setting-wrapper {
    gap: 30px;
    padding: 50px 30px;
  }
}
@media (max-width: 991px) {
  .setting-wrapper {
    flex-wrap: wrap;
  }
}
.setting-wrapper .modal .modal-dialog {
  max-width: 755px;
  width: 100%;
  margin: auto;
}
.setting-wrapper .modal .modal-dialog .modal-content {
  border: none;
  position: relative;
  border-radius: 5px;
  padding: 50px;
}
.setting-wrapper .modal .modal-dialog .modal-content::after {
  content: "";
  height: 4px;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
}
.setting-wrapper .modal .modal-footer {
  justify-content: flex-start;
  border: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}
.setting-wrapper .modal .modal-footer .btn-secondary {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #006F30;
  background: #F4F3F5;
  border-radius: 5px;
  border: none;
  padding: 12px 34px;
}
.setting-wrapper .modal .modal-footer .btn-secondary:focus {
  box-shadow: none;
}
.setting-wrapper .setting-site-bar {
  max-width: 250px;
  width: 100%;
  border-right: 1px solid #F0EFF0;
}
@media (max-width: 991px) {
  .setting-wrapper .setting-site-bar {
    padding-bottom: 25px;
    border-right: none;
    border-bottom: 1px solid #F0EFF0;
    max-width: 100%;
  }
}
.setting-wrapper .setting-site-bar .setting-tabs .nav {
  display: block;
  border-bottom: none;
}
.setting-wrapper .setting-site-bar .setting-tabs .nav h5 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 20px;
  line-height: 31px;
  color: var(--bg-color);
  margin-bottom: 5px;
}
.setting-wrapper .setting-site-bar .setting-tabs .nav .nav-link {
  padding: 0;
  border: none;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--bg-color);
  position: relative;
  padding: 5px 0px 5px 20px;
}
.setting-wrapper .setting-site-bar .setting-tabs .nav .nav-link::after {
  content: "";
  height: 1px;
  width: 12px;
  background: var(--bg-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.setting-wrapper .setting-site-bar .setting-tabs .nav .nav-link.active {
  color: var(--primary-color);
}
.setting-wrapper .setting-site-bar .setting-tabs .nav .nav-link.active::after {
  background: var(--primary-color);
}
.setting-wrapper .setting-tab-content {
  width: 100%;
}
.setting-wrapper .setting-tab-content .setting-single-page .section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.setting-wrapper .setting-tab-content .setting-single-page .section-title h4 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: var(--bg-color);
  margin-bottom: 0;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .section-title {
  display: block !important;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .section-title h4 {
  margin-bottom: 10px;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .section-title p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--text-color2);
  margin-bottom: 0;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .delete-btn .btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 46, 46, 0.1);
  border-radius: 5px;
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 18px;
  color: #FF2E2E;
  border: none;
  padding: 12px 34px;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .delete-btn .btn-primary:focus {
  box-shadow: none;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .delete-btn .modal .modal-dialog {
  max-width: 755px;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .delete-btn .modal .modal-footer {
  justify-content: flex-start;
  border: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .delete-btn .modal .modal-footer .btn-secondary {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #006F30;
  background: #F4F3F5;
  border-radius: 5px;
  border: none;
  padding: 12px 34px;
}
.setting-wrapper .setting-tab-content .setting-single-page.delete-page .delete-btn .modal .modal-footer .btn-secondary:focus {
  box-shadow: none;
}
.setting-wrapper .setting-tab-content .author-area {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 576px) {
  .setting-wrapper .setting-tab-content .author-area {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload {
  position: relative;
  width: 111px;
  height: 110px;
  border: 1px dashed rgba(108, 46, 185, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload .avatar-edit {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload .avatar-edit input {
  display: none;
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload .avatar-edit input + label {
  display: inline-block;
  margin-bottom: 0;
  border-radius: 100%;
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload .avatar-edit input + label:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload .avatar-preview {
  width: 103px;
  height: 103px;
  position: relative;
  border-radius: 50%;
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload .avatar-preview .camera-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: unset;
}
.setting-wrapper .setting-tab-content .author-area .avatar-upload .avatar-preview .camera-icon {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  height: unset;
  width: unset;
}
.setting-wrapper .setting-tab-content .author-area .author-content h5 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--bg-color);
  margin-bottom: 7px;
}
.setting-wrapper .setting-tab-content .author-area .author-content p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: var(--bg-color);
  margin-bottom: 0;
}
.setting-wrapper .setting-tab-content .category-select-area {
  display: flex;
  align-items: center;
  position: relative;
}
.setting-wrapper .setting-tab-content .category-select-area > span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
  z-index: 9;
  position: absolute;
  left: 15px;
}
.setting-wrapper .setting-tab-content .category-select-area .nice-select {
  background-color: transparent;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-work-sans);
  color: var(--bg-color);
  height: unset;
  line-height: unset;
  outline: none;
  padding: 4px 45px 4px 85px;
  border-radius: 5px;
  background: rgba(0, 111, 48, 0.1);
  border: 1px solid #eee;
}
.setting-wrapper .setting-tab-content .category-select-area .nice-select::after {
  border-bottom: 1px solid var(--bg-color);
  border-right: 1px solid var(--bg-color);
  display: block;
  height: 8px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
}
.setting-wrapper .setting-tab-content .category-select-area .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  min-width: 100%;
}
.setting-wrapper .setting-tab-content .category-select-area .nice-select .list .option {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
}
.setting-wrapper .setting-tab-content .category-select-area .nice-select .list .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.setting-wrapper .setting-tab-content .category-select-area .nice-select .option:hover, .setting-wrapper .setting-tab-content .category-select-area .nice-select .option.focus, .setting-wrapper .setting-tab-content .category-select-area .nice-select .option.selected.focus {
  background-color: rgba(0, 111, 48, 0.1);
  color: var(--bg-color);
}
.setting-wrapper .setting-tab-content .paymant-mathod .section-title-and-add-btn {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .setting-wrapper .setting-tab-content .paymant-mathod .section-title-and-add-btn {
    flex-direction: column;
    gap: 15px;
  }
}
.setting-wrapper .setting-tab-content .paymant-mathod .section-title-and-add-btn .section-title {
  max-width: 700px;
  width: 100%;
}
.setting-wrapper .setting-tab-content .paymant-mathod .section-title-and-add-btn .section-title p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: var(--text-color2);
}
.setting-wrapper .setting-tab-content .paymant-mathod .section-title-and-add-btn .add-mathod-btn button {
  white-space: nowrap;
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
  background: #FAFAFA;
  border: 1px solid rgba(108, 46, 185, 0.3);
  border-radius: 5px;
  padding: 12px 15px;
}
.setting-wrapper .setting-tab-content .cpa-credits .section-title-and-add-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 767px) {
  .setting-wrapper .setting-tab-content .cpa-credits .section-title-and-add-btn {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.setting-wrapper .setting-tab-content .cpa-credits .btn-primary {
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: none;
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 18px;
  color: var(--primary-color);
}
.setting-wrapper .setting-tab-content .cpa-credits .btn-primary:focus {
  box-shadow: none;
}
.setting-wrapper .affiliate-link-area {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1199px) {
  .setting-wrapper .affiliate-link-area {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.setting-wrapper .affiliate-link-area .title h5 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 20px;
  line-height: 31px;
  color: var(--bg-color);
  margin-bottom: 0;
  white-space: nowrap;
}
.setting-wrapper .affiliate-link-area .link-area {
  width: 100%;
}
.setting-wrapper .affiliate-link-area .link-area .invite-page {
  border: 10px solid rgba(108, 46, 185, 0.08);
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  padding: 10px 30px;
}
.setting-wrapper .affiliate-link-area .link-area .invite-page input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--text-color2);
}
.setting-wrapper .affiliate-link-area .link-area #copy {
  cursor: pointer;
  position: relative;
}
.setting-wrapper .affiliate-link-area .link-area #copy i {
  color: var(--text-color2);
}
.setting-wrapper .affiliate-link-area .link-area #copy i.copied::after {
  position: absolute;
  top: -3px;
  right: 35px;
  height: 30px;
  line-height: 25px;
  display: block;
  content: "Copied";
  font-size: 16px;
  padding: 2px 10px;
  font-family: var(--font-mitr);
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 3px;
  opacity: 1;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}
@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}
.setting-wrapper .affiliate-link-area .link-area #copy:hover i {
  color: var(--primary-color);
}

/*================================================
    Login Signup Area
=================================================*/
.login-signup-wrap {
  display: flex;
  align-items: center;
  background: #F4F3F5;
}
.login-signup-wrap .tab {
  display: none;
}
.login-signup-wrap form {
  max-width: 770px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 80px 70px;
  margin: 60px;
  position: relative;
}
.login-signup-wrap form::after {
  content: "";
  height: 5px;
  width: 100%;
  border-radius: 5px 5px 0 0;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1500px) {
  .login-signup-wrap form {
    padding: 45px 30px;
    margin: 45px 25px;
  }
}
.login-signup-wrap form .form-title {
  width: 100%;
}
.login-signup-wrap form .form-title h2 {
  font-family: var(--font-mitr);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: #006F30;
  margin-bottom: 0;
  text-align: center;
}
.login-signup-wrap form .form-inner2 > label {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--bg-color);
  margin-bottom: 5px;
}
.login-signup-wrap form .form-inner2 .input-area {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #F8F8F8;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 10px 25px;
  height: 48px;
}
.login-signup-wrap form .form-inner2 .input-area input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #707070;
}
.login-signup-wrap form .form-agreement .form-check {
  display: flex;
  gap: 7px;
  min-height: unset;
}
.login-signup-wrap form .form-agreement .form-check .form-check-input {
  height: 12px;
  width: 12px;
  border-radius: 2px;
  border: 1px solid #006F30;
  padding: 0;
  transition: unset;
}
.login-signup-wrap form .form-agreement .form-check .form-check-label {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: var(--text-color2);
  cursor: pointer;
}
.login-signup-wrap form .form-agreement .forgot-pass {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #006F30;
  transition: 0.35s;
}
.login-signup-wrap form .form-agreement .forgot-pass:hover {
  color: var(--bg-color);
}
.login-signup-wrap form .primary-btn1 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  width: 100%;
  border: none;
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 15px 20px;
}
.login-signup-wrap form h6 {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  color: var(--bg-color);
  margin-bottom: 0px;
}
.login-signup-wrap form h6 a {
  font-family: var(--font-mitr);
  color: var(--primary-color);
  padding-left: 10px;
}
.login-signup-wrap form .or-divider {
  margin-top: 40px;
  margin-bottom: 35px;
  position: relative;
  display: flex;
  justify-content: center;
}
.login-signup-wrap form .or-divider h6 {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
  background-color: #fff;
  z-index: 1;
  padding: 0px 10px;
}
.login-signup-wrap form .or-divider .dash {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  background-color: #eee;
}
.login-signup-wrap form .login-difarent-way a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: var(--bg-color);
  background: #FFFFFF;
  border: 1px solid rgba(108, 46, 185, 0.3);
  border-radius: 5px;
  padding: 10px 20px;
}
@media (max-width: 1399px) {
  .login-signup-wrap form .login-difarent-way a {
    font-size: 15px;
    padding: 13px 15px;
  }
}
@media (max-width: 1199px) {
  .login-signup-wrap form .login-difarent-way a {
    font-size: 13px;
    padding: 10px 12px;
  }
}
.login-signup-wrap .contact-area {
  background-image: url(../images/bg/login-bg.png);
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-signup-wrap .contact-area .vector-group {
  margin: 0;
  padding: 0;
  list-style: none;
}
.login-signup-wrap .contact-area .vector-group .vectors1 {
  position: absolute;
  left: 0;
  top: 0;
}
.login-signup-wrap .contact-area .vector-group .vectors2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.login-signup-wrap .contact-area .vector-group .vectors3 {
  position: absolute;
  right: 60px;
  top: 120px;
}
.login-signup-wrap .contact-area .contact-content {
  max-width: 395px;
  width: 100%;
  text-align: center;
}
@media (max-width: 576px) {
  .login-signup-wrap .contact-area .contact-content {
    max-width: 325px;
  }
}
.login-signup-wrap .contact-area .contact-content .logo {
  margin-bottom: 25px;
}
.login-signup-wrap .contact-area .contact-content p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}
.login-signup-wrap .contact-area .contact-content p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  opacity: 0.5;
}
.login-signup-wrap .contact-area .contact-content .social-area {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  gap: 15px;
}
.login-signup-wrap .contact-area .contact-content .social-area li a {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-signup-wrap .contact-area .contact-content .go-to-home-btn a {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
  background: #006F30;
  border-radius: 5px;
  padding: 12px 25px;
  display: inline-block;
}

.invoice-page .page-title-and-breadcurmb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 576px) {
  .invoice-page .page-title-and-breadcurmb ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.invoice-page .page-title-and-breadcurmb ul li button {
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 15px;
  display: flex;
  gap: 10px;
  border-radius: 5px;
  padding: 5px 19px;
}
.invoice-page .page-title-and-breadcurmb ul li button.light-green {
  background-color: #00BD4C;
}
.invoice-page .page-title-and-breadcurmb ul li button.red {
  background-color: #ba210d;
}
.invoice-page .page-title-and-breadcurmb ul li {
  position: relative;
}
.invoice-page .page-title-and-breadcurmb ul li::after {
  content: "";
  height: 20px;
  width: 1px;
  background-color: var(--primary-color);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 576px) {
  .invoice-page .page-title-and-breadcurmb ul li::after {
    display: none;
    visibility: hidden;
  }
}
.invoice-page .page-title-and-breadcurmb ul li:first-child::after {
  display: none;
  visibility: hidden;
}
@media (max-width: 576px) {
  .invoice-page .page-title-and-breadcurmb ul li {
    margin-right: 15px;
  }
}
.invoice-page .invoice-wrapper {
  padding: 50px 100px;
}
@media (max-width: 1700px) {
  .invoice-page .invoice-wrapper {
    padding: 50px 70px;
  }
}
@media (max-width: 1399px) {
  .invoice-page .invoice-wrapper {
    padding: 45px 50px;
  }
}
@media (max-width: 1199px) {
  .invoice-page .invoice-wrapper {
    padding: 45px 25px;
  }
}
@media (max-width: 767px) {
  .invoice-page .invoice-wrapper {
    padding: 45px 15px;
  }
}
.invoice-page .invoice-wrapper .invoice-header {
  margin-bottom: 20px;
  width: 100%;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .invoice-page .invoice-wrapper .invoice-header {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.invoice-page .invoice-wrapper .invoice-header .header-left h6 {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.invoice-page .invoice-wrapper .invoice-header .header-left h4 {
  font-family: var(--font-mitr);
  font-weight: 300;
  font-size: 22px;
  color: var(--bg-color);
  margin-bottom: 7px;
}
.invoice-page .invoice-wrapper .invoice-header .header-left h4 .invoice-number {
  font-weight: 400;
}
@media (max-width: 576px) {
  .invoice-page .invoice-wrapper .invoice-header .header-left h4 {
    font-size: 20px;
  }
}
.invoice-page .invoice-wrapper .invoice-header .header-left .payment-stutas p {
  margin-bottom: 0;
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color2);
}
.invoice-page .invoice-wrapper .invoice-header .header-left .payment-stutas p span {
  color: #00BD4C;
}
.invoice-page .invoice-wrapper .invoice-header .header-right {
  position: relative;
  padding-left: 20px;
}
.invoice-page .invoice-wrapper .invoice-header .header-right::after {
  content: "";
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  border-radius: 50px;
  left: 0px;
}
.invoice-page .invoice-wrapper .invoice-header .header-right h2 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 55px;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 0.8;
}
.invoice-page .invoice-wrapper .invoice-header .header-right span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color2);
}
.invoice-page .invoice-wrapper .summary-card {
  background: #FAFAFA;
  border-radius: 10px;
}
.invoice-page .invoice-wrapper .summary-card .summary-title {
  background: #F4F3F5;
  border-radius: 10px 10px 0px 0px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .invoice-page .invoice-wrapper .summary-card .summary-title {
    padding: 10px 15px;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-title h5 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 20px;
  color: #1D1D1D;
  margin-bottom: 0;
  line-height: 1;
}
.invoice-page .invoice-wrapper .summary-card .summary-content {
  padding: 5px 0 15px 0px;
}
@media (max-width: 1399px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content {
    padding: 30px 15px;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info {
  padding: 20px;
}
@media (max-width: 1399px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info {
    gap: 100px;
  }
}
@media (max-width: 991px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info {
    display: block;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul.devaider::after {
  content: "";
  height: 85px;
  width: 1px;
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 111, 48, 0.16);
}
@media (max-width: 1399px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul.devaider::after {
    left: -50px;
  }
}
@media (max-width: 991px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul.devaider::after {
    display: none;
    visibility: hidden;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul li {
  display: flex;
  align-items: center;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--bg-color);
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul li {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul li {
    flex-wrap: wrap;
    gap: 0;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul li span {
  min-width: 170px;
  font-family: var(--font-mitr);
}
@media (max-width: 1399px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul li span {
    min-width: 150px;
  }
}
@media (max-width: 1199px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul li span {
    min-width: unset;
  }
}
@media (max-width: 576px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info ul li span {
    margin-right: 15px;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two {
  gap: 110px;
  padding: 30px 40px 70px;
}
@media (max-width: 1700px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two {
    gap: 60px;
  }
}
@media (max-width: 1399px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two {
    gap: 36px;
    padding: 30px 20px 70px;
  }
}
@media (max-width: 576px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two {
    padding: 30px 15px 70px;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
@media (max-width: 1500px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two ul li {
    font-size: 14px;
  }
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two ul li span {
    min-width: 135px;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two ul:first-child li span {
  min-width: 110px;
}
@media (max-width: 1500px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two ul:first-child li span {
    min-width: 90px;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two ul.devaider::after {
  left: -55px;
}
@media (max-width: 1700px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two ul.devaider::after {
    left: -30px;
  }
}
@media (max-width: 1399px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.customer-info.two ul.devaider::after {
    left: -18px;
    height: 100%;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.work-progress {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}
.invoice-page .invoice-wrapper .summary-card .summary-content.work-progress h3 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .invoice-page .invoice-wrapper .summary-card .summary-content.work-progress h3 {
    font-size: 30px;
  }
}
.invoice-page .invoice-wrapper .summary-card .summary-content.work-progress p {
  margin-bottom: 0;
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color2);
}
.invoice-page .invoice-wrapper .summary-card .summary-content.work-progress span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--bg-color);
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap {
  background: #F4F3F5;
  border-radius: 10px;
  padding: 25px 25px;
}
@media (max-width: 1399px) {
  .invoice-page .order-summary-and-stutas .order-stutas-wrap {
    padding: 25px 20px;
  }
}
@media (max-width: 576px) {
  .invoice-page .order-summary-and-stutas .order-stutas-wrap {
    padding: 25px 15px;
  }
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap .title h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 18px;
  color: var(--bg-color);
  margin-bottom: 20px;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 165px;
  overflow-Y: scroll;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul::-webkit-scrollbar {
  width: 10px;
  padding: 3px;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul::-webkit-scrollbar-track {
  background: #FFFFFF;
  border-radius: 50px;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul::-webkit-scrollbar-thumb {
  background: #E2E2E2;
  border-radius: 50px;
  max-width: 4px !important;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li {
  display: flex;
  gap: 15px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .invoice-page .order-summary-and-stutas .order-stutas-wrap ul li {
    gap: 10px;
  }
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li span {
  height: 13px;
  width: 13px;
  border-radius: 50%;
  border: 1px solid #BEBEBE;
  position: relative;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li span::before {
  content: "";
  height: 6.5px;
  width: 6.5px;
  border-radius: 50%;
  background-color: #BEBEBE;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li span::after {
  content: "";
  height: 43px;
  width: 1px;
  background-color: #BEBEBE;
  position: absolute;
  top: 12px;
  left: 50%;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li .single-stutas {
  margin-bottom: 17px;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li .single-stutas .date-and-time {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 7px;
}
@media (max-width: 1399px) {
  .invoice-page .order-summary-and-stutas .order-stutas-wrap ul li .single-stutas .date-and-time {
    gap: 10px;
  }
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li .single-stutas .date-and-time .date, .invoice-page .order-summary-and-stutas .order-stutas-wrap ul li .single-stutas .date-and-time .time {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-color2);
  line-height: 1;
}
@media (max-width: 1399px) {
  .invoice-page .order-summary-and-stutas .order-stutas-wrap ul li .single-stutas .date-and-time .date, .invoice-page .order-summary-and-stutas .order-stutas-wrap ul li .single-stutas .date-and-time .time {
    font-size: 12px;
  }
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li .single-stutas h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 15px;
  color: var(--bg-color);
  margin-bottom: 0;
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li.active span {
  border-color: var(--primary-color);
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li.active span::before {
  background-color: var(--primary-color);
}
.invoice-page .order-summary-and-stutas .order-stutas-wrap ul li.active span::after {
  background-color: var(--primary-color);
}

.primary-text {
  color: var(--primary-color);
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.summary-table > thead tr {
  border-bottom: 1px solid rgba(0, 111, 48, 0.16);
}
.summary-table > thead tr th {
  font-family: var(--font-mitr);
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--bg-color);
  opacity: 1;
  padding: 0px 20px 10px;
  vertical-align: top;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .summary-table > thead tr th {
    padding: 16px 20px;
  }
}
@media (max-width: 1399px) {
  .summary-table > thead tr th {
    padding: 16px 20px;
  }
}
@media (max-width: 991px) {
  .summary-table > thead tr th {
    display: none;
  }
}
.summary-table > thead tr th:nth-child(1) {
  width: 50%;
}
.summary-table > thead tr th:nth-child(2) {
  width: 12.5%;
}
.summary-table > thead tr th:nth-child(3) {
  width: 14.2857142857%;
}
.summary-table > thead tr th:nth-child(4) {
  width: 8.3333333333%;
}
.summary-table > tbody > tr {
  border-bottom: 1px solid rgba(0, 111, 48, 0.16);
}
.summary-table > tbody > tr > td:nth-child(1) .sub-table tbody {
  position: relative;
}
.summary-table > tbody > tr > td:nth-child(1) .sub-table tbody::after {
  content: "";
  height: 93%;
  width: 0.5px;
  background-color: var(--text-color2);
  position: absolute;
  left: 5px;
  top: -8px;
}
@media (max-width: 991px) {
  .summary-table > tbody > tr > td:nth-child(1) .sub-table tbody::after {
    display: none;
    visibility: hidden;
  }
}
.summary-table > tbody > tr > td:nth-child(1) .sub-table tbody tr td {
  padding-left: 30px;
  position: relative;
}
.summary-table > tbody > tr > td:nth-child(1) .sub-table tbody tr td::after {
  content: url("../images/icons/summary-arrow.svg");
  position: absolute;
  left: 4.5px;
  top: 0;
}
@media (max-width: 991px) {
  .summary-table > tbody > tr > td:nth-child(1) .sub-table tbody tr td::after {
    display: none;
    visibility: hidden;
  }
}
.summary-table > tbody > tr > td:nth-child(2) {
  display: flex;
}
.summary-table > tbody > tr > td .sub-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.summary-table > tbody > tr > td .sub-table > thead tr th {
  font-family: var(--font-work-sans);
  font-weight: 500;
  color: var(--bg-color);
  font-size: 15px;
  line-height: 21px;
  padding-bottom: 8px;
}
@media (max-width: 576px) {
  .summary-table > tbody > tr > td .sub-table > thead tr th {
    font-size: 13px;
  }
}
.summary-table > tbody > tr > td .sub-table tbody tr td {
  font-family: var(--font-work-sans);
  font-weight: 400;
  color: var(--bg-color);
  font-size: 15px;
  line-height: 21px;
  padding: 4px 0px;
}
@media (max-width: 576px) {
  .summary-table > tbody > tr > td .sub-table tbody tr td {
    font-size: 13px;
    padding: 3px 0px;
  }
}
.summary-table > tbody > tr > td {
  vertical-align: baseline;
  padding: 16px 20px;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .summary-table > tbody > tr > td {
    padding: 16px 20px;
  }
}
@media (max-width: 1399px) {
  .summary-table > tbody > tr > td {
    padding: 16px 20px;
  }
}
@media (max-width: 991px) {
  .summary-table > tbody > tr > td {
    display: block;
    width: 100%;
    text-align: right;
    padding-left: 30%;
    position: relative;
  }
}
@media (max-width: 991px) {
  .summary-table > tbody > tr {
    display: block;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .summary-table > tbody {
    display: block;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .summary-table {
    display: block;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .summary-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 30%;
    text-align: left;
    font-family: var(--font-mitr);
    font-weight: 400;
    font-size: 16px;
  }
}
@media (max-width: 991px) and (max-width: 576px) {
  .summary-table td:before {
    font-size: 14px;
  }
}
.summary-table.specification-table tbody tr:last-child {
  border-bottom: none;
}
.summary-table.specification-table tbody tr td {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: var(--bg-color);
  padding: 9px 0px;
}
.summary-table.specification-table tbody tr td:nth-child(2) {
  justify-content: end;
  font-family: var(--font-work-sans);
}
.summary-table.specification-table tbody tr:nth-child(1) td {
  padding-top: 0;
}
.summary-table.order-summary-table tbody tr {
  border-bottom: none;
}

.summary-sub-total {
  width: 100%;
  margin-left: auto;
}
.summary-sub-total table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.summary-sub-total table thead tr th {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 14px;
  color: var(--bg-color);
  padding: 0px 20px;
  padding-top: 10px;
}
.summary-sub-total table thead tr th span {
  font-weight: 300;
  display: inline-block;
  padding-top: 5px;
}
.summary-sub-total table thead tr th:nth-child(1) {
  width: 50%;
}
@media (max-width: 576px) {
  .summary-sub-total table thead tr th:nth-child(1) {
    display: none;
    visibility: hidden;
  }
}
.summary-sub-total table thead tr th:nth-child(2) {
  width: 12.5%;
}
@media (max-width: 576px) {
  .summary-sub-total table thead tr th:nth-child(2) {
    display: none;
    visibility: hidden;
  }
}
.summary-sub-total table thead tr th:nth-child(3) {
  width: 14.2857142857%;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 111, 48, 0.16);
}
@media (max-width: 576px) {
  .summary-sub-total table thead tr th:nth-child(3) {
    text-align: end;
  }
}
.summary-sub-total table thead tr th:nth-child(4) {
  width: 8.3333333333%;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 111, 48, 0.16);
}
@media (max-width: 576px) {
  .summary-sub-total table thead tr th:nth-child(4) {
    text-align: end;
  }
}
.summary-sub-total table tbody tr td {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 14px;
  color: var(--bg-color);
  padding: 0px 20px;
  padding-top: 10px;
}
@media (max-width: 576px) {
  .summary-sub-total table tbody tr td:nth-child(1) {
    display: none;
    visibility: hidden;
  }
}
@media (max-width: 576px) {
  .summary-sub-total table tbody tr td:nth-child(2) {
    display: none;
    visibility: hidden;
  }
}
@media (max-width: 576px) {
  .summary-sub-total table tbody tr td:nth-child(3) {
    text-align: end;
  }
}
@media (max-width: 576px) {
  .summary-sub-total table tbody tr td:nth-child(4) {
    text-align: end;
  }
}

.terms-condition-wrap {
  background: #EFEBF2;
  padding: 20px 80px;
}
@media (max-width: 767px) {
  .terms-condition-wrap {
    padding: 20px 40px;
  }
}
@media (max-width: 576px) {
  .terms-condition-wrap {
    padding: 20px 20px;
  }
}
.terms-condition-wrap .terms-condition-content {
  padding-left: 16px;
  position: relative;
}
.terms-condition-wrap .terms-condition-content::after {
  content: "";
  height: 100%;
  width: 2px;
  border-radius: 50px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}
.terms-condition-wrap .terms-condition-content h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 15px;
  color: var(--bg-color);
  margin-bottom: 8px;
}
.terms-condition-wrap .terms-condition-content p {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color2);
  margin-bottom: 0;
}

.conversation-wrapper .single-conversation:nth-child(odd) {
  margin-right: 200px;
}
@media (max-width: 1500px) {
  .conversation-wrapper .single-conversation:nth-child(odd) {
    margin-right: 120px;
  }
}
@media (max-width: 767px) {
  .conversation-wrapper .single-conversation:nth-child(odd) {
    margin-right: 60px;
  }
}
@media (max-width: 576px) {
  .conversation-wrapper .single-conversation:nth-child(odd) {
    margin-right: 30px;
  }
}
.conversation-wrapper .single-conversation:nth-child(even) {
  margin-left: 200px;
}
@media (max-width: 1500px) {
  .conversation-wrapper .single-conversation:nth-child(even) {
    margin-left: 120px;
  }
}
@media (max-width: 767px) {
  .conversation-wrapper .single-conversation:nth-child(even) {
    margin-left: 60px;
  }
}
@media (max-width: 576px) {
  .conversation-wrapper .single-conversation:nth-child(even) {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .conversation-wrapper .single-conversation {
    max-width: 550px;
  }
}
.conversation-wrapper .single-conversation .load-more a {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--primary-color);
  border: 1px solid rgba(108, 46, 185, 0.1);
  border-radius: 5px;
  padding: 3px 20px;
}
.conversation-wrapper .single-conversation .conversation-header {
  background: #F1EBF8;
  padding: 10px 30px;
  border-radius: 5px 5px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1199px) {
  .conversation-wrapper .single-conversation .conversation-header {
    padding: 10px 20px;
    display: block;
  }
}
@media (max-width: 576px) {
  .conversation-wrapper .single-conversation .conversation-header {
    padding: 10px 15px;
  }
}
.conversation-wrapper .single-conversation .conversation-header .title-and-date h5 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 20px;
  color: var(--bg-color);
  margin-bottom: 0;
  line-height: 1;
}
.conversation-wrapper .single-conversation .conversation-header .title-and-date span {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 12px;
  color: #595959;
  line-height: 1;
}
.conversation-wrapper .single-conversation .conversation-header .search-bar {
  border-radius: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .conversation-wrapper .single-conversation .conversation-header .search-bar {
    margin: 15px 0;
    max-width: 300px;
    width: 100%;
  }
}
.conversation-wrapper .single-conversation .conversation-header .search-bar input {
  width: 100%;
  border: none;
  outline: none;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color2);
}
.conversation-wrapper .single-conversation .conversation-header .search-bar button {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
.conversation-wrapper .single-conversation .conversation-header .search-bar button svg {
  fill: var(--primary-color);
  transition: 0.35s;
}
.conversation-wrapper .single-conversation .conversation-header .search-bar button:hover svg {
  fill: var(--bg-color);
}
.conversation-wrapper .single-conversation .conversation-header .filter-and-download {
  display: flex;
  align-items: center;
  gap: 17px;
}
.conversation-wrapper .single-conversation .conversation-header .filter-and-download .filter-area .nice-select {
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-mitr);
  color: var(--text-color2);
  height: unset;
  line-height: unset;
  outline: none;
  padding: 4px 45px 4px 24px;
  border-radius: 5px;
  background: #FFFFFF;
  border: 1px solid #eee;
}
.conversation-wrapper .single-conversation .conversation-header .filter-and-download .filter-area .nice-select::after {
  border-bottom: 1px solid var(--bg-color);
  border-right: 1px solid var(--bg-color);
  display: block;
  height: 8px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
}
.conversation-wrapper .single-conversation .conversation-header .filter-and-download .filter-area .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 3px;
  min-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
}
.conversation-wrapper .single-conversation .conversation-header .filter-and-download .filter-area .nice-select .list .option {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
}
.conversation-wrapper .single-conversation .conversation-header .filter-and-download .filter-area .nice-select .list .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.conversation-wrapper .single-conversation .conversation-header .filter-and-download .filter-area .nice-select .option:hover, .conversation-wrapper .single-conversation .conversation-header .filter-and-download .filter-area .nice-select .option.focus, .conversation-wrapper .single-conversation .conversation-header .filter-and-download .filter-area .nice-select .option.selected.focus {
  background-color: rgba(0, 111, 48, 0.15);
  color: var(--bg-color);
}
.conversation-wrapper .single-conversation .conversation-header .filter-and-download button {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  background-color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  border: none;
  outline: none;
}
.conversation-wrapper .single-conversation .conversation-content {
  padding: 30px 40px;
  background: #F8F8F8;
  border-radius: 0px 0px 5px 5px;
}
@media (max-width: 1199px) {
  .conversation-wrapper .single-conversation .conversation-content {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .conversation-wrapper .single-conversation .conversation-content {
    padding: 30px 15px;
  }
}
.conversation-wrapper .single-conversation .conversation-content .single-img {
  position: relative;
}
.conversation-wrapper .single-conversation .conversation-content .single-img > img {
  border-radius: 5px;
}
@media (max-width: 576px) {
  .conversation-wrapper .single-conversation .conversation-content .single-img > img {
    width: 100%;
  }
}
.conversation-wrapper .single-conversation .conversation-content .single-img .conversation-gallery {
  height: 18px;
  width: 18px;
  border-radius: 5px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.conversation-wrapper .single-conversation .conversation-content .single-img .conversation-gallery svg {
  fill: var(--primary-color);
  transition: 0.35s;
}
.conversation-wrapper .single-conversation .conversation-content .single-img .conversation-gallery:hover {
  background-color: var(--primary-color);
}
.conversation-wrapper .single-conversation .conversation-content .single-img .conversation-gallery:hover svg {
  fill: var(--white);
}
.conversation-wrapper .conversation-imput-area form {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 57.5px;
  justify-content: space-between;
  padding: 30px 50px;
  gap: 30px;
  position: relative;
  z-index: 9;
}
.conversation-wrapper .conversation-imput-area form::before {
  content: "";
  background: var(--white);
  height: 100%;
  border-radius: 57.5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.conversation-wrapper .conversation-imput-area form::after {
  content: "";
  background: var(--primary-color);
  height: 102%;
  border-radius: 57.5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: -9;
}
@media (max-width: 767px) {
  .conversation-wrapper .conversation-imput-area form {
    padding: 15px 15px;
    gap: 15px;
  }
}
.conversation-wrapper .conversation-imput-area .file-add {
  height: 34px;
  min-width: 34px;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.conversation-wrapper .conversation-imput-area .file-add i {
  color: var(--text-color2);
  transition: 0.35s;
}
.conversation-wrapper .conversation-imput-area .file-add {
  transition: 0.35s;
}
.conversation-wrapper .conversation-imput-area .file-add:hover {
  background-color: var(--primary-color);
}
.conversation-wrapper .conversation-imput-area .file-add:hover i {
  color: var(--white);
}
.conversation-wrapper .conversation-imput-area input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color2);
  position: relative;
  z-index: 2;
}
.conversation-wrapper .conversation-imput-area .button-group {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .conversation-wrapper .conversation-imput-area .button-group {
    gap: 5px;
  }
}
.conversation-wrapper .conversation-imput-area .button-group .mic, .conversation-wrapper .conversation-imput-area .button-group .emoji {
  color: var(--text-color2);
  cursor: pointer;
  transition: 0.35s;
}
.conversation-wrapper .conversation-imput-area .button-group .mic:hover, .conversation-wrapper .conversation-imput-area .button-group .emoji:hover {
  color: var(--primary-color);
}
.conversation-wrapper .conversation-imput-area .button-group .sent-btn button {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 14px;
  border-radius: 16px;
  padding: 5px 15px;
}
.conversation-wrapper .conversation-imput-area .button-group .sent-btn button::after {
  border-radius: 16px;
}

/* Popup CSS Below */
.ct-sliderPop-container {
  display: none;
  left: 0px;
  opacity: 0;
  top: 0px;
  z-index: 9998;
}

.ct-sliderPop-container.open {
  animation-duration: 0.35s;
  animation-fill-mode: both;
  animation-name: fadeIn;
  display: block;
}

.ct-sliderPop-container {
  overflow: hidden;
  display: inline-table;
  width: 100%;
  height: 100%;
  left: 0;
  position: fixed !important; /* Required to override style inline style added by Flexslider */
  top: 0;
  z-index: 9997;
}

.ct-sliderPop-container .flex-direction-nav a {
  overflow: visible;
}

.flex-direction-nav a,
.flex-direction-nav a.flex-next::before,
.flex-direction-nav a.flex-prev::before {
  color: #fff !important;
}

/* =================================
  # Media Queries 
================================= */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sliderPop {
  background: rgba(29, 29, 29, 0.35);
}
.sliderPop .slider-btn-group {
  display: flex;
  justify-content: space-between;
  width: 130%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
}
@media (max-width: 767px) {
  .sliderPop .slider-btn-group {
    display: none;
    visibility: hidden;
  }
}
.sliderPop .ct-sliderPop-container {
  background: rgba(29, 29, 29, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 {
  position: relative;
  max-width: 925px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1399px) {
  .sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 {
    max-width: 725px;
  }
}
@media (max-width: 991px) {
  .sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 {
    max-width: 525px;
  }
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .ct-sliderPop-close {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  right: -18px;
  top: -18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1111;
}
@media (max-width: 576px) {
  .sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .ct-sliderPop-close {
    right: 18px;
    top: 18px;
  }
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .ct-sliderPop-close i {
  color: var(--primary-color);
}
@media (max-width: 576px) {
  .sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap {
    margin: 10px;
  }
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .popup-img img {
  border-radius: 5px 5px 0px 0px;
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .instruction-area {
  background: #FFFFFF;
  border-radius: 0px 0px 5px 5px;
  padding: 10px 80px 20px;
}
@media (max-width: 991px) {
  .sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .instruction-area {
    padding: 10px 30px 20px;
  }
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .instruction-area form label {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-bottom: 8px;
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .instruction-area form .form-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .instruction-area form .form-inner {
    gap: 15px;
  }
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .instruction-area form .form-inner input {
  background: #FAFAFA;
  border: 1px solid rgba(108, 46, 185, 0.1);
  border-radius: 4px;
  height: 48px;
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--text-color2);
}
.sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .instruction-area form .form-inner button {
  border: none;
  outline: none;
  background: #FF1F3A;
  border-radius: 5px;
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  padding: 13px 50px;
}
@media (max-width: 576px) {
  .sliderPop .ct-sliderPop-container .ct-sliderPop-slide1 .popup-image-wrap .instruction-area form .form-inner button {
    padding: 13px 22px;
  }
}

.coupon-code-area {
  padding-top: 30px;
}
.coupon-code-area h6 {
  font-family: var(--font-mitr);
  font-weight: 300;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.coupon-code-area .form-inner {
  display: flex;
  align-items: center;
  max-width: 400px;
  width: 100%;
}
.coupon-code-area .form-inner input {
  font-family: var(--font-work-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color2);
  border: 1px solid rgba(108, 46, 185, 0.2);
  border-radius: 5px;
  height: 48px;
}
.coupon-code-area .form-inner button {
  border-radius: 5px;
  height: 48px;
  background-color: var(--primary-color);
  border: none;
  outline: none;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 12px 37px;
  margin-left: -5px;
}
.coupon-code-area .form-inner button::after {
  border-radius: 5px;
}

.payment-mathod h6 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
}
.payment-mathod ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  padding-top: 15px;
  gap: 10px;
  justify-content: space-between;
}
.payment-mathod ul li {
  height: 38px;
  width: 75px;
  border: 1px solid #EAE7ED;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.payment-mathod ul li .check-box {
  height: 21px;
  width: 24px;
  background: #F3EFF8;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  left: -1px;
  top: -1px;
  transition: 0.35s;
}
.payment-mathod ul li .check-box img {
  position: absolute;
  left: 4px;
  top: 4px;
  opacity: 0;
  transition: 0.35s;
}
.payment-mathod ul li.selected .check-box {
  background: var(--primary-color);
}
.payment-mathod ul li.selected .check-box img {
  opacity: 1;
}

.primary-btn2 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 23px;
  padding: 5px 25px;
}
.primary-btn2::after {
  border-radius: 23px;
}

.specification-card {
  border: 1px solid rgba(108, 46, 185, 0.15);
  border-radius: 10px;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.specification-card:hover {
  background: #FAFAFA;
}
.specification-card .popular {
  position: absolute;
  background: #D7B400;
  padding: 5px 56px;
  top: 28px;
  left: -45px;
  transform: rotate(-35deg);
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--white);
}
.specification-card .specification-card-icon svg {
  fill: var(--primary-color);
  margin-bottom: 30px;
}
.specification-card .specification-card-icon img {
  margin-bottom: 30px;
}
.specification-card .specification-card-content h4 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 15px;
}
.specification-card .specification-card-content p {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-color2);
  margin-bottom: 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .specification-card .specification-card-content p {
    font-size: 15px;
  }
}

.sp-image-format .from-inner3 {
  display: flex;
  align-items: center;
  gap: 68px;
  margin-bottom: 30px;
}
.sp-image-format .from-inner3:nth-child(2) {
  gap: 46px;
}
.sp-image-format .from-inner3:last-child {
  gap: 15px;
  margin-bottom: 0;
}
.sp-image-format .from-inner3 label {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--bg-color);
}
.sp-image-format .from-inner3 .order-type {
  background: var(--background);
  max-width: 700px;
  width: 100%;
  border: 1px solid rgba(108, 46, 185, 0.1);
  border-radius: 4px;
}
.sp-image-format .from-inner3 .order-type .nice-select {
  background: transparent;
  width: 100%;
  padding: 14px 30px;
  height: unset;
  line-height: unset;
  outline: none;
  border: none;
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
.sp-image-format .from-inner3 .order-type .nice-select::after {
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  top: 45%;
  right: 30px;
}
.sp-image-format .from-inner3 .order-type .nice-select .list {
  max-width: 700px;
  width: unset;
}
.sp-image-format .from-inner3 .order-type .nice-select .list .option {
  padding-left: 30px;
}
.sp-image-format .from-inner3 .image-format-radio {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sp-image-format .from-inner3 .image-format-radio .form-check label {
  font-family: var(--font-work-sans);
}
.sp-image-format .from-inner3 .image-format-radio .form-check .form-check-input {
  width: 15px;
  height: 15px;
  border: 1px solid #006F30;
}
.sp-image-format .from-inner3 .image-format-radio .form-check .form-check-input:checked[type=radio] {
  background-color: transparent;
  background-image: url(../images/icons/img-format-radio.svg);
}
.sp-image-format .from-inner3 .image-format-radio .form-check.two label {
  font-family: var(--font-mitr);
}
.sp-image-format .from-inner3 .image-format-radio.style-2 {
  align-items: flex-start;
  flex-direction: column;
  gap: unset;
}
.sp-image-format .from-inner3 .image-format-radio.style-2 .form-check {
  margin-bottom: 12px;
}
.sp-image-format .from-inner3 .image-format-radio.style-2 .form-check label strong {
  font-family: var(--font-mitr);
  font-size: 15px;
  font-weight: 400;
}
.sp-image-format .from-inner3.style-2 {
  flex-direction: column;
  align-items: flex-start;
  gap: unset;
}
.sp-image-format .from-inner3.style-2 .order-type {
  margin-bottom: 40px;
}
.sp-image-format .from-inner3.style-2 .order-type .nice-select .option {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
}
.sp-image-format .from-inner3.style-2 .order-type .nice-select .option.selected {
  background-color: var(--primary-color);
}
.sp-image-format .from-inner3.style-2 .order-type .nice-select .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.marketplace-sp .modal .modal-dialog {
  max-width: 658px;
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .marketplace-sp .modal .modal-dialog {
    max-width: 500px;
  }
}
.marketplace-sp .modal .modal-dialog .modal-content {
  border: none;
  position: relative;
  border-radius: 5px;
  padding: 50px;
}
@media (max-width: 767px) {
  .marketplace-sp .modal .modal-dialog .modal-content {
    padding: 40px;
  }
}
.marketplace-sp .modal .modal-dialog .modal-content::after {
  content: "";
  height: 4px;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
}
.marketplace-sp .modal .modal-dialog .modal-content .marketplace-sp-modal-head h4 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .marketplace-sp .modal .modal-dialog .modal-content .marketplace-sp-modal-head h4 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.marketplace-sp .modal .modal-dialog .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.marketplace-sp .modal .modal-dialog .modal-content .modal-body label {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 14px;
}
.marketplace-sp .modal .modal-dialog .modal-content .modal-body input {
  background: #F8F8F8;
  border: 1px solid rgba(108, 46, 185, 0.08);
  border-radius: 5px;
  outline: none;
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: var(--text-color2);
  padding: 16px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .marketplace-sp .modal .modal-dialog .modal-content .modal-body input {
    margin-bottom: 30px;
    padding: 14px;
  }
}
.marketplace-sp .modal .modal-footer {
  justify-content: flex-start;
  border: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}
@media (max-width: 767px) {
  .marketplace-sp .modal .modal-footer {
    gap: 20px;
  }
}
.marketplace-sp .modal .modal-footer .btn-primary1 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
  background: var(--primary-color);
  border-radius: 5px;
  border: none;
  padding: 10px 31px;
}
@media (max-width: 767px) {
  .marketplace-sp .modal .modal-footer .btn-primary1 {
    padding: 8px 20px;
  }
}
.marketplace-sp .modal .modal-footer .btn-primary1:focus {
  box-shadow: none;
}
.marketplace-sp .modal .modal-footer .btn-secondary {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--primary-color);
  background: var(--background);
  border-radius: 5px;
  border: none;
  padding: 10px 31px;
}
@media (max-width: 767px) {
  .marketplace-sp .modal .modal-footer .btn-secondary {
    padding: 8px 20px;
  }
}
.marketplace-sp .modal .modal-footer .btn-secondary:focus {
  box-shadow: none;
}

.marketplace-sp2 .modal .modal-dialog {
  max-width: 658px;
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .marketplace-sp2 .modal .modal-dialog {
    max-width: 500px;
  }
}
.marketplace-sp2 .modal .modal-dialog .modal-content {
  border: none;
  position: relative;
  border-radius: 5px;
  padding: 50px;
}
@media (max-width: 767px) {
  .marketplace-sp2 .modal .modal-dialog .modal-content {
    padding: 40px;
  }
}
.marketplace-sp2 .modal .modal-dialog .modal-content::after {
  content: "";
  height: 4px;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
}
.marketplace-sp2 .modal .modal-dialog .modal-content .marketplace-sp-modal-head h4 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .marketplace-sp2 .modal .modal-dialog .modal-content .marketplace-sp-modal-head h4 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.marketplace-sp2 .modal .modal-dialog .modal-content .modal-body {
  padding: 0;
  margin-bottom: 25px;
}
.marketplace-sp2 .modal .modal-footer {
  justify-content: flex-start;
  border: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}
@media (max-width: 767px) {
  .marketplace-sp2 .modal .modal-footer {
    gap: 20px;
  }
}
.marketplace-sp2 .modal .modal-footer .btn-primary1 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
  background: var(--primary-color);
  border-radius: 5px;
  border: none;
  padding: 10px 31px;
}
@media (max-width: 767px) {
  .marketplace-sp2 .modal .modal-footer .btn-primary1 {
    padding: 8px 20px;
  }
}
.marketplace-sp2 .modal .modal-footer .btn-primary1:focus {
  box-shadow: none;
}
.marketplace-sp2 .modal .modal-footer .btn-secondary {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--primary-color);
  background: var(--background);
  border-radius: 5px;
  border: none;
  padding: 10px 31px;
}
@media (max-width: 767px) {
  .marketplace-sp2 .modal .modal-footer .btn-secondary {
    padding: 8px 20px;
  }
}
.marketplace-sp2 .modal .modal-footer .btn-secondary:focus {
  box-shadow: none;
}
.marketplace-sp2 .modal .modal-footer .btn-secondary.two {
  padding: 10px 24px;
}

.step-by-step-sp .modal .modal-dialog {
  max-width: 658px;
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .step-by-step-sp .modal .modal-dialog {
    max-width: 500px;
  }
}
.step-by-step-sp .modal .modal-dialog.two {
  max-width: 544px;
  width: 100%;
}
.step-by-step-sp .modal .modal-dialog .modal-content {
  border: none;
  position: relative;
  border-radius: 5px;
  padding: 50px;
}
@media (max-width: 767px) {
  .step-by-step-sp .modal .modal-dialog .modal-content {
    padding: 40px;
  }
}
.step-by-step-sp .modal .modal-dialog .modal-content::after {
  content: "";
  height: 4px;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
}
.step-by-step-sp .modal .modal-dialog .modal-content .marketplace-sp-modal-head h4 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .step-by-step-sp .modal .modal-dialog .modal-content .marketplace-sp-modal-head h4 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.step-by-step-sp .modal .modal-dialog .modal-content .marketplace-sp-modal-head.style-2 h4 {
  margin-bottom: 25px;
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body label {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 14px;
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body input {
  background: #F8F8F8;
  border: 1px solid rgba(108, 46, 185, 0.08);
  border-radius: 5px;
  outline: none;
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: var(--text-color2);
  padding: 16px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .step-by-step-sp .modal .modal-dialog .modal-content .modal-body input {
    margin-bottom: 30px;
    padding: 14px;
  }
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body .form-inner .number-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 356px;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body .form-inner .number-group::before {
  content: url(../images/icons/clone.png);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body .form-inner .number-group input {
  height: 52px;
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: var(--bg-color);
  margin-bottom: 0;
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body .number-group2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 356px;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body .number-group2 input {
  height: 52px;
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: var(--bg-color);
  margin-bottom: 0;
}
.step-by-step-sp .modal .modal-dialog .modal-content .modal-body .number-group2 label {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--bg-color);
  margin-bottom: 14px;
}
.step-by-step-sp .modal .modal-footer {
  justify-content: flex-start;
  border: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}
@media (max-width: 767px) {
  .step-by-step-sp .modal .modal-footer {
    gap: 20px;
  }
}
.step-by-step-sp .modal .modal-footer .btn-primary1 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
  background: var(--primary-color);
  border-radius: 5px;
  border: none;
  padding: 10px 31px;
}
@media (max-width: 767px) {
  .step-by-step-sp .modal .modal-footer .btn-primary1 {
    padding: 8px 20px;
  }
}
.step-by-step-sp .modal .modal-footer .btn-primary1:focus {
  box-shadow: none;
}
.step-by-step-sp .modal .modal-footer .btn-secondary {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--primary-color);
  background: var(--background);
  border-radius: 5px;
  border: none;
  padding: 10px 31px;
}
@media (max-width: 767px) {
  .step-by-step-sp .modal .modal-footer .btn-secondary {
    padding: 8px 20px;
  }
}
.step-by-step-sp .modal .modal-footer .btn-secondary:focus {
  box-shadow: none;
}
.step-by-step-sp .Showless-btn {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--primary-color);
  background: var(--background);
  border-radius: 5px;
  border: 1px solid rgba(108, 46, 185, 0.1);
  padding: 13px 24px;
  display: flex;
}
@media (max-width: 767px) {
  .step-by-step-sp .Showless-btn {
    padding: 8px 20px;
  }
}
.step-by-step-sp .Showless-btn:focus {
  box-shadow: none;
}
.step-by-step-sp .Showless-btn i {
  width: 25px;
  height: 25px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  margin-left: 10px;
}

.step-by-step-sp-table {
  max-width: 790px;
  width: 100%;
  margin-bottom: 30px;
}
.step-by-step-sp-table tbody tr {
  border-bottom: 1px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-by-step-sp-table tbody tr td {
  padding: 25px 0 15px 0;
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: #000000;
}
.step-by-step-sp-table tbody tr td:last-child {
  justify-content: end;
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--text-color2);
  cursor: pointer;
}
.step-by-step-sp-table tbody tr td:last-child:hover {
  color: var(--primary-color);
}
.step-by-step-sp-table tbody tr td svg {
  fill: var(--primary-color);
  margin-right: 8px;
}
.step-by-step-sp-table tbody tr td .upload-modal {
  display: flex;
  align-items: center;
}

.custom-template {
  background-color: var(--background);
  border-radius: 5px;
  padding: 50px 60px;
  max-width: 1091px;
  width: 100%;
}
.custom-template .nav-pills {
  flex-direction: column;
  gap: 16px;
}
.custom-template .nav-pills .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
}
.custom-template .nav-pills .nav-item .nav-link span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  position: relative;
}
.custom-template .nav-pills .nav-item .nav-link span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.custom-template .nav-pills .nav-item .nav-link.active {
  background-color: unset;
  color: var(--bg-color);
}
.custom-template .nav-pills .nav-item .nav-link.active span::after {
  opacity: 1;
}
.custom-template .custom-template-img-tab {
  display: flex;
  gap: 30px;
}
.custom-template .custom-template-img-tab .custom-template-img {
  padding: 30px;
  background: #FFFFFF;
  border-radius: 5px;
  position: relative;
}
.custom-template .custom-template-img-tab .custom-template-img .temp-img {
  overflow: hidden;
  min-height: 430px;
}
.custom-template .custom-template-img-tab .custom-template-img .temp-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-template .custom-template-img-tab .custom-template-img .arrows .temp-icon-top {
  position: absolute;
  top: 0;
  left: -35px;
}
.custom-template .custom-template-img-tab .custom-template-img .arrows .temp-icon-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custom-template .custom-template-img-tab .custom-template-img .arrows .temp-icon-bottom {
  position: absolute;
  bottom: 0;
  left: -35px;
}
.custom-template .custom-template-img-tab .nav-pills {
  padding-top: 25px;
}
.custom-template .custom-template-img-tab .nav-pills .nav-item .nav-link img {
  border-radius: 5px;
}
.custom-template .custom-template-left {
  display: inline-block;
}
.custom-template .custom-template-left .order-type {
  display: flex;
  margin-bottom: 40px;
}
.custom-template .custom-template-left .order-type .nice-select {
  background-color: var(--primary-color);
  border-radius: 4px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-work-sans);
  color: var(--white);
  height: unset;
  line-height: unset;
  outline: none;
  padding: 8px 41px 8px 20px;
}
.custom-template .custom-template-left .order-type .nice-select::after {
  border-bottom: unset;
  border-right: unset;
  display: block;
  height: 6px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 58%;
  width: 9px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--white);
  transform: rotate(0deg);
}
.custom-template .custom-template-left .order-type .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 2px;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 9;
  border-color: var(--primary-color);
}
.custom-template .custom-template-left .order-type .nice-select .list .option {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--bg-color);
}
.custom-template .custom-template-left .order-type .nice-select .list .option:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.custom-template .custom-template-left .order-type .nice-select .option:hover, .custom-template .custom-template-left .order-type .nice-select .option.focus, .custom-template .custom-template-left .order-type .nice-select .option.selected.focus {
  background-color: rgba(0, 111, 48, 0.15);
  color: var(--bg-color);
}
.custom-template .custom-template-left .order-type .nice-select.open:after {
  transform: rotate(-180deg);
  top: 55%;
  right: 27px;
}
.custom-template .custom-template-left .custom-img-margin {
  max-width: 205px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.custom-template .custom-template-left .custom-img-margin span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  position: relative;
  margin-right: 5px;
}
.custom-template .custom-template-left .custom-img-margin span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.custom-template .custom-template-left .custom-img-margin label {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--bg-color);
}
.custom-template .custom-template-left .custom-img-margin input {
  width: 48px;
  margin-right: 6px;
  background: var(--white);
  border-radius: 3px;
  border: none;
  outline: none;
  font-family: var(--font-work-sans);
  font-size: 14px;
  color: var(--text-color2);
  padding: 1px 8px;
}
.custom-template .custom-template-img {
  padding: 30px;
  background: #FFFFFF;
  border-radius: 5px;
  position: relative;
}
.custom-template .custom-template-img .temp-img {
  overflow: hidden;
}
.custom-template .custom-template-img .temp-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 430px;
}

.manual-sp .manual-table-area {
  max-width: 662px;
  width: 100%;
}
.manual-sp .manual-table-area .base-setting-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.manual-sp .manual-table-area .base-setting-area .base-setting-title {
  display: flex;
  align-items: center;
  gap: 35px;
}
.manual-sp .manual-table-area .base-setting-area .base-setting-title h5 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 0;
}
.manual-sp .manual-table-area .base-setting-area .base-setting-title .edit-modal-btn svg {
  fill: var(--primary-color);
}
.manual-sp .manual-table-area .base-setting-area .base-setting-title .edit-modal-btn {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-color2);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.5s;
}
.manual-sp .manual-table-area .base-setting-area .base-setting-title .edit-modal-btn:hover {
  color: var(--primary-color);
}
.manual-sp .manual-table-area .base-setting-area .base-img-price {
  display: flex;
  align-items: center;
  gap: 15px;
}
.manual-sp .manual-table-area .base-setting-area .base-img-price p {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 0;
}
.manual-sp .manual-table-area .base-setting-area .base-img-price span {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--bg-color);
}
.manual-sp .manual-table-area .manual-table-title {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: var(--text-color2);
  margin-bottom: 10px;
}
.manual-sp .manual-table-area .manual-table {
  max-width: 662px;
  width: 100%;
  margin-bottom: 30px;
}
.manual-sp .manual-table-area .manual-table:last-child {
  margin-bottom: 0;
}
.manual-sp .manual-table-area .manual-table tbody tr {
  border-bottom: 1px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.manual-sp .manual-table-area .manual-table tbody tr td {
  padding: 12px 0 12px 0;
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: #000000;
  text-align: center;
}
.manual-sp .manual-table-area .manual-table tbody tr td:last-child {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: var(--text-color2);
}
.manual-sp .manual-sp-img-tab {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
.manual-sp .manual-sp-img-tab .manual-sp-tab-content {
  background: var(--background);
  max-width: 442px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 5px;
}
.manual-sp .manual-sp-img-tab .manual-sp-tab-content .tab-pane img {
  border-radius: 5px;
}
.manual-sp .manual-sp-img-tab .nav-pills {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.manual-sp .manual-sp-img-tab .nav-pills .nav-item .nav-link.active {
  background-color: unset;
}
.manual-sp .manual-sp-img-tab .nav-pills .nav-item .nav-link {
  background-color: #D9D9D9;
  border-radius: 5px;
  padding: 0;
}
.manual-sp .manual-sp-add-area {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.manual-sp .manual-sp-add-area:last-child {
  margin-bottom: 0;
}
.manual-sp .manual-sp-add-area .manual-sp-add-img img {
  border-radius: 5px;
}
.manual-sp .manual-sp-add-area .manual-sp-add-content {
  max-width: 402px;
  width: 100%;
}
.manual-sp .manual-sp-add-area .manual-sp-add-content .add-content-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.manual-sp .manual-sp-add-area .manual-sp-add-content .add-content-title h6 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--bg-color);
  margin: 0;
}
.manual-sp .manual-sp-add-area .manual-sp-add-content .add-content-title .add-btn {
  border: 1px solid #EECECE;
  border-radius: 5px;
  background: transparent;
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: var(--text-color2);
  padding: 4px 13px;
}
.manual-sp .manual-sp-add-area .manual-sp-add-content p {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: var(--text-color2);
  margin-bottom: 8px;
}
.manual-sp .manual-sp-add-area .manual-sp-add-content p:last-child {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
.manual-sp .modal .modal-dialog {
  max-width: 915px;
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .manual-sp .modal .modal-dialog {
    max-width: 500px;
  }
}
.manual-sp .modal .modal-dialog.two {
  max-width: 544px;
  width: 100%;
}
.manual-sp .modal .modal-dialog .modal-content {
  border: none;
  position: relative;
  border-radius: 5px;
  padding: 50px;
}
@media (max-width: 767px) {
  .manual-sp .modal .modal-dialog .modal-content {
    padding: 40px;
  }
}
.manual-sp .modal .modal-dialog .modal-content::after {
  content: "";
  height: 4px;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
}
.manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}
.manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head .btn-title {
  display: flex;
  align-items: center;
  gap: 28px;
}
.manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head .btn-title .back-btn {
  background: transparent;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: 0.5s;
}
.manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head .btn-title .back-btn:hover svg {
  transform: translateX(3px);
}
.manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head .btn-title .back-btn svg {
  fill: var(--bg-color);
  transform: translateX(12px);
  transition: 0.5s;
}
.manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head .btn-title h4 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 0;
}
.manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head .btn-primary1 {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--white);
  background: var(--primary-color);
  border-radius: 5px;
  border: none;
  padding: 3px 27px;
}
@media (max-width: 767px) {
  .manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head .btn-primary1 {
    padding: 8px 20px;
  }
}
.manual-sp .modal .modal-dialog .modal-content .manual-sp-modal-head .btn-primary1:focus {
  box-shadow: none;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-section-title {
  margin-bottom: 30px;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-section-title h6 {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--bg-color);
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #EEEEEE;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item {
  padding-right: 40px;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link.active {
  background-color: var(--primary-color);
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link.active p {
  color: var(--white);
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link.active span {
  color: var(--white);
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link.active svg {
  fill: var(--white);
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link.active a {
  color: var(--white);
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link {
  min-width: 224px;
  min-height: 108px;
  padding: 19px 15px;
  border-radius: 5px;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link p {
  font-family: var(--font-work-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--bg-color);
  margin-bottom: 16px;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link span {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: var(--bg-color);
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link svg {
  fill: var(--text-color2);
  margin-bottom: 14px;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link a {
  font-family: var(--font-mitr);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: var(--text-color2);
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link .color-match-text {
  color: var(--text-color2);
  margin-bottom: 32px;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-item .nav1 .nav-item .nav-link .upgrade-plane {
  color: var(--primary-color);
  margin-bottom: 0;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-content {
  border-left: 1px solid #EEEEEE;
}
.manual-sp .modal .modal-dialog .modal-content .modal-body .add-on-tab-section .add-on-tab-content .tab-content-img {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 50px 20px;
  max-width: 470px;
  width: 100%;
  max-height: 490px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.manual-sp .modal .modal-footer {
  justify-content: flex-start;
  border: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}
@media (max-width: 767px) {
  .manual-sp .modal .modal-footer {
    gap: 20px;
  }
}
.manual-sp .modal .modal-footer .btn-secondary {
  font-family: var(--font-mitr);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--primary-color);
  background: var(--background);
  border-radius: 5px;
  border: none;
  padding: 10px 31px;
}
@media (max-width: 767px) {
  .manual-sp .modal .modal-footer .btn-secondary {
    padding: 8px 20px;
  }
}
.manual-sp .modal .modal-footer .btn-secondary:focus {
  box-shadow: none;
}

.modal {
  background: rgba(0, 0, 0, 0.5);
}

.eg-card {
  border-radius: 5px;
  position: relative;
  min-width: 0;
  width: 100%;
  background-color: #fff;
  background-clip: border-box;
  padding: 15px;
  margin-bottom: 20px;
}

.eg-card-title {
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 25px;
}
.eg-card-title h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 25px;
}

/** Card Style One **/
.eg-card-two {
  background: #10B981;
  color: #fff;
  padding: 15px;
  position: relative;
  border-radius: 5px;
  min-width: 0;
  width: 100%;
  transition: all 0.45s ease-in-out;
  cursor: pointer;
}
.eg-card-two:hover {
  transform: translateY(-6px);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}
.eg-card-two h5.title {
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .eg-card-two h5.title {
    font-size: 15px;
  }
}
.eg-card-two h2.number {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  margin-top: 20px;
  cursor: pointer;
}
.eg-card-two svg {
  position: absolute;
  right: 0;
  top: 0;
}
.eg-card-two.green-teal {
  background: #10B981;
}
.eg-card-two.red-teal {
  background: #DD344A;
}
.eg-card-two.orange {
  background: #F59E0B;
}
.eg-card-two.primary {
  background: #006F30;
}
.eg-card-two.pink {
  background: #EB4898;
}
.eg-card-two.skyblue {
  background: #6B8CFF;
}

/** Profile Card CSS **/
.eg-profile-card {
  border-radius: 5px;
  position: relative;
  min-width: 0;
  width: 100%;
  background-color: #fff;
  background-clip: border-box;
  padding: 15px;
  margin-bottom: 20px;
}
.eg-profile-card .profile-img img {
  width: 100px;
  height: 100px;
}
.eg-profile-card .profile-img button.eg-btn {
  position: absolute;
  right: 5px;
  top: 5px;
}
.eg-profile-card .profile-bio {
  margin: 20px 0;
}
.eg-profile-card .profile-bio h4 {
  font-size: 22px;
  font-weight: 700;
}
.eg-profile-card .profile-bio h6 {
  color: #8F8F8F;
  font-size: 15px;
}
.eg-profile-card .card-action {
  border-top: 1px solid #F1F2F7;
  margin: 0 -15px;
  padding: 15px 15px 0px 15px;
}

.product-card {
  padding: 30px;
}

.prod-details-card {
  position: relative;
  text-align: center;
}
.prod-details-card .prod-details-img img {
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}
.prod-details-card .prod-details-timer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.prod-details-card .prod-details-timer .countdown-single {
  background: var(--primary-color);
  padding: 15px;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  text-align: center;
}
.prod-details-card .prod-details-timer .countdown-single h3 {
  font-size: 35px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0px;
}
.prod-details-card .prod-details-timer .countdown-single span {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.prod-details-card .live {
  position: absolute;
  top: 15px;
  left: 15px;
}
.prod-details-card .vehicles {
  position: absolute;
  top: 15px;
  right: 15px;
}
.prod-details-card .prod-content h4 {
  font-size: 23px;
  font-weight: 700;
  color: var(--text-color);
}
.prod-details-card .prod-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light3);
}
.prod-details-card .prod-countdown h4 {
  font-size: 25px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 25px;
}

.winner-card {
  border-radius: 5px;
  margin-top: 55px;
}
.winner-card .winner-header {
  background: var(--primary-color);
  padding: 7px;
  text-align: center;
  border-radius: 5px 5px 0px 0px;
}
.winner-card .winner-header h4 {
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0;
}
.winner-card .winner-body {
  padding: 25px;
  border-radius: 0px 0px 5px 5px;
  background: var(--white);
}
.winner-card .winner-body .winner-details-list {
  list-style: none;
  border: 1px solid #EEEEEE;
}
.winner-card .winner-body .winner-details-list li {
  border-bottom: 1px solid #eeeeee;
}
.winner-card .winner-body .winner-details-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.winner-card .winner-body .winner-details-list span:first-child {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}
.winner-card .winner-body .winner-details-list span.username {
  color: var(--primary-color);
  font-weight: 700;
}

.deposit-card {
  border-radius: 5px;
  margin-top: 55px;
}
.deposit-card .deopsit-badge {
  position: absolute;
  top: 15px;
  left: 15px;
}
.deposit-card .paypal {
  margin-bottom: 20px;
}
.deposit-card h4 {
  font-size: 25px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 35px;
}
.deposit-card .winner-body {
  padding: 25px;
  border-radius: 0px 0px 5px 5px;
  background: var(--white);
}
.deposit-card .winner-body .winner-details-list {
  list-style: none;
  border: 1px solid #EEEEEE;
  margin-bottom: 40px;
}
.deposit-card .winner-body .winner-details-list li {
  border-bottom: 1px solid #eeeeee;
}
.deposit-card .winner-body .winner-details-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  font-size: 18px;
}
.deposit-card .winner-body .winner-details-list span:first-child {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}
.deposit-card .winner-body .winner-details-list span:last-child {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light3);
}
.deposit-card .winner-body .winner-details-list span.username {
  color: var(--primary-color);
  font-weight: 700;
}

.eg-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  transition: all 0.45s ease;
  text-transform: capitalize;
}

.btn--primary {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn--primary:hover {
  color: #fff;
}

.btn--dark {
  background-color: var(--text-color);
  color: #fff;
  border-radius: 5px;
  padding: 13px 30px;
  position: relative;
}
.btn--dark:hover {
  color: #fff;
}

.btn--red {
  background-color: var(--red-color);
  color: var(--white);
}
.btn--red:hover {
  color: #fff;
}

.btn--green {
  background-color: var(--green-color);
  color: var(--white);
}
.btn--green:hover {
  background-color: rgba(var(--green-color), 0.6);
  color: var(--white);
}

.green-light--btn {
  background: rgba(var(--green-color), 0.15);
  color: var(--green-color);
  font-size: 13px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}
.green-light--btn:hover {
  background-color: var(--green-color);
  color: var(--white);
}

.red-light--btn {
  background: rgba(var(--red-color), 0.15);
  color: var(--red-color);
  font-size: 13px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
}
.red-light--btn:hover {
  background-color: var(--red-color);
  color: var(--white);
}

.primary-light--btn {
  background: rgba(var(--primary-color), 0.15);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
}
.primary-light--btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.orange-light--btn {
  background: rgba(var(--orenge-color), 0.15);
  color: var(--orenge-color);
  font-size: 13px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
}
.orange-light--btn:hover {
  background-color: var(--orenge-color);
  color: var(--white);
}

.add--btn {
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  padding: 2px 5px;
  min-width: 28px;
}
.add--btn i {
  font-size: 1rem;
}
.add--btn:hover {
  color: #fff;
}

.delete--btn {
  background: var(--red-color);
  color: var(--white);
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  padding: 2px 5px;
  min-width: 28px;
}
.delete--btn i {
  font-size: 1rem;
}
.delete--btn:hover {
  color: #fff;
}

.account--btn {
  background: var(--green-color);
  color: var(--white);
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  padding: 2px 5px;
  min-width: 28px;
}
.account--btn i {
  font-size: 1rem;
}
.account--btn:hover {
  color: #fff;
}

button.login-btn {
  padding: 12px 15px;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
}
button.login-btn img {
  vertical-align: unset;
  margin-right: 3px;
}

.back-btn {
  border-radius: 5px;
  padding: 5px 25px;
}
.back-btn img {
  margin-right: 3px;
}

.submit--btn {
  border-radius: 5px;
  padding: 12px 40px;
  width: 100%;
  max-width: 280px;
}
.submit--btn:hover {
  background-color: rgba(var(--primary-color), 0.8);
  letter-spacing: 1px;
}

.green-outline-btn {
  border: 1px solid var(--green-color);
  color: var(--green-color);
  transition: all 0.5s ease;
  padding: 8px 30px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
}
.green-outline-btn:hover {
  background-color: var(--green-color);
  color: var(--white);
}

.orange-outline-btn {
  border: 1px solid var(--orenge-color);
  color: var(--orenge-color);
  transition: all 0.5s ease;
  padding: 8px 30px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
}
.orange-outline-btn:hover {
  background-color: var(--orenge-color);
  color: var(--white);
}

.priamry-outline-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.5s ease;
  padding: 8px 30px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
}
.priamry-outline-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.red-solid-btn {
  border: 1px solid var(--red-color);
  color: var(--white);
  background: var(--red-color);
  transition: all 0.5s ease;
  padding: 8px 30px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
}
.red-solid-btn:hover {
  background-color: var(--white);
  color: var(--red-color);
}

.medium-btn {
  padding: 7px 40px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
}

.eg-badge {
  display: inline-block;
  padding: 8px 27px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 5px;
}
.eg-badge.green {
  color: var(--green-color);
  background: rgba(var(--green-color), 0.15);
}
.eg-badge.green:hover {
  color: #fff;
}
.eg-badge.green {
  transition: all 0.4s ease-in-out;
}
.eg-badge.green:hover {
  background-color: var(--green-color);
  color: var(--white);
}
.eg-badge.orange {
  color: var(--orenge-color);
  background: rgba(var(--orenge-color), 0.15);
}
.eg-badge.orange:hover {
  color: #fff;
}
.eg-badge.orange {
  transition: all 0.4s ease-in-out;
}
.eg-badge.orange:hover {
  background-color: var(--orenge-color);
  color: var(--white);
}

.prod-details-btn {
  padding: 3px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  transform: translateY(20px);
}
.prod-details-btn span {
  font-size: 25px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}

.cancel-btn {
  padding: 9px 40px;
  border-radius: 5px;
}

.table td, .table th {
  vertical-align: middle;
  padding: 8px;
  line-height: normal;
  border-top: 1px solid #e9ecef;
  font-weight: 400;
}

.eg-wrapper.invoice-wrapper ul.nav.nav-tabs li a {
  background: none !important;
  border: none;
  color: #fff;
  padding: 10px 26px !important;
}

.eg-wrapper.invoice-wrapper ul.nav.nav-tabs {
  border-radius: 20px !important;
  margin-bottom: 20px;
  background: #006F30;
}

.eg-wrapper.invoice-wrapper ul.nav.nav-tabs li a.active {
  background: #1d1d1d !important;
}

.eg-wrapper.invoice-wrapper ul.nav.nav-tabs li:first-child a {
  border-radius: 20px 0px 0px 20px;
}

button.order-status {
  text-transform: capitalize;
}

.eg-table-wrapper.padding-equal {
  padding: 15px;
  margin-bottom: 30px;
}

.eg-table-wrapper.padding-equal h5 {
  border-bottom: 1px solid #ddd;
  margin: 0 -15px 15px -15px;
  padding: 0px 15px 10px 20px;
  font-weight: 400;
}

.eg-table tbody tr td a.details-btn {
  display: block;
  width: 64px;
  background: #006F30;
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 3px 7px;
  border-radius: 17px;
  text-transform: uppercase;
}

.eg-table tbody tr td a.details-btn:hover {
  background: #000;
  transition: all 0.3s;
}

.invoice-header .row {
  align-items: center;
}

.payment-stutas p {
  text-transform: capitalize;
}

.form-control:focus {
  border-color: #000;
  box-shadow: none;
}

button.continue-payment-btn {
  max-width: 400px;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 22px;
  color: #fff;
  font-weight: 300;
  text-transform: capitalize;
  margin: 0px auto;
  display: block;
  margin-top: 20px;
  background: #006F30;
  width: 100%;
}

button.continue-payment-btn:hover {
  background: #000;
  transition: all 0.3s;
}

.wallter-balance p span {
  font-size: 22px;
  font-weight: 400;
}

.wallter-balance p {
  font-size: 18px;
  text-align: center;
}

.bank-payment-wrapper label {
  margin-top: 15px;
}

.bank-payment-wrapper input[type=text], .bank-payment-wrapper textarea {
  font-size: 14px;
  padding: 10px 18px;
}

.credit-card-number input[type=text] {
  font-size: 14px;
  padding: 10px 20px;
}

.credit-card-number {
  margin-top: 20px;
}

.card-multi-img {
  position: absolute;
  right: 26px;
  bottom: 10px;
}

.card-element input[type=text] {
  padding: 10px 20px;
  font-size: 14px;
}

p.upload-img-count {
  font-size: 22px;
  margin: 20px 0;
}

.image-upload-options select.select1, .image-upload-options select:focus {
  border: none;
  box-shadow: none;
}

.final-step-calculation .coupon {
  position: relative;
}

.final-step-calculation .coupon input[type=text] {
  padding: 8px 20px;
}

.final-step-calculation .coupon button {
  border: none;
  position: absolute;
  right: 0;
  background: #006F30;
  color: #fff;
  padding: 9px 20px;
  border-radius: 0 4px 4px 0px;
  bottom: 0;
}

.final-step-calculation .coupon button:hover {
  background: #000;
  transition: all 0.3s;
}

.final-step-calculation .coupon .form-group {
  margin-top: 20px;
}

span.mytooltip.tooltip-effect-2 {
  text-transform: capitalize;
}

textarea {
  height: auto !important;
}/*# sourceMappingURL=style.css.map */