/* SmartCar Rental System by Smartmetrics */

:root {
  --text-dark: #212529;
}

html {
  -webkit-text-size-adjust: none;
  touch-action: manipulation;
}

html, body {
  background-color: #fff !important;
  font-family: "Plus Jakarta Sans";
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
}
html img, body img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
html a, body a {
  text-decoration: none;
}
@media (min-width: 1400px) {
  html .container, body .container {
    max-width: 1200px;
  }
  html .container.container-1020, body .container.container-1020 {
    max-width: 1100px;
  }
  html .container.container-1400, body .container.container-1400 {
    max-width: 1400px;
  }
}

/* Navbar */
.az-navbar {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
  background-color: rgba(0,0,0,0);
  transition: 0.2s;
  top: 0;
  left: 0;
}
.az-navbar.sticky {
  background-color: var(--color-main2);
}
@media (max-width: 768px) {
  .az-navbar {
    padding: 15px 15px 15px 10px;
  }
}
.az-navbar .menu-toggle {
  font-size: 25px;
  color: #fff;
}
@media (min-width: 992px) {
  .az-navbar .menu-toggle {
    display: none;
  }
}
.az-navbar .grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.az-navbar .logo {
  width: 170px;
  display: block;
}
.az-navbar .right .nav-li::after {
  content: "";
  display: block;
  width: 1px;
  height: 19px;
  background-color: var(--color-main1);
  position: absolute;
  top: 7px;
  right: -12px;
}
.az-navbar .right .nav-li:last-child::after {
  display: none;
}
.az-navbar .list {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .az-navbar .list {
    display: none;
  }
  .az-navbar .logo {
    width: 120px !important;
  }
}
.az-navbar .list li {
  display: inline-block;
}
.az-navbar .list li {
  margin: 0 10px;
  position: relative;
}
.az-navbar .list li a {
  color: #fff;
  font-weight: 500;
  padding: 5px;
  display: block;
  transition: 0.2s;
}
.az-navbar .list li a:hover {
  opacity: 0.7;
}

@media (max-width: 1400px) {
  .az-navbar .list li a {
    font-size: 13px;
  }
} 

@media (max-width: 1200px) {
  .az-navbar .logo {
    width: 150px;
  }
} 

.az-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 60px;
  background-color: #fff;
  min-width: 120px;
  padding: 8px !important;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding-left: 0;
  border: 1px solid #ccc;
}
.az-dropdown-menu li {
  list-style: none;
}
.az-dropdown-menu li {
  display: block;
  width: 100%;
  margin: 0 !important;
}
.az-dropdown-menu li a {
  color: var(--color-main2) !important;
  display: block;
  width: 100%;
  border-radius: 6px;
  padding: 6px 10px !important;
}
.az-dropdown-menu li a:hover {
  background-color: var(--color-main2);
  color: #fff !important;
  opacity: 1 !important;
}

/* Mobile Menu */
.az-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main2);
  z-index: 10;
  display: none;
}
.az-mobile-menu .az-mobile-menu-content {
  padding: 60px 30px 30px 30px;
}
.az-mobile-menu .az-mobile-menu-content .close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 30px;
  color: #fff;
}
.az-mobile-menu .az-mobile-menu-content ul {
  padding-left: 0;
}
.az-mobile-menu .az-mobile-menu-content ul li {
  list-style: none;
}
.az-mobile-menu .az-mobile-menu-content ul li {
  border-bottom: 1px solid #ccc;
  display: block;
  position: relative;
}
.az-mobile-menu .az-mobile-menu-content ul li:last-child {
  border-bottom: 0 !important;
}
.az-mobile-menu .az-mobile-menu-content ul .link {
  padding: 12px 0;
  display: block;
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: 0.2s;
}
.az-mobile-menu .az-mobile-menu-content ul .link i {
  position: absolute;
  top: 14px;
  right: 0;
}
.az-mobile-menu .az-mobile-menu-content ul .az-dropdown-menu {
  min-width: 100%;
  position: relative;
  top: 0;
  margin-bottom: 10px;
}

/* Banner */
.az-banner {
  padding: 200px 0 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 992px) {
  .az-banner {
    padding: 60px 0 30px 0;
  }
}
.az-banner-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.az-banner .container {
  position: relative;
  z-index: 3;
}
.az-banner .content {
  padding: 30px 0;
  color: #fff;
  text-align: center;
}
.az-banner .content .title {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .az-banner .content .title {
    font-size: 24px;
  }
}
.az-banner .content .subtitle {
  font-size: 19px;
  font-weight: 300;
}

.az-search-car {
  margin-top: 120px;
}
@media (max-width: 992px) {
  .az-search-car {
    margin-top: 20px;
  }
}
.az-search-car .nav {
  margin-left: 20px;
}
.az-search-car .nav .nav-link {
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 14px;
  padding: 14px 16px;
  background-color: var(--color-main1);
  margin-right: 5px;
}
.az-search-car .nav .nav-link.active {
  background-color: #fff;
  color: var(--color-main2);
  font-weight: 700;
  position: relative;
}
.az-search-car .nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 16px;
  background-color: var(--color-main1);
  height: 1px;
  width: calc(100% - 32px);
}
.az-search-car .box-body {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}
.az-search-car .box-form {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1fr 1fr 150px;
  grid-gap: 20px;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .az-search-car .box-form {
    grid-template-columns: 1fr;
  }
}
.az-search-car .box-form .item .item-label {
  color: var(--color-main2);
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.az-search-car .box-form .item .item-label a {
  color: #999;
  font-size: 11px;
}
.az-search-car .box-form .item .item-label a:hover {
  text-decoration: underline;
}
.az-search-car .box-form .item .item-input {
  position: relative;
}
.az-search-car .box-form .item .item-input .form-control {
  padding-left: 35px;
  padding-right: 30px;
}
.az-search-car .box-form .item .item-input .select2 {
  background-image: none !important;
}
.az-search-car .box-form .item .item-input .select2 .select2-selection {
  padding-left: 35px !important;
  box-shadow: none !important;
  background-image: none !important;
}
.az-search-car .box-form .item .item-input .icon {
  left: 12px;
  height: 20px;
  width: 20px;
  top: 23px !important;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.az-search-car .box-form .item .item-input .icon.date {
  width: 18px;
}
.az-search-car .box-form .item .item-input .icon-down {
  right: 12px;
  color: #999;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.az-search-car .box-form .another-address {
  display: none;
}
.az-search-car .box-form .item-date {
  display: grid;
  grid-template-columns: 1fr 120px;
}

.cursor-pointer {
  cursor: pointer !important;
}

.az-search-car .box-form .item-date .item:first-child .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.az-search-car .box-form .item-date .item:last-child .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}

.az-search-car .box-form .item .form-select {
  background-image: none !important;
  padding-left: 37px;
}

.az-search-car .item-hour .select2-selection {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left: 0 !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  background-color: var(--color-main2) !important;
}

.select2-container--bootstrap-5 .select2-dropdown {
  border-color: #f1f1f1 !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.select2-results {
  padding: 6px;
}

.select2-results__option {
  border-radius: 10px;
  padding: 10px !important;
  font-weight: 500 !important;
}

.select2-results__group {
  font-size: 14px;
  margin-bottom: 5px !important;
  display: block;
  padding: 0 !important;
  color: #333;
}

.select2 .select2-selection {
  min-height: 48px !important;
  border: 1px solid #d3d3d3 !important;
}

.az-search-car .select2-selection, .az-search-car .form-control {
  border-width: 2px !important;
}

.az-search-car .select2-selection__placeholder {
  font-weight: 500 !important;
}

.az-search-car .form-control, .az-search-car .select2-selection__rendered {
  font-weight: 500 !important;
}

/* Campaign */
.az-swiper-campaign {
  overflow: visible;
}

.az-campaign-box {
  background-color: #fff;
  box-shadow: 10px 32px 72px rgba(51, 51, 51, 0.15);
  border-radius: 10px;
  padding: 24px 32px;
  transition: 0.2s;
}
.az-campaign-box .price {
  background-color: var(--color-main2);
  height: 40px;
  border-radius: 50px;
  text-align: center;
  padding: 5px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}
.az-campaign-box .badge {
  height: 30px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 20px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.az-campaign-box .img {
  padding-bottom: 80%;
  position: relative;
}
.az-campaign-box .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.az-campaign-box .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 34px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.az-campaign-box .specs {
  padding-left: 0;
}
.az-campaign-box .specs li {
  display: inline-block;
}
.az-campaign-box .specs li {
  list-style: none;
}
.az-campaign-box .specs li {
  font-size: 14px;
  color: var(--color-main2);
  opacity: 0.5;
  margin-right: 12px;
}
.az-campaign-box .btn-blue {
  width: 100%;
  font-size: 15px;
}
.az-campaign-box:hover {
  background-color: var(--color-main2);
  color: #fff;
}
.az-campaign-box:hover .price {
  background-color: var(--color-main1);
}
.az-campaign-box:hover .specs li {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.az-campaign-box:hover .btn-blue {
  background-color: var(--color-main1);
  border-color: var(--color-main1);
}
.az-campaign-box:hover .btn-blue:hover {
  background-color: var(--color-main1);
  border-color: var(--color-main1);
  opacity: 0.7;
}

/* Feature Right */
.az-feature-right .img {
  height: 540px;
}
@media (max-width: 992px) {
  .az-feature-right .img {
    max-height: 300px;
  }
}
.az-feature-right .img img {
  border-radius: 0 35px 35px 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .az-feature-right .img img {
    border-radius: 0;
  }
}
.az-feature-right .content {
  max-width: 550px;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .az-feature-right .content {
    max-width: 100%;
    padding: 20px;
  }
}
.az-feature-right .content .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
  color: var(--color-main2);
  margin-bottom: 30px;
}
.az-feature-right .content p {
  color: var(--color-main2);
  font-size: 18px;
  line-height: 29px;
  font-weight: 300;
}

/* Blog */
.az-blog-box {
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  transition: 0.2s;
}
.az-blog-box:hover {
  box-shadow: 10px 32px 72px rgba(51, 51, 51, 0.15);
}
.az-blog-box .img {
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 10px;
}
.az-blog-box .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.az-blog-box .title {
  font-size: 19px;
  font-weight: 500;
  line-height: 29px;
  color: var(--color-main2);
  margin-bottom: 0;
}

/* Footer */
@media (min-width: 1200px) {
  .az-footer .container {
    max-width: 920px;
  }
}
.az-footer .list-social li {
  display: inline-block;
  margin-right: 10px;
}
.az-footer .list-social li a {
  color: #999;
  display: block;
  font-size: 18px;
  transition: 0.2s;
  padding: 2px;
}
.az-footer .list-social li a:hover {
  color: var(--color-main1-hover);
}
.az-footer {
  background-color: #fff;
}
.az-footer .footer-top {
  padding: 40px 0;
}
.az-footer .footer-content {
  padding: 10px 0;
}
@media (max-width: 992px) {
  .az-footer .footer-content.ps-4 {
    padding-left: 0 !important;
  }
}
.az-footer .img-logo {
  max-width: 176px;
  margin-bottom: 20px;
}
.az-footer .footer-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.az-footer .footer-text {
  font-size: 14px;
  color: #999;
  line-height: 24px;
  max-width: 270px;
}
.az-footer .footer-link {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  display: inline-flex !important;
  transition: 0.2s;
}
.az-footer .footer-link img {
  margin-right: 5px;
}
.az-footer .footer-link:hover {
  color: #333;
}
.az-footer .list li {
  margin: 10px 0;
}
.az-footer .list li a {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  transition: 0.2s;
}
.az-footer .list li a:hover {
  color: #333;
}
.az-footer .footer-bottom {
  background-color: #f5f5f5;
  text-align: center;
  padding: 16px 0;
}
.az-footer .footer-bottom .copyright {
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

/* General */
/* Steps */
.az-cs-steps {
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 20px 25px;
  color: #212529;
  margin-top: 20px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .az-cs-steps {
    padding: 15px 20px;
    grid-template-columns: 1fr;
  }
}
.az-cs-steps .step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.az-cs-steps .step .number {
  background-color: #999;
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100%;
  font-weight: 600;
  color: #fff;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .az-cs-steps .step .number {
    height: 30px;
    width: 30px;
    min-width: 30px;
    font-size: 14px;
    margin-right: 10px;
  }
}
.az-cs-steps .step .text {
  color: #999;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 992px) {
  .az-cs-steps .step .text {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .az-cs-steps .step .text {
    font-size: 12px;
  }
}
.az-cs-steps .step.active .number {
  background-color: var(--color-main1);
}
.az-cs-steps .step.active .text {
  color: var(--color-main1);
}

/* Car Box */
.az-cs-car-box {
  background-color: #F9F9FB;
  padding: 22px 25px;
  border-radius: 10px;
  margin-bottom: 24px;
  transition: 0.2s;
  border: 1px solid #F3F3F5;
}
.az-cs-car-box .car-name {
  font-size: 20px;
  font-weight: 800;
}
.az-cs-car-box .img {
  padding-bottom: 70%;
  position: relative;
}
.az-cs-car-box .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.az-cs-car-box .specs {
  padding-left: 0;
}
.az-cs-car-box .specs li {
  list-style: none;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-right: 14px;
}
.az-cs-car-box .specs li i {
  margin-right: 5px;
  font-size: 16px;
}
.az-cs-car-box .badge {
  height: 30px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 20px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.az-cs-car-box .specs li:last-child::after {
  display: none;
}
.az-cs-car-box .price-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.az-cs-car-box .price-area .right {
  text-align: right;
}
.az-cs-car-box .price-area .price-day {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 2px;
}
.az-cs-car-box .price-area .price-days {
  font-size: 15px;
  font-weight: 600;
  color: #0a1e58;
}
.az-cs-car-box .price-area .price-total {
  font-size: 28px;
  font-weight: 700;
  color: #0a1e58;
  letter-spacing: -0.5px;
}
.az-cs-car-box .price-area .price-old {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 400;
  color: #6c757d;
  display: inline-block;
  position: relative;
}

.az-cs-car-box .price-area .price-old::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #999;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.az-cs-car-box .price-area .price-old span {
  font-weight: 400 !important;
  font-size: 16px !important;
}
.az-cs-car-box .price-area .price-total span {
  font-size: 20px;
  font-weight: 600;
}
.az-cs-car-box .buttons {
  padding-top: 20px;
}
.az-cs-car-box .buttons .btn {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 4px 20px !important;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .az-cs-car-box .buttons .btn {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .az-cs-car-box .buttons .btn {
    font-size: 12px;
  }
  .az-cs-car-box .price-area .price-total {
    font-size: 26px;
  }
  .az-cs-car-box .price-area .left span {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .az-cs-car-box .buttons .btn {
    font-size: 12px;
  }
}
.az-cs-car-box .buttons .btn strong {
  display: block;
  font-weight: 600;
}

/* Driver Details */
.az-cs-driver-details h3 {
  font-size: 18px;
  color: var(--color-main2);
  font-weight: 600;
  margin-bottom: 20px;
}
.az-cs-driver-details hr {
  margin-bottom: 30px;
  border-top: 1px solid #dedede;
  opacity: 0.7;
}

/* Filter */
.az-cs-filter-area {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.az-cs-filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1100px) {
  .az-cs-filter {
    display: none;
    background-color: #f2f2f2;
    padding: 15px;
  }
}
.az-cs-filter .title {
  font-weight: 600;
  color: var(--color-main2);
  margin-right: 20px;
}
@media (max-width: 1100px) {
  .az-cs-filter .title {
    margin-bottom: 10px;
    display: block;
  }
}
.az-cs-filter .dropdown {
  margin: 0 7px;
}
.az-cs-filter .dropdown .dropdown-menu {
  padding: 10px;
}
.az-cs-filter .dropdown .dropdown-menu .form-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 4px 0;
  cursor: pointer;
  width: 100%;
}
.az-cs-filter .dropdown .dropdown-menu .form-check .form-check-input {
  margin-right: 5px;
  cursor: pointer;
  border-radius: 6px !important;
}
.az-cs-filter .dropdown .dropdown-menu .form-check .form-check-label {
  position: relative;
  top: 2px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}
@media (max-width: 1100px) {
  .az-cs-filter .dropdown {
    margin: 10px 0;
  }
  .az-cs-filter .dropdown .btn-link {
    background-color: #fff !important;
    width: 100%;
    height: 40px !important;
    border: 1px solid #ccc;
  }
  .az-cs-filter .dropdown .dropdown-menu {
    position: relative !important;
    top: -41px !important;
  }
  .az-cs-filter .btn-blue, .az-cs-filter .btn-link {
    width: 100%;
    min-height: 40px;
    margin: 3px 0;
  }
  .az-cs-sort-link {
    position: absolute;
    top: 40px;
    right: 12px;
  }
  .az-cs-sort-link .btn {
    height: 48px !important;
  }
  .az-cs-filter-area {
    display: block;
    position: relative;
  }
}

@media (min-width: 1100px) {
  .az-cs-filter-mobile-btn.btn {
    display: none !important;
  }
}

.az-dropdown-filter .btn.btn-link {
  font-weight: 400;
  font-size: 15px;
  background-color: #fff;
  border: 1px solid #dedede;
  height: 42px;
  padding: 4px 16px !important;
}

.az-dropdown-filter .btn.btn-link i {
  top: 1px;
  position: relative;
}

.az-cs-filter .btn {
  height: 42px;
  min-height: 42px;
}

/* Suggestions */
.az-cs-suggestions {
  padding-top: 40px;
}
.az-cs-suggestions .head-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.az-cs-suggestion-box {
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 7px;
  color: #111;
  margin-bottom: 10px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.az-cs-suggestion-box:hover {
  background-color: #f3f3f3;
}
.az-cs-suggestion-box .img {
  width: 130px;
  min-width: 130px;
  margin-right: 10px;
}
@media (max-width: 1400px) {
  .az-cs-suggestion-box .img {
    width: 100px;
    min-width: 100px;
  }
}
@media (max-width: 1200px) {
  .az-cs-suggestion-box .img {
    width: 60px;
    min-width: 60px;
  }
}
.az-cs-suggestion-box .content .car-name {
  font-size: 15px;
  font-weight: 600;
}
.az-cs-suggestion-box .content .price {
  font-size: 16px;
  font-weight: 500;
}
.az-cs-suggestion-box .content .badge-status {
  background-color: rgba(75, 181, 67, 0.2);
  color: #4BB543;
  font-size: 12px;
  padding: 4px 6px;
  display: inline-block;
  border-radius: 4px;
}

/* General - Car */
.az-cs-page-head {
  background-color: #ebebeb;
  padding: 120px 0 40px 0 !important;
}
@media (max-width: 992px) {
  .az-cs-page-head {
    padding-bottom: 12px !important;
  }
}
.az-cs-page-head .content {
  padding: 0 !important;
}
@media (max-width: 992px) {
  .az-cs-page-head .az-search-car {
    display: none;
  }
}

.az-cs-page-content {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .az-cs-box {
    padding: 15px;
  }
}

.az-cs-card {
  background-color: #fff;
  padding: 30px;
}
@media (max-width: 992px) {
  .az-cs-card {
    padding: 15px;
  }
}

.az-cs-car-upgrade {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  padding: 20px 0;
}

.az-cs-car-upgrade .car {
  text-align: center;
}

.az-cs-car-upgrade .car .img-area {
  height: 100px;
  margin-bottom: 15px;
}

.az-cs-car-upgrade .car .car-name {
  font-size: 18px;
  font-weight: 600;
}

.az-cs-car-upgrade .car .spec {
  font-size: 14px;
  display: block;
}

.az-cs-car-upgrade .mid {
  text-align: center;
}

.az-cs-car-upgrade .btn-upgrade {
  border-width: 2px;
  border-radius: 0 !important;
  font-weight: 600;
  margin-top: 10px;
}

.az-cs-total-box {
  background-color: #fff;
  padding: 30px;
  position: sticky;
  top: 100px;
}
.az-cs-total-box .car-name {
  font-weight: 700;
  font-size: 22px;
}
.az-cs-total-box .img {
  position: relative;
  padding-bottom: 60%;
  margin-bottom: 5px;
}
.az-cs-total-box .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.az-cs-total-box .rent-details {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  padding: 15px 0;
  margin-bottom: 15px;
}
.az-cs-total-box .rent-details .details-item {
  font-size: 14px;
  margin-bottom: 10px;
}
.az-cs-total-box .rent-details .details-item:last-child {
  margin-bottom: 0;
}
.az-cs-total-box .rent-details .details-item strong {
  display: block;
  font-weight: 600;
}
.az-cs-total-box .list-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}
.az-cs-total-box .list-spec .spec-item {
  font-size: 15px;
  font-weight: 500;
}
.az-cs-total-box .list-spec .spec-item::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: relative;
  top: 1px;
  color: #4BB543;
  display: inline-block;
  margin-right: 7px;
  font-size: 18px;
}
.az-cs-total-box .list-price {
  padding-left: 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  padding: 10px 0;
  margin-top: 20px;
}
.az-cs-total-box .list-price li {
  list-style: none;
}
.az-cs-total-box .list-price li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 5px 0;
}
.az-cs-total-box .price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.az-cs-total-box .price-box .cycle {
  font-size: 14px;
}
.az-cs-total-box .price-box .right {
  text-align: right;
}
.az-cs-total-box .price-box .price {
  font-weight: 700;
}
.az-cs-total-box .price-box .kdv {
  display: block;
  font-size: 12px;
}
.az-cs-total-box .btn {
  width: 100%;
  border-radius: 0 !important;
  font-weight: 600;
  text-transform: uppercase;
}
.az-cs-total-box .btn i {
  font-size: 20px;
  margin-left: 10px;
  position: relative;
  top: -1px;
}

.az-cs-continue-sticky {
  background-color: var(--color-main2);
  padding: 12px 12px 12px 20px;
  position: sticky;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.az-cs-continue-sticky .text {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.az-cs-continue-sticky .btn {
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0 !important;
}
.az-cs-continue-sticky .btn.disabled {
  opacity: 0.7;
}
.az-cs-continue-sticky .btn i {
  margin-left: 4px;
  font-size: 18px;
}

.az-cs-detail-mobile {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .az-cs-detail-mobile {
    display: none;
  }
}
.az-cs-detail-mobile .back {
  background-color: #f5f5f5;
  color: #212529;
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 10px;
  font-size: 16px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.az-cs-detail-mobile .content-mobile span {
  display: block;
}
.az-cs-detail-mobile .content-mobile .mobile-title {
  font-size: 14px;
  font-weight: 500;
}
.az-cs-detail-mobile .content-mobile .mobile-date {
  font-size: 12px;
}

.az-cs-checkbox-label {
  width: 100%;
}

.az-cs-checkboxs .col-lg-12:last-child .az-cs-checkbox {
  border-bottom: 0 !important;
}

.az-cs-checkbox {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  cursor: pointer !important;
  transition: 0.2s;
}
.az-cs-checkbox .az-number-input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.az-cs-checkbox.checkbox, .az-cs-checkbox label {
  padding: 20px 50px 20px 20px;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer !important;
}
.az-cs-checkbox.checkbox.active {
  border-bottom: 1px solid var(--color-main1);
  background-color: var(--color-main1);
  color: #fff;
}
.az-cs-checkbox.checkbox.active .form-check-input {
  background-color: var(--color-main1);
  border-color: #fff !important;
}
.az-cs-checkbox.checkbox.active .form-check-input::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.az-cs-checkbox .form-check-input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  margin-top: 0;
}
.az-cs-checkbox .form-check-input:checked + label {
  border: 2px solid var(--color-main1);
}
.az-cs-checkbox .title {
  font-size: 18px;
  font-weight: 600;
}
.az-cs-checkbox .text {
  font-size: 14px;
  font-weight: 300;
}
.az-cs-checkbox .price {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.az-cs-checkbox .price span {
  font-size: 16px;
  font-weight: 400;
}

.az-number-input {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40px;
}
.az-number-input .form-control {
  border-width: 2px;
  border-radius: 0;
  padding: 4px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  height: 40px !important;
  min-height: 40px;
  margin: 3px 0;
}
.az-number-input .button {
  height: 30px;
  width: 40px;
  background-color: var(--color-main1);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-cs-car-select-box .row .col-md-6:nth-last-child(-n+3) .az-cs-car-box {
  margin-bottom: 0;
}

/* Page Head */
.az-page-head {
  background-image: url("https://analizrentacar.com.tr/assets/uploads/banner-bg2.jpg");
  padding: 120px 0 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.az-page-head-blog {
  position: relative;
}
.az-page-head-blog::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .az-page-head {
    padding: 70px 0 30px 0;
  }
}
.az-page-head .content {
  padding: 30px 0;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2
}
.az-page-head .content .title {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .az-page-head .content .title {
    font-size: 30px;
  }
}
.az-page-head .content .subtitle {
  font-size: 22px;
  font-weight: 300;
}

.az-breadcrumb {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.az-breadcrumb li {
  list-style: none;
}
.az-breadcrumb li {
  margin: 0 10px;
}
.az-breadcrumb li a {
  color: #fff;
  font-size: 14px;
}
.az-breadcrumb li a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  position: relative;
  right: -10px;
  font-size: 13px;
}
.az-breadcrumb li:last-child a::after {
  display: none;
}
.az-breadcrumb li a.active {
  pointer-events: none;
}

.az-page-content {
  padding: 50px 0;
}
.az-page-content h1, .az-page-content h2, .az-page-content h3, .az-page-content h4, .az-page-content h5, .az-page-content h6 {
  font-weight: 600;
}
.az-page-content p {
  font-size: 15px;
}

/* Newsletter */
.az-newsletter {
  background-color: var(--color-main2);
  color: #fff;
  padding: 50px 0;
}
.az-newsletter .container {
  max-width: 560px;
}
.az-newsletter .head {
  text-align: center;
  margin-bottom: 30px;
}
.az-newsletter .head .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.az-newsletter .head p {
  font-size: 14px;
  opacity: 0.5;
}
.az-newsletter .inputs {
  position: relative;
}
.az-newsletter .inputs .form-control {
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.11);
  color: #fff !important;
  transition: 0.2s;
}
.az-newsletter .inputs .form-control:focus,
.az-newsletter .inputs .form-control:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.az-newsletter .inputs .btn {
  height: 40px;
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 10px;
}

/* Locations */
.az-page-locations .head-title {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 24px;
  color: #102157;
}

.az-accordion-location {
  border: 0;
  margin-bottom: 20px;
}

.az-accordion-location .accordion-button {
  padding: 5px 0;
  color: #102157;
  font-weight: 500;
  font-size: 18px;
  background-color: transparent;
  border: 0;
  box-shadow: none !important;
}

.az-accordion-location .accordion-body {
  padding: 10px 0;
}

.az-accordion-location .accordion-body p, .az-accordion-location .accordion-body a {
  color: rgba(16, 33, 87, 0.6);
  font-size: 15px;
  margin-bottom: 10px;
}


  /* Contact */
.az-contact-form-box {
  background-color: #fff;
  padding: 50px;
  border-radius: 8px;
  margin-top: -100px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.03);
}

@media (max-width: 992px) {
  .az-contact-form-box {
    padding: 25px;
  }
}

.az-page-contact {
  background-color: #F8FBFF;
}

.az-contact-info {
  padding: 25px;
  margin-bottom: 10px;
  text-align: center;
}
.az-contact-info .icon {
  background-color: rgba(21, 101, 216, 0.06);
  color: var(--color-main1);
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 100%;
  margin: auto;
  margin-bottom: 20px;
}
.az-contact-info .content .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-main2);
  margin-bottom: 15px;
}
.az-contact-info .content .text, .az-contact-info .content a {
  color: rgba(0,0,0,0.57);
  font-weight: 400;
  margin-bottom: 0;
}

/* Order Result */
.az-cs-order-result {
  padding: 40px;
  border-radius: 10px;
}

.az-cs-order-result .head {
  display: grid;
  grid-template-columns: 150px 1fr 280px;
  grid-gap: 10px;
}

@media (max-width: 992px) {
  .az-cs-order-result .head {
    grid-template-columns: 1fr;
  }
}

.az-cs-order-result .head .icon {
  font-size: 100px;
  color: #4BB543;
}

.az-cs-order-result .car-name {
  font-size: 24px;
  font-weight: 700;
}

.az-cs-order-result .car-name .id {
  font-size: 15px;
  font-weight: 400;
}

.az-cs-order-result .features-box .features-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.az-cs-order-result .features-box {
  margin-top: 20px;
}

.az-cs-order-result .features-box .specs {
  margin-bottom: 0;
}

.az-cs-order-result .features-box .specs li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  border: 1px solid #dedede;
  padding: 2px 6px;
  border-radius: 4px;
}

.az-cs-order-result .features-box .specs li strong {
  font-weight: 600;
}

.az-cs-order-result .right-box {
  background-color: #f2f2f2;
  padding: 20px 15px 15px 15px;
  border-radius: 10px;
}

.az-cs-order-result .prices .features-title {
  font-size: 13px;
}

.az-cs-order-result .prices li {
  font-size: 20px !important;
}

  /* Section */
.az-section {
  padding: 60px 0;
}

.az-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.az-section-head .title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-main2);
}
.az-section-head .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main1);
}

@media (max-width: 992px) {
  .az-section-head .title {
    font-size: 28px;
  }
}

/* General */
.btn {
  height: 48px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex !important;
  border-radius: 10px !important;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}
.bg-orange {
  background-color: var(--color-main1);
}
.btn.btn-sm {
  height: 34px;
  padding: 5px 15px;
}
.btn.btn-orange {
  background-color: var(--color-main1);
  border-color: var(--color-main1);
  color: #fff;
}
.btn.btn-orange:hover, .btn.btn-orange:focus {
  background-color: var(--color-main1-hover);
  border-color: var(--color-main1-hover);
  color: #fff;
}
.btn.btn-outline-orange {
  border-color: var(--color-main1);
  color: var(--color-main1);
}
.btn.btn-outline-orange:hover, .btn.btn-outline-orange:focus {
  background-color: var(--color-main1-hover);
  border-color: var(--color-main1-hover);
  color: #fff;
}
.btn.btn-blue {
  background-color: var(--color-main2);
  border-color: var(--color-main2);
  color: #fff;
}
.btn.btn-blue:hover, .btn.btn-blue:focus {
  background-color: #162d75;
  border-color: #162d75;
  color: #fff;
}
.btn.btn-outline-blue {
  border-color: var(--color-main2);
  color: var(--color-main2);
}
.btn.btn-outline-blue:hover, .btn.btn-outline-blue:focus {
  background-color: #0a1e58;
  border-color: #0a1e58;
  color: #fff;
}
.btn.btn-outline-dark {
  border-color: #d3d3d3;
  color: var(--color-main2);
}
.btn.btn-outline-dark:hover, .btn.btn-outline-dark:focus {
  background-color: #0a1e58;
  border-color: #0a1e58;
  color: #fff;
}
.btn.btn-link {
  color: #111;
  text-decoration: none;
  padding: 5px !important;
}
.btn.btn-link:hover {
  color: #333;
  background-color: rgba(0,0,0,0.05);
}

.dropdown .btn.dropdown-toggle::after {
  display: none;
}
.dropdown .btn i {
  margin-left: 5px;
  margin-top: -2px;
  transition: 0.2s;
}
.dropdown .btn.show .fa-chevron-down {
  transform: rotate(180deg);
}
.dropdown .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 0;
}

.btn-view-all {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.form-control {
  background-color: #fff;
  min-height: 48px;
  padding: 5px 20px;
  font-size: 13px;
  border: 1px solid #d3d3d3;
  color: #3d3d3d !important;
  border-radius: 10px;
}
.form-control::placeholder {
  color: #cdcdcd;
}
.form-control:hover, .form-control:focus {
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: none;
}

.form-select {
  min-height: 48px !important;
  padding: 5px 20px !important;
  font-size: 13px !important;
  box-shadow: none !important;
  border-radius: 10px;
}
.form-select option {
  font-size: 13px;
}
.form-select:hover, .form-select:focus {
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: none;
}

.select2 .select2-selection__rendered {
  font-size: 13px;
  color: #3d3d3d !important;
  position: relative;
  top: 5px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.select2 .select2-search__field {
  box-shadow: none !important;
}

textarea.form-control {
  padding-top: 15px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  font-size: 14px;
  margin-bottom: 5px;
}

.form-check-input {
  height: 25px;
  width: 25px;
  border-radius: 100% !important;
  box-shadow: none !important;
  border: 2px solid rgba(0, 0, 0, 0.25) !important;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: var(--color-main1);
  border-color: var(--color-main1) !important;
  box-shadow: none !important;
}

.az-checkbox {
  margin: 5px 0;
}
.az-checkbox .text {
  margin-top: 5px;
  margin-left: 5px;
  display: inline-block;
}
.az-checkbox .text a {
  color: var(--color-main1);
}
.az-checkbox .text a:hover {
  text-decoration: underline;
}

.modal .modal-header .modal-title {
  font-size: 15px !important;
  font-weight: 600 !important;
}
.modal .modal-content {
  border-radius: 0 !important;
}

.modal-sozlesme-content h1, .modal-sozlesme-content h2, .modal-sozlesme-content h3, .modal-sozlesme-content h4, .modal-sozlesme-content h5, .modal-sozlesme-content h6 {
  font-weight: 600;
}
.modal-sozlesme-content h2 {
  font-size: 20px !important;
}
.modal-sozlesme-content p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.modal-auth .modal-content {
  padding: 10px;
}

.modal-auth .modal-header {
  border-bottom: 0 !important;
}

.modal-auth .modal-header .modal-title {
  font-size: 20px !important;
}

.modal-auth form label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.modal-auth form .form-control {
  border-radius: 0 !important;
}

.modal-auth form .btn {
  font-size: 15px;
  font-weight: 600;
  border-radius: 0 !important;
}

.modal-auth form .forgot {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #6c757d;
}

.form-check-sm .form-check-input {
  height: 20px;
  width: 20px;
}

.form-check-sm .form-check-label {
  margin-bottom: 0;
  margin-left: 2px;
  position: relative;
  top: 3px;
}

.dropdown-item:focus, .dropdown-item.active, .dropdown-item:active {
  background-color: var(--color-main2);
}

/* Bootstrap Select */
.bootstrap-select {
  width: 100% !important;
  padding: 0 !important;
  padding-left: 0 !important;
  height: 48px;
  border-radius: 10px;
}
.bootstrap-select.form-select {
  padding-left: 0 !important;
}

.bootstrap-select .btn-light {
  background-color: transparent !important;
  border: 0 !important;
  height: 100%;
  padding-left: 37px !important;
}

.bootstrap-select .filter-option {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #6c757d;
  font-size: 13px;
}

.bootstrap-select .form-control {
  min-height: 34px !important;
  padding: 10px 20px !important;
}

.bootstrap-select .bs-searchbox {
  padding: 10px;
}

.bootstrap-select .inner {
  padding: 0 5px 5px 5px;
}

.bootstrap-select .dropdown-menu {
  padding: 0;
  max-height: 300px;
}

.bootstrap-select .dropdown-item {
  font-size: 15px;
  border-radius: 6px;
  padding: 7px 10px;
  margin: 3px 0;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: 0 !important
}

/* Datepicker */
.ui-datepicker {
  padding: 6px !important;
  border: 0 !important;
  box-shadow: 10px 32px 72px rgba(51, 51, 51, 0.45);
  border-radius: 8px !important;
  z-index: 3 !important;
}

.ui-datepicker .ui-datepicker-header {
  background-color: transparent;
  border: 0;
  padding: 4px 0 15px 0 !important;
}

.ui-datepicker .ui-datepicker-title {
  color: #102156;
  font-weight: 700;
}

.ui-datepicker tr:first-child th {
  background-color: rgba(16, 33, 86, 0.10);
  color: #102156;
  padding: 5px;
  border-bottom: 6px solid #fff;
}

.ui-datepicker tr:first-child th:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 10px;
}

.ui-datepicker tr:first-child th:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 10px;
}

.ui-datepicker .ui-icon-circle-triangle-e, .ui-datepicker .ui-icon-circle-triangle-w {
  display: none !important;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 100%;
  background-color: rgba(16, 33, 86, 0.10);
}

.ui-datepicker .ui-datepicker-next::after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  display: block;
  font-weight: 300;
  color: #6c757d;
  position: relative;
  right: -1px;
}

.ui-datepicker .ui-datepicker-prev::after {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  display: block;
  font-weight: 300;
  color: #6c757d;
  position: relative;
  left: -1px;
}

.ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev-hover {
  padding: 0 !important;
  background-color: rgba(16, 33, 86, 0.20) !important;
  border: 0 !important;
}

.ui-datepicker tr td a, .ui-datepicker tr td span{
  color: #102156 !important;
  border: 0 !important;
  height: 35px !important;
  width: 35px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500 !important;
  border-radius: 6px !important;
}

.ui-datepicker .ui-state-active, .ui-datepicker .ui-widget-content .ui-state-active {
  background-color: var(--color-main1) !important;
  color: #fff !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight {
  background: #b9b9b9 !important;
}

.ui-widget {
  font-family: "Plus Jakarta Sans" !important;
}

/* Nav Tabs */
.az-profile-action {
  background-color: rgba(0,0,0,0.02);
  border: 1px solid #dee2e6;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  transition: 0.2s;
}

.az-profile-action:hover {
  background-color: rgba(0,0,0,0.07);
}

.az-profile-action .icon {
  width: 60px;
  min-width: 60px;
  font-size: 26px;
  text-align: center;
}

.az-profile-action .title {
  font-size: 18px;
}

.az-profile-action.active {
  border-width: 2px;
  background-color: rgba(0,0,0,0.07);
}

.az-profile-nav {
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .az-profile-action {
    padding: 15px;
    margin: 5px 0;
  }
  .az-profile-action .title {
    font-size: 15px;
  }
}

.btn:focus {
  box-shadow: none !important;
}

@media (max-width: 992px) {
  .hidden-mobile {
    display: none !important;
  }
  body {
    padding-bottom: 55px;
  }
}

@media (min-width: 992px) {
  .display-mobile {
    display: none !important;
  }
}

.az-mobile-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background-color: #fff;
  z-index: 50;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.1);
}

.az-mobile-bar .link {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-main2);
  transition: 0.2s;
}

.az-mobile-bar .link i {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.az-mobile-bar .link.active, .az-mobile-bar .link:hover,
.az-mobile-bar .link:focus {
  color: var(--color-main1);
}