body {
  line-height: 1.7;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
}

img {
  max-width: 100%;
}

a {
  color: #222;
  text-decoration: none;
}
a.nav-link {
  color: #000;
}

.tibo-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  background: #fff;
  width: 800px;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.tibo-modal .modal-header {
  background: #F6F6F6;
  position: relative;
  padding: 0 20px;
}
.tibo-modal .modal-header h4 {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  line-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tibo-modal .modal-header .close-modal {
  cursor: pointer;
  position: absolute;
  right: 10px;
  z-index: 99999;
}
.tibo-modal .modal-header .close-modal:hover {
  opacity: 0.6;
}
.tibo-modal .modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tibo-modal .modal-content ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tibo-modal .modal-content ul li .driver-title {
  width: 110px;
}
.tibo-modal .modal-content ul li .driver-desc {
  width: calc(100% - 110px);
  padding-left: 10px;
}
.tibo-modal .modal-content ul li .driver-desc a {
  color: #4483BC;
}
.tibo-modal .modal-footer {
  padding: 10px 15px;
}

body.tibo-has-modal .tibo-modal {
  display: block;
}
body.tibo-has-modal:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

#footer {
  padding: 50px 0 30px;
}
#footer .box-footer h2 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 20px;
}
#footer .box-footer ul {
  padding: 0;
}
#footer .box-footer ul li {
  font-size: 14px;
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  list-style: none;
}
#footer .box-footer ul li:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #91ad41;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#footer .box-footer ul li:hover a {
  color: #91ad41;
}
#footer .box-footer .social a {
  border: 1px solid #91ad41;
}
#footer .online-support {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 9999;
}
#footer .online-support .online-support-items {
  width: 60px;
  height: 60px;
  background: #91ad41;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
  cursor: pointer;
  animation: q-shake 1s;
  animation-iteration-count: infinite;
}
#footer .online-support .online-support-items:hover {
  background: #c30404;
}
#footer .online-support .online-support-items.to-top {
  animation: none;
}

.copyright {
  background-color: rgba(232, 218, 199, 0.6);
  padding: 10px;
  font-size: 14px;
  color: #686868;
  padding: 15px 0;
}

.page-404 img {
  max-width: 460px;
}

.pagination {
  justify-content: center;
}
.pagination .nav-links a, .pagination .nav-links span {
  height: 32px;
  width: 32px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin: 0 4px;
  border-radius: 6px;
}
.pagination .nav-links a:hover, .pagination .nav-links a.current, .pagination .nav-links span:hover, .pagination .nav-links span.current {
  background-color: #91ad41;
  color: #fff;
}

ul.bs-pagination {
  padding: 0;
  margin: 0;
}
ul.bs-pagination li {
  display: inline-block;
  list-style: none;
}
ul.bs-pagination li a {
  height: 32px;
  width: 32px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin: 0 4px;
  border-radius: 6px;
}
ul.bs-pagination li a:hover, ul.bs-pagination li a.current {
  background-color: #91ad41;
  color: #fff;
}
ul.bs-pagination li.active a {
  background-color: #91ad41;
  color: #fff;
}
ul.bs-pagination li.disabled {
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-404 img {
    max-width: 70%;
  }
  .tibo-modal {
    width: 96%;
  }
  #footer .online-support {
    right: 24px;
    display: none;
  }
  .copyright {
    font-size: 12px;
  }
}
@keyframes q-shake {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}