/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #0066fc;
  --theme-color2: #6f5cee;
  --title-color: #201d1d;
  --body-color: #737373;
  --smoke-color: #f5f5f5;
  --light-color: #9b9ca0;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --gray-color: #bdbdbd;
  --success-color: #73DC96;
  --error-color: #dc3545;
  --red-color: #FB6060;
  --border-color: #e5e5e5;
  --title-font: "Barlow", sans-serif;
  --body-font: "Barlow", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --section-space: 100px;
  --section-space-mobile: 70px;
  --section-title-space: 65px;
  --ripple-ani-duration: 5s;
}

/*------------------- 1.4. Typography -------------------*/
html,
body {
  scroll-behavior: smooth !important;
}

html::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

html::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

body {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 30px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--title-color);
}

a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  margin: 0 0 24px 0;
  color: var(--body-color);
  line-height: 1.7;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 15px 0;
  display: block;
}

.h1,
h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 600;
}

.h2,
h2 {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 600;
}

.h3,
h3 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
}

.h4,
h4 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}

.h5,
h5 {
  font-size: 20px;
  font-weight: 600;
}

.h6,
h6 {
  font-size: 18px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  body {
    font-size: 18px;
  }
  .h1,
  h1 {
    font-size: 30px;
  }
  .h2,
  h2 {
    font-size: 26px;
  }
  .h3,
  h3 {
    font-size: 22px;
  }
  .h4,
  h4 {
    font-size: 20px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
}

/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
.ot-container {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

/*------------------- 2.2. Grid -------------------*/
.slick-track > [class*=col] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
  margin-top: var(--bs-gutter-y);
}

@media only screen and (min-width: 1300px) {
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
  .gx-45 {
    --bs-gutter-x: 45px;
  }
}

.g-10,
.gx-10 {
  --bs-gutter-x: 10px;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 10px;
}

.g-40,
.gy-40 {
  --bs-gutter-y: 40px;
}

/*------------------- 2.3. Input -------------------*/
select,
.form-select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 13px center;
  background-repeat: no-repeat;
  background-size: 35px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input,
select,
.form-select,
.form-control {
  height: 60px;
  padding: 0 16px;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  border: 1px solid var(--border-color);
  width: 100%;
  box-shadow: none;
}

input::-moz-placeholder,
select::-moz-placeholder,
.form-select::-moz-placeholder,
.form-control::-moz-placeholder {
  color: var(--light-color);
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: var(--light-color);
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: var(--light-color);
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, .form-select::-webkit-input-placeholder, .form-control::-webkit-input-placeholder {
  color: var(--light-color);
}

input::-moz-placeholder, select::-moz-placeholder, .form-select::-moz-placeholder, .form-control::-moz-placeholder {
  color: var(--light-color);
}

input:-ms-input-placeholder, select:-ms-input-placeholder, .form-select:-ms-input-placeholder, .form-control:-ms-input-placeholder {
  color: var(--light-color);
}

input::-ms-input-placeholder, select::-ms-input-placeholder, .form-select::-ms-input-placeholder, .form-control::-ms-input-placeholder {
  color: var(--light-color);
}

input::placeholder,
select::placeholder,
.form-select::placeholder,
.form-control::placeholder {
  color: var(--light-color);
}

input:focus,
select:focus,
.form-select:focus,
.form-control:focus {
  outline: 0;
  border-color: var(--theme-color);
  box-shadow: none;
}

select,
.form-select {
  padding-top: 0;
  padding-bottom: 0;
}

textarea.form-control {
  min-height: 140px;
  padding: 16px;
}

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

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

textarea {
  min-height: 150px;
  padding-top: 12px;
  padding-bottom: 17px;
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="checkbox"]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
  font-size: 16px;
}

input[type="checkbox"] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 4px;
  background-color: var(--white-color);
  border: 2px solid var(--border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  border-radius: 3px;
}

input[type="radio"],
.form-range {
  border: none;
  box-shadow: none;
  height: 10px;
}

input[type="radio"]::-webkit-slider-runnable-track,
.form-range::-webkit-slider-runnable-track {
  height: 10px;
  -webkit-appearance: none;
  background-color: rgba(23, 179, 245, 0.09);
  margin-top: -1px;
}

input[type="radio"]::-webkit-slider-thumb,
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  border-radius: 999px;
  background: var(--theme-color);
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="radio"] ~ label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

input[type="radio"] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -1px;
  width: 15px;
  height: 15px;
  font-size: 0.45em;
  line-height: 2em;
  padding-left: 0.5px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.6em;
  margin-top: -0.3em;
  display: block;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i {
  position: absolute;
  right: calc((var(--bs-gutter-x) / 2) + 20px);
  top: 17px;
  font-size: 14px;
  color: #a0abb4;
  display: inline-block;
  max-width: 18px;
}

input.is-invalid,
.wot-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}

input.is-invalid:focus,
.wot-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}

.form-messages.mb-0 * {
  margin-bottom: 0;
}

.form-messages.success {
  color: var(--success-color);
  display: block;
}

.form-messages.error {
  color: var(--error-color);
  display: block;
}

/* Small devices */
@media (max-width: 767px) {
  select {
    background-size: 16px 12px;
  }
  select,
  .form-select,
  .form-control {
    padding: 0 15px;
  }
  textarea.form-control {
    padding: 15px 15px;
  }
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999999;
  background-color: var(--white-color);
}

.preloader .ot-btn {
  padding: 12px 20px;
  border-radius: 0;
  font-size: 14px;
  min-width: auto;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 15px auto;
}

.loader {
  display: block;
  height: 50px;
  width: 50px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid transparent;
  border-top-color: var(--theme-color);
  box-shadow: 0 0 5px skyblue;
  border-radius: 50%;
  -webkit-animation: pre_spin 1.5s ease infinite;
  animation: pre_spin 1.5s ease infinite;
}

.loader:before {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: var(--theme-color);
  box-shadow: 0 0 5px skyblue;
  -webkit-animation: pre_spin_x 1s linear infinite;
  animation: pre_spin_x 1s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: var(--theme-color);
  box-shadow: 0 0 5px skyblue;
  -webkit-animation: pre_spin 1.5s linear infinite;
  animation: pre_spin 1.5s linear infinite;
}

@-webkit-keyframes pre_spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes pre_spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-webkit-keyframes pre_spin_x {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
  }
}

@keyframes pre_spin_x {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
  }
}

/*------------------- 3.2. Buttons -------------------*/
.ot-btn {
  font-family: var(--body-font);
  border: 1px solid;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 600;
  background-color: transparent;
  color: var(--theme-color);
  padding: 15px 25px;
  line-height: 1;
  min-width: 140px;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  z-index: 2;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}

.ot-btn:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 300%;
  background-color: var(--theme-color);
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
  z-index: -1;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}

.ot-btn:hover, .ot-btn.active {
  color: var(--white-color);
  border-color: var(--theme-color);
}

.ot-btn:hover::before, .ot-btn.active::before {
  height: 300%;
}

.ot-btn.style2 {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-weight: 400;
}

.ot-btn.style2:before {
  background-color: var(--title-color);
}

.ot-btn.style2:hover, .ot-btn.style2.active {
  color: var(--white-color);
  border-color: var(--title-color);
}

.ot-btn.style3 {
  background-color: var(--theme-color2);
  color: var(--white-color);
  font-weight: 400;
}

.ot-btn.style3:before {
  background-color: var(--title-color);
}

.ot-btn.style3:hover, .ot-btn.style3.active {
  color: var(--white-color);
  border-color: var(--title-color);
}

.icon-btn {
  display: inline-block;
  width: var(--btn-size, 80px);
  height: var(--btn-size, 80px);
  line-height: var(--btn-size, 80px);
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 24px;
}

.icon-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.link-btn {
  font-weight: 600;
  display: inline-block;
  position: relative;
  font-size: 18px;
  padding-bottom: 2px;
  margin-bottom: -2px;
  padding-left: 0;
  padding-right: 0;
  color: var(--body-color);
  font-family: var(--body-font);
  border: none;
  background-color: transparent;
}

.link-btn i {
  margin-left: 2px;
}

.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--white-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.link-btn:hover, .link-btn.active {
  color: var(--theme-color);
}

.link-btn:hover::before, .link-btn.active::before {
  background-color: var(--theme-color);
  width: 100%;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}

.scroll-btn i {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.scroll-btn:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: white;
  border-radius: inherit;
  z-index: 1;
}

.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--title-color);
  color: var(--white-color);
}

.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .scroll-btn {
    --btn-size: 40px;
    --extra-shape: -4px;
    right: 15px;
    bottom: 50px;
  }
  .scroll-btn.show {
    bottom: 15px;
  }
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 96;
}

.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

/* Small devices */
@media (max-width: 767px) {
  .play-btn {
    --icon-size: 60px;
  }
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}

/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: var(--section-title-space);
  margin-top: -0.26em;
  font-size: 40px;
  font-weight: 600;
}

.subtitle {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
  border-bottom: 1px solid var(--theme-color);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -0.5em;
  margin-bottom: 30px;
}

.title-area {
  margin-bottom: var(--section-title-space);
}

.title-area .sec-title {
  margin-bottom: 10px;
}

.title-area .shadow-title {
  margin-bottom: -0.4em;
}

.page-title {
  font-size: 40px;
  font-weight: 600;
  position: relative;
  text-align: center;
  margin-top: -0.18em;
  padding-bottom: 16px;
  margin-bottom: 80px;
}

.page-title:after {
  content: '';
  height: 1px;
  width: 130px;
  background-color: var(--theme-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -65px;
}

.page-top {
  margin-bottom: 80px;
}

.page-top .page-title {
  margin-bottom: 12px;
}

.page-top .page-text {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Medium devices */
@media (max-width: 991px) {
  .sec-title,
  .title-area {
    --section-title-space: 40px;
  }
  .page-top {
    margin-bottom: 60px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .sec-title {
    font-size: 36px;
  }
  .page-title {
    font-size: 36px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .sec-title {
    font-size: 32px;
  }
  .page-title {
    font-size: 32px;
  }
}

/*------------------- 3.4. Common -------------------*/
.ot-social a {
  display: inline-block;
  width: var(--icon-size, 40px);
  height: var(--icon-size, 40px);
  line-height: var(--icon-size, 42px);
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
  border-radius: 50%;
}

.ot-social a:last-child {
  margin-right: 0;
}

.ot-social a:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.ot-social.style2 a {
  border-radius: 50%;
}

.slider-shadow .slick-list {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: -30px;
  margin-top: -30px;
}

.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}

.shape-mockup {
  position: absolute;
  z-index: -1;
}

.shape-mockup.z-index3 {
  z-index: 3;
}

/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

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

.fs-md {
  font-size: 18px;
}

.fs-sm {
  font-size: 16px;
}

.fs-xs {
  font-size: 14px;
}

.fs-80 {
  font-size: 80px;
  line-height: 1.2;
}

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

/* Extra large devices */
@media (max-width: 1500px) {
  .fs-80 {
    font-size: 70px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .fs-80 {
    font-size: 60px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .fs-80 {
    font-size: 50px;
    line-height: 1.3;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .fs-80 {
    font-size: 40px;
  }
  .fs-80.mb-30 {
    margin-bottom: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .fs-80 {
    font-size: 30px;
  }
}

/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-theme2 {
  background-color: var(--theme-color2) !important;
}

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

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

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

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

.bg-smoke2 {
  background-color: #F3F7FC;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg-auto {
  background-size: auto auto;
}

.bg-left-center {
  background-position: left center;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-theme2 {
  color: var(--theme-color2) !important;
}

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

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

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

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

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

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

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

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

.text-inherit {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
}

[data-overlay] [class^="container"],
[data-overlay] [class*="col-"] {
  z-index: 4;
  position: relative;
}

[data-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay="theme"]:before {
  background-color: var(--theme-color);
}

[data-overlay="title"]:before {
  background-color: var(--title-color);
}

[data-overlay="white"]:before {
  background-color: var(--white-color);
}

[data-overlay="black"]:before {
  background-color: var(--black-color);
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.pulse {
  -webkit-animation: pulse 7s linear infinite;
          animation: pulse 7s linear infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
          animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.moving-reverse {
  -webkit-animation: moving-reverse 8s linear infinite;
          animation: moving-reverse 8s linear infinite;
}

@-webkit-keyframes moving-reverse {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes moving-reverse {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Header  -------------------*/
.top-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  background-color: var(--white-color);
  z-index: 20;
}

.top-bar-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 36px;
  border-bottom: 1px solid var(--border-color);
}

.top-bar .notification {
  margin: 0 16px 0 auto;
}

.dashboard-title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
}

.icon-dashboard {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  font-size: 24px;
  color: var(--title-color);
  background-color: var(--smoke-color);
  border: none;
  border-radius: 99px;
  text-align: center;
}

.dropdown-toggle::after {
  content: "\f107";
  border: none;
  font-family: var(--icon-font);
  vertical-align: middle;
  font-weight: 400;
  margin-left: 6px;
}

.dropdown-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  top: calc(100% + 9px) !important;
  right: 0px !important;
  left: unset !important;
  -webkit-transform: translateX(0) !important;
      -ms-transform: translateX(0) !important;
          transform: translateX(0) !important;
  padding: 8px 0 !important;
  text-align: left;
  border-color: var(--border-color);
}

.dropdown-menu li {
  padding-right: 0;
  margin-right: 0;
  margin-bottom: 8px;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu li:after {
  display: none;
}

.dropdown-menu li a {
  display: block;
  padding: 0px 30px 0px 20px;
}

.dropdown-menu a {
  color: var(--body-color);
}

.dropdown-menu a:hover {
  color: var(--theme-color);
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  right: 15px;
  top: -7px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.dropdown-menu .icon-btn {
  background-color: var(--smoke-color);
  color: var(--title-color);
  --btn-size: 52px;
  font-size: 18px;
  margin-right: 4px;
}

.dropdown-menu[style] {
  right: 0 !important;
}

.profile-area .dropdown-toggle:after {
  display: none;
}

.profile-area .icon-dashboard {
  width: auto;
  border: none;
  background-color: var(--smoke-color);
  padding: 8px 20px 8px 8px;
  line-height: 1;
  font-size: 18px;
}

.profile-area .profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.profile-area .profile .avater {
  border-radius: 99px;
  overflow: hidden;
  width: 48px;
  height: 48px;
}

/* Sidemenu ----------------------------------------------*/
.side-menu {
  padding: 40px 0 40px 0;
  margin: 0;
}

.side-menu li {
  list-style-type: none;
  margin-bottom: 30px;
}

.side-menu li a {
  font-size: 18px;
  color: var(--body-color);
  padding: 0 24px;
}

.side-menu li a i {
  background-color: var(--smoke-color);
  color: inherit;
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
}

.side-menu li a .badge {
  background-color: #FB6060;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  margin-left: 16px;
  padding: .25em .5em;
}

.side-menu li a:hover, .side-menu li a.active {
  color: var(--theme-color);
}

.side-menu li a:hover i, .side-menu li a.active i {
  background-color: #E4EFFF;
}

.side-menu.bottom-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.side-menu.bottom-menu li {
  margin: 0;
}

@media (max-height: 520px) {
  .side-menu.bottom-menu {
    position: static;
  }
}

.app-sidebar {
  position: relative;
  min-height: 100vh;
}

.toggle-logo {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  display: none;
}

.header-dashboard {
  position: fixed;
  top: 0;
  left: 0;
  width: 18%;
  min-height: 100vh;
  border-right: 1px solid var(--border-color);
  background-color: var(--white-color);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: 99;
}

.header-dashboard .header-logo {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  height: 97px;
}

.header-dashboard .header-logo img {
  width: auto;
}

/* Large devices */
@media (max-width: 1199px) {
  .desktop-logo {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    display: none;
  }
  .toggle-logo {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
    display: block;
  }
  .header-dashboard {
    width: 100px;
  }
  .top-bar {
    width: calc(100% - 100px);
  }
  .side-menu li {
    margin-bottom: 20px;
  }
  .side-menu li a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .side-menu li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 0;
  }
  .side-menu .side-menu__label {
    display: none;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .top-bar-inner {
    padding: 16px 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .dashboard-title {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .top-bar {
    width: 100%;
  }
  .top-bar-inner {
    padding: 4.5px 15px;
  }
  .profile-area .icon-dashboard {
    padding: 8px 8px 8px 8px;
  }
  .profile-area .profile .name {
    display: none;
  }
  .profile-area .profile > i {
    display: none;
  }
  .header-dashboard {
    left: -100px;
    width: 74px;
  }
  .header-dashboard .header-logo {
    height: 74px;
  }
  .header-dashboard.show {
    left: 0;
  }
  .side-menu li a {
    padding: 0 8px;
  }
  .toggle-logo {
    max-width: 50px;
  }
}

.toggle-dashboard {
  font-size: 28px;
  color: var(--title-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.toggle-dashboard:hover {
  color: var(--theme-color);
}

.toggle-dashboard.show {
  margin-left: 75px;
}

@media (min-width: 576px) {
  .toggle-dashboard {
    display: none;
  }
}

/*------------------- 4.2. Dashboard  -------------------*/
body {
  background-color: var(--smoke-color);
}

.dashboard-area .icon-btn {
  background-color: var(--smoke-color);
  color: var(--title-color);
}

.dashboard-area .sec-title {
  font-weight: 500;
  margin: -0.34em 0 20px 0;
}

.dashboard-inner {
  margin-left: 18%;
  margin-top: 97px;
}

.wrap-style1 {
  padding: 36px;
}

/* Large devices */
@media (max-width: 1199px) {
  .dashboard-inner {
    margin-left: 100px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .wrap-style1 {
    padding: 20px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .dashboard-inner {
    margin-top: 74px;
    margin-left: 0;
  }
  .wrap-style1 {
    padding: 15px;
  }
}

/* Box Design -----------------------*/
.dashboard-box {
  background-color: var(--white-color);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.dashboard-box__title {
  font-size: 24px;
  font-weight: 500;
  margin-top: -0.34em;
  margin-bottom: 20px;
  text-align: left;
}

.dashboard-box__label {
  font-size: 20px;
  margin-top: -0.3em;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--body-color);
  text-align: left;
}

.dashboard-box .avater-big {
  margin-bottom: 15px;
}

.dashboard-box .avater-big img {
  border-radius: 999px;
}

.dashboard-box a {
  color: var(--body-color);
}

.dashboard-box a:hover {
  color: var(--theme-color);
}

.dashboard-box p {
  font-size: 16px;
  max-width: 215px;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-box__name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--title-color);
}

.dashboard-box__rating {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 6px;
}

.dashboard-box__duration {
  display: inline-block;
  color: #73DC96;
  background-color: #E9FFF0;
  padding: 0 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.dashboard-box__duration.red {
  color: var(--red-color);
  background-color: #FFEEEE;
}

.dashboard-box__review {
  color: var(--yellow-color);
  font-size: 18px;
  margin: 16px 0 10px 0;
}

.dashboard-box__review i {
  margin-right: 5px;
}

.dashboard-box__review i:last-child {
  margin-right: 0;
}

.dashboard-box .ride-form {
  padding: 0;
}

.dashboard-box .ride-form .form-label {
  font-size: 16px;
  color: var(--title-color);
}

.dashboard-box .input-vehicle .form-check label {
  font-size: 14px;
}

.dashboard-box .big-icon {
  color: #73DC96;
  font-size: 60px;
  margin-bottom: 15px;
}

.dashboard-box .ot-btn {
  width: 100%;
  border-radius: 8px;
  background-color: var(--theme-color);
  color: var(--white-color);
}

.dashboard-box .ot-btn:before {
  display: none;
}

.dashboard-box .ot-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
  border-color: var(--title-color);
}

.ot-btn.bg-green {
  background-color: #73DC96;
}

.ot-btn.bg-green:hover {
  background-color: var(--title-color);
}

.dashboard-search {
  position: relative;
}

.dashboard-search .form-control {
  padding-left: 46px;
  border: none;
  width: 360px;
  max-width: 100%;
}

.dashboard-search i {
  font-size: 16px;
  position: absolute;
  top: 23px;
  left: 20px;
}

.payout-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.payout-list:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

#chartGender .apexcharts-legend {
  gap: 10px 30px;
}

/* Extra small devices */
@media (max-width: 375px) {
  .profile {
    font-size: 16px;
  }
  .payout-list .payment {
    font-size: 16px;
  }
}

/*------------------- 4.3. Vehicle  -------------------*/
.vehicle-card {
  background-color: var(--white-color);
  border-radius: 16px;
}

.vehicle-card__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 260px;
}

.vehicle-card__content {
  padding: 0 24px 24px 24px;
  position: relative;
}

.vehicle-card__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
}

.vehicle-card__meta {
  margin-bottom: -0.45em;
}

.vehicle-card__btn {
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -16px;
  --btn-size: 32px;
  font-size: 14px;
}

.vehicle-card.add-item {
  height: 348px;
  padding: 24px;
}

.vehicle-card__border {
  border: 2px dashed var(--border-color);
  border-radius: inherit;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vehicle-card__plus {
  width: 64px;
  height: 64px;
  line-height: 61px;
  border: 1px solid var(--border-color);
  color: var(--title-color);
  font-size: 24px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

.vehicle-card__plus:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
}

/*------------------- 4.4. Table  -------------------*/
.table-area {
  background-color: var(--white-color);
  border-radius: 16px;
}

.table-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: -0.34em;
}

.table-wrap {
  padding: 24px;
}

.table-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}

.table-top .form-select {
  background-color: var(--smoke-color);
  border: none;
  border-radius: 99px;
  color: var(--title-color);
  height: 40px;
  -webkit-align-self: unset;
      -ms-flex-item-align: unset;
          align-self: unset;
  max-width: 150px;
}

.dashboard-table {
  border: none;
  margin: 0 0 -20px 0;
}

.dashboard-table th, .dashboard-table td {
  border: none;
}

.dashboard-table th img, .dashboard-table td img {
  border-radius: 99px;
}

.dashboard-table th {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--body-color);
}

.dashboard-table td {
  padding: 15px 0;
  font-size: 16px;
  color: var(--title-color);
}

.dashboard-table td a {
  color: inherit;
}

.dashboard-table td a:hover {
  color: var(--theme-color);
}

.dashboard-table td.trip-id {
  width: 140px;
}

.dashboard-table td.amount {
  width: 140px;
}

.dashboard-table td .avater {
  margin-right: 4px;
}

.dashboard-table td .avater img {
  border: 99px;
}

.dashboard-table td .ot-btn {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  height: 34px;
  width: 100%;
  padding: 8px 25px;
}

.dashboard-table td .ot-btn::before {
  display: none;
}

.dashboard-table td .ot-btn:hover {
  background-color: var(--title-color);
  border-color: var(--title-color);
  color: var(--white-color);
}

td.status {
  text-transform: capitalize;
}

td.status.active, td.status.completed {
  color: #73DC96;
}

td.status.ongoing {
  color: var(--theme-color);
}

td.status.cancelled {
  color: #FB6060;
}

.table-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 32px;
  position: relative;
  margin-top: -0.35em;
}

.table-tab .tab-btn {
  padding: 0 0 2px 0;
  font-size: 20px;
  font-weight: 500;
  background-color: transparent;
  border: none;
  color: var(--title-color);
  opacity: 0.4;
}

.table-tab .tab-btn.active {
  opacity: 1;
}

.table-tab .indicator {
  position: absolute;
  top: 100% !important;
  left: 0;
  height: 2px !important;
  width: 100%;
  background-color: var(--theme-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

/* Medium devices */
@media (max-width: 991px) {
  .table-area {
    overflow-x: scroll;
  }
  .table-wrap {
    min-width: 820px;
  }
  .dashboard-table .date {
    width: 120px;
  }
  .dashboard-table .fare {
    width: 70px;
  }
  .dashboard-table td.trip-id {
    width: 90px;
  }
}

/* Pagination ---------------------*/
.ot-pagination ul {
  margin: 0;
  padding: 0;
}

.ot-pagination li {
  list-style-type: none;
  margin: 0 3px;
  display: inline-block;
}

.ot-pagination a {
  display: inline-block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  background-color: #E4EFFF;
  color: var(--theme-color);
  border-radius: 99px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.ot-pagination a:hover, .ot-pagination a.active {
  background-color: var(--theme-color);
  color: var(--white-color);
}

/*------------------- 4.5. Chart  -------------------*/
.chart-wrap {
  background-color: var(--white-color);
  padding: 24px;
  border-radius: 16px;
}

.chart-wrap #chart1,
.chart-wrap #chart2,
.chart-wrap #tripChart {
  line-height: 1;
  margin: 0 0 -.9em -0.7em;
}

.chart-title {
  font-size: 24px;
  font-weight: 500;
  margin-top: -0.34em;
  margin-bottom: 10px;
}

/*------------------- 4.6. Message  -------------------*/
.inner-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.inner-area .left-area {
  background-color: var(--white-color);
  width: 22%;
  min-width: 430px;
  min-height: 90vh;
}

.inner-area .right-area {
  width: 100%;
  border-left: 1px solid var(--border-color);
}

.inner-area .title-wrap {
  height: 112px;
  padding: 28.5px 36px;
  border-bottom: 1px solid var(--border-color);
}

.inner-area .sec-title {
  margin: 0;
}

.message-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 12px 36px;
}

.message-list-wrap {
  padding: 12px 0;
}

.message-list .avater img {
  border-radius: 99px;
}

.message-list .name {
  margin-bottom: 0;
  font-size: 20px;
}

.message-list .message {
  margin-bottom: 0;
  font-size: 16px;
}

.message-list .time-count {
  margin-left: auto;
}

.message-list .time {
  font-size: 16px;
  display: block;
}

.message-list .count {
  background-color: var(--red-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  border-radius: 99px;
  padding: 0.25em 0.5em;
  float: right;
  min-height: 20px;
}

.message-list .height-fix {
  float: right;
  min-height: 20px;
  width: 1px;
}

.message-list:hover, .message-list.open {
  background-color: var(--smoke-color);
}

.right-area-header {
  background-color: var(--white-color);
  border-bottom: 1px solid var(--border-color);
  padding: 23.5px 36px;
  height: 112px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.right-area-header .call {
  margin-left: auto;
}

.message-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.message-profile .name {
  margin-bottom: 0;
  font-size: 24px;
}

.message-profile .status {
  margin-bottom: 0;
  line-height: 1.4;
}

.message-profile .avater {
  position: relative;
}

.message-profile .avater img {
  border-radius: 99px;
}

.status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 16px;
  width: 16px;
  background-color: var(--yellow-color);
  border-radius: 99px;
}

.status-indicator.active {
  background-color: var(--success-color);
}

.message-box {
  padding: 24px 36px;
  overflow-y: auto;
  max-height: 630px;
}

.message-box:-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.message-box:-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

.message-box:-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

.message-received,
.message-sent {
  max-width: 500px;
}

.message-text {
  padding: 18px 24px;
  display: inline-block;
  border-radius: 16px;
  margin: 12px 0;
}

.message-received .message-text {
  background-color: var(--white-color);
}

.message-received .message-text:first-of-type {
  border-radius: 0 16px 16px 16px;
}

.message-sent {
  margin-left: auto;
}

.message-sent .message-text {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.message-sent .message-text:first-of-type {
  border-radius: 16px 16px 0 16px;
}

.message-send-box {
  position: relative;
  margin: 36px;
}

.message-send-box .attach-file {
  font-size: 20px;
  position: absolute;
  left: 28px;
  top: 26px;
  color: var(--body-color);
}

.message-send-box .attach-file:hover {
  color: var(--theme-color);
}

.message-send-box .form-control {
  height: 80px;
  font-size: 20px;
  padding: 0 72px 0 62px;
  border-radius: 99px;
  background-color: var(--white-color);
  border: none;
}

.message-send-box .send-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #E4EFFF;
  color: var(--theme-color);
}

.message-send-box .send-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .inner-area .left-area {
    width: 99px;
    min-width: 99px;
  }
  .inner-area .title-wrap {
    padding: 24px 20px;
    text-align: center;
    height: 99px;
  }
  .message-list {
    padding: 12px 24px;
  }
  .message-list .name-message {
    display: none;
  }
  .message-list .time-count {
    display: none;
  }
  .right-area-header {
    padding: 18px 20px;
    height: 99px;
  }
  .message-box {
    padding: 8px 20px;
  }
  .message-send-box {
    margin: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .message-profile {
    gap: 6px;
  }
  .message-profile .name {
    font-size: 16px;
    font-weight: bold;
  }
  .message-profile .avater {
    position: relative;
    max-width: 40px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .inner-area .left-area {
    width: 72px;
    min-width: 72px;
  }
  .inner-area .title-wrap {
    padding: 18px 20px;
    height: 72px;
  }
  .right-area-header {
    padding: 6px 6px;
    height: 72px;
    gap: 6px;
  }
  .right-area-header .icon-dashboard {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .message-list {
    padding: 12px 12px;
  }
}

/*------------------- 4.7. Settings  -------------------*/
.settings-list {
  display: block;
  padding: 24px 36px;
  color: var(--title-color);
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.settings-list .icon-dashboard {
  margin-right: 12px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.settings-list.active, .settings-list:hover {
  background-color: var(--smoke-color);
}

.settings-list.active .icon-dashboard, .settings-list:hover .icon-dashboard {
  background-color: var(--white-color);
}

.settings-box {
  background-color: var(--white-color);
  border-radius: 16px;
  margin: 36px;
  padding: 36px;
}

.settings-box .avater {
  text-align: center;
  max-width: 240px;
  margin: 15px auto 40px auto;
  position: relative;
}

.settings-box .avater img {
  border-radius: 50%;
}

.settings-box .avater .edit-btn {
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
}

.edit-form label {
  font-size: 20px;
  font-weight: 500;
  color: var(--title-color);
}

.edit-form input,
.edit-form .form-control {
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  padding-left: 30px;
}

.edit-form .ot-btn {
  width: 100%;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 8px;
}

.edit-form .ot-btn:before {
  display: none;
}

.edit-form .ot-btn:hover {
  background-color: var(--title-color);
  border-color: var(--title-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .settings-list {
    padding: 24px 4px;
    text-align: center;
  }
  .settings-list .icon-dashboard {
    margin-right: 0;
  }
  .settings-list .text {
    display: none;
  }
  .settings-box {
    margin: 20px;
    padding: 20px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .edit-form input,
  .edit-form .form-control {
    padding-left: 20px;
  }
  .settings-list {
    padding: 16px 4px;
  }
  .settings-list .icon-dashboard {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}

/*------------------- 4.8. Trip  -------------------*/
.trip-map {
  line-height: 0;
  margin-top: 15px;
}

.trip-map iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.process-list {
  text-align: center;
  max-width: 160px;
  margin: 0 auto;
}

.process-list-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.process-list-wrap:before, .process-list-wrap:after {
  content: '';
  height: 2px;
  width: calc(100% - 22%);
  position: absolute;
  top: 15px;
  left: 11%;
  background-color: var(--theme-color);
  z-index: -1;
}

.process-list-wrap:after {
  background-color: var(--border-color);
  z-index: -2;
}

.process-list-wrap:last-child:has(.incomplete)::before {
  width: calc(100% - 48%);
}

.process-list_dot {
  height: 32px;
  min-width: 32px;
  width: 32px;
  background-color: var(--theme-color);
  border-radius: 99px;
  position: relative;
  margin: 0 auto 20px auto;
}

.process-list_dot:before {
  content: '';
  height: 30px;
  width: 30px;
  border: 10px solid var(--white-color);
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: inherit;
}

.process-list_distance {
  margin-bottom: 7px;
  display: block;
}

.process-list_text {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 18px;
}

.process-list.incomplete .process-list_dot {
  background-color: var(--border-color);
}

/* Small devices */
@media (max-width: 767px) {
  .process-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    text-align: left;
    margin-bottom: 24px;
  }
  .process-list-wrap {
    display: block;
  }
  .process-list-wrap:before, .process-list-wrap:after {
    height: calc(100% - 30px);
    width: 2px;
    left: 15px;
    top: 15px;
  }
  .process-list-wrap:last-child:has(.incomplete)::before {
    width: 2px;
    height: calc(100% - 42%);
  }
  .process-list_dot {
    margin: 0 20px 0 0;
  }
  .process-list_distance {
    margin-bottom: 3px;
  }
}

.distance-box {
  font-size: 16px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  margin: 24px 0;
}

.distance-box .location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.distance-box .location i {
  font-size: 24px;
  margin-top: 10px;
}

.distance-box .pick {
  position: relative;
}

.distance-box .pick i {
  color: var(--theme-color);
}

.distance-box .pick:before {
  content: '';
  height: 86px;
  border-left: 2px dashed var(--gray-color);
  position: absolute;
  top: 34px;
  left: 7.5px;
}

.distance-box .drop i {
  color: var(--red-color);
}

.distance-box .distance {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  margin: 12px 0 10px 32px;
  color: var(--title-color);
  font-weight: 500;
  position: relative;
}

.distance-box .distance:before {
  content: '';
  height: 1px;
  width: 100%;
  background-color: var(--border-color);
  margin-right: 16px;
}

.distance-box.style2 {
  border: none;
  padding: 0;
  margin: 24px 0;
}

.notrated-driver {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.notrated-driver:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.notrated-driver .avater img {
  border-radius: 99px;
}

.notrated-driver .name {
  margin-bottom: 1px;
}

.notrated-driver .review a {
  color: var(--yellow-color);
  font-size: 16px;
}

/*------------------- 4.9. Form  -------------------*/
.sign-in-form {
  --bs-gutter-x: 16px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: 0px 0px 128px 0px #00000014;
  border-radius: 16px;
  text-align: center;
  max-width: 540px;
  width: 100%;
  padding: 24px;
  margin-left: auto;
  margin-right: auto;
}

.sign-in-form .form-logo {
  margin-bottom: 15px;
}

.sign-in-form .form-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
}

.sign-in-form .form-text {
  font-size: 18px;
  margin-bottom: 32px;
}

.sign-in-form input,
.sign-in-form label {
  text-align: left;
}

.sign-in-form .ot-btn {
  width: 100%;
  border-radius: 8px;
  background-color: var(--theme-color);
  color: var(--white-color);
}

.sign-in-form .ot-btn:before {
  display: none;
}

.sign-in-form .ot-btn:hover {
  background-color: var(--title-color);
  border-color: var(--title-color);
}

.sign-up-url {
  font-size: 18px;
  text-align: left;
  margin: -8px 0 20px 0;
}

.ride-on-web-sec {
  position: relative;
}

.ride-on-web-sec .bg-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 0px;
  -webkit-filter: sepia(0.4) grayscale(0.2);
          filter: sepia(0.4) grayscale(0.2);
}

.ride-on-web-sec .bg-map iframe {
  width: 100%;
  height: 100%;
}

.ride-map {
  line-height: 0px;
}

.ride-map iframe {
  width: 100%;
  aspect-ratio: 16 / 14;
}

.ride-form {
  position: relative;
  z-index: 3;
  background-color: var(--white-color);
  padding: 24px;
  border-radius: 16px;
  max-width: 412px;
}

.ride-form .form-title {
  font-size: 32px;
  font-weight: 600;
  margin-top: -0.26em;
}

.ride-form .input-group {
  border: 1px solid var(--border-color);
  padding: 0 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: block;
}

.ride-form .input-group input {
  border: none;
  margin-bottom: 0;
  padding-left: 22px;
  border-radius: 0;
}

.ride-form .input-group .form-group {
  margin-bottom: 0;
}

.ride-form .input-group .form-group:first-child {
  border-bottom: 1px solid var(--border-color);
}

.ride-form .input-group .form-group i {
  font-size: 20px;
  color: var(--theme-color);
  top: 20px;
  left: 0;
}

.ride-form .input-group .form-group .fa-location-dot {
  color: #E03B3B;
}

.ride-form .input-group .distance {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  padding-left: 10px;
  background-color: var(--white-color);
}

.ride-form .form-label {
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.ride-form .form-btn {
  margin-top: 16px;
}

.ride-form .form-btn .ot-btn {
  margin-top: 16px;
  width: 100%;
  border-radius: 8px;
}

.ride-form .form-btn .ot-btn:before {
  display: none;
}

.ride-form .form-btn .ot-btn:hover {
  background-color: var(--theme-color);
}

.ride-form .form-btn .ot-btn.style2:hover {
  background-color: var(--title-color);
}

.ride-form.style2 {
  padding: 0;
  max-width: 100%;
}

.input-vehicle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 60px;
  padding: 0 16px;
  margin-bottom: 24px;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-vehicle .form-check {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0;
}

.input-vehicle .form-check:first-child {
  border-right: 1px solid var(--border-color);
}

.input-vehicle .form-check:last-child {
  text-align: right;
}

.input-vehicle .form-check label {
  padding-left: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.input-vehicle .form-check label i {
  margin-right: 3px;
}

.input-vehicle .form-check label:before {
  display: none;
}

.input-vehicle input[type="radio"]:checked ~ label {
  color: var(--theme-color);
}

@media (max-width: 380px) {
  .input-vehicle .form-check label {
    font-size: 14px;
    text-transform: capitalize;
  }
}

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.px-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.px-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.px-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.px-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.px-35 {
  padding-right: 35px;
  padding-left: 35px;
}

.px-40 {
  padding-right: 40px;
  padding-left: 40px;
}

.px-45 {
  padding-right: 45px;
  padding-left: 45px;
}

.px-50 {
  padding-right: 50px;
  padding-left: 50px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

@media (min-width: 1024px) {
  .mt-lg-n3 {
    margin-top: -1rem;
  }
}

.mt-n1 {
  margin-top: -.28rem;
}

.mt-n2 {
  margin-top: -.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -.28rem;
}

.mb-n2 {
  margin-bottom: -.5rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

/* Large devices */
@media (max-width: 1199px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
}

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

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

.py-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Large devices */
@media (max-width: 1199px) {
  .container.mb-n2 {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=style-dashboard.css.map */
