.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f6993f;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
          animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
          animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
          animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
          animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
          animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
          animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
          animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
          animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@-webkit-keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.page-loader {
  width: 100%;
  height: calc(100vh - 86px);
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: #eeeeee;
  z-index: 111;
  position: absolute;
}

/*
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:

.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.

.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels

The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.

*/

.m-t-0 {
  margin-top: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

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

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

/*
  RUN GULP to generate the classes. Now you can use these helpers to customize spacing on HTML elements.
*/

body {
  background-color: #d3d4d7;
  color: #333;
  font-size: 14px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .container.wide {
    max-width: calc(100vw - 240px);
  }

  .container.full-wide {
    max-width: 95%;
    padding: 0;
  }
}

nav {
  background-color: #F8F7F5;
}

nav .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 0;
}

nav .dropdown-menu .dropdown-item {
  padding: 8px 25px;
}

.navbar {
  padding: 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  position: relative;
}

.navbar-light .navbar-nav .nav-link::before {
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: #f6993f !important;
  border-bottom: #f6993f 3px solid;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 1px;
  content: "";
  display: block;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #f6993f;
}

.navbar-light .navbar-nav .nav-link.active::before {
  width: 100%;
  left: 0%;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #f6993f;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link:focus::before {
  width: 100%;
  left: 0%;
}

.sidebar {
  width: 250px;
  height: calc(100vh - 70px);
  background-color: #e5e5e5;
  float: left;
}

.sidebar .sidebar-menu-container {
  list-style: none;
  padding: unset;
  margin: unset;
}

.sidebar .sidebar-menu-container .menu-title {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: uppercase;
  color: #555;
  font-weight: 500;
}

.sidebar .sidebar-menu-container .sidebar-menu {
  font-size: 15px;
}

.sidebar .sidebar-menu-container .sidebar-menu .has-menu {
  position: relative;
}

.sidebar .sidebar-menu-container .sidebar-menu .has-menu .menu-down-icon {
  position: absolute;
  right: 15px;
  top: 14px;
  transition: transform 0.15s;
  padding-left: 0;
  line-height: 8px;
}

.sidebar .sidebar-menu-container .sidebar-menu .menu-link {
  display: block;
  padding: 10px 35px 10px 20px;
}

.sidebar .sidebar-menu-container .sidebar-menu a {
  color: #f6993f;
}

.sidebar .sidebar-menu-container .sidebar-menu a:hover {
  text-decoration: none;
  background-color: #eee;
  color: #333;
}

.sidebar .sidebar-menu-container .sidebar-menu a span {
  color: #333;
  padding-left: 15px;
}

.sidebar .sidebar-menu-container .sidebar-menu a.active {
  background-color: #a1a1a1;
  color: #fff;
}

.sidebar .sidebar-menu-container .sidebar-menu a.active span {
  color: #fff;
}

.sidebar .sidebar-menu-container .sidebar-menu a.has-menu.active {
  background-color: #bfbebe;
}

.sidebar .sidebar-menu-container .has-menu {
  cursor: pointer;
}

.sidebar .sidebar-menu-container .has-menu[aria-expanded=true] {
  background-color: #eee;
  color: #333;
}

.sidebar .sidebar-menu-container .has-menu[aria-expanded=true] .menu-down-icon {
  transform: rotate(90deg);
}

.sidebar .sidebar-menu-container .sub-menu .sidebar-menu {
  font-size: 13px;
}

.sidebar .sidebar-menu-container .sub-menu .sidebar-menu .menu-link {
  padding-left: 55px;
  color: #333;
}

.sidebar .sidebar-menu-container .sub-menu .sidebar-menu a.active {
  color: #fff;
}

.mobile-show {
  display: block;
}

.desktop-show {
  display: none;
}

@media (min-width: 992px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 5px;
    margin: 0 20px;
  }

  .mobile-show {
    display: none;
  }

  .desktop-show {
    display: block;
  }
}

main {
  min-height: calc(100vh - 103px);
  height: calc(100vh - 103px);
  overflow-y: auto;
}

footer {
  font-size: 13px;
  text-align: right;
}

.website footer {
  font-size: 13px;
  background-color: #343741;
  color: rgba(255, 255, 255, 0.5);
}

.website footer a {
  color: rgba(255, 255, 255, 0.5);
}

.website footer a:hover {
  color: #fafafa !important;
  text-decoration: none !important;
}

.page-title {
  color: #000;
}

.page-title h4 {
  margin-bottom: 0;
}

.page-card {
  background-color: #e5e5e5;
  padding: 25px 20px;
}

.page-card .page-card-title h4 {
  color: #333;
  font-size: 1rem;
}

table.dataTable {
  border: 1px solid #cfcfcf;
  border-right: 0;
  border-bottom: 0;
  margin-bottom: 20px;
}

table.dataTable.no-footer {
  border-bottom: none;
  border-right: none;
}

table.dataTable thead th {
  font-weight: 500;
  font-size: 15px;
}

table.dataTable thead th,
table.dataTable tbody td {
  border-bottom: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
  padding: 5px 18px;
}

input[type=search],
select {
  outline-offset: 0 !important;
  outline: none;
}

.dataTables_wrapper .dataTables_filter {
  float: none;
  text-align: left;
}

.dataTables_wrapper .dataTables_filter label {
  position: relative;
  margin-bottom: 28px;
  width: 100%;
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0;
  position: absolute;
  left: 0px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  width: 100%;
  background-color: #fff;
  border-radius: 0;
}

.dataTables_wrapper .dataTables_filter input:focus {
  border-radius: 0;
}

.dataTables_wrapper .dataTables_length {
  font-size: 13px;
}

.dataTables_wrapper .dataTables_length select {
  border-color: #cfcfcf;
  border-radius: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  border-radius: 0;
  background-color: #F3F4F7;
}

.p-lg-r-15 {
  padding-right: unset !important;
}

.p-lg-r-7 {
  padding-right: unset !important;
}

.p-lg-l-7 {
  padding-right: unset !important;
}

@media (min-width: 992px) {
  div.dataTables_wrapper div.dataTables_filter label {
    width: 33.33333333%;
  }

  .p-lg-r-15 {
    padding-right: 15px !important;
  }

  .p-lg-r-7 {
    padding-right: 7px !important;
  }

  .p-lg-l-7 {
    padding-left: 7px !important;
  }
}

.table-container {
  overflow-x: auto;
  clear: both;
}

.btn {
  border-radius: 0;
}

.btn span {
  padding-left: 5px;
}

.ibox {
  clear: both;
  margin-top: 0;
  padding: 0;
  position: relative;
}

.ibox .ibox-title {
  background: #FFF;
  color: #676a6c;
  border-bottom: #e7eaec solid 1px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  min-height: 45px;
  border: none;
  padding: 15px 15px 7px;
}

.ibox .ibox-title:hover {
  box-shadow: 0 0 3px #777;
}

.ibox .ibox-title[aria-expanded=true] {
  box-shadow: 0 0 3px #777;
}

.ibox .ibox-title h5 {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  margin: 0 0 7px;
  padding: 0;
  text-overflow: ellipsis;
  float: left;
}

.ibox .collapse-link {
  cursor: pointer;
}

.ibox .ibox-tools {
  display: block;
  float: none;
  margin-top: 0;
  position: relative;
  padding: 0;
  text-align: right;
}

.ibox form.type-form {
  position: absolute;
  top: 8px;
  right: 98px;
  z-index: 1;
}

.ibox .edit-btn {
  position: absolute;
  top: 8px;
  right: 45px;
  z-index: 1;
}

.ibox .ibox-content table,
.ibox .ibox-content table.dataTable tbody tr {
  background-color: #efefef;
}

.btn-info {
  color: #fff;
}

.dataTables_wrapper {
  clear: unset;
}

.form-control {
  border-radius: 0;
  background-color: #f7f7f7;
}

input {
  background-color: #f7f7f7 !important;
}

.file-preview {
  height: 315px;
}

.file-drop-zone .file-preview-thumbnails {
  height: 100%;
}

.file-drop-zone {
  height: 93%;
}

.krajee-default.file-preview-frame {
  width: 94%;
}

.krajee-default.file-preview-frame .kv-file-content {
  width: 100%;
}

.tags-container ul {
  list-style: none;
  padding: 0;
  padding-left: 10px;
}

.tags-container ul li {
  display: inline-block;
  padding-right: 10px;
  padding-bottom: 5px;
}

.tags-container ul li .badge {
  background-color: #d1dade;
  color: #5e5e5e;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding-bottom: 4px;
  padding-left: 6px;
  padding-right: 6px;
  text-shadow: none;
}

.tags-container ul li .badge .delete-tag {
  cursor: pointer;
}

.tags-input {
  position: relative;
}

.tags-input .tags-input-suggestion {
  position: absolute;
  width: 100%;
  box-shadow: 0 0 10px #ddd;
  z-index: 1;
}

.tags-input .tags-input-suggestion ul {
  padding-left: 0;
  list-style: none;
  background-color: #fff;
  margin: 0;
}

.tags-input .tags-input-suggestion ul li {
  padding: 10px;
  cursor: pointer;
}

.chosen-container-multi .chosen-choices {
  padding: 5px;
}

.aircrafttypes-container h5 {
  font-size: 15px;
}

.aircrafttypes-container ul {
  list-style: none;
}

.chosen-container-single .chosen-single {
  height: 100%;
  border-radius: 0;
  background-image: none;
  box-shadow: none;
}

.chosen-container-single .chosen-single span {
  height: 100%;
  line-height: 2.5;
}

.chosen-container-single .chosen-single div b {
  background: none;
}

label {
  color: #444444;
}

main nav {
  background-color: #fff;
}

.pagination {
  float: right;
}

.pagination .page-item .page-link {
  color: #333;
}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination .page-item.active .page-link {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

/*loader */

.loader-container {
  margin: 40px 0 0;
  height: 100%;
  display: none;
}

.loader-container .show {
  display: block !important;
}

.spinner-grow {
  width: 4px;
  height: 4px;
  margin: 5px 2px;
  display: inline-block;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
  animation: spinner-grow 0.75s linear infinite;
}

@-webkit-keyframes spinner-grow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* loader */

.search-container {
  padding: 20px;
  background-color: #F3F4F7;
}

.search-container .page-card {
  height: 100%;
}

.search-container h5 {
  font-size: 23px;
  color: #666;
  font-weight: 600;
}

.search-container p.stock {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.search-container .description {
  font-size: 13px;
}

.text-orange {
  color: #f6993f !important;
}

.banner-container {
  height: 600px;
  position: relative;
}

.banner-container .img-container img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-container .heading-container {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 40%;
  color: #fff;
}

.banner-container .heading-container h2 {
  font-size: 40px;
}

.banner-container .heading-container h5 {
  font-size: 25px;
}

.btn-white {
  background-color: #fff;
  color: #444;
  border-radius: 30px;
  border: 2px solid #fff;
  padding: 8px 25px;
}

.btn-white:hover {
  background-color: #f6993f;
  border-color: #f6993f;
  color: #fff;
}

section .section-title {
  position: relative;
  color: #444;
}

section .section-title h1 {
  font-size: 30px;
}

section .section-content {
  font-size: 16px;
  color: #555;
}

section .section-content p {
  margin-bottom: 0;
}

section .section-content .page-card {
  background-color: #FBAB56;
  transition: all 0.3s linear;
}

section .section-content .page-card .content-container .logo-plane {
  font-size: 30px;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1;
}

section .section-content .page-card .content-container .title {
  margin-bottom: 0;
  font-weight: 500;
  color: #fff;
}

section .section-content .page-card:hover {
  box-shadow: 0 0 10px #888;
}

.service-section .section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 63px;
  height: 3px;
  background-color: #f6993f;
  left: calc((100% - 63px)/2);
}

.service-section .service-container {
  height: 100%;
}

.service-section .service-container .icon-container {
  background-color: #fff;
}

.service-section .service-container .icon-container img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 85px;
}

.service-section .service-container .content {
  color: #fff;
}

.aircraft-section {
  background-color: #fff;
}

.aircraft-section .section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 63px;
  height: 3px;
  background-color: #f6993f;
  left: calc((100% - 63px)/2);
}

.aboutus-section .section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 63px;
  height: 3px;
  background-color: #f6993f;
  left: calc((100% - 63px)/2);
}

.parts-container {
  position: relative;
}

.parts-container .img-container img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.parts-container .overlay-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.parts-container .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 22px;
  padding: 50px;
  text-align: center;
}

.certificate-section .section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 63px;
  height: 3px;
  background-color: #f6993f;
  left: calc((100% - 63px)/2);
}

.contactus-section .section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 63px;
  height: 3px;
  background-color: #f6993f;
  left: calc((100% - 63px)/2);
}

.contactus-section img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contactus-section .contact-container {
  font-size: 18px;
  height: 100%;
  display: grid;
  align-items: center;
}

.gallery-section {
  background-color: #fff;
}

.gallery-section .section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 63px;
  height: 3px;
  background-color: #f6993f;
  left: calc((100% - 63px)/2);
}

.gallery-section .img-container img {
  transition: all 0.3s linear;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-section .img-container img:hover {
  box-shadow: 0 0 10px #555;
}

.disclaimer-section .section-title {
  margin-left: 1.28em;
}

.disclaimer-section .section-title:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 4px;
  height: 45px;
  max-height: 30px;
  top: 0;
  background-color: #dce0e0;
  margin-left: -1.28em;
  transform-origin: bottom left;
  transform: skew(-20deg, 0deg);
}

.login-section {
  background-color: #fff;
}

.price-table {
  font-size: 13px !important;
}

.price-table th {
  font-size: 13px !important;
}

@media (min-width: 800px) {
  #modal_pricing_edit .modal-dialog {
    max-width: 700px;
  }
}

.price-container {
  border: 1px solid #cfcfcf;
  padding: 15px;
}

.dropzone .dz-default.dz-message {
  margin-top: 40px;
}

/*! ========================================================================
 * Bootstrap Toggle: bootstrap-toggle.css v2.2.0
 * http://www.bootstraptoggle.com
 * ========================================================================
 * Copyright 2014 Min Hur, The New York Times Company
 * Licensed under MIT
 * ======================================================================== */

.checkbox label .toggle,
.checkbox-inline .toggle {
  margin-left: -20px;
  margin-right: 5px;
}

.toggle {
  position: relative;
  overflow: hidden;
}

.toggle input[type=checkbox] {
  display: none;
}

.toggle-group {
  position: absolute;
  width: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  transition: left 0.35s;
  -webkit-transition: left 0.35s;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.toggle.off .toggle-group {
  left: -100%;
}

.toggle-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.toggle-off {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.toggle-handle {
  position: relative;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  width: 0;
  border-width: 0 1px;
}

.toggle.btn {
  min-width: 59px;
  min-height: 34px;
}

.toggle-on.btn {
  padding-right: 24px;
}

.toggle-off.btn {
  padding-left: 24px;
}

.toggle.btn-lg {
  min-width: 79px;
  min-height: 45px;
}

.toggle-on.btn-lg {
  padding-right: 31px;
}

.toggle-off.btn-lg {
  padding-left: 31px;
}

.toggle-handle.btn-lg {
  width: 40px;
}

.toggle.btn-sm {
  min-width: 50px;
  min-height: 30px;
}

.toggle-on.btn-sm {
  padding-right: 20px;
}

.toggle-off.btn-sm {
  padding-left: 20px;
}

.toggle.btn-xs {
  min-width: 35px;
  min-height: 22px;
}

.toggle-on.btn-xs {
  padding-right: 12px;
}

.toggle-off.btn-xs {
  padding-left: 12px;
}

.toggle-group .btn-default {
  background-color: #fff;
}

.toggle-group .btn-default.toggle-off {
  background-color: #ddd;
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner-container .heading-container {
    left: 35px;
    width: 83%;
  }

  .parts-container p {
    line-height: 1.2;
  }
}

.breadcrumb-container {
  position: relative;
}

.breadcrumb-container .img-container img {
  width: 100%;
  height: 283px;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumb-container .heading-container {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  color: #444;
}

table thead tr {
  background-color: #bfbfbf;
}

table tbody tr {
  background-color: #f7f7f7 !important;
}

.chosen-container {
  background-color: #f7f7f7;
}


