/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography 
    [ ## Heading ] 
    [ ## Others Typography ]
# Elements
    [ ## Font Size ]
    [ ## Font Weight ]
    [ ## Margin Element ]
    [ ## Padding Element ]
    [ ## Color Element ]
    [ ## Background Element ]
    [ ## Extra Background ]
    [ ## Social Element ]
    [ ## Overlay Element ]
    [ ## Lists ]
    [ ## Post, Page, Comments Table ]
    [ ## Others Element ]
    [ ## Grid Element ]
# Forms
	[ ## Buttons ]
	[ ## Fields ]
# Header Content
	[ ## Preloader ]
	[ ## Header ]
    [ ## Sticky header ]
# layout
    [ ## Hero Block ]
    [ ## Features ]
    [ ## Team ]
    [ ## Testimonial ]
    [ ## Sections ]
        [ ### Features Block ]
        [ ### Network Location ]
        [ ### Discount Block ]
        [ ### Vission Mission Block ]
        [ ### Work Brand ]
        [ ### Announcement ]
        [ ### Pricing ]
        [ ### Faqs ]
        [ ### Support Ticket ]
        [ ### Call To Action ]
        [ ### Founder Message Block ]
        [ ### Fan Fact Block ]
    [ ## Blog ]
# site content
	[ ## About Page ]
	[ ## Contact Page ]
	[ ## 404 Page ]
	[ ## Registration Page ]
	[ ## Posts and pages ]
	    [ ### Page Title ]
	    [ ### Breadcrumb ]
	    [ ### Page info Content ]
	[ ## Comments ]
	[ ## Widgets ]
	[ ## Widgets Content ]
# Footer
/*--------------------------------------------------------------
# abstracts
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### font-variable start ]
*/
/*-------------------------------------------------
    [ ### font-variable end ]
*/
/*-------------------------------------------------
    [ ### font_family-variable start ]
*/
/*-------------------------------------------------
    [ ### font_family-variable end ]
*/
/*-------------------------------------------------
    [ ### font_size-variable start ]
*/
/*-------------------------------------------------
    [ ### font_size-variable end ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable end ]
*/
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## reset ]
*/

:root {
  --primary-color: #723eeb;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  color: #393939;
  overflow-x: hidden;
}

.text-content h3 {
  font-size: 40px;
  padding-bottom: 15px;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-align: center;
  color: #393939;
}
.text-content h3 span {
  color: var(--primary-color);
}
.text-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 10px;
  color: var(--primary-color);
}
@media only screen and (max-width: 571px) {
  .text-content h3 {
    font-size: 27px;
  }
}
.text-content p {
  font-size: 17px;
}

a {
  display: inline-block;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

blockquote {
  margin: 0 0 1.3em;
}

.nav-pills .nav-link.active {
  background-color: var(--primary-color) !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.7em;
}
p:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width: 1199px) {
  p {
    line-height: 1.7em;
  }
}

img {
  max-width: 100%;
  height: auto;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
}

button, input[type=submit], input[type=reset], input[type=button] {
  border: none;
  cursor: pointer;
}

input,
textarea {
  padding: 12px 25px;
  width: 100%;
}

span {
  display: inline-block;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

blockquote {
  background-color: #f5f6f9;
  padding: 40px;
  border-radius: 10px;
  font-weight: 500;
  font-style: italic;
  position: relative;
}
blockquote .quote-icon {
  position: absolute;
  top: 0;
  left: 5%;
  font-size: 120px;
  opacity: 0.1;
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 10;
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}

.scroll-top {
  background-color: var(--primary-color);
}

/*-------------------------------------------------
    [ ## padding ]
*/
.pt-10 {
  padding-top: 10px;
}

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

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

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

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

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

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

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 100px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media only screen and (max-width: 991px) {
  .pt-150 {
    padding-top: 100px;
  }
}

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

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

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

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

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

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

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

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.ptb-10 {
  padding: 10px 0;
}

.ptb-20 {
  padding: 20px 0;
}

.ptb-30 {
  padding: 30px 0;
}

.ptb-40 {
  padding: 40px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-80 {
  padding: 80px 0;
}

.ptb-100 {
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-100 {
    padding: 80px 0;
  }
}

.ptb-120 {
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-120 {
    padding: 100px 0;
  }
}

.ptb-150 {
  padding: 150px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-150 {
    padding: 100px 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 575px) {
  .mb-80 {
    margin-bottom: 40px;
  }
}

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

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

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

.mt-10-none {
  margin-top: -10px;
}

.mt-20-none {
  margin-top: -20px;
}

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

.mt-40-none {
  margin-top: -40px;
}

.mt-50-none {
  margin-top: -50px;
}

.mt-60-none {
  margin-top: -60px;
}

.mt-80-none {
  margin-top: -80px;
}

.mt-100-none {
  margin-top: -100px;
}

.mt-120-none {
  margin-top: -120px;
}

.mt-150-none {
  margin-top: -150px;
}

.mb-10-none {
  margin-bottom: -10px;
}

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

.mb-30-none {
  margin-bottom: -30px;
}

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

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

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

.mb-80-none {
  margin-bottom: -80px;
}
@media only screen and (max-width: 575px) {
  .mb-80-none {
    margin-bottom: -40px;
  }
}

.mb-100-none {
  margin-bottom: -100px;
}

.mb-120-none {
  margin-bottom: -120px;
}

.mb-150-none {
  margin-bottom: -150px;
}

/*-------------------------------------------------
    [ ## color ]
*/
.bg--primary {
  background-color: #7367f0 !important;
}

.bg--secondary {
  background-color: var(--primary-color);
}

.bg--success {
  background-color: #28c76f;
}

.bg--danger {
  background-color: #ea5455;
}

.bg--warning {
  background-color: #ff9f43;
}

.bg--info {
  background-color: #1e9ff2;
}

.bg--dark {
  background-color: #10163a;
}

.bg--base {
  background-color: var(--primary-color) !important;
}

.text--primary {
  color: #7367f0;
}

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

.text--success {
  color: #28c76f;
}

.text--danger {
  color: #ea5455;
}

.text--warning {
  color: #ff9f43;
}

.text--info {
  color: #1e9ff2;
}

.text--dark {
  color: #10163a;
}

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

.border--primary {
  border: #7367f0;
}

.border--secondary {
  border: 1px solid var(--primary-color);
}

.border--success {
  border: 1px solid #28c76f;
}

.border--danger {
  border: 1px solid #ea5455;
}

.border--warning {
  border: 1px solid #ff9f43;
}

.border--info {
  border: 1px solid #1e9ff2;
}

.border--dark {
  border: 1px solid #10163a;
}

.border--base {
  border: 1px solid #e5e5e5 !important;
}

.section--bg {
  background-color: var(--primary-color) !important;
}

.bg--gray {
  background-color: #f5f6f9;
}

.border--rounded {
  border-radius: 3px !important;
}

.border--capsule {
  border-radius: 100px;
}

.box-shadow {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
}

/*-------------------------------------------------
    [ ## scrollbar ]
*/
*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset -5px -5px 8px -1px rgba(255, 255, 255, 0.7), 5px 5px 8px -1px rgba(0, 0, 0, 0.065);
  box-shadow: inset -5px -5px 8px -1px rgba(255, 255, 255, 0.7), 5px 5px 8px -1px rgba(0, 0, 0, 0.065);
  background-color: #eaf7e4;
}

*::-webkit-scrollbar {
  width: 6px;
  background-color: #eaf7e4;
}

*::-webkit-scrollbar-button {
  background-color: var(--primary-color);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

/*-------------------------------------------------
    [ ## scrollToTop ]
*/
.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  line-height: 47px;
  font-weight: 600;
  background-color: var(--primary-color);
  border-radius: 10px;
  color: #ffffff !important;
  font-size: 20px;
  text-align: center;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(-5000%);
          transform: translateY(-5000%);
}
.scrollToTop.active {
  bottom: 30px;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

/*-------------------------------------------------
    [ ## Table ]
*/
.table-wrapper {
  background-color: #f5f6f9;
  padding: 30px;
  border-radius: 15px;
}

.custom-table {
  width: 100%;
  white-space: nowrap;
}
.custom-table thead tr {
  border-bottom: 1px solid rgba(57, 57, 57, 0.2);
}
.custom-table thead tr th {
  border: none;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  padding: 12px 15px;
}
.custom-table thead tr th:last-child {
  text-align: right;
}
.custom-table tbody tr {
  border-bottom: 1px solid rgba(57, 57, 57, 0.2);
}
.custom-table tbody tr:nth-of-type(2n) {
  background-color: #ffffff;
}
.custom-table tbody tr td {
  border: none;
  font-weight: 500;
  color: #393939;
  font-size: 13px;
  padding: 12px 15px;
}
.custom-table tbody tr td:last-child {
  text-align: right;
}
.custom-table tbody tr td button, .custom-table tbody tr td input[type=submit], .custom-table tbody tr td input[type=reset], .custom-table tbody tr td input[type=button],
.custom-table tbody tr td .btn--base {
  padding: 8px 25px;
  font-size: 14px;
  border-radius: 8px;
}
.custom-table tbody tr td .btn {
  padding: 6px 10px;
}

.toggle-container .switch-toggles {
  position: relative;
  width: 100%;
  height: 45px;
  border-radius: 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.toggle-container .switch-toggles::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 45px;
  background: #00abb3;
  -webkit-box-shadow: 0 5px 5px 0px rgba(0, 171, 179, 0.75);
          box-shadow: 0 5px 5px 0px rgba(0, 171, 179, 0.75);
  right: -1px;
  top: 0;
  border-radius: 0 15px 15px 0;
  -webkit-transition: all 0.7s cubic-bezier(0.545, 0, 0.05, 1);
  transition: all 0.7s cubic-bezier(0.545, 0, 0.05, 1);
}
.toggle-container .switch-toggles .switch {
  position: relative;
  width: 50%;
  line-height: 45px;
  float: left;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: color 0.7s cubic-bezier(0.545, 0, 0.05, 1);
  transition: color 0.7s cubic-bezier(0.545, 0, 0.05, 1);
  font-weight: 500;
  border-radius: 15px;
  color: #393939;
  margin-bottom: 0;
}
.toggle-container .switch-toggles .switch:nth-child(odd) {
  color: #ffffff;
}
.toggle-container .switch-toggles.active::after {
  background: var(--primary-color);
  -webkit-box-shadow: 0 5px 5px 0px rgba(90, 82, 120, 0.75);
          box-shadow: 0 5px 5px 0px rgba(90, 82, 120, 0.75);
  right: 50%;
  border-radius: 15px 0 0 15px;
}
.toggle-container .switch-toggles.active .switch {
  color: #393939;
}
.toggle-container .switch-toggles.active .switch:nth-child(even) {
  color: #ffffff;
}

.custom-select {
  background-color: var(--primary-color);
  border-radius: 0 15px 15px 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 110px;
  cursor: pointer;
}
.custom-select.active .custom-select-inner::before {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
          transform: scale(0.96, 0.8) rotate(-50deg);
}
.custom-select.active .custom-select-inner::after {
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
          transform: scale(0.96, 0.8) rotate(50deg);
}
.custom-select .custom-select-inner {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 16px;
}
.ad-select .custom-select-inner{
  height: 45px;
}
.custom-select .custom-select-inner::before, .custom-select .custom-select-inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  right: 12px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.custom-select .custom-select-inner::before {
  margin-right: 3px;
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
          transform: scale(0.96, 0.8) rotate(50deg);
}
.custom-select .custom-select-inner::after {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
          transform: scale(0.96, 0.8) rotate(-50deg);
}
.custom-select img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
.custom-select .custom-currency {
  color: #ffffff;
}

.custom-select-wrapper {
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(57, 57, 57, 0.2);
  z-index: 9;
  border-radius: 15px;
  margin-left: 0 !important;
  border-top-left-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-select-wrapper.active {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.custom-select-search-wrapper {
  position: relative;
  border-bottom: 1px solid rgba(57, 57, 57, 0.2);
}
.custom-select-search-wrapper .search-btn {
  position: absolute;
  top: 13px;
  left: 20px;
  padding: 0;
  background-color: transparent;
  font-size: 20px;
  color: var(--primary-color);
}
.custom-select-search-wrapper input {
  padding-left: 50px;
  border: none !important;
}
.custom-select-search-wrapper input:focus {
  border: none !important;
}

.custom-select-list {
  max-height: 190px;
  overflow-y: auto;
}
.custom-select-list .custom-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-select-list .custom-option:hover, .custom-select-list .custom-option.active {
  background-color: #f5f6f9;
}
.custom-select-list .custom-option img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
.custom-select-list .custom-option .custom-country {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}



.user-action-btn-area {
  margin-bottom: -25px;
  margin-left: auto;
  position: relative;
  left: 24%;
}
@media only screen and (max-width: 991px) {
  .user-action-btn-area {
    left: 0;
  }
}
.user-action-btn-area .user-action-btn {
  margin-bottom: 25px;
}
.user-action-btn-area .user-action-btn button, .user-action-btn-area .user-action-btn input[type=submit], .user-action-btn-area .user-action-btn input[type=reset], .user-action-btn-area .user-action-btn input[type=button],
.user-action-btn-area .user-action-btn a {
  color: #ffffff;
  border-right: none;
  border-radius: 999px 0 0 999px;
  padding: 10px 20px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .user-action-btn-area .user-action-btn button, .user-action-btn-area .user-action-btn input[type=submit], .user-action-btn-area .user-action-btn input[type=reset], .user-action-btn-area .user-action-btn input[type=button],
.user-action-btn-area .user-action-btn a {
    border-radius: 999px;
    left: 0 !important;
    text-align: center;
  }
}
.user-action-btn-area .user-action-btn button:hover, .user-action-btn-area .user-action-btn input[type=submit]:hover, .user-action-btn-area .user-action-btn input[type=reset]:hover, .user-action-btn-area .user-action-btn input[type=button]:hover,
.user-action-btn-area .user-action-btn a:hover {
  margin-left: 10px;
}
.user-action-btn-area .user-action-btn button.one, .user-action-btn-area .user-action-btn input.one[type=submit], .user-action-btn-area .user-action-btn input.one[type=reset], .user-action-btn-area .user-action-btn input.one[type=button],
.user-action-btn-area .user-action-btn a.one {
  position: relative;
  left: 15%;
}
.user-action-btn-area .user-action-btn button.two, .user-action-btn-area .user-action-btn input.two[type=submit], .user-action-btn-area .user-action-btn input.two[type=reset], .user-action-btn-area .user-action-btn input.two[type=button],
.user-action-btn-area .user-action-btn a.two {
  position: relative;
  left: 5%;
}
.user-action-btn-area .user-action-btn button.four, .user-action-btn-area .user-action-btn input.four[type=submit], .user-action-btn-area .user-action-btn input.four[type=reset], .user-action-btn-area .user-action-btn input.four[type=button],
.user-action-btn-area .user-action-btn a.four {
  position: relative;
  left: 5%;
}
.user-action-btn-area .user-action-btn button.five, .user-action-btn-area .user-action-btn input.five[type=submit], .user-action-btn-area .user-action-btn input.five[type=reset], .user-action-btn-area .user-action-btn input.five[type=button],
.user-action-btn-area .user-action-btn a.five {
  position: relative;
  left: 15%;
}

.user-profile-thumb {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 380px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 2px solid rgba(57, 57, 57, 0.2);
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .user-profile-thumb {
    width: 250px;
    height: 250px;
  }
}
.user-profile-thumb img {
  width: 100%;
  height: 100%;
}

.user-profile-list {
  margin-bottom: -25px;
  margin-left: auto;
  position: relative;
  right: 24%;
}
@media only screen and (max-width: 991px) {
  .user-profile-list {
    right: 0;
  }
}
.user-profile-list li {
  color: #ffffff;
  border-right: none;
  border-radius: 0 999px 999px 0;
  padding: 10px 20px;
  width: 100%;
  text-align: right;
  font-weight: 600;
  margin-bottom: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .user-profile-list li {
    border-radius: 999px;
    right: 0 !important;
    text-align: center;
  }
}
.user-profile-list li:hover {
  margin-left: 10px;
}
.user-profile-list li.one {
  position: relative;
  right: 15%;
}
.user-profile-list li.two {
  position: relative;
  right: 5%;
}
.user-profile-list li.four {
  position: relative;
  right: 5%;
}
.user-profile-list li.five {
  position: relative;
  right: 15%;
}
.user-profile-list li span {
  font-weight: 700;
}
.user-profile-list.two li {
  background-color: #f5f6f9;
  color: #000000;
}

.user-profile-list-two {
  margin-bottom: -25px;
  margin-left: auto;
  position: relative;
  left: 24%;
}
@media only screen and (max-width: 991px) {
  .user-profile-list-two {
    left: 0;
  }
}
.user-profile-list-two li {
  color: #000000;
  border-right: none;
  background-color: #f5f6f9;
  border-radius: 999px 0 0 999px;
  padding: 10px 20px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  margin-bottom: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .user-profile-list-two li {
    border-radius: 999px;
    left: 0 !important;
    text-align: center;
  }
}
.user-profile-list-two li:hover {
  margin-left: 10px;
}
.user-profile-list-two li.one {
  position: relative;
  left: 15%;
}
.user-profile-list-two li.two {
  position: relative;
  left: 5%;
}
.user-profile-list-two li.four {
  position: relative;
  left: 5%;
}
.user-profile-list-two li.five {
  position: relative;
  left: 15%;
}
.user-profile-list-two li span {
  font-weight: 700;
}

.user-profile-list-three {
  margin-bottom: -25px;
  margin-left: auto;
  position: relative;
  left: 24%;
}
@media only screen and (max-width: 991px) {
  .user-profile-list-three {
    left: 0;
  }
}
.user-profile-list-three li {
  color: #ffffff;
  border-right: none;
  border-radius: 999px 0 0 999px;
  padding: 10px 20px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  margin-bottom: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .user-profile-list-three li {
    border-radius: 999px;
    left: 0 !important;
    text-align: center;
  }
}
.user-profile-list-three li:hover {
  margin-left: 10px;
}
.user-profile-list-three li.one {
  position: relative;
  left: 15%;
}
.user-profile-list-three li.two {
  position: relative;
  left: 5%;
}
.user-profile-list-three li.four {
  position: relative;
  left: 5%;
}
.user-profile-list-three li.five {
  position: relative;
  left: 15%;
}
.user-profile-list-three li span {
  font-weight: 700;
}

/*-------------------------------------------------
    [ ## Preloader ]
*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 9999999;
  background: #ffffff;
}
.preloader .cssload-preloader {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
}
.preloader .cssload-preloader > .cssload-preloader-box {
  position: absolute;
  height: 29px;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -146px;
  perspective: 195px;
  -o-perspective: 195px;
  -ms-perspective: 195px;
  -webkit-perspective: 195px;
  -moz-perspective: 195px;
}
@media only screen and (max-width: 660px) {
  .preloader .cssload-preloader > .cssload-preloader-box{
       left: 40%;
  }
}
@media only screen and (max-width: 575px) {
  .preloader .cssload-preloader > .cssload-preloader-box{
       left: 50%;
  }
}
@media only screen and (max-width: 375px) {
  .preloader .cssload-preloader > .cssload-preloader-box{
       left: 56%;
  }
}
.preloader .cssload-preloader .cssload-preloader-box > div {
  position: relative;
  width: 29px;
  height: 29px;
  background: rgb(204, 204, 204);
  float: left;
  text-align: center;
  line-height: 29px;
  font-family: Verdana;
  font-size: 19px;
  color: rgb(255, 255, 255);
}
@media only screen and (max-width: 575px) {
  .preloader .cssload-preloader .cssload-preloader-box > div{
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
  }
}

.preloader .cssload-preloader .cssload-preloader-box > div.style {
  background: var(--primary-color);
  margin-right: 15px;
  animation: cssload-movement 690ms ease 0ms infinite alternate;
  -o-animation: cssload-movement 690ms ease 0ms infinite alternate;
  -ms-animation: cssload-movement 690ms ease 0ms infinite alternate;
  -webkit-animation: cssload-movement 690ms ease 0ms infinite alternate;
  -moz-animation: cssload-movement 690ms ease 0ms infinite alternate;
}
@keyframes cssload-movement {
  from {
    -webkit-transform: scale(1) translateY(0px) rotateX(0deg);
            transform: scale(1) translateY(0px) rotateX(0deg);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  to {
    -webkit-transform: scale(1.5) translateY(-24px) rotateX(45deg);
            transform: scale(1.5) translateY(-24px) rotateX(45deg);
    -webkit-box-shadow: 0 24px 39px var(--primary-color);
            box-shadow: 0 24px 39px var(--primary-color);
    background: var(--primary-color);
  }
}
@-webkit-keyframes cssload-movement {
  from {
    -webkit-transform: scale(1) translateY(0px) rotateX(0deg);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  to {
    -webkit-transform: scale(1.5) translateY(-24px) rotateX(45deg);
    -webkit-box-shadow: 0 24px 39px var(--primary-color);
            box-shadow: 0 24px 39px var(--primary-color);
    background: var(--primary-color);
  }
}

/*-------------------------------------------------
    [ ## slider ]
*/
.swiper-notification {
  display: none;
}

.swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
.swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: rgba(114, 62, 235, 0.2);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 25px;
  border-radius: 10px;
}

.slider-next,
.slider-prev {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 12px;
  background-color: #ffffff;
  border: 1px solid rgba(57, 57, 57, 0.2);
  border-radius: 50%;
  color: #393939;
  display: inline-block;
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  cursor: pointer;
  margin-top: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next:hover,
.slider-prev:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.slider-next {
  margin-left: 10px;
}

/*-------------------------------------------------
    [ ## pagination ]
*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(57, 57, 57, 0.2);
  padding-top: 50px;
}
.pagination .page-item .page-link {
  font-size: 18px !important;
}
.pagination .page-item {
  text-align: center;
  padding: 3px;
}
.pagination .page-item a,
.pagination .page-item span {
  width: 40px;
  height: 35px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0;
  font-weight: 600;
  line-height: 35px;
  display: block;
  margin: 0;
}
.pagination .page-item.disabled span {
  background: transparent;
  border: 1px solid rgba(57, 57, 57, 0.2);
  color: #000000;
}
.pagination .page-item .page-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination .page-item.active .page-item a,
.pagination .page-item.active span, .pagination .page-item:hover .page-item a,
.pagination .page-item:hover span {
  color: #ffffff;
}
.pagination .page-item.active .page-link, .pagination .page-item:hover .page-link {
  background-color: var(--primary-color);
  border-color: transparent;
  color: #ffffff;
}

/*-------------------------------------------------
    [ ## tab ]
*/
.nav-tabs {
  margin: 0;
  border: 0;
  margin-bottom: 30px;
}
.nav-tabs .nav-link {
  padding: 8px 20px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  background-color: #ffffff;
  border: 1px solid rgba(57, 57, 57, 0.2);
  border-radius: 3px;
  font-family: "Outfit", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-tabs .nav-link:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #ffffff;
}
.nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #ffffff;
}
.nav-tabs .nav-link:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (max-width: 1199px) {
  .nav-tabs .nav-link:not(:last-child) {
    margin-right: 5px;
  }
}

/*-------------------------------------------------
    [ ## card ]
*/
.custom-card .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.custom-card .card-body {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
}
@media only screen and (max-width: 575px) {
  .custom-card .card-body {
    padding: 10px;
  }
}
.custom-card button, .custom-card input[type=submit], .custom-card input[type=reset], .custom-card input[type=button],
.custom-card .btn--base {
  padding: 12px 30px;
}

/*-------------------------------------------------
    [ ## Heading ]
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 1.3em;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}

h1 {
  font-size: 50px;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 30px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  h4 {
    font-size: 16px;
  }
}

h5 {
  font-size: 16px;
}
@media only screen and (max-width: 575px) {
  h5 {
    font-size: 14px;
  }
}

h6 {
  font-size: 14px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

.section-header {
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .section-header {
    margin-bottom: 30px;
  }
}
.section-header .section-sub-title {
  font-size: 12px;
  padding: 5px 10px;
  background-color: #f7f4ff;
  border-radius: 5px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.section-header .section-title {
  margin-bottom: 0;
  text-transform: capitalize;
}
.section-header .section-title span {
  color: var(--primary-color);
}
.section-header p {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## Buttons ]
*/
input[type=submit]:hover {
  color: #ffffff;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: none;
}

button::-moz-focus-inner, input[type=button]::-moz-focus-inner, input[type=reset]::-moz-focus-inner, input[type=submit]::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.btn {
  -webkit-transition: all 0.3s ease 0.02s;
  transition: all 0.3s ease 0.02s;
}

.btn:active,
.btn:focus {
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
          box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
}

.btn {
  border: 0px solid;
  border-radius: 0px;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

.btn-rounded {
  border-radius: 3px;
}

.btn-capsule {
  border-radius: 100px;
}

/*-------------------------------------------------
    [ ## custom btn ]
*/
.btn--primary {
  background-color: #7367f0;
}

.btn--secondary {
  background-color: #868e96;
}

.btn--success {
  background-color: #28c76f;
}

.btn--danger {
  background-color: #ea5455;
}

.btn--warning {
  background-color: #ff9f43;
}

.btn--info {
  background-color: #1e9ff2;
}

.btn--dark {
  background-color: #10163a;
}

.badge--primary::before {
  background-color: #7367f0;
}

.badge--secondary::before {
  background-color: #868e96;
}

.badge--success::before {
  background-color: #28c76f;
}

.badge--danger::before {
  background-color: #d63384;
}

.badge--warning::before {
  background-color: #ff9f43;
}

.badge--info::before {
  background-color: #1e9ff2;
}

.badge--dark::before {
  background-color: #10163a;
}

.border--primary {
  border: 1px solid #7367f0;
}

.border--secondary {
  border: 1px solid #868e96;
}

.border--success {
  border: 1px solid #28c76f;
}

.border--danger {
  border: 1px solid #ea5455;
}

.border--warning {
  border: 1px solid #ff9f43;
}

.border--info {
  border: 1px solid #1e9ff2;
}

.border--dark {
  border: 1px solid #10163a;
}

.badge {
  position: relative;
  font-weight: 500;
  border-radius: 0;
  padding: 0;
  color: #393939;
  font-size: 13px;
  background-color: transparent;
  padding-left: 15px;
}
.badge::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.btn--base {
  position: relative;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 999px;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

@media only screen and (max-width: 768px) {
  .btn--base{
     padding: 10px 25px;
  }
}

.btn--base.active {
  background: transparent;
  color: var(--primary-color);
}
.btn--base.active:focus, .btn--base.active:hover {
  color: #ffffff;
  background: var(--primary-color);
}
.btn--base:focus, .btn--base:hover {
  color: #ffffff;
  -webkit-box-shadow: 0 10px 20px rgba(114, 62, 235, 0.4);
          box-shadow: 0 10px 20px rgba(114, 62, 235, 0.4);
}

.btn--base2 {
  position: relative;
  background: #d83d3d;
  border: 1px solid #d83d3d;
  border-radius: 999px;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.btn--base2.active {
  background: transparent;
  color: #d83d3d;
}
.btn--base2.active:focus, .btn--base2.active:hover {
  color: #ffffff;
  background: #d83d3d;
}
.btn--base2:focus, .btn--base2:hover {
  color: #ffffff;
  -webkit-box-shadow: 0 10px 20px rgba(216, 61, 61, 0.4);
          box-shadow: 0 10px 20px rgba(216, 61, 61, 0.4);
}

.info-btn {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #8358ff;
  border-radius: 5px;
  color: #ffffff;
  font-size: 18px;
  display: none;
}
@media only screen and (max-width: 991px) {
  .info-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.chat-cross-btn {
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ea5455;
  border-radius: 5px;
  color: #ffffff;
  font-size: 16px;
  display: none;
}
@media only screen and (max-width: 991px) {
  .chat-cross-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*-------------------------------------------------
    [ ## Fields ]
*/
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline: none;
}

input,
textarea {
  padding: 12px 20px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #000000;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #000000;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #000000;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #000000;
}
input::placeholder,
textarea::placeholder {
  color: #000000;
}

textarea {
  display: block;
  width: 100%;
  display: block;
  min-height: 118px;
}

input,
select,
textarea {
  border: 1px solid rgba(57, 57, 57, 0.2);
  vertical-align: baseline;
  font-size: 100%;
  color: #000000;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
label span {
  color: var(--primary-color);
}

/*-------------------------------------------------
    [ ## Forms ]
*/
select {
  outline: none;
  cursor: pointer;
}

option {
  color: #000000;
}

.input-group {
  margin-bottom: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.input-group .nice-select {
  width: auto;
  padding: 0 30px 0 15px;
  border: none !important;
  background-color: var(--primary-color) !important;
  line-height: 45px;
}
.input-group .nice-select::after {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
}
.input-group .nice-select .current {
  color: #000000;
}
.input-group .f-dropdown > span {
  border-radius: 0 15px 15px 0;
  background-color: var(--primary-color);
  border: none;
  color: #ffffff !important;
  width: 110px;
}
.input-group .f-dropdown > span::before, .input-group .f-dropdown > span::after {
  background: #ffffff !important;
}
.input-group .f-dropdown ul {
  width: 110px;
  left: auto;
  right: 0;
}

.form--control:disabled,
.form--control[readonly] {
  background-color: #ffffff;
}

.input-group-append,
.input-group-prepend {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.input-group-append input {
  border-radius: 5px 0 0 5px;
  border: 1px solid rgba(57, 57, 57, 0.2);
  border-right: none;
  background-color: #ffffff;
}

.input-group-text {
  border: none;
  font-size: 16px;
  background: var(--primary-color);
  color: #ffffff;
  height: 45px;
  border-radius: 0 15px 15px 0;
  font-weight: 500;
}

.custom-check-group {
  display: block;
  margin-bottom: 12px;
}
.custom-check-group .badge{
  color: #ffffff !important;
}
.custom-check-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.custom-check-group input:checked + label::before {
  background-color: var(--primary-color);
  border: 1px solid #c4c5cf;
}
.custom-check-group input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.custom-check-group label {
  position: relative;
  cursor: pointer;
}
.custom-check-group label::before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #f5f6f9;
  border: 1px solid rgba(57, 57, 57, 0.2);
  border-radius: 5px;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  top: -2px;
}

.form-group {
  margin-bottom: 15px;
}

.form--control {
  border: 1px solid rgba(57, 57, 57, 0.2);
  font-size: 14px;
  height: 50px;
  color: #393939;
}
.form--control:focus {
  color: #393939;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid rgba(57, 57, 57, 0.2);
}
.form--control::-webkit-input-placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.form--control::-moz-placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.form--control:-ms-input-placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.form--control::-ms-input-placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.form--control::placeholder {
  color: rgba(57, 57, 57, 0.6);
}

.form--control {
  background-color: #ffffff;
  border: 1px solid rgba(57, 57, 57, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 45px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  border-radius: 15px;
  padding: 10px 25px;
  width: 100%;
}
.form--control:focus {
  background-color: #ffffff;
  border: 1px solid var(--primary-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #393939;
}
.form--control::-webkit-input-placeholder {
  color: rgba(57, 57, 57, 0.5);
}
.form--control::-moz-placeholder {
  color: rgba(57, 57, 57, 0.5);
}
.form--control:-ms-input-placeholder {
  color: rgba(57, 57, 57, 0.5);
}
.form--control::-ms-input-placeholder {
  color: rgba(57, 57, 57, 0.5);
}
.form--control::placeholder {
  color: rgba(57, 57, 57, 0.5);
}
.form--control:disabled {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.fileholder.active {
  border: 2px dashed rgba(57, 57, 57, 0.2) !important;
}

.fileholder-drag-drop-title {
  color: #c4c5cf;
}

.fileholder-drag-drop-icon svg path:nth-child(2) {
  fill: #5a5278;
}

.fileholder-basic-loading-circle.one {
  border: 2px solid #5a5278;
}

.fileholder-basic-loading-circle.two {
  border: 2px solid #5a5278;
}

.fileholder-basic-loading-circle.three {
  border: 2px solid #5a5278;
}

/* .fileholder.active {
  border: 2px dashed rgba(57, 57, 57, 0.2);
} */

.fileholder-drag-drop-title {
  color: #393939;
}

.fileholder-drag-drop-icon svg path:nth-child(2) {
  fill: var(--primary-color);
}

.fileholder-basic-loading-circle.one {
  border: 2px solid var(--primary-color);
}

.fileholder-basic-loading-circle.two {
  border: 2px solid var(--primary-color);
}

.fileholder-basic-loading-circle.three {
  border: 2px solid var(--primary-color);
}

.radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -3px -7px;
}
.radio-wrapper .radio-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 3px 7px;
}
.radio-wrapper .radio-item img {
  width: 60px;
  margin-right: 5px;
}

.radio-item [type=radio]:checked {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:checked + label {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 8px;
  padding: 20px 25px;
  display: inline-block;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

.radio-item [type=radio]:not(:checked) + label {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px 25px;
  display: inline-block;
  color: #393939;
  width: 100%;
  text-align: center;
}

.nice-select {
  height: 45px;
  line-height: 45px;
  border: 1px solid rgba(57, 57, 57, 0.2) !important;
  float: unset;
  padding: 0 25px;
  color: #000000 !important;
}
.nice-select .list {
  background-color: #ffffff;
  width: 100%;
  left: auto;
  right: 0;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: rgb(224, 232, 232);
  color: #000000;
}

.select2-container {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  width: 100%;
}

.selection {
  width: 100%;
}

.select2-selection--single {
  width: 100%;
  height: 45px !important;
  outline: none;
  background: transparent !important;
  font-size: 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 10px;
  border-radius: 5px;
  vertical-align: top;
  display: inline-block;
  border: 1px solid rgba(57, 57, 57, 0.2) !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.select2-selection--single span {
  margin: 0;
  width: 100%;
  color: #6c7176;
  line-height: initial;
  font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: auto;
  position: absolute;
  top: 22px;
  right: 7px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #6c7176 transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #6c7176 transparent;
}

.submit-btn {
  padding: 12px 20px;
  color: #ffffff;
  background: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  font-family: "Outfit", sans-serif;
}
@media only screen and (max-width: 991px) {
  .submit-btn {
    padding: 10px 20px;
  }
}

.f-dropdown {
  --max-scroll: 6;
  position: relative;
}
.f-dropdown select {
  display: none;
}
.f-dropdown > span {
  cursor: pointer;
  padding: 8px 12px;
  height: 45px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: transparent;
  border: 1px solid rgba(57, 57, 57, 0.2);
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.f-dropdown > span > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 12px;
}
.f-dropdown > span img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 10px;
}
.f-dropdown > span::before, .f-dropdown > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  right: 12px;
  background: #393939;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.f-dropdown > span::before {
  margin-right: 3px;
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
          transform: scale(0.96, 0.8) rotate(50deg);
}
.f-dropdown > span::after {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
          transform: scale(0.96, 0.8) rotate(-50deg);
}
.f-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: calc(var(--max-scroll) * 46px);
  top: 27px;
  left: 0;
  z-index: 1;
  right: 0;
  background-color: #f5f6f9;
  border: 1px solid rgba(57, 57, 57, 0.2);
  border-radius: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  -webkit-transform: translate(0, 5px);
          transform: translate(0, 5px);
}
.f-dropdown ul li {
  padding: 0;
  margin: 0;
}
.f-dropdown ul li a {
  cursor: pointer;
  display: block;
  padding: 8px 12px;
  color: #393939;
  text-decoration: none;
  outline: none;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.f-dropdown ul li a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 10px;
}
.f-dropdown ul li a:hover {
  color: var(--primary-color);
}
.f-dropdown ul li.active a {
  color: #ffffff !important;
  background: var(--primary-color);
}
.f-dropdown ul li.active a::before, .f-dropdown ul li.active a::after {
  --scale: 0.6;
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  right: 12px;
  top: 50%;
  opacity: 0;
  background: #ffffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.f-dropdown ul li.active a::before {
  -webkit-transform: rotate(45deg) scale(var(--scale));
          transform: rotate(45deg) scale(var(--scale));
}
.f-dropdown ul li.active a::after {
  -webkit-transform: rotate(-45deg) scale(var(--scale));
          transform: rotate(-45deg) scale(var(--scale));
}
.f-dropdown ul li.active a:hover::before, .f-dropdown ul li.active a:hover::after {
  --scale: 0.9;
  opacity: 1;
}
.f-dropdown ul li:first-child a {
  border-radius: 6px 6px 0 0;
}
.f-dropdown ul li:last-child a {
  border-radius: 0 0 6px 6px;
}
.f-dropdown.disabled {
  opacity: 0.7;
}
.f-dropdown.disabled > span {
  cursor: not-allowed;
}
.f-dropdown.filled > span {
  color: #393939;
}
.f-dropdown.open {
  z-index: 15;
}
.f-dropdown.open > span::before, .f-dropdown.open > span::after {
  background: #393939;
}
.f-dropdown.open > span::before {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
          transform: scale(0.96, 0.8) rotate(-50deg);
}
.f-dropdown.open > span::after {
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
          transform: scale(0.96, 0.8) rotate(50deg);
}
.f-dropdown.open ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 12px);
          transform: translate(0, 12px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  color: #000000;
}

.f-group {
  text-align: left;
}
.f-group select {
  width: 100%;
}

.f-control {
  font-size: 14px;
  line-height: normal;
  color: #000000;
  display: inline-block;
  background-color: #ffffff;
  border: rgba(57, 57, 57, 0.2) 1px solid;
  border-radius: 6px;
  padding: 8px 12px;
  outline: none;
}

.f-group .nice-select {
  display: none;
}

.radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -3px -7px;
}
.radio-wrapper .radio-item {
  margin: 3px 7px;
}

.radio-item [type=radio]:checked {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:checked + label {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 8px;
  padding: 12px 40px;
  display: inline-block;
  color: #ffffff;
  width: 100%;
  text-align: center;
}
.radio-item [type=radio]:checked + label::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 15px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1254901961);
}
.radio-item [type=radio]:checked + label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ffffff;
  position: absolute;
  top: 17px;
  left: 23px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.radio-item [type=radio]:not(:checked) + label {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.2);
  border-radius: 8px;
  padding: 12px 40px;
  display: inline-block;
  color: #393939;
  width: 100%;
  text-align: center;
}
.radio-item [type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 15px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid rgba(57, 57, 57, 0.2);
}
.radio-item [type=radio]:not(:checked) + label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ffffff;
  position: absolute;
  top: 17px;
  left: 23px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

/*-------------------------------------------------
    [ ## Overlay Element ]
*/
.bg_img {
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-overlay-base {
  position: relative;
}
.bg-overlay-base:before {
  content: "";
  position: absolute;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
}
.bg-overlay-base > div {
  position: relative;
  z-index: 2;
}

.bg-overlay-base-2 {
  position: relative;
}
.bg-overlay-base-2:before {
  content: "";
  position: absolute;
  background: #2e556a;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
}
.bg-overlay-base-2 > div {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
@keyframes wave {
  0% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
.custom-container {
  max-width: 1400px;
}

.row > * {
  position: relative;
}

@media (min-width: 1480px) {
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 575px) {
  .col-xs-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media only screen and (max-width: 575px) and (max-width: 400px) {
  .col-xs-6 {
    width: 100%;
  }
}
::-moz-selection {
  background-color: var(--primary-color);
  color: #ffffff;
}
::selection {
  background-color: var(--primary-color);
  color: #ffffff;
}

.top-notice {
  background-image: url(../images/element/element-2.png);
  background-size: cover;
  background-position: top;
  padding: 10px 15px 50px;
  text-align: center;
}
.top-notice .content .btn {
  border-radius: 5px;
  font-weight: 500;
}

.fs-10px {
  font-size: 10px;
}

.op-6 {
  opacity: 0.6;
}

/*-------------------------------------------------
  [ ## Header ]
*/
.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: transparent;
}
@media only screen and (max-width: 1400px) {
  .header-section .header-bottom-area .container {
    max-width: 100%;
  }
}

.header {
  background-color: transparent;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  z-index: 999;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}
.header.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.header-section.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  margin-top: 0;
}
.header-section.header-fixed .header-top-area {
  display: none !important;
}
.header-section.header-fixed .header-bottom-area {
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.header-bottom-area {
  position: relative;
  background: transparent;
}
@media only screen and (max-width: 991px) {
  .header-bottom-area {
    padding: 10px 0;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  }
}
.header-bottom-area .navbar-expand-lg {
  background-color: transparent;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .header-bottom-area .navbar-collapse {
    background-color: #ffffff !important;
    padding: 0 !important;
  }
  .header-bottom-area .navbar-collapse .main-menu {
    padding: 0px 0;
  }
  .header-bottom-area .navbar-collapse .main-menu .navbar-nav {
    background-color: #ffffff;
  }
  .header-bottom-area .menu_has_children .sub-menu {
    display: none !important;
  }
  .header-bottom-area .menu_has_children .sub-menu li {
    width: 100%;
  }
  .header-bottom-area .navbar-collapse .main-menu .menu_has_children.show .sub-menu,
.header-bottom-area .navbar-collapse .main-menu .menu_has_children.show .sub-menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}
.header-bottom-area .navbar-collapse .main-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.header-bottom-area .navbar-collapse .main-menu li {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li {
    padding-right: 12px !important;
  }
}

@media only screen and (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu li {
    padding-right: 10px !important;
  }
}

@media only screen and (max-width: 991px) {
  .rtl .language-select{
     margin-right: 10px;
  }
}


.header-bottom-area .navbar-collapse .main-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.header-bottom-area .navbar-collapse .main-menu li:hover .sub-menu {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children {
  position: relative;
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children i {
  font-size: 12px;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu li.menu_has_children::before {
    top: 12px;
    right: 15px;
  }
}
.header-bottom-area .navbar-collapse .main-menu li a {
  position: relative;
  padding: 33px 0;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  text-transform: capitalize;
  display: inline-block;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999;
}
.header-bottom-area .navbar-collapse .main-menu li a:hover, .header-bottom-area .navbar-collapse .main-menu li a.active {
  color: var(--primary-color);
}
.header-bottom-area .navbar-collapse .main-menu li a:hover::before, .header-bottom-area .navbar-collapse .main-menu li a.active::before {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}
.header-bottom-area .header-section.header-fixed .navbar-collapse .main-menu li a {
  padding: 30px 18px 30px 0;
}
@media (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu li a {
    padding: 12px 15px !important;
  }
}
.header-bottom-area .navbar-collapse .main-menu li a i{
  position: relative;
  top: 2px;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu {
  position: absolute;
  top: 90px;
  left: 0px !important;
  border-top: 5px solid var(--primary-color);
  width: 180px;
  background-color: #ffffff;
  -webkit-box-shadow: -4.104px 11.276px 38px 0px rgba(45, 42, 61, 0.1);
          box-shadow: -4.104px 11.276px 38px 0px rgba(45, 42, 61, 0.1);
  border-radius: 3px;
  display: block;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
@media only screen and (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    width: 180px;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
  margin-right: 0;
  padding-right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
  z-index: 2;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:last-child {
  border-bottom: 0px solid;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:hover a {
  color: #ffffff;
  background-color: var(--primary-color);
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
  width: 100%;
  font-size: 16px;
  padding: 6px 15px;
  display: block;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a::before {
  display: none;
}
.header-bottom-area .header-section.header-fixed .navbar-collapse .main-menu li .sub-menu li a {
  padding: 8px 20px;
}
@media (max-width: 991px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    position: initial;
    opacity: 1;
    visibility: visible;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}

.site-logo {
  max-width: 140px;
}
@media only screen and (max-width: 991px) {
  .site-logo {
    max-width: 100px;
  }
}

.header-action {
  margin: 10px;
}
.header-action a {
  margin: 10px;
}
.header-action .header-account-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1333333333);
  border-radius: 50%;
  font-size: 18px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-action .header-account-btn:hover {
  background-color: #f5f6f9;
  border: 1px solid #f5f6f9;
}

.language-select {
  background: transparent !important;
  color: #000000;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  width: 100px;
}
.language-select .nice-select{
  background-color: transparent !important;
  border-radius: 5px !important;
}
@media only screen and (max-width: 991px) {
  .language-select {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 991px) {
  .header-link {
    display: none;
  }
}
.header-link a {
  color: #000000;
}
.header-link a i {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 16px;
}
.header-link a + a {
  margin-left: 20px;
}

.header-social li {
  display: inline-block;
}
.header-social li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  background: transparent;
  background-color: rgba(0, 0, 0, 0.2);
  color: #000000;
  font-size: 14px;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-social li a:hover, .header-social li a.active {
  background: var(--primary-color);
  color: #000000;
}
.header-social li a.facebook {
  background-color: #0d6efd;
}
.header-social li a.instagram {
  background-color: #dc3545;
}
.header-social li + li {
  margin-left: 5px;
}

.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-toggler span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 18px;
}

/*--------------------------------------------------------------
    [ ## Introduction ]
--------------------------------------------------------------*/
.banner {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden;
}
@media only screen and (max-width: 435px) {
  .banner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.banner .top {
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.banner .top h3 {
  color: #ffffff;
  text-align: center;
  font-size: 26px;
}
.banner .top p {
  color: #ffffff;
  text-align: center;
  font-size: 18px;
}
.banner .banner-element {
  position: absolute;
  left: 10%;
  top: 2%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation: rotate-center 200s linear infinite both;
          animation: rotate-center 200s linear infinite both;
}
.banner .banner-content .title {
  margin-bottom: 15px;
  position: relative;
  font-size: 55px;
  font-weight: 700;
  color: #393939;
}
@media only screen and (max-width: 768px) {
  .banner .banner-content .title {
    font-size: 35px;
  }
}
@media screen and (width: 1024px) {
  .banner .banner-content .title {
    font-size: 45px;
  }
}
.banner .banner-content .btn--base {
  position: relative;
}
.banner .banner-content p {
  font-size: 16px;
  color: #393939;
  line-height: 2em;
  padding-bottom: 30px;
  position: relative;
  width: 90%;
}
@media only screen and (max-width: 575px) {
  .banner .banner-content p {
    width: 100%;
    font-size: 14px;
  }
}
.banner .banner-form {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 40px -1px rgba(198, 195, 195, 0.57);
          box-shadow: 0px 0px 40px -1px rgba(198, 195, 195, 0.57);
}
@media only screen and (max-width: 375px) {
  .banner .banner-form{
    padding: 15px;
  }
}
.banner .banner-form h3 {
  font-weight: 500;
}
@media only screen and (max-width: 375px) {
  .banner .banner-form h3{
    font-size: 22px;
  }
}
.banner .banner-thumb img {
  width: 90%;
  height: auto;
}

.banner-content {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 435px) {
  .banner-content {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}
.banner-content .title {
  margin-bottom: 15px;
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #393939;
}
@media only screen and (max-width: 768px) {
  .banner-content .title {
    font-size: 35px;
  }
}
@media screen and (width: 1024px) {
  .banner-content .title {
    font-size: 45px;
  }
}
.banner-content p {
  font-size: 16px;
  color: #393939;
  line-height: 2em;
  padding-bottom: 30px;
  position: relative;
  width: 90%;
}
@media only screen and (max-width: 575px) {
  .banner-content p {
    width: 100%;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer-block
--------------------------------------------------------------*/
.footer-section {
  background: rgba(35, 12, 89, 0.9803921569);
  position: relative;
}
.footer-section .single-cta i {
  color: var(--primary-color);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.footer-section .f-img img {
  width: 140px;
  margin-bottom: 15px;
}
.footer-section .cta-text {
  padding-left: 15px;
  display: inline-block;
}
.footer-section .cta-text h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.footer-section .cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-section .footer-content {
  position: relative;
  z-index: 2;
}
.footer-section .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-section .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #ffffff;
  line-height: 28px;
}
.footer-section .footer-social-icon span {
  color: #ffffff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-section .footer-social-icon a {
  color: #ffffff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-section .footer-social-icon i {
  height: 40px;
  width: 40px;
  background-color: var(--primary-color);
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.footer-section .facebook-bg {
  background: #3b5998;
}
.footer-section .twitter-bg {
  background: #55acee;
}
.footer-section .instagram-bg {
  background: #f70068;
}
.footer-section .linkedin-bg {
  background: #0077b5;
}
.footer-section .footer-widget-heading h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-section .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ffffff;
}
.footer-section .footer-widget ul li {
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 12px;
}
.footer-section .footer-widget ul li a:hover {
  color: var(--primary-color);
}
.footer-section .footer-widget ul li a {
  color: #ffffff;
  text-transform: capitalize;
  border-bottom: 1px solid;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer-section .subscribe-form {
  position: relative;
  overflow: hidden;
}
.footer-section .subscribe-form input {
  width: 88%;
  padding: 14px 28px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
  border-radius: 999px 0 0px 999px;
}
.footer-section .subscribe-form input::-webkit-input-placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.footer-section .subscribe-form input::-moz-placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.footer-section .subscribe-form input:-ms-input-placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.footer-section .subscribe-form input::-ms-input-placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.footer-section .subscribe-form input::placeholder {
  color: rgba(57, 57, 57, 0.6);
}
.footer-section .subscribe-form button, .footer-section .subscribe-form input[type=button], .footer-section .subscribe-form input[type=reset], .footer-section .subscribe-form input[type=submit] {
  position: absolute;
  right: 5px;
  background: var(--primary-color);
  padding: 13px 20px;
  top: 0;
  border-radius: 0 999px 999px 0;
}
.footer-section .subscribe-form button i, .footer-section .subscribe-form input[type=button] i, .footer-section .subscribe-form input[type=reset] i, .footer-section .subscribe-form input[type=submit] i {
  color: #ffffff;
  font-size: 22px;
  position: relative;
  top: 2px;
}
.footer-section .copyright-area {
  background: var(--primary-color);
  padding: 15px 0;
}
.footer-section .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}
.footer-section .copyright-text p a {
  color: #ffffff;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## team ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Testimonial ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}
.features .card {
  border-radius: 10px;
  color: var(--primary-color);
  border: none !important;
  padding: 40px 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
@media only screen and (max-width: 568px) {
  .features .card {
    background-color: #f5f6f9;
  }
}
.features .card .thumb {
  margin-right: 13px;
}
.features .card .thumb img {
  width: 15rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.features .card i {
  font-size: 55px;
  margin-bottom: 20px;
}
.features .card h3 {
  color: var(--primary-color);
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}
.features .card p {
  color: gray;
  font-size: 13px;
  margin-top: 10px;
}
.features .card:hover {
  background-color: #f5f6f9;
  color: #ffffff;
}
.features .card:hover h3 {
  color: var(--primary-color);
}

.how-it-work {
  overflow: hidden;
}
.how-it-work .text-content h3 {
  text-align: start;
  font-size: 35px;
}
@media only screen and (max-width: 568px) {
  .how-it-work .text-content h3 {
    font-size: 25px !important;
  }
}
.how-it-work .text-content h4 {
  text-align: start;
}

.bottom-card-img .bottom-img{
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}
.bottom-card-img .bottom-img img{
  width: 100%;
  height: 100%;
}


.agents {
  overflow: hidden;
}
.agents .text-content h3 {
  text-align: start;
  font-size: 35px;
}
@media only screen and (max-width: 568px) {
  .agents .text-content h3 {
    font-size: 27px !important;
  }
}
.agents .text-content h4 {
  text-align: start;
}

.countries {
  overflow: hidden;
  background-color: var(--primary-color);
}
.countries .container-c {
  width: 98%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
.countries .top-content h3 {
  color: #ffffff;
  font-size: 22px;
}
.countries .custom-select {
  background-color: #2e556a;
}
@media only screen and (max-width: 568px) {
  .countries .text-content h3 {
    font-size: 25px !important;
  }
}
.countries .text-content h3,
.countries .text-content h4 {
  color: #ffffff;
}
.countries .c-top h3 {
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.countries .card {
  border-radius: 10px;
  color: var(--primary-color);
  border: none !important;
  padding: 12px 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.countries .card .thumb {
  margin-right: 8px;
}
.countries .card .thumb img {
  width: 2rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}
.countries .card h3 {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
}
.countries .card p {
  color: #000000;
  font-size: 10px;
  margin-top: 10px;
  font-weight: 600;
}

.client {
  overflow: hidden;
}
.client .client-slider .card {
  background-color: #ffffff;
  box-shadow: 0px 0px 35px -1px rgba(219, 219, 219, 0.57);
  margin-top: 30px;
  padding: 30px;
  border: none;
  border-radius: 10px;
  height: 100%;
}
.client .client-slider .client-thumb img {
  width: 60px;
  height: 60px;
  border-radius: 999px;
}
.client .client-slider .client-content p {
  margin-top: 15px;
}
.client .swiper-container-horizontal > .swiper-pagination-bullets,
.client .swiper-pagination-custom,
.client .swiper-pagination-fraction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.client .content h3 {
  font-size: 40px;
  text-align: center;
  color: #151d2a;
  text-transform: capitalize;
}
@media only screen and (max-width: 768px) {
  .client .content h3 {
    font-size: 30px !important;
  }
}
.client .content h3 span {
  color: var(--primary-color);
}
.client .content p {
  margin: 20px 0;
  font-size: 18px;
}

.why-choose-us {
  overflow: hidden;
}
.why-choose-us .text-content h3 {
  text-align: start;
  font-size: 35px;
}
@media only screen and (max-width: 568px) {
  .why-choose-us .text-content h3 {
    font-size: 27px !important;
  }
}
.why-choose-us .text-content h4 {
  text-align: start;
}
.why-choose-us img {
  width: 90%;
}

.app {
  overflow: hidden;
  background-color: #f5f6f9;
}
.app .text-content h3 {
  text-align: start;
  font-size: 35px;
}
@media only screen and (max-width: 568px) {
  .app .text-content h3 {
    font-size: 27px !important;
  }
}
.app .text-content h4 {
  text-align: start;
}
.app i {
  color: #ffffff;
}
.app .btn--base {
  font-size: 13px;
  padding: 10px 20px;
}

.brand {
  overflow: hidden;
}
.brand img {
  width: 120px;
  height: auto;
}

.info-card {
  overflow: hidden;
}
.info-card .card {
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  border: 2px solid var(--primary-color) !important;
}
.info-card .card .icon i {
  font-size: 40px;
  padding: 15px 15px;
  background-color: var(--primary-color);
  color: #ffffff;
  margin-right: 20px;
  border-radius: 8px;
}
.info-card .card .content h3 {
  color: #2e556a;
  font-size: 24;
}

.contact {
  overflow: hidden;
}
.contact .thumb-right img {
  width: 33rem;
}

.text-area {
  height: 120px;
}

.blog-details {
  overflow: hidden;
}
.blog-details .right-content img {
  width: 50rem;
  height: auto;
  border-radius: 20px;
}
.blog-details .right-content h3 {
  margin-top: 15px;
  font-size: 22px;
  color: #2e556a;
}
.blog-details .right-content .details {
  margin-top: 20px;
}
.blog-details .right-content .details p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
.blog-details .right-content .hr {
  border-bottom: 1px solid var(--primary-color);
  margin-top: 30px;
}
.blog-details .right-content .tag {
  margin-top: 20px;
}
.blog-details .right-content .tag a {
  font-size: 14px;
  background-color: #f5f6f9;
  border-radius: 4px;
  color: #000000;
  padding: 5px;
  margin-right: 10px;
  text-decoration: underline;
}
.blog-details .left-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.blog-details .left-content .hr {
  border-bottom: 5px solid var(--primary-color);
  width: 60px;
  margin-bottom: 30px;
}
.blog-details .left-content h4 {
  font-size: 17px;
  line-height: 25px;
}
.blog-details .blog-sidebar-img {
  width: 120px;
  height: 120px;
  height: auto;
}
.blog-details .blog-sidebar-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.blog-details .left-content .recent-content{
  width: calc(100% - 20%);
}

.privacy {
  -webkit-box-shadow: 0px 0px 40px -2px rgba(207, 203, 203, 0.57);
          box-shadow: 0px 0px 40px -2px rgba(207, 203, 203, 0.57);
  padding: 30px;
}
.privacy .content h3 {
  margin-bottom: 15px;
}
.privacy .content .head {
  margin-top: 30px;
}

.error {
  padding-bottom: 100px;
}
.error img {
  width: 500px;
  height: auto;
}

.login img {
  width: 95%;
  height: auto;
}
.login .content {
  -webkit-box-shadow: 0px 0px 40px -2px rgba(207, 203, 203, 0.57);
          box-shadow: 0px 0px 40px -2px rgba(207, 203, 203, 0.57);
  padding: 30px;
  border-radius: 10px;
}
@media only screen and (max-width: 375px) {
  .login .content {
    padding: 20px;
  }
}
.login .create-acc a {
  color: var(--primary-color);
}

.about-whyChoose {
  overflow: hidden;
}
@media only screen and (max-width: 425px) {
  .about-whyChoose .left-content h3{
      font-weight: 500;
  }
}


.about-whyChoose .right-img img {
  width: 33rem;
  height: auto;
}
.about-whyChoose .left-content h3 {
  font-size: 40px;
  color: #393939;
  text-transform: capitalize;
  padding-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .about-whyChoose .left-content h3 {
    font-size: 30px !important;
  }
}
.about-whyChoose .left-content h3 span {
  color: var(--primary-color);
}
.about-whyChoose .left-content p {
  padding-bottom: 30px;
  font-size: 17px;
}
.about-whyChoose .left-content .content i {
  font-size: 18px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 5px;
  border-radius: 999px;
  margin-right: 13px;
}
.about-whyChoose .left-content .content h5 {
  font-size: 18px;
  color: #393939;
  font-weight: 600;
}

.country-select {
  width: 100% !important;
}
.country-select input {
  border-radius: 15px;
}

.video-wrapper .video-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-transform: translate(-10%, -15%);
          transform: translate(-10%, -15%);
  color: #ffffff;
  font-size: 20px;
  z-index: 1;
  background-color: var(--primary-color);
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 575px) {
  .video-wrapper .video-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
  }
}
.video-wrapper .video-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  -webkit-animation: ripple 1.6s ease-out infinite;
  animation: ripple 1.6s ease-out infinite;
  background-color: var(--primary-color);
}

.from-cruncy {
  position: relative;
}


.from-cruncy .cruncy {
  position: absolute;
  top: 0px;
  right: 12px;
  padding: 6px 10px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 0px 15px 15px 0px;
}
.from-cruncy .cruncy img{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 6px;
}
.exchange-charge {
  margin-top: 0px;
}

.banner-form .transaction-type{
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}
.card-body .banner-form .top {
  background-color: var(--primary-color);
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}
.card-body .banner-form .top p {
  font-size: 20px;
  color: #ffffff;
}
.card-body .banner-form .top .title {
  color: #ffffff;
}

.document-id .title {
  color: #000;
}

.kyc-varifay {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px #dbdbdb;
          box-shadow: 2px 2px #dbdbdb;
}

.form-group {
  position: relative;
}
.form-group .show-pass {
  position: absolute;
  right: 32px;
  top: 42px;
  font-size: 14px;
}
.form-group .icon {
  right: 22px !important;
  top: 44px !important;
}

.form-group textarea {
  height: 100px;
}

.custom-check-group a {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.show_hide_password input{
  padding-right: 45px;
}

/*--------------------------------------------------------------
    [ ## Blog ]
--------------------------------------------------------------*/
.blog {
  overflow: hidden;
}
.blog .card-thumb {
  overflow: hidden;
}
.blog .card-thumb img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.blog .text-content h3 {
  font-size: 40px !important;
  padding-bottom: 15px;
  letter-spacing: 2px;
}
.blog .text-content h3 span {
  color: var(--primary-color);
}
@media only screen and (max-width: 571px) {
  .blog .text-content h3 {
    font-size: 30px !important;
  }
}
.blog .text-content p {
  font-size: 17px !important;
}
.blog .text-content .top-title-content {
  color: var(--primary-color);
  font-size: 18px !important;
  font-weight: 600;
  letter-spacing: 3px;
}
.blog .left-content p {
  margin: 0;
  color: var(--primary-color);
  font-weight: 700;
}
.blog .left-content .categories {
  margin-bottom: 45px;
}
.blog .left-content .categories .item {
  background-color: #f5f6f9;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.blog .card {
  overflow: hidden !important;
  border-radius: 10px !important;
  height: 100%;
  border: none !important;
  -webkit-box-shadow: 0px 0px 40px -2px rgba(207, 203, 203, 0.57);
          box-shadow: 0px 0px 40px -2px rgba(207, 203, 203, 0.57);
}
.blog .card .rating-color {
  color: #fbc634 !important;
}
.blog .card .title:hover {
  color: var(--primary-color) !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.blog .card img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog .card .icon {
  color: var(--primary-color);
}
.blog .card .author-content {
  margin-bottom: 20px;
}
.blog .card .author-content img {
  width: 30px;
  border-radius: 999px;
  margin-right: 10px;
}
.blog .card .link {
  color: var(--primary-color);
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
    [ ## Dashboard ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### dashboard block ]
*/
.page-wrapper {
  min-height: 100vh;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar {
  width: 250px;
  position: fixed;
  background: #ffffff;
  backdrop-filter: blur(11.3px);
  -webkit-backdrop-filter: blur(11.3px);
  backdrop-filter: blur(10px);
  border-radius: 0px 15px;
  padding: 10px;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 9;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sidebar.active {
  width: 60px;
}
@media only screen and (max-width: 1199px) {
  .sidebar.active {
    width: 250px;
    left: 0;
  }
}
.sidebar.active .sidebar-menu .sidebar-menu-item a {
  padding: 12px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .sidebar.active .sidebar-menu .sidebar-menu-item a {
    padding: 12px 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.sidebar.active .sidebar-menu .sidebar-menu-item .menu-icon {
  margin-right: 0;
}
@media only screen and (max-width: 1199px) {
  .sidebar.active .sidebar-menu .sidebar-menu-item .menu-icon {
    margin-right: 10px;
  }
}
.sidebar.active .sidebar-menu .sidebar-menu-item .sidebar-item-badge {
  display: none;
}
.sidebar.active .menu-title {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .sidebar.active .menu-title {
    display: block;
  }
}
.sidebar.active .sidebar-doc-box {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .sidebar.active .sidebar-doc-box {
    display: block;
  }
}
.sidebar:hover {
  width: 250px;
}
.sidebar:hover .sidebar-menu .sidebar-menu-item a {
  padding: 12px 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.sidebar:hover .sidebar-menu .sidebar-menu-item .menu-icon {
  margin-right: 10px;
}
.sidebar:hover .sidebar-menu .sidebar-menu-item .sidebar-item-badge {
  display: block;
}
.sidebar:hover .menu-title {
  display: inline-block;
}
.sidebar:hover .sidebar-doc-box {
  display: block;
}
@media only screen and (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.sidebar-logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.sidebar-logo::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(224, 225, 226, 0)), color-stop(47.22%, rgb(224, 225, 226)), color-stop(94.44%, rgba(224, 225, 226, 0.157)));
  background: linear-gradient(90deg, rgba(224, 225, 226, 0) 0%, rgb(224, 225, 226) 47.22%, rgba(224, 225, 226, 0.157) 94.44%);
}
.sidebar-logo .sidebar-main-logo {
  max-width: 130px;
}
.sidebar-logo .sidebar-menu-bar {
  font-size: 14px;
  color: #000000;
  background-color: transparent;
  display: none;
}

.sidebar-menu-wrapper {
  padding-top: 15px;
}

.sidebar-menu-header {
  position: relative;
  letter-spacing: 0.05em;
  font-size: 0.6875rem;
  font-weight: 500;
  margin-bottom: 15px;
  padding-left: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 20px;
}
.sidebar-menu-header::before {
  content: "--";
  position: absolute;
  left: 0;
  top: 0;
}

.sidebar-item-badge {
  margin-left: auto;
}

.sidebar-menu .sidebar-menu-item {
  position: relative;
  margin-bottom: 5px;
  border-radius: 15px;
}
.sidebar-menu .sidebar-menu-item::after {
  position: absolute;
  content: "";
  top: 0;
  right: -15px;
  width: 2px;
  height: 0;
  background-color: var(--primary-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.sidebar-menu .sidebar-menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-weight: 600;
  padding: 12px 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.sidebar-menu .sidebar-menu-item a .menu-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(61, 16, 207, 0.1);
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  font-size: 22px;
  margin-right: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.sidebar-menu .sidebar-menu-item.sidebar-dropdown a {
  position: relative;
}
.sidebar-menu .sidebar-menu-item.sidebar-dropdown a::after {
  position: absolute;
  top: 18px;
  right: 25px;
  font-family: "Font Awesome 5 Free";
  color: #393939;
  font-weight: 700;
  content: "\f105";
  font-size: 12px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.sidebar-menu .sidebar-menu-item .sidebar-submenu {
  position: relative;
  display: none;
  z-index: 1;
}
.sidebar-menu .sidebar-menu-item .sidebar-submenu.open {
  display: block;
}
.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item {
  letter-spacing: normal;
  color: #393939;
  font-weight: 400;
  margin-top: 0;
  padding-left: 2px;
}
.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item a {
  padding: 10px 20px;
}
.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item a::after {
  display: none;
}
.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item a:hover {
  letter-spacing: 1px;
}
.sidebar-menu .sidebar-menu-item .sidebar-submenu .sidebar-menu-item a .menu-icon {
  font-size: 18px;
  margin-right: 8px;
  color: #000000;
}
.sidebar-menu .sidebar-menu-item:hover {
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 600;
}
.sidebar-menu .sidebar-menu-item.active {
  background-color: rgba(0, 2, 72, 0.1);
}
.sidebar-menu .sidebar-menu-item.active::after {
  height: 30px;
}
.sidebar-menu .sidebar-menu-item.active a::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sidebar-menu .sidebar-menu-item.active a .menu-icon {
  background-color: var(--primary-color);
  color: #ffffff;
}
.sidebar-menu .sidebar-menu-item.active .sidebar-submenu .sidebar-menu-item a.active {
  color: var(--primary-color);
  font-weight: 700;
}
.sidebar-menu .sidebar-menu-item.active .sidebar-submenu .sidebar-menu-item a:hover {
  letter-spacing: 1px;
}
.sidebar-menu .sidebar-menu-item.active .sidebar-submenu .sidebar-menu-item a::before {
  display: none;
}
.sidebar-menu .sidebar-menu-item.active .sidebar-submenu .sidebar-menu-item a .menu-icon {
  width: auto;
  height: auto;
  display: block;
  background-color: transparent;
}
.sidebar-menu .sidebar-menu-item .sidebar-item-badge {
  margin-left: auto;
}
.sidebar-menu .sidebar-menu-item .sidebar-item-badge .badge {
  width: 20px;
  height: 20px;
  line-height: 20px !important;
  padding: 0 !important;
  background-color: var(--primary-color);
  font-size: 0.8em;
  border: none;
  margin-bottom: 0;
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: inline-block;
}

.sidebar-doc-box {
  border-radius: 15px;
  padding: 15px;
  min-height: 180px;
  min-width: 218px;
}
.sidebar-doc-box .sidebar-doc-icon {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  color: var(--primary-color);
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 15px;
}
.sidebar-doc-box .sidebar-doc-content .title {
  margin-bottom: 2px;
  color: #ffffff;
}
.sidebar-doc-box .sidebar-doc-content p {
  color: #ffffff;
}
.sidebar-doc-box .sidebar-doc-content .sidebar-doc-btn a {
  background: var(--primary-color);
  padding: 14px 40px;
  font-size: 14px;
  border: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}

.navbar-wrapper {
  padding: 20px 0;
  margin-left: 250px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-wrapper.active {
  margin-left: 85px;
}
@media only screen and (max-width: 1199px) {
  .navbar-wrapper.active {
    margin-left: 0;
  }
}
.navbar-wrapper.active .dashboard-title-part {
  padding: 0 10px 0 0;
}
.navbar-wrapper.active .dashboard-title-part .left .icon {
  display: block;
}
@media only screen and (max-width: 1199px) {
  .navbar-wrapper {
    margin-left: 0;
  }
}

.dashboard-title-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px 0 35px;
}
@media only screen and (max-width: 1199px) {
  .dashboard-title-part {
    padding: 0 20px 0 10px;
  }
}
@media only screen and (max-width: 915px) {
  .dashboard-title-part {
    display: block;
  }
}
.dashboard-title-part .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dashboard-title-part .left .icon {
  margin-right: 10px;
}
.dashboard-title-part .left .icon button, .dashboard-title-part .left .icon input[type=button], .dashboard-title-part .left .icon input[type=reset], .dashboard-title-part .left .icon input[type=submit] {
  font-size: 14px;
  color: #000000;
  background-color: transparent;
}
.dashboard-title-part .title {
  margin-bottom: 0;
}
.dashboard-title-part p {
  font-size: 12px;
  font-weight: 500;
}
.dashboard-title-part .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -8px;
}
@media only screen and (max-width: 915px) {
  .dashboard-title-part .right {
    padding-top: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.dashboard-path {
  font-size: 15px;
}
.dashboard-path .main-path {
  color: #000000;
  font-weight: 600;
}

.select-btn {
  padding: 8px 25px;
  border-radius: 8px;
}

.header-search-wrapper {
  width: 350px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(57, 57, 57, 0.2);
  border-radius: 10px;
  margin: 8px;
}
@media only screen and (max-width: 767px) {
  .header-search-wrapper {
    width: 100%;
  }
}
.header-search-wrapper input {
  border: none;
  height: 40px;
  padding-left: 35px;
  padding-right: 20px;
  background-color: transparent;
  -webkit-box-shadow: none;
  color: #000000;
  box-shadow: none;
  border-radius: 0;
}
.header-search-wrapper input:focus {
  background-color: transparent;
  color: #000000;
  border: none;
}
.header-search-wrapper input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-search-wrapper input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-search-wrapper input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-search-wrapper input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-search-wrapper input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-search-wrapper span {
  position: absolute;
  font-size: 16px;
  line-height: 38px;
  color: rgba(57, 57, 57, 0.3);
  left: 10px;
  top: 1px;
}

.header-user-wrapper {
  margin: 8px;
}
.header-user-wrapper .header-user-thumb a{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
}
.header-user-wrapper .header-user-thumb a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body-wrapper {
  padding-left: 285px;
  padding-right: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.body-wrapper.active {
  padding-left: 85px;
  padding-right: 10px;
}
@media only screen and (max-width: 1199px) {
  .body-wrapper {
    padding-left: 15px;
  }
}

.dashboard-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.dashboard-header-wrapper .title {
  margin-bottom: 0;
  color: #000000;
}
.dashboard-header-wrapper .title-top {
  color: #000000 !important;
}
.dashboard-header-wrapper .dashboard-btn-wrapper .dashboard-btn a,
.dashboard-header-wrapper .dashboard-btn-wrapper .dashboard-btn button,
.dashboard-header-wrapper .dashboard-btn-wrapper .dashboard-btn input[type=button],
.dashboard-header-wrapper .dashboard-btn-wrapper .dashboard-btn input[type=reset],
.dashboard-header-wrapper .dashboard-btn-wrapper .dashboard-btn input[type=submit] {
  padding: 8px 25px;
  font-size: 14px;
  border-radius: 8px;
}
.dashboard-header-wrapper .btn--base {
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 22px;
}

.dashbord-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dashbord-item .dashboard-content .sub-title {
  margin-bottom: 5px;
}
.dashbord-item .dashboard-content .title {
  margin-bottom: 0;
  color: #000000;
}
.dashbord-item .dashboard-icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary-color);
  border-radius: 15px;
  font-size: 24px;
  overflow: hidden;
}
.dashbord-item .dashboard-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.chart-wrapper {
  background: #ffffff;
  padding: 30px 10px;
  border-radius: 20px;
  overflow: hidden !important;
}
.chart-wrapper line {
  stroke: rgba(57, 57, 57, 0.2);
}
.chart-wrapper .dashboard-header-wrapper {
  padding: 0 20px;
  margin-bottom: 0;
  overflow: hidden !important;
}

.apexcharts-legend-text {
  color: #000000 !important;
}

.rtl .apexcharts-legend-text{
  padding-right: 5px;
  margin-right:0px;
}

.apexcharts-yaxis text {
  fill: #000000 !important;
}

.apexcharts-grid line {
  stroke: rgba(57, 57, 57, 0.2) !important;
}

.apexcharts-graphical line {
  stroke: rgba(57, 57, 57, 0.2) !important;
}

.apexcharts-xaxis-texts-g text {
  fill: #000000 !important;
}

.chart-area-footer {
  border-color: rgba(57, 57, 57, 0.2);
}

.dashboard-list-wrapper .dashboard-list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.451);
  padding: 15px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.dashboard-list-wrapper .dashboard-list-item.sent:hover .dashboard-list-user-wrapper .dashboard-list-user-icon, .dashboard-list-wrapper .dashboard-list-item.sent.active .dashboard-list-user-wrapper .dashboard-list-user-icon {
  background-color: #d63384;
  color: #ffffff;
}
.dashboard-list-wrapper .dashboard-list-item.receive:hover .dashboard-list-user-wrapper .dashboard-list-user-icon, .dashboard-list-wrapper .dashboard-list-item.receive.active .dashboard-list-user-wrapper .dashboard-list-user-icon {
  background-color: var(--primary-color);
  color: #ffffff;
}

.dashboard-list-item-wrapper .dashboard-list-left{
   width: calc(100% - 110px);
}
@media only screen and (max-width: 420px) {
  .dashboard-list-item-wrapper .dashboard-list-left{
    width: calc(100% - 60px);
 }
}

.dashboard-list-user-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;

}
.dashboard-list-user-wrapper .dashboard-list-user-icon {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(197, 197, 197, 0.121);
  color: #000000;
  border-radius: 50%;
  font-size: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media only screen and (max-width: 420px) {
  .dashboard-list-user-wrapper .dashboard-list-user-icon{
     display: none;
  }
}

.dashboard-list-user-wrapper .dashboard-list-user-content {
  width: calc(100% - 60px);
  padding-left: 20px;
}
.dashboard-list-user-wrapper .dashboard-list-user-content .title {
  margin-bottom: 5px;
  color: #000000;
}

.dashboard-list-right {
  text-align: right;
}
.dashboard-list-right .main-money {
  font-size: 16px;
}
.dashboard-list-right .exchange-money {
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
}

.dashboard-list-item-wrapper {
  background-color: #ffffff;
  -webkit-box-shadow: 2px 2px #dedede;
          box-shadow: 2px 2px #dedede;
  padding: 15px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 420px) {
  .dashboard-list-item-wrapper {
    padding: 15px 8px;
  }
}
.dashboard-list-item-wrapper:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.dashboard-list-item-wrapper .dashboard-list-item {
  padding: 0;
  background-color: transparent;
  margin-bottom: 0;
}
.dashboard-list-item-wrapper .preview-list-wrapper {
  display: none;
  margin-top: 20px;
}
.dashboard-list-item-wrapper .preview-list-wrapper .preview-list-item {
  border-bottom: 1px solid rgb(201, 201, 201);
}
.dashboard-list-item-wrapper .preview-list-wrapper .preview-list-item .preview-list-user-wrapper .preview-list-user-icon {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

@media only screen and (max-width: 375px) {
    .dashboard-list-right {
      text-align: left;
      padding-top: 15px;
      padding-left: 20px;
  }
}

.preview-list-wrapper {
  background-color: rgba(239, 239, 239, 0.6666666667);
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
}
.preview-list-wrapper .preview-list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(57, 57, 57, 0.2);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
@media only screen and (max-width: 375px) {
  .preview-list-wrapper .preview-list-item {
    padding: 15px 5px;
  }
}
.preview-list-wrapper .preview-list-item .last {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 575px) {
  .preview-list-wrapper .preview-list-item .last {
    font-size: 14px;
  }
}

.preview-list-user-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.preview-list-user-wrapper .preview-list-user-icon {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 18px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.preview-list-user-wrapper .preview-list-user-content {
  padding-left: 20px;
}
@media only screen and (max-width: 375px) {
  .preview-list-user-wrapper .preview-list-user-content {
    padding-left: 10px;
  }
}

.preview-list-right {
  text-align: right;
}

.note-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.support-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .support-card {
    display: block;
  }
}

.card-header-user-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-header-user-area .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: bottom;
  object-fit: cover;
  border: 3px solid rgba(57, 57, 57, 0.2);
}
.card-header-user-area .card-header-user-content {
  padding-left: 15px;
}
.card-header-user-area .card-header-user-content .title {
  margin-bottom: 0;
  color: #ffffff;
}
.card-header-user-area .card-header-user-content .sub-title {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.support-card-wrapper {
  width: calc(100% - 500px);
  background-color: #ffffff;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .support-card-wrapper {
    width: 100%;
  }
}
.support-card-wrapper .card-header {
  background-color: var(--primary-color);
  border-radius:  0px !important;
}

.chat-container {
  position: relative;
  -ms-touch-action: auto;
  touch-action: auto;
  overflow-y: auto;
  max-height: 70vh;
  min-height: 70vh;
  padding: 30px 15px;
  border: 1px solid var(--primary-color);
}
@media only screen and (max-width: 1600px) {
  .chat-container {
    max-height: 65vh;
    min-height: 65vh;
  }
}
@media only screen and (max-width: 767px) {
  .chat-container {
    max-height: 60vh;
    min-height: 60vh;
  }
}
.chat-container .media > * {
  margin: 0 10px;
}
.chat-container .media {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0;
  max-width: 80%;
}
@media only screen and (max-width: 575px) {
  .chat-container .media {
    max-width: 100%;
  }
}
.chat-container .media.media-chat-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: auto;
}
.chat-container .media.media-chat-reverse .media-body p {
  background-color: var(--primary-color);
  color: #ffffff;
}
.chat-container .media.media-chat-reverse .media-body p::before {
  left: auto;
  right: -10px;
  background-color: var(--primary-color);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.chat-container .media .media-body p {
  position: relative;
  padding: 20px;
  background-color: #f5f6f9;
  font-size: 13px;
  border-radius: 10px;
  color: #000000;
  white-space: pre-wrap;
}
.chat-container .media .media-body p::before {
  position: absolute;
  content: "";
  top: 20px;
  left: -10px;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: #f5f6f9;
  width: 12px;
  height: 17px;
}
.chat-container .media .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: bottom;
  border: 3px solid rgba(57, 57, 57, 0.2);
}

.chat-form .publisher {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 20px;
  background-color: #723eeb;
  border-top: 1px solid var(--primary-color);
  border-radius: 0 0 10px 10px;
}
.chat-form .publisher .chatbox-message-part {
  width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.chat-form .publisher .chatbox-message-part textarea{
  min-height: 20px !important;
  border-radius: 10px;
}

.chat-form .publisher .chatbox-message-part {
width: calc(100% - 100px);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
/* .chat-form .publisher .publisher-input {
  font-weight: 500;
  font-size: 14px;
  border: none;
  outline: none !important;
  background-color: #f6f8fe;
  border-radius: 99px;
} */
.chat-form .publisher .publisher-input::-webkit-input-placeholder {
  color: rgba(57, 57, 57, 0.3);
}
.chat-form .publisher .publisher-input::-moz-placeholder {
  color: rgba(57, 57, 57, 0.3);
}
.chat-form .publisher .publisher-input:-ms-input-placeholder {
  color: rgba(57, 57, 57, 0.3);
}
.chat-form .publisher .publisher-input::-ms-input-placeholder {
  color: rgba(57, 57, 57, 0.3);
}
.chat-form .publisher .publisher-input::placeholder {
  color: rgba(57, 57, 57, 0.3);
}
.chat-form .publisher .chatbox-send-part {
  width: 45px;
}
.chat-form .publisher .chatbox-send-part .chat-submit-btn {
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  text-align: center;
  background-color: #6610f2;
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
}
.chat-form .publisher .publisher-btn {
  width: 45px;
  height: 45px;
  background-color: #e6eaf8;
  color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.chat-form .publisher .file-group input[type=file] {
  position: absolute;
  opacity: 0;
  z-index: -1;
  width: 20px;
}
.chat-form .publisher .file-group label {
  margin-bottom: 0;
  color: #000000;
  cursor: pointer;
}

.support-profile-wrapper {
  background-color: #ffffff;
  width: 500px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
  .support-profile-wrapper {
    position: fixed;
    right: -600px;
    top: 0;
    height: 100vh;
  }
}
@media only screen and (max-width: 575px) {
  .support-profile-wrapper {
    width: 100%;
  }
}
.support-profile-wrapper.active {
  right: 0;
}
.support-profile-wrapper .support-profile-header {
  padding: 18.5px;
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.support-profile-wrapper .support-profile-header label {
  margin-bottom: 0;
  color: #ffffff;
}
.support-profile-wrapper .support-profile-body {
  padding: 20px;
}
.support-profile-wrapper .support-profile-body h5 {
  color: #000000;
}
.support-profile-wrapper .support-profile-list li {
  padding-top: 15px;
  font-weight: 700;
}
.support-profile-wrapper .support-profile-list li span,
.support-profile-wrapper .support-profile-list li p {
  float: right;
  font-weight: 500;
}
@media only screen and (max-width: 575px) {
  .support-profile-wrapper .support-profile-list li span,
.support-profile-wrapper .support-profile-list li p {
    float: left;
  }
}
.support-profile-wrapper .support-profile-list li p {
  line-height: 2em;
  margin-top: 10px;
  margin-bottom: 15px;
}

.profile-body-wrapper {
  padding: 0 !important;
}

.profile-form-area {
  padding: 30px;
}

.profile-settings-wrapper .preview-thumb.profile-wallpaper {
  display: block;
  position: relative;
}
.profile-settings-wrapper .preview-thumb.profile-wallpaper .avatar-preview {
  width: 100%;
  height: 250px;
  border-radius: 0;
}
.profile-settings-wrapper .preview-thumb.profile-wallpaper .avatar-preview .profilePicPreview {
  width: 100%;
  height: 250px;
  border-radius: 20px 20px 0 0;
  border: none;
  background-color: var(--primary-color);
  position: relative;
}

.profile-thumb-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 1.5rem;
}
@media only screen and (max-width: 575px) {
  .profile-thumb-content {
    display: block;
    margin-top: 60px;
  }
}
.profile-thumb-content .profile-thumb {
  position: relative;
  display: inline-block;
  margin-right: 40px;
  margin-top: -100px;
}
.profile-thumb-content .profile-thumb .avatar-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.profile-thumb-content .profile-thumb .avatar-preview .profilePicPreview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(57, 57, 57, 0.2);
  background-color: #f5f6f9;
  background-size: cover;
  background-repeat: no-repeat;
}
.profile-thumb-content .profile-thumb .avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
}
.profile-thumb-content .profile-thumb .avatar-edit .profilePicUpload {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.profile-thumb-content .profile-thumb .avatar-edit label {
  width: 35px;
  height: 35px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  cursor: pointer;
}
.profile-thumb-content .profile-content {
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
}
@media only screen and (max-width: 575px) {
  .profile-thumb-content .profile-content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.profile-thumb-content .profile-content .username {
  font-size: 18px;
  color: #ffffff;
}
.profile-thumb-content .profile-content .user-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -5px -10px;
}
.profile-thumb-content .profile-content .user-info-list li {
  margin: 5px 10px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile-thumb-content .profile-content .user-info-list li i {
  font-size: 18px;
  margin-right: 5px;
  color: var(--primary-color);
}

.pdf-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow-y: scroll;
  left: 0;
  overflow: hidden;
  top: 0;
  z-index: 9;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.pdf-area.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.play-store-thumb {
  width: 193px;
  height: 193px;
  margin: 0 auto;
}
.play-store-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-notification-wrapper {
  position: relative;
}

.notification-icon {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
  border: 1px solid rgba(56, 59, 89, 0.3764705882);
  border-radius: 10px;
  font-size: 20px;
}

.notification-wrapper {
  position: absolute;
  top: 47px;
  right: 0;
  width: 280px;
  max-height: 300px;
  overflow-y: auto;
  background-color: #ffffff;
  border: 1px solid rgba(57, 57, 57, 0.2);
  border-radius: 10px;
  z-index: 9;
  padding: 15px;
  text-align: left;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .notification-wrapper {
    width: 250px;
  }
}
.notification-wrapper.active {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.notification-wrapper .notification-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.notification-wrapper .notification-header .title {
  margin-bottom: 0;
  color: #000000;
}
.notification-wrapper .notification-header .sub-title {
  font-size: 12px;
}
.notification-wrapper .notification-list {
  margin-bottom: -15px;
}
.notification-wrapper .notification-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 12px;
  padding-bottom: 15px;
}
.notification-wrapper .notification-list li .thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  overflow: hidden;
}
.notification-wrapper .notification-list li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.notification-wrapper .notification-list li .content {
  width: calc(100% - 25px);
  padding-left: 10px;
}
.notification-wrapper .notification-list li .content .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}
.notification-wrapper .notification-list li .content .title {
  margin-bottom: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}
.notification-wrapper .notification-list li .content .time {
  color: var(--primary-color);
  font-weight: 600;
}
.notification-wrapper .notification-footer {
  font-size: 12px;
}

.exchange-area {
  background-color: var(--primary-color);
  padding: 30px 80px;
  border-radius: 15px;
  display: inline-block;
  text-align: center;
}
.exchange-area span {
  font-size: 14px;
}
.exchange-area p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (max-width: 575px) {
  .exchange-area {
    padding: 30px 15px;
  }
}

.connect {
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
          box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
  padding: 10px;
  border-radius: 10px;
}
.connect .btn--base {
  padding: 5px 15px !important;
}
.connect h3 {
  font-size: 15px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  /* Rounded sliders */
}
.switch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch input:checked + .slider {
  background-color: var(--primary-color);
}
.switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--primary-color);
          box-shadow: 0 0 1px var(--primary-color);
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}

.cardremit-card .flip-card {
  overflow: hidden;
  width: 300px;
  height: 188px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.cardremit-card .flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  border-radius: 10px;
}
.cardremit-card .flip-card:hover .flip-card-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.cardremit-card .flip-card-front,
.cardremit-card .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cardremit-card .flip-card-front {
  color: black;
}
.cardremit-card .flip-card-back {
  color: white;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.cardremit-card .credit-card-back {
  padding: 0 !important;
}
.cardremit-card .credit-card-back .code {
  background-color: #000000;
  height: 40px;
  border-radius: 3px;
  width: 100%;
}
.cardremit-card .credit-card-back .sign {
  padding: 10px 20px 0px 20px !important;
}
.cardremit-card .credit-card-back .sign h3 {
  background-color: #000000;
  padding: 4px;
  width: 100%;
  font-size: 12px;
  border-radius: 3px 0 0 3px;
}
.cardremit-card .credit-card-back .sign h4 {
  background-color: #f5f6f9;
  color: #000000;
  width: 4rem;
  padding: 4px;
  font-size: 12px;
  border-radius: 0px 3px 3px 0px;
}
.cardremit-card .credit-card-back .bottom-text {
  padding: 2px 20px 0px 20px !important;
}
.cardremit-card .credit-card-back .bottom-text h3 {
  font-size: 11px;
  color: #000000;
  font-weight: 500;
}
.cardremit-card .credit-card-back .bottom-text img {
  width: 60px;
}
.cardremit-card .credit-card-back .text {
  padding: 15px 0px 0px 20px !important;
}
.cardremit-card .credit-card-back .text p {
  font-size: 10px;
  padding-bottom: 10px;
}
.cardremit-card .credit-card {
  width: 19rem;
  height: 12rem;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
}
.cardremit-card .credit-card .top-content img {
  width: 100px;
}
.cardremit-card .credit-card .top-content h3 {
  font-size: 16px;
  color: #000000;
}
.cardremit-card .credit-card .middle-content img {
  width: 30px;
  margin-right: 10px;
}
.cardremit-card .credit-card .middle-content h3 {
  font-size: 18px;
  margin: auto 0;
  color: #000000;
}
.cardremit-card .credit-card .bottom-content img {
  width: 30px;
  margin-right: 10px;
}
.cardremit-card .credit-card .bottom-content h3 {
  font-size: 13px;
  font-weight: 500;
  margin: auto 0;
  color: #000000;
  text-transform: uppercase;
}
.cardremit-card .credit-card .bottom-content h4 {
  font-size: 13px;
  font-weight: 500;
  margin: auto 0;
  color: #000000;
  text-transform: capitalize;
  padding-top: 5px;
}
.cardremit-card .credit-card .bottom-content .status h4 {
  font-size: 12px;
}
.cardremit-card .card-btn {
  padding-top: 30px;
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
}
.cardremit-card .card-btn i {
  background-color: var(--primary-color);
  padding: 10px;
  font-size: 25px;
  border-radius: 999px;
  color: #000000;
}
.cardremit-card .card-btn h3 {
  font-size: 12px;
  padding-top: 7px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
}

.modal .modal-content {
  background-color: #ffffff;
}
.modal .modal-content h3 {
  color: #000000;
}
.modal .modal-content input {
  color: #000000;
}
.modal .modal-content .btn--base2 {
  background-color: #d63384;
}
.modal .send-add-form .form-area {
  padding: 8px !important;
}

/*-------------------------------------------------
    [ ## switch ]
*/
.toggle-container {
  min-width: 200px;
}

.toggle-container .switch-toggles {
  position: relative;
  width: 100%;
  height: 35px;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.toggle-container .switch-toggles::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 35px;
  background: #ea5455;
  right: -1px;
  top: 0;
  border-radius: 0 5px 5px 0;
  -webkit-transition: all 0.7s cubic-bezier(0.545, 0, 0.05, 1);
  transition: all 0.7s cubic-bezier(0.545, 0, 0.05, 1);
}

.toggle-container .switch-toggles .switch {
  position: relative;
  width: 50%;
  line-height: 35px;
  float: left;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: color 0.7s cubic-bezier(0.545, 0, 0.05, 1);
  transition: color 0.7s cubic-bezier(0.545, 0, 0.05, 1);
  font-weight: 600;
  border-radius: 5px;
  color: #6e768e;
  margin-bottom: 0;
}

.toggle-container .switch-toggles .switch:nth-child(odd) {
  color: #ffffff;
}

.toggle-container .switch-toggles.active::after {
  background: var(--primary-color);
  right: 50%;
  border-radius: 5px 0 0 5px;
}

.toggle-container .switch-toggles.active .switch {
  color: #6e768e;
}

.toggle-container .switch-toggles.active .switch:nth-child(even) {
  color: #ffffff;
}

.dashboard-list-item-wrapper.selected {
  background: rgba(0, 113, 184, 0.264);
}

.dashbord-user {
  word-wrap: break-word;
  background-clip: border-box;
  border: 0 solid transparent;
  background-color: #ffffff;
  position: relative;
  border-radius: 15px;
  padding: 15px;
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dashbord-user .icon {
  background-color: var(--primary-color);
  border-radius: 999px;
  padding: 10px;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
          box-shadow: 0 5px 10px rgba(30, 32, 37, 0.12);
  height: 55px;
  width: 55px;
}
.dashbord-user .icon i {
  font-size: 35px;
  color: #ffffff;
}
.dashbord-user .bottom-content p {
  font-size: 11px;
}
.dashbord-user .icon-bottom {
  background-color: #0b4588;
  color: #ffffff;
  padding: 2px;
  border-radius: 8px;
  width: 60px;
}
.dashbord-user .icon-bottom i {
  font-size: 12px;
  margin: auto 0;
  padding-right: 4px;
}
.dashbord-user .icon-bottom p {
  font-size: 12px;
}
.dashbord-user .top-content h3 {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}
.dashbord-user .dash-btn {
  position: absolute;
  top: 30px;
  right: 20px;
  padding: 1px 8px;
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashbord-user .title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.dashbord-user .user-count {
  padding-top: 10px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.9);
}
.dashbord-user .dashboard-icon-area .dashboard-icon img {
  width: 70px;
  height: 70px;
}

.non-select {
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 0px 15px 15px 0;
}
.non-select img {
  width: 30px;
  height: auto;
  margin-right: 10px;
}
@media only screen and (max-width: 992px) {
  .non-select img {
    width: 30px;
  }
}
@media only screen and (max-width: 500px) {
  .non-select img {
    width: 50px;
  }
}
.non-select h3 {
  color: #ffffff;
  margin: auto 0;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
}

.fatitle {
  color: black !important;
}

.trace-list-wrapper {
  position: relative;
  border: 1px solid rgba(57, 57, 57, 0.2);
  padding: 30px;
  margin-top: 10px;
  border-radius: 10px;
}
.trace-list-wrapper .pdf-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
.trace-list-wrapper .pdf-btn button, .trace-list-wrapper .pdf-btn input[type=button], .trace-list-wrapper .pdf-btn input[type=reset], .trace-list-wrapper .pdf-btn input[type=submit] {
  padding: 8px 25px;
  font-size: 12px;
}

.trace-list-item-wrapper {
  width: 480px;
  margin: 0 auto;
  position: relative;
  margin-bottom: -20px;
}
.trace-list-item-wrapper::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 35%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 115px);
  background-color: #00abb3;
}

.trace-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
}
.trace-list-item .trace-list-left {
  width: 50%;
  font-weight: 500;
  color: #000000;
}
.trace-list-item .trace-list-right {
  width: 50%;
  position: relative;
}
.trace-list-item .trace-list-right::before {
  position: absolute;
  content: "";
  top: 5px;
  left: -33%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 8px;
  height: 8px;
  background-color: #00abb3;
  border-radius: 50%;
}
.trace-list-item .trace-list-right .details.last {
  font-size: 16px;
  color: #00abb3;
  font-weight: 600;
  margin-bottom: 10px;
}
.trace-list-item .trace-list-right p span {
  color: #000000;
  font-weight: 600;
}

.dashboard-list-item-wrapper .btn {
  padding: 3px 15px;
  font-size: 12px;
  margin-bottom: 5px;
}
.dashboard-list-button{
  text-align: end;
  margin-left: 8px;
  width: 110px;
}

@media only screen and (max-width: 420px) {
  .dashboard-list-button{
    width: 60px;
  }
}

.submit-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.submit-btn-area .pdf-btn-wrapper button, .submit-btn-area .pdf-btn-wrapper input[type=button], .submit-btn-area .pdf-btn-wrapper input[type=reset], .submit-btn-area .pdf-btn-wrapper input[type=submit] {
  padding: 8px 25px;
}

.profit-icon {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(131, 88, 255, 0.1);
  color: #000000;
  border-radius: 50%;
  font-size: 50px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 5;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
}
@media only screen and (max-width: 1199px) {
  .body-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

.body-overlay.show {
  visibility: visible;
  opacity: 1;
}


.otp {
  display: inline-block;
  width: 57px;
  height: 50px;
  text-align: center;
  padding: 0;
  border-radius: 5px;
  background-color: transparent;
}

@media only screen and (max-width: 470px) {
  .otp {
    width: 47px;
  }
}
@media only screen and (max-width: 380px) {
  .otp {
    width: 43px;
    height: 40px;
  }
}
@media only screen and (max-width: 350px) {
  .otp {
    width: 41px;
    height: 40px;
  }
}
@media only screen and (max-width: 330px) {
  .otp {
    width: 40px;
    height: 40px;
  }
}
.otp:focus {
  border: 3px solid #222f43;
}

.otp.required {
  border: 3px solid #ea5455;
}

.forgot {
  position: relative;
  -webkit-transform: none;
          transform: none;
  -webkit-transform-origin: unset;
          transform-origin: unset;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.account.forgot.account-wrapper {
  display: block;
}

.account .account-wrapper {
  position: relative;
  width: 430px;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 7px 0px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 7px 0px;
  padding: 40px 30px;
  border-radius: 10px;
  display: none;
}

@media only screen and (max-width: 470px) {
  .account .account-wrapper {
    width: 400px;
  }
}
@media only screen and (max-width: 435px) {
  .account .account-wrapper {
    width: 370px;
  }
}
@media only screen and (max-width: 400px) {
  .account .account-wrapper {
    width: 350px;
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 380px) {
  .account .account-wrapper {
    width: 320px;
  }
}
@media only screen and (max-width: 350px) {
  .account .account-wrapper {
    width: 300px;
    padding: 15px;
  }
}
@media only screen and (max-width: 330px) {
  .account .account-wrapper {
    width: 290px;
    padding: 15px;
  }
}
.account .account-wrapper.change-form {
  display: block;
}

.account .account-wrapper .account-cross-btn {
  position: absolute;
  top: -15px;
  right: -10px;
  background: #1bbde4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.account .account-wrapper .account-cross-btn:hover {
  background-color: #222222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.account .account-wrapper .account-cross-btn:hover::after, .account .account-wrapper .account-cross-btn:hover::before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.account .account-wrapper .account-cross-btn::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 11px;
  bottom: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.account .account-wrapper .account-cross-btn::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 11px;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.account .account-wrapper .account-logo {
  margin-bottom: 30px;
}
.account .account-wrapper .account-logo .site-logo {
  display: inline-block;
}

.account .account-wrapper p {
  font-size: 12px;
  margin-bottom: 30px;
}

.account .account-wrapper .account-form input {
  border: 1px solid rgba(34, 34, 34, 0.1);
  color: #1A043F;
}

.account .account-wrapper .account-form input:focus {
  border-color: #1cc2e7 !important;
  background-color: transparent;
}

.account .account-wrapper .account-form input::-webkit-input-placeholder {
  color: #6c7176;
}

.account .account-wrapper .account-form input::-moz-placeholder {
  color: #6c7176;
}

.account .account-wrapper .account-form input:-ms-input-placeholder {
  color: #6c7176;
}

.account .account-wrapper .account-form input::-ms-input-placeholder {
  color: #6c7176;
}

.account .account-wrapper .account-form input::placeholder {
  color: #6c7176;
}

.account .account-wrapper .account-form .forgot-item a {
  color: #1bbde4;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.account .account-wrapper .account-form .forgot-item a:hover {
  color: #222222;
}

.account .account-wrapper .account-form .or-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  gap: 37px;
}

.account .account-wrapper .account-form .or-area .or-title {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: #6c7176;
}

.account .account-wrapper .account-form .or-area .or-line {
  height: 1px;
  border: 0.5px solid rgba(34, 34, 34, 0.1);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.account .account-wrapper .account-form .account-item {
  color: rgba(108, 113, 118, 0.9);
}

.account .account-wrapper .account-form .account-item a {
  color: #723eeb;
  transition: all 0.6s;
}

.account .account-wrapper .account-form .account-item a:hover {
  color: #895cf1;
}

.account .account-wrapper .account-form .account-form-btn {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.account .account-wrapper .account-form .account-form-btn a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: inline-block;
  text-align: center;
  background-color: rgba(28, 194, 231, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin: 8px;
  fill: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.account .account-wrapper .account-form .account-form-btn a:hover {
  background-color: #1bbde4 !important;
}

.account .account-wrapper .account-form .account-form-btn a.facebook {
  background-color: #3b5998;
}

.account .account-wrapper .account-form .account-form-btn a.google {
  background-color: #DB4437;
}

.account .account-wrapper .account-form .account-form-btn a.apple {
  background-color: #000000;
}

.account .account-wrapper .account-form .custom-check-group label a {
  color: rgba(28, 194, 231, 0.7);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.account .account-wrapper .account-form .custom-check-group label a:hover {
  color: #1cc2e7;
}

@media only screen and (max-width: 1299px) {
  .account .account-area {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media only screen and (max-width: 991px) {
  .account .account-area {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.account-form .form-group {
  position: relative;
}
.account-form .form-group .show-pass {
  position: absolute;
  top: 13px;
  right: 30px;
  font-size: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 1299px) {
  .account .account-area {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}
@media only screen and (max-width: 991px) {
  .account .account-area {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*  */
.send-form-footer-note p{
    margin-bottom: 0px !important;
}
.bg-danger{
  border: 1px solid #dc3545!important;
}
.number-toggol{
  display: flex !important;
  justify-content: end !important;
  padding-top: 5px;
}
.toggol-content{
  padding: 5px;
}
.form-switch .form-check-input{
  width: 50px;
}
/* ERROR PAGE CODE START */
.four-not-four-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  height: 100vh;
  background-color: #828EC2;
  text-align: center;
}
.four-not-four-section .four-not-four-thumb {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1460px) {
  .four-not-four-section .four-not-four-thumb .error {
    display: none;
  }
}
.four-not-four-section .four-not-four-thumb .error-bg {
  display: none;
}
@media only screen and (max-width: 1460px) {
  .four-not-four-section .four-not-four-thumb .error-bg {
    display: block;
  }
}
.four-not-four-section .four-not-four-thumb .four-not-four-element-one {
  position: absolute;
  top: 125px;
  left: 420px;
  -webkit-animation: scroll-down 10s linear infinite;
          animation: scroll-down 10s linear infinite;
  z-index: 1;
}
@media only screen and (max-width: 1460px) {
  .four-not-four-section .four-not-four-thumb .four-not-four-element-one {
    display: none;
  }
}
.four-not-four-section .four-not-four-thumb .four-not-four-element-two {
  position: absolute;
  top: 280px;
  left: 830px;
  -webkit-animation: scroll-up 10s linear infinite;
          animation: scroll-up 10s linear infinite;
}
@media only screen and (max-width: 1460px) {
  .four-not-four-section .four-not-four-thumb .four-not-four-element-two {
    display: none;
  }
}
.four-not-four-section .four-not-four-thumb .four-not-four-element-three {
  position: absolute;
  top: 380px;
  left: 1080px;
  width: 5%;
  z-index: -1;
  -webkit-animation: socket 20s linear infinite;
          animation: socket 20s linear infinite;
}
@media only screen and (max-width: 1460px) {
  .four-not-four-section .four-not-four-thumb .four-not-four-element-three {
    display: none;
  }
}
.four-not-four-section .four-not-four-thumb .four-not-four-element-four {
  position: absolute;
  top: 350px;
  left: 420px;
  width: 5%;
}
@media only screen and (max-width: 1460px) {
  .four-not-four-section .four-not-four-thumb .four-not-four-element-four {
    display: none;
  }
}
.four-not-four-section .four-not-four-thumb .four-not-four-element-five {
  position: absolute;
  top: 480px;
  left: 20px;
  width: 10%;
  -webkit-animation: tester 10s linear infinite;
          animation: tester 10s linear infinite;
}
@media only screen and (max-width: 1460px) {
  .four-not-four-section .four-not-four-thumb .four-not-four-element-five {
    display: none;
  }
}
.four-not-four-section .four-not-four-thumb .four-not-four-element-six svg {
  width: 5%;
  display: block;
  position: absolute;
  top: 504px;
  left: 437px;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
  z-index: 2;
}
@media only screen and (max-width: 1460px) {
  .four-not-four-section .four-not-four-thumb .four-not-four-element-six {
    display: none;
  }
}
.four-not-four-section .four-not-four-content {
  padding-top: 30px;
}
.four-not-four-section .four-not-four-content .four-not-four-btn a {
  position: relative;
  padding-right: 80px;
}
.four-not-four-section .four-not-four-content .four-not-four-btn a::before {
  position: absolute;
  content: "";
  top: 30px;
  right: 40px;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
}
.four-not-four-section .four-not-four-content .four-not-four-btn a::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  display: block;
  height: 7px;
  pointer-events: none;
  position: absolute;
  margin-top: -1px;
  right: 40px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 7px;
}
#cool {
  fill: none;
}
textPath {
  font-size: 60px;
  font-weight: 700;
  fill: #ffffff;
}
@-webkit-keyframes scroll-down {
  0%, 100% {
    -webkit-transform: translateY(50%) rotate(-25deg);
            transform: translateY(50%) rotate(-25deg);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes scroll-down {
  0%, 100% {
    -webkit-transform: translateY(50%) rotate(-25deg);
            transform: translateY(50%) rotate(-25deg);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes scroll-up {
  0%, 100% {
    -webkit-transform: translateY(-50%) rotate(25deg);
            transform: translateY(-50%) rotate(25deg);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes scroll-up {
  0%, 100% {
    -webkit-transform: translateY(-50%) rotate(25deg);
            transform: translateY(-50%) rotate(25deg);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes scroll-rotate {
  0%, 100% {
    -webkit-transform: translateY(-50%) rotate(25deg);
            transform: translateY(-50%) rotate(25deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
}
@keyframes scroll-rotate {
  0%, 100% {
    -webkit-transform: translateY(-50%) rotate(25deg);
            transform: translateY(-50%) rotate(25deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
}
@-webkit-keyframes tester {
  0%, 100% {
    -webkit-transform: translate(145px, -115px);
            transform: translate(145px, -115px);
  }
  50% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes tester {
  0%, 100% {
    -webkit-transform: translate(145px, -115px);
            transform: translate(145px, -115px);
  }
  50% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes socket {
  0%, 100% {
    -webkit-transform: translate(-20px, 65px);
            transform: translate(-20px, 65px);
  }
  50% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes socket {
  0%, 100% {
    -webkit-transform: translate(-20px, 65px);
            transform: translate(-20px, 65px);
  }
  50% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/* ERROR PAGE CODE END */


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* payment-conformation */
.payment-area {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
}
.payment-area .checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  -webkit-box-shadow: inset 0px 0px 0px #723eeb;
          box-shadow: inset 0px 0px 0px #723eeb;
  -webkit-animation: fill 0.8s ease-in-out 0.8s forwards, scale 0.6s ease-in-out 1.6s both;
          animation: fill 0.8s ease-in-out 0.8s forwards, scale 0.6s ease-in-out 1.6s both;
  margin: 0 auto;
}
.payment-area .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #723eeb;
  fill: none;
  -webkit-animation: stroke 1.2s cubic-bezier(0.65, 0, 0.45, 1) forwards;
          animation: stroke 1.2s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.payment-area .checkmark__check {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 1.6s forwards;
          animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 1.6s forwards;
}
@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    -webkit-transform: none;
    transform: none;
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
}
@-webkit-keyframes fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 30px #723eeb;
    box-shadow: inset 0px 0px 0px 30px #723eeb;
  }
}
@keyframes fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 30px #723eeb;
    box-shadow: inset 0px 0px 0px 30px #723eeb;
  }
}

/* mathod */
.select2-container{
  width: 100% !important;
}
.select2-container--default .select2-selection--single{
  border-radius: 15px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  top: 8px !important;
  right: 10px !important;
}
.delete-recipient{
  padding: 2px 15px;
  color: #fff;
  border-radius: 999px;
}

.dash-payment-item {
  padding: 20px 30px;
  background: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 25px;
  border: 1px solid #2c2566;
}
.dash-payment-item .dash-payment-title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.dash-payment-item .dash-payment-title-area .dash-payment-badge {
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: #0a062d;
}
.dash-payment-item .dash-payment-title-area .title {
  margin: 0;
  padding-left: 20px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.dash-payment-item:not(:last-child) {
  margin-bottom: 25px;
}
.dash-payment-item .dash-payment-body {
  padding-top: 25px;
  display: none;
}
.dash-payment-item.active .dash-payment-body {
  display: block;
}
.dash-payment-item button.custom-button, .dash-payment-item input.custom-button[type=button], .dash-payment-item input.custom-button[type=reset], .dash-payment-item input.custom-button[type=submit] {
  min-width: 160px;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 400px) {
  .dash-payment-item {
    padding: 15px;
  }
}


/* kyc */
.dash-payment-item-wrapper .dash-payment-item{
    background-color: #ffffff;
    border: 1px solid var(--primary-color);
}
.dash-payment-item-wrapper .dash-payment-item .dash-payment-badge{
  color: #fff;
}

/* last */
.empty-data{
  color: #000000;
  opacity: 0.5;
}


/* rtl */

.rtl {
  direction: rtl;
}
.rtl .header-bottom-area .navbar-collapse .main-menu li:last-child {
  padding-right: 20px;
}

.rtl .features .card .thumb {
  margin-left: 13px;
  margin-right: 0px;
}
.rtl .swiper-wrapper {
  direction: ltr;
}
.rtl .la-arrow-right {
  display: contents;
}
.rtl .footer-section .footer-widget-heading h3::before {
  right: 0;
}
.rtl .subscribe-form button {
  left: 5px;
  right: auto;
  border-radius: 999px 0px 0px 999px;
}
.rtl .footer-section .subscribe-form input {
  border-radius: 0px 999px 999px 0px;
}
.rtl .info-card .card .icon i {
  margin-left: 20px;
  margin-right: 0px;
}
.rtl .footer-section .footer-social-icon a {
  margin-left: 15px;
  margin-right: 0px;
}
.rtl .show_hide_password input {
  padding-left: 45px;
  padding-right: 25px;
}
.rtl .form-group .icon {
  left: 22px;
  right: auto !important;
}
.rtl .custom-check-group label::before {
  margin-right: 0px;
  margin-left: 8px;
}
.rtl .sidebar {
  right: 0;
}
@media only screen and (max-width: 1199px) {
  .rtl .sidebar {
    right: -300px;
  }
}
@media only screen and (max-width: 1199px) {
  .rtl .sidebar.active {
    right: 0px;
  }
}
.rtl .body-wrapper {
  padding-right: 285px;
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .rtl .body-wrapper {
    padding-right: 15px;
  }
}
.rtl .body-wrapper.active {
  padding-right: 85px;
  padding-left: 10px;
}
.rtl .navbar-wrapper {
  margin-right: 250px;
  margin-left: 0px;
}
@media only screen and (max-width: 1199px) {
  .rtl .navbar-wrapper {
    margin-right: 0;
  }
}
.rtl .navbar-wrapper.active {
  margin-right: 85px;
}
@media only screen and (max-width: 1199px) {
  .rtl .navbar-wrapper.active {
    margin-right: 65px;
  }
}
.rtl .notification-wrapper {
  left: 0;
  right: auto;
}
.rtl .notification-wrapper .notification-list li .content {
  padding-right: 10px;
}
.rtl .dashboard-list-user-wrapper .dashboard-list-user-content {
  padding-right: 20px;
}
.rtl .preview-list-user-wrapper .preview-list-user-content {
  padding-right: 20px;
  padding-left: 0px;
}
@media only screen and (max-width: 575px) {
  .rtl .preview-list-user-wrapper .preview-list-user-content {
    padding-right: 8px;
  }
}
.rtl .sidebar-menu .menu-title {
  padding-right: 10px;
}
.rtl .f-dropdown > span::before {
  left: 16px;
  right: auto;
}
.rtl .f-dropdown > span::after {
  left: 18px;
  right: auto;
}
.rtl .f-dropdown ul li a img {
  margin-left: 15px;
  margin-right: 0px;
}
.rtl .input-group-text {
  border-radius: 15px 0px 0px 15px !important;
}
.rtl .payment-area .input-group input {
  border-radius: 0px 15px 15px 0px !important;
}
.rtl .dashboard-list-user-content .badge {
  margin-right: 6px;
  margin-left: 0px !important;
}
.rtl .card-form .input-group input {
  border-radius: 0px 15px 15px 0px !important;
}
.rtl .form-group .show-pass {
  left: 32px;
  right: auto;
}
.rtl .show_hide_password-2 input {
  padding-left: 45px;
  padding-right: 25px;
}
.rtl .show_hide_password-3 input {
  padding-left: 45px;
  padding-right: 25px;
}
.rtl .modal-header .btn-close {
  margin: 0;
}
.rtl .card-header-user-area .card-header-user-content {
  padding-right: 15px;
  padding-left: 0px;
}
.rtl .card-header:first-child {
  border-radius: 0px;
}
.rtl .custom-check-group input:checked + label::after {
  right: 7px;
}
.rtl .banner-join-btn{
  margin-right: 0 !important;
  margin-left: 15px;
}
.rtl .custom-select{
  border-radius: 15px 0px 0px 15px !important;
}
.rtl .from-cruncy input{
  border-radius: 0px 15px 15px 0px !important;
}
.rtl .custom-select img{
  margin-left: 10px !important;
  margin-right: 0 !important;
}
.rtl .custom-select .custom-select-inner::before{
  left: 9px !important;
  right: auto !important;
}
.rtl .custom-select .custom-select-inner::after{
  left: 12px;
  right: auto;
}
.rtl .app-btn{
  margin-right: 0px !important;
  margin-left: 10px !important;
}
.rtl .blog-sidebar-img{
   padding-left: 15px;
   margin-right: 0 !important;
}
.rtl .navbar-toggler{
  margin-left: 0 !important;
  margin-right: auto !important;
}
.rtl .dash-payment-item .dash-payment-title-area .title{
  padding-left: 0px;
  padding-right: 20px;
}
.rtl .chat-container .media.media-chat-reverse{
  margin-right: auto !important;
  margin-left: 0;
}

.rtl .custom-select-list .custom-option .custom-country{
   padding-right: 12px;
}
.rtl .footer-section .footer-widget ul li{
  float: right;
}

.rtl .fadeInDown button{
   left: 10px;
   right: auto !important;
}



/* coupon */
#couponcode .modal-body .modal-footer {
  border-top: none !important;
}
#couponcode .modal-body .modal-footer .btn {
  border-radius: 10px;
}
#couponcode .modal-header i {
  background-color: #723eeb;
  color: #fff;
  font-size: 20px;
  padding: 5px;
  border-radius: 6px;
}
.modal-header .close-btn{
  display: contents;
}
.exchange-charge {
  padding-top: 10px;
}
.exchange-charge .btn {
  padding: 6px 20px;
  font-size: 12px;
}
.remove-coupon-code{
  background-color: transparent;
  color: var(--primary-color);
}

.countries {
  overflow: hidden;
  background-color: #723EEB;
}
.countries .title {
  color: #fff;
}
.countries .container-c {
  width: 98%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
.countries .top-content h3 {
  color: #fff;
  font-size: 22px;
}
.countries .custom-currency {
  color: #000;
}
.countries .custom-select {
  background-color: #fff;
  border-radius: 8px !important;
}
.countries .custom-select-inner {
  padding: 8px 16px;
}
.countries .custom-select-wrapper {
  top: 96px;
}
@media only screen and (max-width: 568px) {
  .countries .text-content h3 {
    font-size: 25px !important;
 }
}
.countries .text-content h3, .countries .text-content h4 {
  color: #fff;
}
.countries .c-top h3 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.countries .card {
  border-radius: 10px;
  color: #723EEB;
  border: none !important;
  padding: 12px 10px;
  transition: 0.5s;
  cursor: pointer;
}
.countries .card .thumb {
  margin-right: 8px;
}
.countries .card .thumb img {
  width: 2rem;
  height: auto;
  display: flex;
  margin: auto;
}
.countries .card h3 {
  color: #723EEB;
  font-size: 12px;
  font-weight: 700;
}
.countries .card p {
  color: #000;
  font-size: 10px;
  margin-top: 10px;
  font-weight: 600;
}
/*-------------------------------------------------
    [ ## cookie block ]
*/
.cookie-main-wrapper {
  background-color: rgb(31, 41, 55);
  padding: 20px 30px;
  border-radius: 20px;
  position: fixed;
  bottom: -300px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  z-index: 999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .cookie-main-wrapper {
    display: block;
    width: 90%;
  }
}
.cookie-main-wrapper .cookie-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .cookie-main-wrapper .cookie-content {
    width: unset;
  }
}
@media only screen and (max-width: 575px) {
  .cookie-main-wrapper .cookie-content {
    width: 100%;
    display: block;
  }
}
.cookie-main-wrapper .cookie-content svg {
  width: 40px;
  height: auto;
  fill: rgb(125, 211, 252);
  margin-right: 15px;
}
@media only screen and (max-width: 575px) {
  .cookie-main-wrapper .cookie-content svg {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.cookie-main-wrapper .cookie-content p {
  width: calc(100% - 40px);
  color: rgb(255, 255, 255);
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.cookie-main-wrapper .cookie-content p a {
  text-underline-offset: 2px;
  text-decoration-style: dotted;
  text-decoration-line: underline;
}
@media only screen and (max-width: 575px) {
  .cookie-main-wrapper .cookie-content p {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .cookie-main-wrapper .cookie-btn-area {
    margin-top: 20px;
  }
}
.cookie-main-wrapper .cookie-btn-area button, .cookie-main-wrapper .cookie-btn-area input[type=button], .cookie-main-wrapper .cookie-btn-area input[type=reset], .cookie-main-wrapper .cookie-btn-area input[type=submit] {
  color: rgb(255, 255, 255);
  padding: 0.5rem 0.75rem;
  background-color: rgb(55, 65, 81);
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cookie-main-wrapper .cookie-btn-area button:hover, .cookie-main-wrapper .cookie-btn-area input[type=button]:hover, .cookie-main-wrapper .cookie-btn-area input[type=reset]:hover, .cookie-main-wrapper .cookie-btn-area input[type=submit]:hover {
  background-color: rgba(75, 85, 99, 0.8);
}
/*-------------------------------------------------
    [ ## cookie block end ]
*/

/* coupon-code */
.coupon-code-item .coupon-code-area{
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px #f3f3f3;
}
@media (max-width: 600px) {
  .coupon-code-item .coupon-code-area{
    padding: 10px;
  }
}
.transaction-table-container {
  overflow-x: auto; /* Allows horizontal scrolling if needed */
}

.transaction-table {
  width: 100%; /* Ensures the table takes the full width of its container */
  border-collapse: collapse; /* Merges borders for a cleaner look */
  margin-bottom: 20px; /* Space between the table and other elements below */
}

.transaction-table th,
.transaction-table td {
  border: 1px solid #ddd; 
  padding: 8px; 
  text-align: left;
}

.transaction-table th {
  background-color: #F2F2F2; 
}

.transaction-table tr:nth-child(even) {
  background-color: #f9f9f9; 
}

.transaction-table tr:hover {
  background-color: #f1f1f1; 
}

/* Responsive design: Adjust styles for smaller screens */
@media (max-width: 600px) {
  .transaction-table {
    font-size: 12px; 
  }

  .transaction-table-container {
    overflow-x: scroll;
  }

  .transaction-table th,
  .transaction-table td {
    padding: 6px; 
  }
}
.transaction-table .coupon-name{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.transaction-table .coupon-name i{
  background-color: #7367f0;
  color: #ffffff;
  padding: 6px;
  border-radius: 5px;
  margin-left: 10px;
}