@import url(https://fonts.googleapis.com/css?family=Nunito);
@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap);
@charset "UTF-8";
:root {
  --main-color: #0073ff;
  --second-color: #29a161;
  --thired-color: #e15421;
  --body-bg: rgba(39, 241, 183, 0.1);
}

/* STATRT BRAND ANIM */
@keyframes brand-anim {
  0% {
    color: var(--main-color);
    text-shadow: none;
  }
  20% {
    color: var(--main-color);
    text-shadow: none;
  }
  40% {
    color: #FFF;
    text-shadow: 0 0 5px #55a6ea, 10 0 30px #0befe8;
  }
  60% {
    color: var(--main-color);
    text-shadow: none;
  }
  80% {
    color: var(--main-color);
    text-shadow: none;
  }
  100% {
    color: var(--main-color);
    text-shadow: none;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes move-right {
  0% {
    left: calc(50% - 50px);
  }
  50% {
    left: 50%;
  }
  100% {
    left: calc(50% + 50px);
  }
}
@keyframes pre-load {
  0% {
    color: #484848;
    text-shadow: none;
  }
  20% {
    color: #484848;
    text-shadow: none;
  }
  40% {
    color: #fff900;
    text-shadow: 0 0 7px #fff900, 0 0 50px #ff6c00;
  }
  60% {
    color: #484848;
    text-shadow: none;
  }
  80% {
    color: #484848;
    text-shadow: none;
  }
  100% {
    color: #484848;
    text-shadow: none;
  }
}
.single-post .main-content .post-share .icon-linkedin, .single-post .main-content .post-share .icon-twitter, .single-post .main-content .post-share .icon-facebook {
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 5px;
  text-align: center;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .single-post .main-content .post-share .icon-linkedin, .single-post .main-content .post-share .icon-twitter, .single-post .main-content .post-share .icon-facebook {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

.single-post .main-content .post-share, .single-post .main-content .ads, .single-post .main-content .related-posts, .single-post .main-content .post-pagination, .single-post .main-content .post-tags {
  background-color: #FFF;
  padding: 10px 0;
  color: #141414;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  overflow: hidden;
  border-top: 3px solid var(--main-color);
}
.single-post .main-content .post-share h4, .single-post .main-content .ads h4, .single-post .main-content .related-posts h4, .single-post .main-content .post-pagination h4, .single-post .main-content .post-tags h4 {
  padding: 0 20px 10px;
  border-bottom: 2px solid #ddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: #eaeaea !important;
  margin-top: 60px;
}

ol {
  padding: 0;
}
ol:not(.classic) {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
}
ul li:nth-child(1) {
  animation-delay: 0.2s;
  animation-delay: 0.1s;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:link {
  text-decoration: none;
}

p {
  padding: 0px;
  margin: 0px;
}

.form-control:focus {
  box-shadow: none;
  outline: 0 none;
}

.help-block {
  color: #e14342 !important;
}

#app {
  position: relative;
}

.contact {
  position: relative;
}
.contact .page-head .contact-text {
  text-align: center;
  padding: 40px 20px;
  background-color: #FFF;
  font-size: 18px;
  color: #333;
  position: relative;
  border: 5px solid var(--main-color);
  border-bottom: none;
  border-top: none;
}
.contact .info-wrap {
  padding: 30px auto;
  margin: 30px auto;
}
.contact .info-wrap .info {
  text-align: center;
  padding: 40px 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
  font-size: 18px;
  color: #333;
  position: relative;
  border: 3px solid var(--main-color);
}
.contact .info .header {
  background-color: var(--main-color);
  min-height: 50px;
  padding: 15px;
  position: relative;
  margin-bottom: 15px;
}
.contact .info i {
  font-size: 20px;
  color: var(--main-color);
  float: left;
  width: 44px;
  height: 44px;
  background: #def0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 10px;
}
.contact .info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFF;
}
.contact .info h5 {
  text-align: left;
  color: var(--main-color);
  font-weight: bold;
  margin: 0;
}
.contact .info p {
  font-size: 14px;
  text-align: left;
  color: #333;
}
.contact .info .item {
  margin-bottom: 10px;
  display: flex;
}
.contact .info .item .icon {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.contact .info .item .item-info {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.contact .info .item i {
  position: static;
}
.contact .info .type {
  background-color: #31bac4;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #333;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: var(--main-color);
  color: red;
}
.contact .info .email:hover i {
  background: var(--main-color);
  color: #fff;
}
.contact .info .address:hover i {
  background: var(--main-color);
  color: #fff;
}
.contact .info .phone:hover i {
  background: var(--main-color);
  color: #fff;
}
.contact .message-form {
  width: 100%;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.contact .message-form .label {
  font-weight: bold;
  padding-top: 24px;
}
.contact .message-form .validate {
  display: none;
  color: #0314a8;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .message-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .message-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .message-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .message-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--main-color);
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}
.contact .message-form select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  height: 44px;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  outline: none;
  -moz-appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: #CCC;
  box-shadow: none;
}
.contact .message-form select:focus {
  border-width: 0 0 2px;
  border-style: solid;
  border-color: var(--main-color);
  box-shadow: none;
}
.contact .message-form input {
  background-color: var(--main-color);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  border-radius: 5px;
  margin-top: 15px;
  transition: 0.4s;
  width: 100%;
  font-weight: bold;
  font-size: 20px;
}
.contact .message-form input:not([type=submit]) {
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  background-color: #eaf0f2;
  outline: none;
  color: #333;
  height: 44px;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: #CCC;
}
.contact .message-form input:not([type=submit]):focus {
  border-width: 0 0 2px;
  border-style: solid;
  border-color: var(--main-color);
  box-shadow: none;
}
.contact .message-form input:not([type=submit])::-moz-placeholder {
  color: #555;
}
.contact .message-form input:not([type=submit])::placeholder {
  color: #555;
}
.contact .message-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  background-color: #eaf0f2;
  outline: none;
  color: #333;
  padding: 10px 12px;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: #CCC;
  margin-bottom: 0;
}
.contact .message-form textarea:focus {
  border-width: 0 0 2px;
  border-style: solid;
  border-color: var(--main-color);
  box-shadow: none;
}
.contact .message-form textarea::-moz-placeholder {
  color: #555;
}
.contact .message-form textarea::placeholder {
  color: #555;
}

.testimonials {
  position: relative;
}
.testimonials .page-head .testimonials-text {
  text-align: center;
  padding: 40px 20px;
  background-color: #FFF;
  font-size: 18px;
  color: #333;
  position: relative;
  border: 5px solid var(--main-color);
  border-bottom: none;
  border-top: none;
}
.testimonials .testimonials-wrapper {
  margin-top: 40px;
}
.testimonials .testimonial-box .testimonial-item {
  box-sizing: content-box;
  padding: 15px 5px;
  margin: 40px 0;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}
.testimonials .testimonial-box .meta {
  position: relative;
  min-height: 80px;
  height: 100%;
}
@media (min-width: 768px) {
  .testimonials .testimonial-box .meta {
    width: 100%;
    height: 100%;
  }
}
.testimonials .testimonial-box .testimonial-img {
  background-color: #FFF;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -55px;
  z-index: 2;
  border: 6px solid var(--main-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .testimonials .testimonial-box .testimonial-img {
    top: -55px;
  }
}
.testimonials .testimonial-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0;
  color: #2c4964;
}
@media (max-width: 767px) {
  .testimonials .testimonial-box h3 {
    padding-top: 50px;
  }
}
.testimonials .testimonial-box h4 {
  font-size: 14px;
  color: #999999;
  margin: 0;
}
.testimonials .testimonial-box .facebook a {
  color: #fff;
  background-color: #3b5998;
  padding: 5px 15px;
  border-radius: 3px;
  position: absolute;
  bottom: 5px;
}
@media (max-width: 767px) {
  .testimonials .testimonial-box .facebook a {
    right: 15px;
    top: 0;
    bottom: auto;
  }
}
.testimonials .testimonial-box .quote-icon-left, .testimonials .testimonial-box .quote-icon-right {
  color: #b1a9fc;
  font-size: 26px;
}
.testimonials .testimonial-box .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-box .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-box p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  border: 6px solid var(--main-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.search .search-title {
  color: #333;
  text-align: center;
  font-weight: bold;
  margin: 25px auto;
  background-color: #FFF;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 3px solid var(--main-color);
  border-bottom: 3px solid #FFF;
}
.search .search-title span {
  color: var(--main-color);
}
.search .topecs-list {
  background-color: #FFF;
  margin-bottom: 20px;
}
.search .info {
  padding-left: 15px;
}
.search .entry {
  background-color: #FFF;
  border: 1px solid var(--main-color);
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 15px;
  padding: 0;
}
.search .tags-search a {
  padding: 4px 6px;
  color: #FFF !important;
  background-color: rgb(2, 6, 15);
  border-radius: 5px;
}
.search .entry-title {
  margin: 0 0 5px 10px;
  padding: 25px 30px 0px !important;
}
.search .entry-title a {
  font-size: 28px;
  font-weight: bold;
  color: var(--main-color);
  transition: 0.3s;
}
.search .entry-title a:hover {
  color: rgb(95, 197, 245);
}
.search .entry-meta {
  margin-bottom: 0 !important;
  color: var(--main-color);
  border-top: solid 2px #DDD;
  padding: 10px 30px;
}
.search .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.search .entry-meta ul li {
  padding-left: 0 !important;
}
.search .entry-meta ul time {
  font-weight: bold;
  color: #232327;
}
.search .entry-meta ul i {
  color: #232327;
}
.search .entry-meta ul ul a {
  padding: 5px 10px;
  border: 1px solid var(--main-color);
}
.search i {
  font-size: 16px;
  line-height: 0;
}
.search a {
  font-weight: bold;
  color: #777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.tag {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #eaf0f2;
}
.tag .tag-title {
  font-weight: bold;
  font-size: 36px;
  margin: 0 0 20px;
  line-height: 1.4;
  position: relative;
  text-align: center;
}
.tag .tag-title:before {
  content: "";
  width: 300px;
  height: 4px;
  background: linear-gradient(to right, #2980b9 20%, #27ae60 20%, #27ae60 40%, #d35400 40%, #d35400 60%, #8e44ad 60%, #8e44ad 80%, #c0392b 80%);
  position: absolute;
  left: calc(50% - 150px);
  bottom: -20px;
}
.tag .tag-title:after {
  content: "";
  width: 40px;
  height: 20px;
  background: linear-gradient(to right, #d35400 20%, #d35400 20%, #d35400 20%, #0880e0 20%, #0880e0 80%, #d35400 80%, #d35400 80%, #d35400 80%);
  position: absolute;
  left: calc(50% - 20px);
  bottom: -28px;
  border-radius: 5px;
}
.tag .tag-desc {
  font-size: 20px;
  margin: 50px auto 40px;
  line-height: 1.5;
  background-color: #f9f9f9;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: solid 5px var(--main-color);
  color: #333;
  text-align: center;
  font-size: 25px;
}
.tag .topecs-list {
  background-color: #FFF;
  padding: 30px 10px;
  margin-bottom: 40px;
}
.tag .entry {
  padding: 30px 30px 5px;
  background-color: #FFF;
  border: 10px solid #eaeaea;
  margin-bottom: 60px;
  box-shadow: 0 0 3px rgba(2, 2, 2, 0.2);
  min-height: 400px;
}
.tag .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  height: 200px;
}
.tag .entry .entry-img img {
  background-size: cover;
  width: 100%;
  height: 100%;
}
.tag .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.tag .entry .entry-title a {
  color: var(--main-color);
  transition: 0.3s;
}
.tag .entry .entry-title a:hover {
  color: var(--main-color);
}
.tag .entry .entry-meta {
  margin-bottom: 15px;
  color: var(--main-color);
}
.tag .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.tag .entry .entry-meta ul li {
  padding-left: 20px;
}
.tag .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.tag .entry .entry-meta a {
  font-weight: bold;
  color: #777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.tag .entry .entry-content p {
  line-height: 24px;
}
.tag .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
  margin-top: 10px;
}
.tag .entry .entry-content .read-more a {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
}
.tag .entry .entry-content .read-more a:hover {
  background: #7aafcb;
}
.tag .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.tag .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #eaeaea;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.tag .entry .entry-content blockquote p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.tag .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #1e4356;
  margin-top: 20px;
  margin-bottom: 20px;
}
.tag .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #eaeaea;
}
.tag .entry .entry-footer i {
  color: #4c99c1;
  display: inline;
}
.tag .entry .entry-footer a {
  color: #255269;
  transition: 0.3s;
}
.tag .entry .entry-footer a:hover {
  color: #68A4C4;
}
.tag .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.tag .entry .entry-footer .cats li {
  display: inline-block;
}
.tag .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.tag .entry .entry-footer .tags li {
  display: inline-block;
}
.tag .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}
.tag .entry .entry-footer .share {
  font-size: 16px;
}
.tag .entry .entry-footer .share i {
  padding-left: 5px;
}
.tag .entry-single {
  margin-bottom: 30px;
}
.tag .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.tag .blog-author img {
  width: 120px;
  margin-right: 20px;
}
.tag .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #1e4356;
}
.tag .blog-author .social-links {
  margin: 0 10px 10px 0;
}
.tag .blog-author .social-links a {
  color: rgba(30, 67, 86, 0.5);
  margin-right: 5px;
}
.tag .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}
.tag .sidebar {
  padding: 30px;
  margin: 0 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
}
@media (min-width: 992px) {
  .tag .sidebar {
    margin: 0 0 30px 20px;
  }
}
.tag .sidebar .tags a {
  background-color: #eaeaea;
  padding: 8px 5px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
  display: block;
}
.tag .sidebar .tags h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #1e4356;
}
.tag .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #1e4356;
  position: relative;
}
.tag .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.tag .sidebar .-item ul {
  list-style: none;
  padding: 0px;
}
.tag .sidebar .-item ul li {
  background-color: #eaeaea;
  padding: 8px 5px;
  margin-bottom: 5px;
}
.tag .sidebar .-item ul li a {
  color: #222;
  font-weight: bold;
}
.tag .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}
.tag .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.tag .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #68A4C4;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.tag .sidebar .search-form form button i {
  line-height: 0;
}
.tag .sidebar .search-form form button:hover {
  background: #77adca;
}
.tag .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.tag .sidebar .categories ul li + li {
  padding-top: 10px;
}
.tag .sidebar .categories ul a {
  color: #1e4356;
  transition: 0.3s;
}
.tag .sidebar .categories ul a:hover {
  color: #68A4C4;
}
.tag .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}
.tag .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.tag .sidebar .recent-posts img {
  width: 80px;
  float: left;
}
.tag .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}
.tag .sidebar .recent-posts h4 a {
  color: #1e4356;
  transition: 0.3s;
}
.tag .sidebar .recent-posts h4 a:hover {
  color: #68A4C4;
}
.tag .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}
.tag .sidebar .tags {
  margin-bottom: -10px;
}
.tag .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.tag .sidebar .tags ul li {
  display: inline-block;
}
.tag .sidebar .tags ul a {
  color: #3f8db5;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #e4eff5;
  display: inline-block;
  transition: 0.3s;
}
.tag .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #68A4C4;
  background: #68A4C4;
}
.tag .sidebar .tags ul a span {
  padding-left: 5px;
  color: #bedae8;
  font-size: 14px;
}

.sidebar-item ul {
  list-style: none;
}
.sidebar-item ul li a {
  color: #0075ff;
}
.sidebar-item ul li:not(:last-child) {
  border-bottom: 2px solid #f0f0f0;
}

.blog-pagination {
  margin: 20px 0;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  padding: 15px;
}
.blog-pagination ul {
  list-style: none;
}
.blog-pagination li {
  display: inline-block;
  padding: 6px 12px;
  display: inline;
  background-color: #fff;
  border-radius: 3px;
  color: var(--main-color);
  margin: 10px 1px;
  box-shadow: 0 4px 5px rgba(76, 71, 71, 0.5);
  transition: all 0.3s ease-in-out;
}
.blog-pagination li:hover {
  background-color: var(--main-color);
}
.blog-pagination li:hover a {
  color: #FFF;
}
.blog-pagination .active {
  background-color: var(--main-color);
}
.blog-pagination .active a {
  color: #FFF;
}

.add-article form .btn {
  width: 100%;
}
.add-article form input {
  padding: 10px;
  margin-bottom: 20px;
}

form textarea {
  padding: 10px;
  margin-bottom: 20px;
  min-height: 200px !important;
}

.articles table img {
  width: 80px;
  height: 80px;
  border-radius: 40px;
}

.corse iframe {
  margin: auto;
}
.corse h2 {
  margin: auto;
}

@media screen and (max-width: 993px) {
  .navbar-brand ul.pre-loader li {
    font-size: 15px;
  }
}
.single-post {
  background-color: #eaeaea;
  padding: 0;
}
.single-post .main-content {
  background-color: #eaeaea;
}
.single-post .main-content h4 {
  color: var(--main-color);
}
.single-post .main-content img {
  text-align: center;
}
.single-post .main-content .article-header h1 {
  display: block;
  text-align: center;
  padding: 30px 20px 0;
  font-size: 40px;
  position: relative;
  font-weight: bold;
}
.single-post .main-content .article-header h1::before {
  content: "";
  width: 100px;
  height: 5px;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  bottom: -18px;
  margin-left: -50px;
}
.single-post .main-content .article-header h1::after {
  content: "";
  position: absolute;
  left: calc(50% - 50px);
  height: 6px;
  width: 5px;
  background-color: #eaeaea;
  bottom: -18px;
  animation: move-right 2s infinite linear;
}
.single-post .main-content .article-info {
  margin: 50px 0 10px;
  background-color: #FFF;
  padding: 15px 20px 0;
}
.single-post .main-content .article-content {
  background-color: #FFF;
  padding: 0;
  border: none;
  font-size: 20px;
  position: relative;
}
.single-post .main-content .article-content::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -20px;
  left: 0px;
}
.single-post .main-content .article-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0 15px;
  background-color: #eaeaea;
  padding: 25px;
}
.single-post .main-content .article-content a {
  font-weight: bold;
  color: var(--main-color);
  text-decoration: none;
}
.single-post .main-content .article-content .text {
  background-color: #f9f9f9;
  padding: 20px;
  margin: 15px 0;
}
.single-post .main-content .article-content p {
  background-color: #f9f9f9;
  padding: 20px;
  margin: 15px 0;
}
.single-post .main-content .article-content p.t {
  color: #f1f1f1;
  background-color: #333d52;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.single-post .main-content .article-content .points:not(.classic) {
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-post .main-content .article-content .points li {
  padding: 10px 15px;
  background-color: #fbfbfb;
  margin-bottom: 10px;
}
.single-post .main-content .article-content .points li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #333d52;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.single-post .main-content .article-content .points li p:first-child {
  color: var(--main-color);
}
.single-post .main-content .article-content .file-name {
  background-color: #eee;
  padding: 15px;
  margin: 15px 0 0;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  color: var(--main-color);
  border-left: 4px solid var(--main-color);
}
.single-post .main-content .article-content .important {
  padding: 15px;
  margin-bottom: 15px;
  font-weight: bold;
  border-radius: 4px;
  background-color: rgba(214, 7, 7, 0.078);
  font-size: 15px;
  line-height: 2;
}
.single-post .main-content .article-content .useful {
  padding: 40px 15px 10px;
  background-color: #f9f9f9;
  margin: 20px 0 10px;
  position: relative;
}
.single-post .main-content .article-content .useful::before {
  content: "Useful Links";
  padding: 5px 10px;
  background-color: #333d52;
  margin-right: 10px;
  color: #edf855;
  font-weight: bold;
  position: absolute;
  top: -10px;
  left: 0;
}
.single-post .main-content .article-content .useful a {
  display: block;
  padding: 5px;
}
.single-post .main-content .article-content .useful a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  margin-right: 10px;
  font-weight: bold;
}
.single-post .main-content .article-content pre {
  position: relative;
}
.single-post .main-content .article-content .lan {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #4154f1;
  color: #FFF;
  padding: 2px 15px;
}
.single-post .main-content .post-desc {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  position: relative;
  font-size: 17px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
  line-height: 1.8;
}
.single-post .main-content .post-desc:before {
  background: linear-gradient(to right, #2980b9 20%, #27ae60 20%, #27ae60 40%, #d35400 40%, #d35400 60%, #8e44ad 60%, #8e44ad 80%, #c0392b 80%);
  position: absolute;
  content: "";
  height: 4px;
  right: 0;
  left: 0;
  top: -4px;
}
.single-post .main-content .post-desc::after {
  background: linear-gradient(to right, #2980b9 20%, #27ae60 20%, #27ae60 40%, #d35400 40%, #d35400 60%, #8e44ad 60%, #8e44ad 80%, #c0392b 80%);
  position: absolute;
  content: "";
  height: 4px;
  right: 0;
  left: 0;
  bottom: -4px;
}
.single-post .main-content .post-meta {
  background-color: #FFF;
  padding: 10px 20px;
  color: #141414;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  overflow: hidden;
  font-size: 18px;
  color: #888;
  font-weight: bold;
  text-align: center;
}
.single-post .main-content .post-meta a {
  color: #273550 !important;
  text-decoration: none;
}
.single-post .main-content .post-meta a:hover {
  color: var(--main-color) !important;
}
.single-post .main-content .post-tags a {
  color: #FFF;
}
.single-post .main-content .post-tags a:link {
  background-color: #1e4356;
  color: #FFF;
  border-radius: 4px;
  padding: 0 6px;
  margin-left: 8px;
  float: left;
  margin-bottom: 8px;
}
.single-post .main-content .tutoriel-link {
  padding: 20px;
  padding-left: auto;
  background-color: #FFF;
  margin-top: 2px;
  margin-bottom: 10px;
  text-align: center;
}
.single-post .main-content .tutoriel-link a {
  text-align: center;
  background-color: #cc3333;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  padding: 7px 15px;
  max-width: 200px;
}
.single-post .main-content .post-pagination {
  display: flex;
  justify-content: space-between;
  background-color: #FFF;
  padding: 15px 0;
  margin: 10px 0;
}
.single-post .main-content .post-pagination i {
  margin: 0 3px;
}
.single-post .main-content .post-pagination .next-button {
  float: right;
}
@media (max-width: 767px) {
  .single-post .main-content .post-pagination .next-button {
    width: 100%;
  }
  .single-post .main-content .post-pagination .next-button .next {
    text-align: right;
  }
  .single-post .main-content .post-pagination .next-button .desibled {
    text-align: right;
  }
}
.single-post .main-content .post-pagination .prev-button {
  float: left;
}
@media (max-width: 767px) {
  .single-post .main-content .post-pagination .prev-button {
    width: 100%;
  }
  .single-post .main-content .post-pagination .prev-button .desibled {
    text-align: left;
  }
}
.single-post .main-content .post-pagination a {
  color: #eaf0f2;
}
@media (max-width: 767px) {
  .single-post .main-content .post-pagination a {
    display: block;
    width: 100%;
  }
}
.single-post .main-content .post-pagination a:link {
  background-color: #1a202c;
  color: #eaf0f2;
  border-radius: 5px;
  padding: 4px 10px;
  margin: 10px 0;
  float: left;
}
.single-post .main-content .post-pagination .desibled {
  cursor: not-allowed;
  opacity: 0.4;
  background-color: #1a202c;
  color: #eaf0f2;
  border-radius: 5px;
  margin: 10px 0;
  padding: 4px 10px;
  float: left;
}
@media (max-width: 767px) {
  .single-post .main-content .post-pagination .desibled {
    margin-top: 10px;
    width: 100%;
  }
}
.single-post .main-content .post-pagination ul {
  list-style: none;
  padding-bottom: 18px;
  padding-left: 0;
}
.single-post .main-content .post-share .icon-facebook {
  background-color: #3b5998;
}
.single-post .main-content .post-share .icon-twitter {
  background-color: #1da1f2;
}
.single-post .main-content .post-share .icon-linkedin {
  background-color: #0077b5;
}
.single-post .breadcrumb-hold .breadcrumb {
  background-color: #FFF;
  padding: 8px;
  font-size: 20px;
  font-weight: bold;
}
.single-post .breadcrumbs {
  background-color: #FFF;
  padding: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.single-post .breadcrumbs > span + span:before {
  font-family: "Font Awesome Free";
  content: "\f103";
  color: #757575;
  display: block;
  font-size: 20px;
  margin: 10px;
}
@media (min-width: 768px) {
  .single-post .breadcrumbs > span + span:before {
    padding: 0 5px;
    color: #757575;
    content: "/ ";
    display: inline;
  }
}
.single-post .breadcrumbs a {
  color: var(--main-color);
  transition: 0.3s;
}
.single-post .breadcrumbs > span {
  color: #757575;
}
.single-post .breadcrumbs > span:not(:last-child) {
  color: var(--main-color);
}
.single-post .comments-list {
  border-top: 3px #AAA dashed;
  margin-top: 20px;
}
.single-post .comments-list .commentlist {
  padding-left: 0px;
}
.single-post .comments-list .commentlist p {
  padding-left: 20px;
  color: rgb(100, 91, 91);
  font-size: 20px;
}
.single-post .comments-list .comment {
  position: relative;
  list-style: none;
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #DDD;
  margin-bottom: 15px;
}
.single-post .comments-list .comment .children > .comment {
  background-color: #f9f9f9;
  margin-top: 10px;
}
.single-post .comments-list .comment .children > .comment .comment {
  background-color: #f1f1f1;
  margin-top: 10px;
}
.single-post .comments-list h3#comments {
  display: none;
}
.single-post .comments-list .comments-count {
  padding: 10px;
  color: #777;
  font-weight: bold;
  text-align: center;
  background-color: #ccc;
  border-radius: 5px;
  margin: 20px 0;
}
.single-post .comments-list .comment-author a {
  color: #222;
  font-weight: bold;
  padding: 5px;
  font-size: 20px;
}
.single-post .comments-list .comment-author .says {
  display: none;
}
.single-post .comments-list .comment-author img {
  width: 65px;
  height: 65px;
  border: #AAA solid 2px;
  border-radius: 50%;
}
.single-post .comments-list .comment-meta a {
  color: #555;
  padding: 5px;
}
.single-post .comments-list .comment-meta .comment-edit-link {
  font-size: 20px;
  color: #222;
  position: relative;
}
.single-post .comments-list .comment-reply-link {
  color: #eaeaea;
  position: absolute;
  top: 0px;
  right: 0px;
  font-weight: bold;
  background-color: #1a202c;
  padding: 5px 15px;
  border-bottom-left-radius: 10px;
}
.single-post .comments-list .comment-respond a {
  color: var(--main-color);
  font-weight: bold;
  padding: 5px;
  color: var(--main-color);
  font-size: 20px;
}
.single-post .comments-list .comment-respond input {
  border: #555 2px solid;
  padding: 10px;
  display: block;
  border-radius: 5px;
}
.single-post .comments-list .comment-respond .comment-form-author {
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
.single-post .comments-list .comment-respond .comment-form-author span {
  color: red;
}
.single-post .comments-list .comment-respond .comment-form-email {
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
.single-post .comments-list .comment-respond .comment-form-email span {
  color: red;
}
.single-post .comments-list .comment-respond .comment-form-url {
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
.single-post .comments-list .comment-respond .comment-form-url span {
  color: red;
}
.single-post .comments-list .comment-respond .comment-respond label {
  float: left;
  width: 80px;
  margin-right: 15px;
}
.single-post .comments-list .comment-form-comment textarea {
  background-color: #FFF;
  width: 100%;
  border: none;
  border-radius: 5px;
  border: #777 solid 2px;
}
.single-post .comments-list .comment-form .comment-notes {
  padding: 10px;
  background-color: #FFF;
  border-left: 5px solid var(--main-color);
  color: #444;
  font-size: 18px;
}
.single-post .comments-list .comment-form .comment-form-cookies-consent {
  float: left;
}
.single-post .comments-list .comment-form .comment-form-cookies-consent input {
  padding: 15px;
  height: 20px;
  width: 20px;
  margin-top: auto;
}
.single-post .comments-list .comment-form .comment-form-cookies-consent label {
  display: inline-block;
}
.single-post .comments-list .comment-form label {
  display: block;
  color: #444;
  font-size: 20px;
  text-align: center;
}
.single-post .comments-list .comment-form .form-submit {
  text-align: center;
}
.single-post .comments-list .comment-form .form-submit input {
  display: inline-block;
  background-color: var(--main-color);
  font-size: 20px;
  color: #FFF;
  border: none;
  height: 40px;
  width: 400px;
  padding: 2px;
  border-radius: 5px;
}
.single-post .comments-list .comment-form-cookies-consent {
  width: 100%;
  text-align: center;
}
.single-post .comments-list .comment-form-cookies-consent input {
  float: left;
  padding: 0px;
}
.single-post .comments-list .comment-form-cookies-consent label {
  float: left;
  padding: 0px;
}
.single-post .comments-list .comment-reply-title {
  padding: 10px;
  color: #777;
  font-weight: bold;
  text-align: center;
  background-color: #ccc;
  border-radius: 5px;
  margin: 20px 0;
}
.single-post .commentlist ol li a {
  color: #000000 !important;
}
.single-post .commentlist .breadcrumbs {
  text-align: center;
}
.single-post .commentlist .breadcrumbs > span:not(:first-child):before {
  font-family: "FontAwesome";
  content: "\f103";
  color: #757575;
  display: block;
  font-size: 20px;
  margin: 10px;
}

.about {
  position: relative;
}
.about .sub-title {
  position: relative;
}
@media (max-width: 767px) {
  .about .sub-title {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .about .sub-title {
    margin-top: 0;
  }
}
.about .about-me h3 {
  padding-left: 33px;
}
.about .about-blog h3 {
  padding-left: 10px;
}
.about .about-blog .for-blog {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .about .about-blog .for-blog {
    margin-top: 0;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .about .about-blog .for-blog {
    margin-top: 0;
    padding-top: 0;
  }
}
.about .about-img {
  border-radius: 30px;
  overflow: hidden;
  max-height: 600px;
  margin-top: 60px;
}
.about .about-img img {
  height: 100%;
}
.about .content {
  margin-top: 40px;
  padding: 20px;
  z-index: 4;
}
.about .content h3 {
  position: relative;
  font-weight: 600;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  font-size: 24px;
  color: #555;
  margin-bottom: 20px;
}
.about .content h3::before {
  content: "";
  width: 150px;
  height: 2px;
  background-color: #232327;
  position: absolute;
  bottom: -8px;
}
.about .content h3::after {
  content: "";
  width: 40px;
  height: 10px;
  background-color: var(--main-color);
  position: absolute;
  bottom: -12px;
  margin-left: -10px;
  border-radius: 6px;
}
.about .content p {
  font-size: 20px;
  position: relative;
  padding: 10px auto;
  width: 100%;
  font-size: 24px;
  color: #333;
}
.about .content p:last-child {
  margin-bottom: 0;
  margin-bottom: 0;
}
.about .content h5 {
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
  font-size: 24px;
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
}
.about .content ul li span {
  color: #333;
  width: 100%;
}
.about .content ul li i {
  top: 12px;
  position: absolute;
  font-size: 20px;
  color: var(--main-color);
}
.about .content h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.blog {
  padding: 40px 0;
}
.blog .blog-header .img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.blog .blog-header .img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.blog .blog-header .img img {
  width: 100%;
  height: 100%;
}
.blog .blog-header .img h3 {
  position: absolute;
  bottom: 45px;
  left: auto;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  padding: 20px;
}
.blog .blog-header .categories-menu {
  padding: 5px;
  margin: 30px 0;
  border-radius: 10px;
  background-color: rgba(39, 241, 183, 0.1);
  box-shadow: 0 2px 18px 1px rgba(49, 53, 72, 0.1);
  text-align: center;
}
.blog .blog-header .categories-menu h3 {
  color: #27f1b7;
  text-align: center;
  font-weight: 500;
}
.blog .blog-header .categories-container {
  overflow: hidden;
  height: 100%;
  display: block;
  text-align: center;
  /* Track */
  /* Handle */
}
.blog .blog-header .categories-container::-webkit-scrollbar {
  height: 8px !important;
}
.blog .blog-header .categories-container::-webkit-scrollbar-track {
  background-color: #fff;
  padding: 2px !important;
}
.blog .blog-header .categories-container::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  opacity: 1;
}
.blog .blog-header .categories-container .category {
  padding: 10px;
  float: left;
  color: #ccc;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 15px 6px rgba(49, 53, 72, 0.1);
  border-radius: 10px;
  margin: 0 5px;
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  height: 58px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .blog .blog-header .categories-container .category {
    font-size: 12px;
    height: 40px;
  }
}
.blog .blog-header .categories-container .category:hover, .blog .blog-header .categories-container .category:focus {
  background-color: rgba(0, 115, 255, 0.2);
}
.blog .blog-header .categories-container .category .icon {
  width: 35px;
  height: 35px;
  overflow: hidden;
  margin: 0 5px 0 0;
}
.blog .blog-header .categories-container .category .icon img {
  width: 100%;
  height: 100%;
}
.blog .blog-header .categories-container .active {
  background-color: rgba(0, 115, 255, 0.2);
}
.blog .blog-header .categories-container #more {
  position: absolute;
  padding: 10px 15px;
  float: left;
  color: #232327;
  box-shadow: 0 2px 15px 6px rgba(49, 53, 72, 0.1);
  background-color: #fff;
  border-radius: 10px;
  margin: 0 5px;
  top: 15px;
  right: 0;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.blog .blog-header .categories-container #overflow {
  display: none;
  background-color: #fff;
  width: 300px;
  position: absolute;
  border-radius: 15px;
  top: 65px;
  right: 0;
  overflow: hidden;
}
.blog .blog-header .categories-container #overflow .category {
  padding: 10px 15px;
  float: left;
  margin-bottom: 10px;
  color: #fff !important;
  box-shadow: 0 2px 15px 6px rgba(49, 53, 72, 0.1);
  border-radius: 10px;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
}
.blog .blog-header .categories-container #overflow .category:hover, .blog .blog-header .categories-container #overflow .category:focus {
  color: #0073ff;
  background-color: rgba(0, 115, 255, 0.2);
}
.blog .blog-header .categories-container #overflow .category .icon {
  width: 35px;
  height: 35px;
  overflow: hidden;
  margin: auto 5px;
}
.blog .blog-header .categories-container #overflow .category .icon img {
  width: 100%;
  height: 100%;
}
.blog .blog-header .categories-container #more:hover #overflow {
  display: block;
}
.blog .blog-body {
  clear: both;
}
.blog .blog-body .post {
  width: 100% !important;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  background: rgba(39, 241, 183, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
}
.blog .blog-body .post-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.blog .blog-body .post-info {
  padding: 15px 0;
  cursor: default;
  display: flex;
  width: 100%;
  align-items: center;
}
.blog .blog-body .post-detail {
  text-align: left;
}
.blog .blog-body .post-name {
  font-weight: 600;
  overflow: hidden;
  text-align: start !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 20px;
}
.blog .blog-body .post-name a {
  font-size: 16px;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  margin: 0;
}
.blog .blog-body .post-author {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
  color: hsl(0, 0%, 100%);
  margin-top: 5px;
}
.blog .blog-body .post-avatar {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 10px;
}
.blog .blog-body .post-actions {
  position: relative;
  display: flex;
  color: #fff;
  align-items: end;
  justify-content: space-between;
  overflow: hidden;
}
.blog .blog-body .post-actions-content {
  position: absolute;
  bottom: 130%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(172, 172, 172, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 2px 2px 10px 2px hsla(0, 0%, 0%, 0.25);
  transition: opacity 0.25s, scale 0.25s;
  transform-origin: bottom right;
  color: #fff;
}
.blog .blog-body .post-actions-content[data-visible=false] {
  pointer-events: none;
  opacity: 0;
  scale: 0;
}
.blog .blog-body .post-actions-content[data-visible=true] {
  pointer-events: unset;
  scale: 1;
  opacity: 1;
}
.blog .blog-body .post-actions-content li {
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  list-style: none;
}
.blog .blog-body .post-actions-content li:is(:hover, :focus-within) {
  background-color: rgba(248, 132, 169, 0.7);
}
.blog .blog-body .post-actions-link {
  width: -moz-max-content;
  width: max-content;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.blog .blog-body .post-like {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  margin-right: 5px;
  font-size: 1.1rem;
  opacity: 0.65;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease;
}
.blog .blog-body .post-actions-controller {
  border: 0;
  background: none;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  opacity: 0.65;
}
.blog .blog-body .post-like:hover,
.blog .blog-body .post-actions-controller:hover {
  opacity: 1;
}
.blog .blog-body .post-like:focus {
  outline: none;
}
.blog .blog-body .post-like.active {
  color: rgb(255, 0, 0);
  opacity: 1;
  transform: scale(1.2);
}

.blog-body {
  clear: both;
}
.blog-body .product {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: rgba(144, 164, 174, 0.3) 0px 2px 6px;
  overflow: hidden;
}
.blog-body .product .header {
  padding: 20px;
}
.blog-body .product .header .img {
  height: 170px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(144, 164, 174, 0.3) 0px 2px 6px;
}
.blog-body .product .header .img img {
  height: 100%;
  width: 100%;
}
.blog-body .product .body {
  height: 200px;
  padding: 15px;
}
.blog-body .product .body .category {
  padding: 2px 15px;
  background-color: #eee;
  border-radius: 5px;
}
.blog-body .product .body .title {
  padding: 15px 0;
  font-weight: bold;
  font-size: 18px;
  display: block;
  color: #232327;
}
.blog-body .product .body .summery {
  color: #4a4a4a;
  padding-bottom: 5px;
}

.post {
  padding: 30px 0;
}
.post .post-body {
  margin-top: 30px;
  color: #ccc;
  padding: 25px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.post .post-body .category {
  padding: 10px 0;
  background-color: rgba(189, 181, 181, 0.1);
  border-radius: 10px;
  color: #ccc;
  padding: 2px 7px;
}
.post .post-body .title {
  font-weight: bold;
  font-size: 26px;
  margin: 20px 0;
  color: #ccc;
}
.post .post-body .meta {
  display: flex;
  justify-content: space-between;
  color: #ccc;
}
.post .post-body .meta > div {
  margin: 10px 0;
}
.post .post-body .meta .date {
  font-weight: bold;
}
.post .post-body .meta > div {
  padding: 0 10px;
}
.post .post-body .meta .social-share {
  color: #ccc;
  text-align: end;
}
@media (max-width: 767px) {
  .post .post-body .meta .social-share {
    text-align: start;
  }
}
.post .post-body .meta .social-share span {
  font: 14px;
  font-weight: bold;
}
.post .post-body .meta .social-share i {
  color: #ccc;
  font-size: 16px;
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.post .post-body .meta .social-share a {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  margin: 3px;
}
.post .post-body .meta .social-share .whatsapp {
  background-color: rgb(71, 185, 51);
}
.post .post-body .meta .social-share .facebook {
  background-color: rgb(23, 94, 194);
}
.post .post-body .meta .social-share .link {
  background-color: rgb(92, 95, 91);
}
.post .post-body .img {
  max-height: 600px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}
.post .post-body .img img {
  width: 100%;
  background-size: cover;
}
.post .post-body .post-content {
  padding: 20px;
}
.post .post-body .recommended-posts h5 {
  font-weight: bold;
  padding: 15px 5px;
}
.post .post-body .recommended-posts .product {
  background-color: rgba(189, 181, 181, 0.1);
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 0 10px -1px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.post .post-body .recommended-posts .product .header {
  height: 170px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.post .post-body .recommended-posts .product .header img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.post .post-body .recommended-posts .product .body {
  padding: 15px;
}
.post .post-body .recommended-posts .product .body .category {
  padding: 2px 15px;
  background-color: #eee;
  border-radius: 5px;
}
.post .post-body .recommended-posts .product .body .title {
  padding: 15px 0;
  font-weight: bold;
  font-size: 18px;
  display: block;
  color: #ccc;
}
.post .post-body .recommended-posts .product .body .summery {
  padding-bottom: 5px;
}

.contact_us {
  padding: 30px 0;
}
.contact_us .contact-hero {
  margin-bottom: 20px;
}
.contact_us iframe {
  border-radius: 10px;
}
.contact_us .form {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  padding: 20px 20px 20px 10px;
  border-radius: 30px;
  margin: 30px 0;
}
.contact_us .form h4 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
  color: #ccc;
}
.contact_us .form input {
  width: 100%;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 5px;
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ccc;
  border-radius: 30px;
}
.contact_us .form input[type=submit] {
  background-color: rgb(0, 118, 81);
  color: #ccc;
}
.contact_us .form .submit {
  background-color: rgb(0, 118, 81);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: hsl(0, 0%, 100%);
  font-weight: bold;
  border-radius: 30px;
}
.contact_us .form textarea {
  width: 100%;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 5px;
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ccc;
  border-radius: 30px;
}
.contact_us .contact-footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 200px;
  margin: 30px;
}
.contact_us .contact-footer .overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.contact_us .contact-footer img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.contact_us .contact-footer h4 {
  position: absolute;
  top: 20px;
  padding: 0 30px;
  text-align: center;
  z-index: 3;
  width: 100%;
  color: #fff;
}
.contact_us .contact-footer .download-btns {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}
.contact_us .contact-footer .download-btns .download {
  margin: 30px 4px 4px;
  width: 155px;
  height: 40px;
  padding-top: 0;
  line-height: 1;
  border-radius: 7px;
  position: relative;
  border: none;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
.contact_us .contact-footer .download-btns .download i {
  position: absolute;
  top: 10px;
  left: 5px;
  font-size: 16px;
}
.contact_us .contact-footer .download-btns .download span {
  font-size: 10px;
  bottom: 10px;
  margin-top: -14px;
  margin-left: 10px;
}
.contact_us .contact-footer .download-btns .download strong {
  font-size: 15px;
  margin-bottom: 8px;
  margin-left: 12px;
}
.contact_us .contact-links .item {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  display: inherit;
  color: #ccc;
  margin-bottom: 20px;
  text-align: center;
}
.contact_us .contact-links .item .icon {
  font-size: 20px;
  color: rgb(0, 118, 81);
}
.contact_us .contact-links .item .title {
  font-weight: bold;
}
.contact_us .contact-links .item .contact-content {
  color: #ccc;
}
.contact_us .start-btn {
  width: 100%;
  text-align: center;
}
.contact_us .start-btn .start-ads {
  padding: 12px 10px;
}

.not-found {
  text-align: center;
}
.not-found .page-header {
  padding: 20px;
  color: #555;
}
.not-found .page-content {
  margin: 30px 0 0;
}
.not-found .page-content .img {
  width: 50%;
  margin: 0 auto;
}
.not-found .page-content p {
  color: #555;
  font-size: 18px;
}
.not-found .page-content .search-form {
  margin: 30px auto;
}
.not-found .page-content .search-form form {
  background: #fff;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.not-found .page-content .search-form form input[type=text] {
  border-radius: 4px;
  width: 100%;
  outline: none;
  padding: 13px 25% 13px 20px;
  border: none;
  outline: 1px solid #ddd;
}
.not-found .page-content .search-form form input[type=text]:focus {
  outline: none;
  box-shadow: none;
  border: none;
  outline: 1px solid var(--main-color);
}
.not-found .page-content .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 15%;
  min-width: 60px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--main-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.not-found .page-content .search-form form button i {
  line-height: 0;
}
.not-found .page-content .search-form form button:hover {
  background: var(--main-color);
}

.courses {
  padding-top: 30px;
  margin: 0;
}
.courses .page-content {
  margin-top: 20px;
}
.courses .page-head {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  border: 5px solid #fff;
}
.courses .page-head::before {
  content: "";
  height: 5px;
  background: linear-gradient(to right, #2980b9 20%, #27ae60 20%, #27ae60 40%, #d35400 40%, #d35400 60%, #8e44ad 60%, #8e44ad 80%, #c0392b 80%);
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -5px;
}
.courses .page-head h1 {
  font-weight: bold;
  margin: 0 auto 50px;
  color: #555;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.courses .page-head h1::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  background-color: #232327;
  height: 5px;
  width: 100%;
}
.courses .page-head .description {
  line-height: 2;
  font-size: 20px;
  margin: auto;
}
.courses .course-box {
  background-color: #fff;
  border: 1px solid #ececec;
  margin-bottom: 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.courses .course-box .course-content {
  padding: 15px;
  display: block;
  transition: 0.3s;
  color: black;
  text-align: center;
  overflow: hidden;
}
.courses .course-box img {
  width: 120px;
  max-width: 100%;
  height: 120px;
  margin: auto;
  display: block;
  margin-bottom: 20px;
}
.courses .course-box h3 {
  margin: 0 0 10px;
  color: #777;
  font-weight: bold;
}
.courses .course-box p {
  margin: 0;
  height: 20px;
  color: #2196f3;
  font-weight: bold;
}
.courses .course-info {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-top: 1px solid #ececec;
  font-size: 15px;
  position: relative;
}
.courses .course-info .count {
  color: #555;
  font-weight: bold;
}
.courses .course-info .status {
  float: right;
}
.courses .tutoriel-info {
  display: flex;
  justify-content: space-between;
  padding: 3px 5px 0px;
  border-top: 1px solid #ececec;
  font-size: 15px;
  position: relative;
}
.courses .tutoriel-info .numbering {
  color: #555;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ddd;
  border-radius: 20px;
  font-weight: bold;
}
.courses .tutoriel-info .link {
  text-align: center;
  cursor: pointer;
  padding: 0;
}
.courses .tutoriel-info .link a {
  padding: 0;
  float: right;
  color: #cc3333;
  font-size: 30px;
  text-align: center;
}

.preload-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #262626;
}
.preload-page ul.pre-loader {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.preload-page ul.pre-loader li {
  list-style: none;
  color: #484848;
  display: inline;
  font-size: 30px;
  letter-spacing: 15px;
  animation: pre-load 3s linear infinite;
}

@media (max-width: 767px) {
  .preload-page ul.pre-loader li {
    font-size: 18px;
    letter-spacing: 6px;
  }
}
.portfolios .portfolio-details-slider {
  width: 100%;
  overflow: hidden;
}
.portfolios .portfolio-box {
  border: 8px solid #bbb !important;
  box-shadow: 0px 5px 18px -2px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
.portfolios .header {
  height: 300px;
  overflow: hidden;
}
.portfolios .header img {
  width: 100%;
  height: 100%;
}
.portfolios .body {
  background-color: #FFF;
  padding: 10px 15px;
  text-align: center;
}
.portfolios .body h4 {
  text-align: center;
  color: #677;
}
.portfolios .body p {
  text-align: center;
  font-weight: bold;
  color: #111;
}
.portfolios .body .portfolio-links {
  border: 1px;
  padding: 5px 20px;
  background-color: var(--main-color);
  color: #444;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: bold;
}

.tutoriel-info {
  display: flex;
  justify-content: space-between;
  padding: 3px 5px 0px;
  border-top: 1px solid #ececec;
  font-size: 15px;
  position: relative;
}
.tutoriel-info .numbering {
  color: #555;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ddd;
  border-radius: 20px;
  font-weight: bold;
}
.tutoriel-info .link {
  text-align: center;
  cursor: pointer;
  padding: 0;
}
.tutoriel-info .link a {
  padding: 0;
  float: right;
  color: #cc3333;
  font-size: 30px;
  text-align: center;
}

.forum {
  padding: 20px 0;
}
.forum .brand-ads {
  height: 200px;
  margin-bottom: 20px;
}
.forum .brand-ads .brand-name {
  margin-top: 45px;
}
.forum .page-title {
  font-weight: bold;
  color: #232327;
  font-size: 24px;
  padding-top: 20px;
}
.forum .forum-posts .forum-post {
  padding: 20px 15px;
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 15px;
}
.forum .forum-posts .forum-post .post-header .header-left {
  margin-top: 5px;
  float: left;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--main-color);
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
}
.forum .forum-posts .forum-post .post-header .header-right {
  float: left;
  margin: 0 10px;
}
.forum .forum-posts .forum-post .post-header .header-right .post-title {
  font-size: 20px;
  font-weight: bold;
  text-align: #232327;
  padding-bottom: 5px;
}
.forum .forum-posts .forum-post .post-header .header-right .post-meta .user {
  color: var(--main-color);
}
.forum .forum-posts .forum-post .post-header .header-right .post-meta .date-time {
  color: #999;
  padding: 0 5px;
}
.forum .forum-posts .forum-post .post-header .header-right .post-meta .date {
  margin: 5px;
}
.forum .forum-posts .forum-post .post-body {
  padding: 25px 0;
  clear: both;
}
.forum .forum-posts .forum-post .post-footer {
  display: flex;
  justify-content: space-between;
}
.forum .forum-posts .forum-post .post-footer .footer-left .phones {
  border: 1px solid var(--main-color) !important;
  padding: 5px 15px;
  text-align: center;
  border-radius: 5px;
}
.forum .forum-posts .forum-post .post-footer .footer-right span {
  color: #999;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
}
.forum .forum-posts .forum-post .post-footer .footer-right span a {
  color: #999;
}
.forum .reponses-container .title {
  padding: 15px;
  background-color: rgba(71, 154, 210, 0.2);
  color: #232327;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}
.forum .reponses-container .reponses-wrapper {
  padding: 0 0 0 50px;
}
.forum .footer-brand .add-container-btn {
  text-align: end;
  overflow: hidden;
  padding: 15px 0 50px;
}
.forum .footer-brand a {
  padding: 10px 40px;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 5px;
  text-align: center;
}
.forum .footer-brand .brand-ads {
  height: 80px;
}
.forum .footer-brand .brand-ads .brand-name {
  margin-top: -15px;
}
.forum form .form-body .form-contianer {
  padding: 10px;
}
.forum form .form-body .form-contianer .image-input-wrapper {
  border: 3px dashed var(--main-color);
  background-color: rgba(0, 115, 255, 0.2);
  border-radius: 10px;
  position: relative;
  width: 250px;
  height: 250px;
  overflow: hidden;
}
.forum form .form-body .form-contianer .image-input-wrapper .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
}
.forum form .form-body .form-contianer .image-input-wrapper .content i {
  font-size: 30px;
  color: var(--main-color);
}
.forum form .form-body .form-contianer .image-input-wrapper .content .add {
  color: #fff;
  background-color: var(--main-color);
  padding: 5px;
  margin: 5px;
  font-size: 12px;
  border-radius: 5px;
}
.forum form .form-body .form-contianer .image-input-wrapper input {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.forum form .form-body .require-field {
  font-size: 14px;
}
.forum form .form-body .require-field span {
  color: red;
  font-weight: bold;
}
.forum form .form-body .require-field span i {
  font-size: 10px;
  border-radius: 50%;
  border: 1px solid red;
  padding: 1px 4px;
}
.forum form .form-body label {
  margin: 5px 0;
}
.forum form .form-body label.required {
  position: relative;
}
.forum form .form-body label.required::before {
  content: "*";
  position: absolute;
  top: -2px;
  right: -8px;
  display: block;
  color: red;
  font-weight: bold;
}
.forum form .form-body .explanation {
  color: #777;
  font-size: 12px;
  padding-top: 30px;
}
.forum form .form-body select {
  color: #777;
}
.forum form .form-body select option {
  color: #232327;
}
.forum form .form-body input, .forum form .form-body select, .forum form .form-body textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  margin-bottom: 15px;
}
.forum form .form-body .advices h5 {
  color: #555;
  margin: 10px 0;
}
.forum form .form-body .advices ul {
  list-style: disc;
  margin-left: 15px;
}
.forum form .form-body .advices ul li {
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
}
.forum form .footer-terms input {
  display: inline;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.forum form .submit {
  text-align: center;
  border: none;
  padding: 10px 40px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 5px;
}
.forum .add-answer-form {
  display: none;
}
.forum .add-answer-form .title {
  padding: 15px;
  background-color: rgba(71, 154, 210, 0.2);
  color: #232327;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .forum .forum-posts .forum-post .post-footer {
    display: block;
  }
}
@media (max-width: 767px) {
  .forum .forum-posts .forum-post .post-footer .footer-left {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .forum .forum-posts .forum-post .post-footer .footer-right span {
    font-size: 12px;
    padding: 5px;
  }
}
@media (min-width: 767px) {
  .forum form .form-body .form-contianer .image-input-wrapper {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 767px) {
  .forum form .form-body .explanation {
    padding: 0 0 10px;
  }
}
.login,
.register {
  padding-top: 60px;
}

.auth-form {
  width: 100%;
  text-align: center !important;
  text-align: -webkit-center !important;
  padding: 40px 20px;
  max-width: 500px;
  background-color: #fff;
  box-shadow: 0 2px 18px 1px rgba(49, 53, 72, 0.1);
  border-radius: 30px;
  margin: auto;
}
.auth-form label {
  color: #232327;
}
.auth-form input,
.auth-form textarea {
  padding: 10px;
  color: #232327;
  font-weight: bold;
  margin: 10px;
  max-width: 350px;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--main-color);
}
.auth-form input:focus,
.auth-form textarea:focus {
  border: 1px solid var(--second-color);
  outline: none;
  box-shadow: none;
}
.auth-form input[type=submit] {
  color: #fff;
  background-color: var(--main-color);
}
.auth-form .remember_me {
  color: #232327;
  max-width: 365px;
  text-align: left;
}
.auth-form .sign-up {
  color: #232327;
}

.add-question {
  padding: 20px 0;
}
.add-question .brand-ads {
  height: 200px;
  margin-bottom: 20px;
}
.add-question .brand-ads .brand-name {
  margin-top: 45px;
}
.add-question form .form-body {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}
.add-question form .form-body .form-contianer {
  padding: 10px;
}
.add-question form .form-body .form-contianer .image-input-wrapper {
  border: 3px dashed var(--main-color);
  background-color: rgba(var(--main-color), 0.2);
  border-radius: 10px;
  position: relative;
  width: 250px;
  height: 250px;
  overflow: hidden;
}
@media (min-width: 767px) {
  .add-question form .form-body .form-contianer .image-input-wrapper {
    width: 260px;
    height: 260px;
  }
}
.add-question form .form-body .form-contianer .image-input-wrapper .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
}
.add-question form .form-body .form-contianer .image-input-wrapper .content i {
  font-size: 30px;
  color: var(--main-color);
}
.add-question form .form-body .form-contianer .image-input-wrapper .content .add {
  color: #fff;
  background-color: var(--main-color);
  padding: 5px;
  margin: 5px;
  font-size: 12px;
  border-radius: 5px;
}
.add-question form .form-body .form-contianer .image-input-wrapper input {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.add-question form .form-body .form-contianer .images-wrapper {
  text-align: end;
}
@media (max-width: 1200px) {
  .add-question form .form-body .form-contianer .images-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .add-question form .form-body .form-contianer .images-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .add-question form .form-body .form-contianer .images-wrapper {
    padding-left: 70px;
  }
}
@media (max-width: 575px) {
  .add-question form .form-body .form-contianer .images-wrapper {
    padding: 20px 0 20px !important;
  }
}
.add-question form .form-body .form-contianer .images-wrapper .images .spiner {
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 50px;
}
.add-question form .form-body .form-contianer .images-wrapper .images .spiner i {
  font-size: 50px;
}
.add-question form .form-body .form-contianer .images-wrapper .images .img {
  width: 120px;
  height: 120px;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin: 0 20px 20px 0;
  float: left;
}
.add-question form .form-body .form-contianer .images-wrapper .images .img.first-img .done {
  background-color: var(--main-color);
}
.add-question form .form-body .form-contianer .images-wrapper .images .img img {
  width: 100%;
}
.add-question form .form-body .form-contianer .images-wrapper .images .img .delete {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 0px 5px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.add-question form .form-body .form-contianer .images-wrapper .images .img .primary-img {
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.add-question form .form-body .form-contianer .images-wrapper .images .img .done {
  position: absolute;
  bottom: 5px;
  right: 5px;
  padding: 0px 4px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  background-color: rgba(153, 153, 153, 0.5);
  border-radius: 50%;
}
.add-question form .form-body .form-contianer .images-wrapper .images .img .done.first {
  background-color: var(--main-color);
}
.add-question form .form-body .price {
  position: relative;
}
.add-question form .form-body .price .suffex {
  position: absolute;
  top: 45px;
  right: 10px;
  color: #777;
}
.add-question form .form-body .price input {
  padding-right: 40px;
}
.add-question form .form-body .require-field {
  font-size: 14px;
}
.add-question form .form-body .require-field span {
  color: red;
  font-weight: bold;
}
.add-question form .form-body .require-field span i {
  font-size: 10px;
  border-radius: 50%;
  border: 1px solid red;
  padding: 1px 4px;
}
.add-question form .form-body label {
  margin: 5px 0;
}
.add-question form .form-body label.required {
  position: relative;
}
.add-question form .form-body label.required::before {
  content: "*";
  position: absolute;
  top: -2px;
  right: -8px;
  display: block;
  color: red;
  font-weight: bold;
}
.add-question form .form-body .explanation {
  color: #777;
  font-size: 12px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .add-question form .form-body .explanation {
    padding: 0 0 10px;
  }
}
.add-question form .form-body select {
  color: #777;
}
.add-question form .form-body select option {
  color: #232327;
}
.add-question form .form-body input,
.add-question form .form-body select,
.add-question form .form-body textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  margin-bottom: 15px;
}
.add-question form .form-body .advices h5 {
  color: #555;
  margin: 10px 0;
}
.add-question form .form-body .advices ul {
  list-style: disc;
  margin-left: 15px;
}
.add-question form .form-body .advices ul li {
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
}
.add-question form .footer-terms input {
  display: inline;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.add-question form .submit {
  text-align: center;
  border: none;
  padding: 10px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 5px;
  width: 100%;
  margin-top: 30px;
}

.btn-start-blog {
  min-width: 300px !important;
  min-height: 60px !important;
  font-size: 22px;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #FFF;
  background: linear-gradient(90deg, #ffbd59 0%, #000 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 0px 2px 20px -3px rgba(0, 0, 0, 0.72);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px 20px;
  z-index: 1;
}
.btn-start-blog:hover {
  box-shadow: inset 0px 2px 20px -3px rgba(0, 0, 0, 0.72);
  background: #ffbd59;
}
.btn-start-blog:hover::before, .btn-start-blog:focus::before {
  opacity: 1;
}
.btn-start-blog::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 5px solid #ffbd59;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}
.btn-start-blog:hover::after, .btn-start-blog:focus::after {
  animation: none;
  display: none;
}
@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  right: 20px;
  bottom: 15px;
  opacity: 0;
  z-index: 996;
  background: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid #eaeaea;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 20px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--main-color);
  opacity: 0.8;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
}

.success {
  color: #27f1b7;
}
.success::before {
  font-family: "FontAwesome";
  content: "\f058";
  padding: 10px;
  color: #27f1b7;
  font-size: 25px;
}

.danger {
  color: #e14342;
}
.danger::before {
  font-family: "FontAwesome";
  content: "\f071";
  padding: 10px;
  color: #e14342;
  font-size: 25px;
}

.popup-message-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  border-radius: 10px;
  background-color: #FFF;
  border: 4px solid #AAA;
  text-align: center;
  max-width: 400px;
  z-index: 100;
  box-shadow: 0 0 6px 4px #333;
}
.popup-message-box .message {
  text-align: center;
  color: #333;
}

.popup-img-box {
  position: relative;
  top: 25%;
  left: 30%;
  transform: translate(-23%, -15%);
  padding: 20px;
  background-color: #FFF;
  border: 2px solid #DDD;
  width: 75%;
}

.popup-closer {
  border: 2px solid #DDD;
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--main-color);
  color: #222;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  cursor: pointer;
}

.popup-img-text {
  color: #333;
  font-size: 25px;
  padding: 10px;
  text-align: center;
  color: var(--main-color);
  display: block;
  width: 100%;
}

img {
  max-width: 100%;
}

.section-title {
  margin: 60px auto;
}
.section-title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #111;
  position: relative;
}
.section-title h2::after {
  content: "";
  display: block;
  background-color: #c6c6c6;
  position: absolute;
  left: 0;
  width: 80px;
  height: 4px !important;
  bottom: -32px;
}
.section-title h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px !important;
  bottom: -20px;
  background-color: #c6c6c6;
  position: absolute;
  left: 0;
}

.page-title {
  padding: 30px 0;
}
.page-title h1 {
  text-align: center;
  padding: 10px;
  background-color: var(--main-color);
  font-weight: bold;
  color: #fff;
  position: relative;
  line-height: 1.6;
}
.page-title h1:before {
  content: "";
  position: absolute;
  right: 10px;
  background-color: #eaeaea;
  height: 100%;
  width: 10px;
  top: 0;
}
.page-title h1:after {
  content: "";
  position: absolute;
  left: 10px;
  background-color: #eaeaea;
  height: 100%;
  width: 10px;
  top: 0;
}

select {
  border: 2px solid #888;
  color: #555;
  border-radius: 0 !important;
  background-color: #eaf0f2 !important;
  padding: 3px 30px 3px 10px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-size: 0.8em auto;
  padding-right: 2em;
  background-image: url("data:image/svg+xml;charset=utf-8,   <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'>     <polygon points='0,0 60,0 30,40' style='fill:gray;'/>   </svg>");
}

.setting-box {
  position: fixed;
  top: 0;
  background-color: #FFF;
  z-index: 20;
  height: calc(100vh - 60px);
  width: 200px;
  transition: 0.3s ease-in-out;
  border-style: solid;
  border-color: var(--main-color);
  margin-top: 60px;
}
.setting-box .reset-setting {
  color: #FFF;
  border: none;
  box-shadow: none;
  outline: none;
  background-image: linear-gradient(to left, #e46464, var(--main-color));
  border-radius: 5px;
  padding: 5px 15px;
  text-align: center;
  height: 35px;
  width: 180px;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  margin: 10px;
  transition: background-color 0.2s ease-in-out;
  line-height: 15px;
}
.setting-box .reset-setting:hover {
  background-image: linear-gradient(to right, #e46464, var(--main-color));
}
.setting-box .setting-icon {
  position: absolute;
  top: 100px;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  text-align: center;
  line-height: 36px;
  font-weight: bold;
  border-style: solid;
  border-color: var(--main-color);
  overflow: hidden;
  cursor: pointer;
}
.setting-box .setting-icon i {
  margin-top: 10px;
}
.setting-box .setting-container .setting-option {
  background-color: #bbb;
  margin: 10px;
  padding: 10px;
  text-align: center;
  border-top: 3px solid var(--main-color);
}
.setting-box .setting-container .setting-option h3 {
  font-weight: bold;
  color: #333;
  text-align: center;
  font-size: 16px;
  padding: 0 0 15px;
}
.setting-box .setting-container .setting-option ul {
  list-style: none;
}
.setting-box .setting-container .setting-option ul.colors-list {
  text-align: center;
}
.setting-box .setting-container .setting-option ul.colors-list li {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
}
.setting-box .setting-container .setting-option ul.colors-list li.active {
  border: 2px solid #FFF;
}
.setting-box .setting-container .setting-option ul.colors-list li:first-child {
  background-color: #0880e0;
}
.setting-box .setting-container .setting-option ul.colors-list li:nth-child(2) {
  background-color: #FF9800;
}
.setting-box .setting-container .setting-option ul.colors-list li:nth-child(3) {
  background-color: #38c172;
}
.setting-box .setting-container .setting-option ul.colors-list li:nth-child(4) {
  background-color: #9561e2;
}
.setting-box .setting-container .setting-option ul.colors-list li:nth-child(5) {
  background-color: #4dc0b5;
}
.setting-box .setting-container .setting-option span {
  color: #FFF;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--main-color);
  opacity: 0.3;
  padding: 2px 10px;
  margin: 5px;
}
.setting-box .setting-container .setting-option span.active {
  opacity: 1;
}

.social-links {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.social-links .icons {
  display: inline-flex;
  margin: auto;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .social-links .icons {
    flex-wrap: wrap;
  }
}
.social-links .icons a {
  margin: 40px 25px;
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
.social-links .icons a .layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .social-links .icons a .layer {
    transform: rotate(-35deg) skew(20deg);
  }
}
.social-links .icons a:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}
.social-links .icons a .layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.3s;
}
.social-links .icons a .layer span.fab {
  font-size: 30px;
  line-height: 55px;
  text-align: center;
}
@media (max-width: 767px) {
  .social-links .icons a .layer span:nth-child(1) {
    opacity: 0.2;
  }
  .social-links .icons a .layer span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
  }
  .social-links .icons a .layer span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
  }
  .social-links .icons a .layer span:nth-child(4) {
    opacity: 0.8;
    transform: translate(15px, -15px);
  }
  .social-links .icons a .layer span:nth-child(5) {
    opacity: 1;
    transform: translate(20px, -20px);
  }
}
.social-links .icons a:hover .layer span:nth-child(1) {
  opacity: 0.2;
}
.social-links .icons a:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.social-links .icons a:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.social-links .icons a:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
.social-links .icons a:hover .layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}
.social-links .icons a:nth-child(1) .layer span,
.social-links .icons a:nth-child(1) .text {
  color: #4267b2;
  border-color: #4267b2;
}
.social-links .icons a:nth-child(2) .layer span,
.social-links .icons a:nth-child(2) .text {
  color: #1da1f2;
  border-color: #1da1f2;
}
.social-links .icons a:nth-child(3) .layer span,
.social-links .icons a:nth-child(3) .text {
  color: #e1306c;
  border-color: #e1306c;
}
.social-links .icons a:nth-child(4) .layer span,
.social-links .icons a:nth-child(4) .text {
  color: #2867b2;
  border-color: #2867b2;
}
.social-links .icons a:nth-child(5) .layer span,
.social-links .icons a:nth-child(5) .text {
  color: #ff0000;
  border-color: #ff0000;
}
.social-links .icons a:nth-child(6) .layer span,
.social-links .icons a:nth-child(6) .text {
  color: #25d366;
  border-color: #25d366;
}
@media (max-size: 767px) {
  .social-links .icons a:nth-child(1) .layer span {
    box-shadow: -1px 1px 3px #4267b2;
  }
  .social-links .icons a:nth-child(2) .layer span {
    box-shadow: -1px 1px 3px #1da1f2;
  }
  .social-links .icons a:nth-child(3) .layer span {
    box-shadow: -1px 1px 3px #e1306c;
  }
  .social-links .icons a:nth-child(4) .layer span {
    box-shadow: -1px 1px 3px #2867b2;
  }
  .social-links .icons a:nth-child(5) .layer span {
    box-shadow: -1px 1px 3px #ff0000;
  }
}
.social-links .icons a:hover:nth-child(1) .layer span {
  box-shadow: -1px 1px 3px #4267b2;
}
.social-links .icons a:hover:nth-child(2) .layer span {
  box-shadow: -1px 1px 3px #1da1f2;
}
.social-links .icons a:hover:nth-child(3) .layer span {
  box-shadow: -1px 1px 3px #e1306c;
}
.social-links .icons a:hover:nth-child(4) .layer span {
  box-shadow: -1px 1px 3px #2867b2;
}
.social-links .icons a:hover:nth-child(5) .layer span {
  box-shadow: -1px 1px 3px #ff0000;
}
.social-links .icons a .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 767px) {
  .social-links .icons a .text {
    bottom: -20px;
    opacity: 1;
  }
}
.social-links .icons a:hover .text {
  bottom: -35px;
  opacity: 1;
}

#wait-loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.overlay {
  margin: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.loader {
  width: 10em;
  height: 10em;
  font-size: 25px;
  box-sizing: border-box;
  border-top: 0.3em solid hotpink;
  border-radius: 50%;
  position: relative;
  animation: rotating 2s ease-in-out infinite;
  --direction: 1;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  box-sizing: border-box;
  top: -0.2em;
}

.loader::before {
  border-top: 0.3em solid dodgerblue;
  transform: rotate(120deg);
}

.loader::after {
  border-top: 0.3em solid gold;
  transform: rotate(240deg);
}

.loader span {
  position: absolute;
  color: white;
  width: inherit;
  height: inherit;
  text-align: center;
  line-height: 10em;
  animation: rotating 2s linear infinite;
  --direction: -1;
}

@keyframes rotating {
  50% {
    transform: rotate(calc(180deg * var(--direction)));
  }
  100% {
    transform: rotate(calc(360deg * var(--direction)));
  }
}
.protection .protection-wrapper .action-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.protection .protection-wrapper .action-item .left {
  display: flex;
  align-items: center;
}
.protection .protection-wrapper .action-item .left .icon {
  font-size: 18px;
}
.protection .protection-wrapper .action-item .left .icon i {
  color: #4a4a4a;
}
.protection .protection-wrapper .action-item .left .title {
  font-size: 14px;
  color: #232327;
}
.protection .protection-wrapper .action-item .action-btn {
  border-radius: 25px;
  border: 1px solid var(--main-color);
  float: right;
  text-align: center;
  width: 110px;
}
.protection .protection-wrapper .action-item .active {
  background-color: #fff;
}
.protection .protection-wrapper .action-item .active a {
  color: #232327 !important;
}
.protection .protection-wrapper .action-item .inactive {
  background-color: var(--main-color);
}
.protection .protection-wrapper .action-item .inactive a {
  color: #fff !important;
}

.dashboard-page {
  padding: 40px 0;
}
.dashboard-page .dashboard-body .title {
  color: var(--main-color);
  font-size: 26px;
  font-weight: bold;
}
.dashboard-page .dashboard-body .description {
  padding: 20px 0 30px;
}
.dashboard-page .dashboard-body .box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-page .dashboard-body .box-header .title {
  color: #232327;
  font-size: 20px;
  font-weight: bold;
  margin-top: -20px;
}
.dashboard-page .dashboard-body .box-header select {
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: #4a4a4a;
  padding: 6px 20px;
}
.dashboard-page .dashboard-body .actions {
  display: block;
}
.dashboard-page .dashboard-body .actions .action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-page .dashboard-body .actions .action .title {
  font-size: 14px;
  color: #232327;
  position: relative;
}
.dashboard-page .dashboard-body .actions .action .title::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main-color);
}
.dashboard-page .dashboard-body .actions .action .status .do {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 14px;
  background-color: #7732e7;
  color: #fff;
}
.dashboard-page .dashboard-body .actions .action .status .done {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 14px;
  background-color: #ccc;
  color: #4a4a4a;
  display: none;
}
.dashboard-page .dashboard-body .actions .valide .title::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  display: block;
  position: absolute;
  top: 21px;
  left: -5px;
  font-size: 14px;
  border-radius: 50%;
  color: var(--second-color);
  background-color: transparent;
}
.dashboard-page .dashboard-body .actions .valide .status .do {
  display: none;
}
.dashboard-page .dashboard-body .actions .valide .status .done {
  display: block;
}
.dashboard-page .dashboard-body .stats {
  margin-top: -10px;
  margin-bottom: 20px;
}
.dashboard-page .dashboard-body .stats .block {
  background-color: #fff;
  box-shadow: 0px 0px -1px 8px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  margin-bottom: 20px;
}
.dashboard-page .dashboard-body .stats .block .title {
  font-size: 14px;
  color: #232327;
}
.dashboard-page .dashboard-body .stats .block .icon {
  background-color: rgba(var(--main-color), 0.1);
  color: var(--main-color);
  font-size: 20px;
  border-radius: 15px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 50px;
}
.dashboard-page .dashboard-body .stats .block .stats-num {
  font-size: 26px;
  font-weight: bold;
  color: #232327;
}
.dashboard-page .dashboard-body .stats .block .changement {
  border-radius: 5px;
  padding: 1px 5px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.dashboard-page .dashboard-body .stats .block .changement.positive {
  background-color: rgba(var(--second-color), 0.1);
  color: var(--second-color);
}
.dashboard-page .dashboard-body .stats .block .changement.negative {
  background-color: rgba(225, 67, 66, 0.1);
  color: #e14342;
}
.dashboard-page .dashboard-body .latest-orders {
  overflow-x: auto;
}
.dashboard-page .dashboard-body .latest-orders table {
  overflow-x: auto !important;
}
.dashboard-page .dashboard-body .latest-orders table td {
  min-width: 100px !important;
  padding: 0 3px !important;
}
.dashboard-page .dashboard-body .latest-orders table td:first-child, .dashboard-page .dashboard-body .latest-orders table td:last-child {
  min-width: auto !important;
}
.dashboard-page .dashboard-body .latest-orders table .product-action {
  border-radius: 5px;
  background-color: var(--second-color);
  text-align: center;
  line-height: center;
  padding: 2px 10px;
  color: #fff;
}
.dashboard-page .dashboard-body .latest-orders table .add_hmizat {
  background-color: #ccc;
  color: #232327;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 5px;
}
.dashboard-page .dashboard-body .latest-orders table .add_hmizat span {
  padding: 10px;
}
.dashboard-page .dashboard-body .latest-orders table td {
  text-align: left !important;
}
.dashboard-page .dashboard-body .latest-orders table tr {
  border-bottom: 0.5px solid #aaa !important;
}
.dashboard-page .dashboard-body .latest-orders table tbody tr {
  background-color: #fff;
}
.dashboard-page .dashboard-body .latest-orders table tbody tr .id {
  padding: 0 10px !important;
}
.dashboard-page .dashboard-body .latest-orders table tbody .order-product {
  padding: 5px 0 0;
}
.dashboard-page .dashboard-body .latest-orders table tbody .order-product .order-product-wrapper {
  display: flex;
  background-color: transparent;
  align-items: center;
  width: 200px;
  padding-bottom: 5px;
}
.dashboard-page .dashboard-body .latest-orders table tbody .order-product .product-img {
  width: 50px !important;
  height: 50px !important;
  overflow: hidden;
  border-radius: 10px;
  background-color: transparent;
  flex: 1;
}
.dashboard-page .dashboard-body .latest-orders table tbody .order-product .product-img img {
  width: 100% !important;
  height: 100% !important;
}
.dashboard-page .dashboard-body .latest-orders table tbody .order-product .product-content {
  padding: 0 5px;
  background-color: #fff !important;
  flex: 2;
  line-height: 23px;
}
.dashboard-page .dashboard-body .latest-orders table tbody .order-product .product-content .fb {
  font-weight: bold;
}
.dashboard-page .dashboard-body .latest-orders table tbody .order-product .product-content .title {
  background-color: #fff;
  display: block;
  font-size: 16px;
  color: #232327;
  font-weight: lighter;
}
.dashboard-page .dashboard-body .latest-orders table tbody .order-product .product-content .quantity {
  display: block;
}
.dashboard-page .dashboard-body .latest-orders table tbody .status {
  padding: 3px 15px;
  font-weight: bold;
  border-radius: 15px;
}
@media (max-width: 1087px) {
  .dashboard-page .dashboard-body .latest-orders table tbody .status {
    display: inline-table;
  }
}
.dashboard-page .dashboard-body .latest-orders table tbody .status0 {
  background-color: rgba(97, 51, 205, 0.1);
  color: rgb(97, 51, 205);
}
.dashboard-page .dashboard-body .latest-orders table tbody .status7 {
  background-color: rgba(97, 51, 205, 0.1);
  color: rgb(97, 51, 205);
}
.dashboard-page .dashboard-body .latest-orders table tbody .status1 {
  background-color: rgba(225, 67, 66, 0.1);
  color: #e14342;
}
.dashboard-page .dashboard-body .latest-orders table tbody .status2 {
  background-color: rgba(74, 74, 74, 0.1);
  color: #4a4a4a;
}
.dashboard-page .dashboard-body .latest-orders table tbody .status3 {
  background-color: rgba(254, 165, 0, 0.1);
  color: #fea500;
}
.dashboard-page .dashboard-body .latest-orders table tbody .status4 {
  background-color: rgba(var(--main-color), 0.1);
  color: var(--main-color);
}
.dashboard-page .dashboard-body .latest-orders table tbody .status5 {
  background-color: rgba(var(--second-color), 0.1);
  color: var(--second-color);
}

.product-details-admin {
  background-color: #FFF;
}

.privacy {
  padding: 20px 0 60px;
}
.privacy .privacy-wrapper .box {
  width: 100%;
  display: block;
  min-height: 150px;
  border: 2px solid transparent;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
}
.privacy .privacy-wrapper .box:hover {
  border: 2px solid var(--main-color);
}
.privacy .privacy-wrapper .box .icon {
  color: var(--main-color);
  font-size: 30px;
  text-align: center;
}
.privacy .privacy-wrapper .box .title {
  text-align: center;
  font-size: 20px;
  color: #232327;
}

.show-privacy {
  background-color: #fff;
  padding: 20px auto;
  overflow: hidden;
}
.show-privacy .title {
  text-align: center;
  color: #0073FF;
  margin: 40px auto;
}
.show-privacy .content {
  margin: 10px auto 50px;
  border-right: 8px dashed rgba(0, 115, 255, 0.5);
  border-left: 8px dashed rgba(0, 115, 255, 0.5);
}
.show-privacy .content .text {
  padding: 20px;
}
.show-privacy .content .virsion {
  background-color: rgba(0, 115, 255, 0.5);
  padding: 10px;
  color: #fff;
  text-align: center;
  margin: 0 8px;
}

.dashboard-header {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .dashboard-header {
    display: block;
  }
}
.dashboard-header h2 {
  font-weight: bold;
}
.dashboard-header .actions {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .dashboard-header .actions {
    display: flex;
    justify-content: space-between;
  }
}
.dashboard-header .top-btn {
  background-color: var(--main-color);
  border-radius: 8px;
  padding: 7px 30px;
  color: #fff;
  margin-left: 10px;
  border: none;
  display: block;
  height: 40px !important;
  text-align: center;
}
@media (max-width: 767px) {
  .dashboard-header .top-btn {
    padding: 11px 10px;
    font-size: 12px;
    margin-left: 0;
  }
}
.dashboard-header .top-btn a {
  display: flex;
}
.dashboard-header .back {
  background-color: #ccc !important;
  color: #4a4a4a;
  font-weight: bold;
  height: 40px;
  border: none;
  display: block;
  border-radius: 8px;
}
.dashboard-header .back i {
  padding: 5px;
}
.dashboard-header .back a {
  display: flex;
}
.dashboard-header a.top-btn span,
.dashboard-header a.back span {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.dashboard-header select {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  opacity: 1;
}
.dashboard-header .stats .items-number {
  font-weight: bold;
  font-size: 20px;
  padding: 2px 25px;
  background-color: rgba(var(--main-color), 0.2);
  border-radius: 5px;
}

table {
  margin-bottom: 50px;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  overflow-x: auto !important;
}
table td {
  min-width: 100px !important;
  padding: 0 3px !important;
}
table td:first-child, table td:last-child {
  min-width: auto !important;
}
table thead {
  height: 60px;
  line-height: 60px;
  color: #4a4a4a;
}
table thead td {
  padding: 0 5px;
}
table .options {
  color: #4a4a4a !important;
  font-size: 16px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}
table .options a {
  color: #4a4a4a;
}
table .options .nav-link {
  position: absolute;
  top: -17px;
  left: -30px;
}
table .options .nav-link::after {
  display: none;
}
table .options .dropdown-menu li {
  padding: 3px 0;
}
table .options .dropdown-menu li.booster a {
  color: #fea500;
}
table .options .dropdown-menu li.on-admar a {
  color: var(--main-color);
}
table .options .dropdown-menu li i {
  margin-right: 12px;
}

.dashboard-select {
  padding: 10px;
  width: 100%;
  position: relative;
  opacity: 1 !important;
  border: 0 !important;
}
.dashboard-select::before {
  content: ">";
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #4a4a4a;
  transform: rotate(90deg);
}

.dashboard-body {
  margin-bottom: 40px;
}
.dashboard-body .form-content {
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 18px 1px rgba(49, 53, 72, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}
.dashboard-body .form-content .title {
  color: #232327;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 10px;
}
.dashboard-body .form-content .input {
  position: relative;
  border: 1px solid #999;
  height: 45px;
  border-radius: 5px;
  margin: 0;
  margin-bottom: 15px;
  overflow: hidden;
  width: 100%;
}
.dashboard-body .form-content .input select {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  border: 0;
  outline: none;
  box-shadow: none;
}
.dashboard-body .form-content .input .prifix {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 5px;
  color: #bbb;
}
.dashboard-body .form-content .input .suffex {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 5px;
  color: #aaa;
  z-index: 2;
}
.dashboard-body .form-content .input .suffex i {
  cursor: pointer;
}
.dashboard-body .form-content .input .suffex.show-password {
  display: none;
}
.dashboard-body .form-content .input input {
  border: none !important;
  position: absolute;
  top: -8px;
  left: 0px;
  right: 0;
  height: 100%;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  padding: 0 10px;
}
.dashboard-body .actions {
  display: flex;
  margin: 30px 0;
  justify-content: space-between;
  margin-bottom: 30px !important;
}
.dashboard-body .actions .action {
  border-radius: 8px;
  padding: 7px 10px;
  min-width: 150px;
  margin-left: 5px;
  border: none;
  text-align: center;
}
.dashboard-body .actions .save {
  background-color: var(--main-color);
  color: #fff;
}
.dashboard-body .actions .return {
  background-color: #ddd;
  color: #4a4a4a;
}

.navbar {
  height: 60px !important;
  border-bottom: 2px dashed #000;
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
}
.navbar .lang-dropdown .dropdown-toggle::after, .navbar .lang-dropdown .dropdown-toggle::before {
  display: none !important;
}
@media (max-width: 767px) {
  .navbar .nav-container {
    margin-top: -10px;
  }
}
.navbar .logo-wrapper {
  display: flex;
  align-items: center;
}
.navbar .logo-wrapper span {
  color: #fff;
}
@media (max-width: 767px) {
  .navbar .logo-wrapper span {
    font-size: 14px;
  }
}
.navbar .logo {
  height: 55px;
  overflow: hidden;
  overflow: hidden;
}
.navbar .logo img {
  width: 100%;
  height: 100%;
}

.navbar-brand span {
  color: var(--main-color);
  font-weight: 600;
}
.navbar-brand ul.pre-loader {
  margin-bottom: auto;
  letter-spacing: -1.5px;
}
.navbar-brand ul.pre-loader li {
  list-style: none;
  color: var(--main-color);
  display: inline;
  animation: brand-anim 3s linear infinite;
}

ul.pre-loader li:nth-child(2) {
  animation-delay: 0.4s;
  animation-delay: 0.2s;
}
ul.pre-loader li:nth-child(3) {
  animation-delay: 0.6s;
  animation-delay: 0.3s;
}
ul.pre-loader li:nth-child(4) {
  animation-delay: 0.8s;
  animation-delay: 0.4s;
}
ul.pre-loader li:nth-child(5) {
  animation-delay: 1s;
  animation-delay: 0.5s;
}
ul.pre-loader li:nth-child(6) {
  animation-delay: 1.2s;
  animation-delay: 0.6s;
}
ul.pre-loader li:nth-child(7) {
  animation-delay: 1.4s;
  animation-delay: 0.7s;
}
ul.pre-loader li:nth-child(8) {
  animation-delay: 1.6s;
  animation-delay: 0.8s;
}
ul.pre-loader li:nth-child(9) {
  animation-delay: 1.8s;
  animation-delay: 0.9s;
}
ul.pre-loader li:nth-child(10) {
  animation-delay: 2s;
  animation-delay: 1s;
}
ul.pre-loader li:nth-child(11) {
  animation-delay: 2.2s;
  animation-delay: 1.1s;
}
ul.pre-loader li:nth-child(12) {
  animation-delay: 1.2s;
}
ul.pre-loader li:nth-child(13) {
  animation-delay: 1.3s;
}
ul.pre-loader li:nth-child(14) {
  animation-delay: 1.4s;
}
ul.pre-loader li:nth-child(15) {
  animation-delay: 1.5s;
}
ul.pre-loader li:nth-child(16) {
  animation-delay: 1.6s;
}
ul.pre-loader li:nth-child(17) {
  animation-delay: 1.7s;
}
ul.pre-loader li:nth-child(18) {
  animation-delay: 1.8s;
}
ul.pre-loader li:nth-child(19) {
  animation-delay: 1.9s;
}

.toggle-click {
  transform: rotate(90deg);
  padding: 0.75rem 0.25rem;
}

.bg-main {
  background-color: rgba(21, 25, 29, 0.8) !important;
}

.bg-dark {
  background-color: rgba(21, 25, 29, 0.8);
}
.bg-dark.home {
  background-color: #000 !important;
}

.navbar-dark .navbar-toggler {
  transition: 0.3s ease-in-out;
  border: none;
  box-shadow: none;
  border: none;
}
.navbar-dark .navbar-nav .circle-nav-link {
  border-radius: 50%;
  height: 60px;
  width: 60px;
}
.navbar-dark .navbar-nav .circle-nav-link img {
  width: 100%;
  height: 100%;
}
.navbar-dark .navbar-nav .nav-link {
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  color: #fff;
  border-left: 3px solid transparent;
  background-color: transparent;
  font-weight: bold;
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
  background-color: rgba(21, 25, 29, 0.8);
  color: #ffbd59;
}

.dropdown-menu.show {
  transition: 1s ease-in-out;
}

.navbar-nav .dropdown-menu {
  border-left: 4px solid rgba(21, 25, 29, 0.8);
  margin: 0;
  padding: 0 0 12px;
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  color: white;
  transition: 0.3s;
  position: relative;
}
.navbar-nav .dropdown-menu .dropdown-item:hover {
  padding-left: 30px;
  color: white;
  background-color: var(--main-color);
}
.navbar-nav .dropdown-menu .dropdown-item:hover::after {
  content: "";
  height: 100%;
  width: 3px;
  background-color: rgba(21, 25, 29, 0.8);
  position: absolute;
  top: 0;
  left: -3px;
  z-index: 1;
}

@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    border-left: 3px solid var(--main-color) !important;
    margin: 0;
  }
  .dropdown-item:hover {
    padding-left: 30px;
    color: white;
    background-color: var(--main-color);
  }
  .dropdown-item:hover::after {
    content: "";
    height: 100%;
    width: 3px;
    background-color: rgba(21, 25, 29, 0.8);
    position: absolute;
    top: 0;
    left: -33px;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    margin-top: 0;
    background-color: rgba(21, 25, 29, 0.8);
    width: 200px;
    border-radius: 0px;
  }
  .navbar-expand-lg .navbar-collapse {
    flex: inherit;
  }
}
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    margin-top: auto;
    border: none;
    width: auto;
    border-radius: 0px;
    padding-left: 40px;
    background-color: rgba(21, 25, 29, 0.8);
  }
  .navbar .navbar-collapse {
    margin-top: 12px;
    background-color: rgba(21, 25, 29, 0.8);
    position: absolute;
    top: 48px;
    right: 0;
    left: 0;
  }
}
.hero {
  top: -90px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  color: #fff;
  background-color: transparent;
}
.hero::before {
  content: "";
  display: block;
  background-color: #000 !important;
  width: 250%;
  height: 200%;
  border-radius: 50%;
  position: absolute;
  top: -110%;
  left: -50%;
  transform: translate(-50px) skew(0, -12deg);
  animation: waving ease-in-out 5s infinite alternate;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero {
    height: 125vh;
  }
}
.hero .center {
  padding: 0 100px;
  margin-top: 15%;
}
@media (max-width: 991px) {
  .hero .center {
    margin-top: 30%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .hero .center {
    margin-top: 50%;
  }
}
.hero .center .title {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hero .center .title {
    font-size: 24px;
  }
}
.hero .center .title span {
  color: #ffbd59;
  font-weight: bold;
  font-size: 36px;
  display: inline;
}
.hero .center .description {
  font-size: 20px;
  margin-bottom: 60px;
}

@keyframes waving {
  from {
    transform: translate(-50px) skew(0, -12deg);
  }
  to {
    transform: translate(-50px) skew(18deg, 0);
  }
}
.why-us {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 3;
  margin-top: -300px;
}
.why-us .content-box {
  background-color: #eaeaea;
  padding: 20px;
  border-radius: 5px;
}
.why-us .content-box .content {
  box-shadow: 0px 21px 28px -5px rgba(0, 0, 0, 0.33);
  padding: 30px;
  background-color: #000;
  border-radius: 4px;
  color: #fff;
}
.why-us .content-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.why-us .content-box p {
  margin-bottom: 30px;
  font-size: 17px;
}
.why-us .content-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  font-weight: bold;
}
.why-us .content-box .more-btn i {
  font-size: 14px;
}
.why-us .content-box .more-btn:hover {
  color: var(--main-color);
  background: #fff;
}
.why-us .icon-boxes .icon-box {
  padding: 15px;
  background-color: #eaeaea;
  border-radius: 10px;
}
.why-us .icon-boxes .icon-box .icon-content {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  box-shadow: 0px 21px 28px -5px rgba(0, 0, 0, 0.33);
}
.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #ffbd59;
  margin-bottom: 30px;
}
.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #716f6f;
  font-size: 17px;
}

.services {
  margin: 40px 0 80px;
}
.services .icon-box {
  padding: 5px;
  position: relative;
  top: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  z-index: 1;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .services .icon-box {
    margin-bottom: 0;
  }
}
.services .icon-box .service-wrapper {
  border: 15px solid #eaeaea;
  padding: 15px;
  border-radius: 30px;
  height: 100%;
}
.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}
.services .icon-box:hover img {
  transform: rotate(20deg);
  transform: scale(1.2);
  transition: all 0.5s;
}
.services .icon-box:hover::before {
  background: var(--main-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}
.services .icon-box:hover .title a {
  color: #fff;
}
.services .icon-box:hover .description {
  color: #fff;
}
.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  height: 160px;
  overflow: hidden;
  transition: all 0.8s ease-in-out;
  width: 100%;
  border-radius: 30px;
  background-color: #fff;
}
.services .icon img {
  height: 100%;
}
.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  color: rgb(76, 71, 71);
  font-size: 20px;
}
.services .description {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  color: rgb(76, 71, 71);
}

:root {
  --clr-dark: #eaeaea;
  --clr-light: #fff;
}

.services .service {
  position: relative;
  max-width: 380px;
  margin: 40px 30px;
  padding-bottom: 50px;
  border-radius: 20px;
  border-bottom-left-radius: 160px;
  border-bottom-right-radius: 160px;
  box-shadow: 0 15px 0 var(--clr-light), inset 0 -15px 0 rgba(255, 255, 255, 0.25), 0 45px 0 rgba(0, 0, 0, 0.15);
}
.services .service.ai {
  background: linear-gradient(to bottom, #000, var(--main-color));
}
.services .service.web {
  background: linear-gradient(to bottom, #000, #076);
}
.services .service.mobile {
  background: linear-gradient(to bottom, #000, #ffbd59);
}
.services .icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 150px;
  height: 130px;
  margin-top: -15px;
  background-color: #eaeaea;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1), inset 0 -8px 0 var(--clr-light);
  z-index: 1000;
}
.services .icon::before {
  content: ""; /* Add content here, such as text or an icon */
  position: absolute;
  top: -30px;
  left: -60px;
  width: 60px;
  height: 60px;
  background: transparent;
  border-top-right-radius: 60px;
  box-shadow: 15px -15px 0 15px #eaeaea;
  z-index: 1001;
}
.services .icon::after {
  content: ""; /* Add content here, such as text or an icon */
  position: absolute;
  top: -30px;
  right: -60px;
  width: 60px;
  height: 60px;
  background: transparent;
  border-top-left-radius: 60px;
  box-shadow: -15px -15px 0 15px #eaeaea;
  z-index: 1001;
}
.services .icon img {
  margin-top: -15px;
  position: relative;
  font-size: 6rem;
  z-index: 10000;
  --ionicon-stroke-width: 24px;
}
.services .content {
  width: 100%;
  padding: 30px;
  padding-top: 140px;
  text-align: center;
}
.services .content h2 {
  font-size: 1.75rem;
  color: var(--clr-light);
  margin-bottom: 10px;
}
.services .content p {
  color: var(--clr-light);
  line-height: 1.5rem;
}

.features {
  padding: 70px 0;
  background-color: #eaeaea;
}
.features .section-title h2 {
  margin: 0;
}
.features .box {
  margin-bottom: 40px;
}
.features .feat-box {
  text-align: center;
  padding: 15px;
  background-color: white;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 18px 1px rgba(49, 53, 72, 0.1);
}
.features .feat-box .feat-wrapper {
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 2px 18px 1px rgba(49, 53, 72, 0.1);
  padding: 10px;
  position: relative;
  transition: 0.3s ease-in-out;
}
.features .feat-box h4 {
  color: #333;
  font-weight: 25px;
  padding: 10px;
  position: relative;
}
.features .feat-box h4::after {
  content: "";
  width: 40px;
  height: 4px;
  background-color: var(--main-color);
  position: absolute;
  left: calc(50% - 20px);
  bottom: -4px;
}
.features .feat-box p {
  color: #666;
  font-size: 18px;
  line-height: 1.4;
  margin: 15px 0;
}
.features .feat-box img {
  width: 100px;
  height: 100px;
}

.palmier {
  padding: 80px auto;
  position: relative;
  overflow: hidden;
}
.palmier h2 {
  padding: 60px 0;
  font-weight: bold;
  font-size: 30px;
  color: #FFF;
  position: relative;
  z-index: 2;
}
.palmier::before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
}
.palmier::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #333;
}
.palmier .single-panel {
  margin: 40px 0;
  z-index: 5;
}
.palmier .single-panel .content {
  padding: 15px;
}
.palmier .single-panel .content li {
  padding: 8px;
}
.palmier .single-panel .content .ad {
  top: 10px;
}
.palmier .single-panel img {
  top: 0;
}

@media (max-width: 767px) {
  .palmier h2 {
    text-align: center;
  }
}
.single-panel {
  background-color: #fff;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  position: relative;
}
.single-panel .content {
  position: relative;
  padding: 20px 0;
}
.single-panel .content .ad {
  position: absolute;
  top: -18px;
  padding: 5px 10px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  font-size: 13px;
}
.single-panel img {
  position: absolute;
  top: 18px;
  width: 200px;
  margin: 10px 10px 10px !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
  vertical-align: middle;
}
.single-panel .links-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.single-panel .links-box ul {
  list-style: none;
}
.single-panel .links-box ul li {
  padding: 8px 0;
  width: 100%;
  color: #444;
  font-weight: 500;
  font-size: 16px;
  display: block;
}
.single-panel .links-box ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.portfolio {
  padding: 60px 0;
  background-color: #ddd;
}
.portfolio a {
  color: #fff;
}

.portfolio-details-slider {
  width: 100%;
  overflow: hidden;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 15px 0 35px 0;
  list-style: none;
  text-align: center;
}
@media (min-width: 992px) {
  .portfolio #portfolio-flters {
    margin: 0 0 35px 0;
  }
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 12px 5px 12px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #444;
  transition: all 0.3s ease-in-out;
  line-height: 100%;
  border-radius: 3px;
  padding: 8px 15px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background-color: var(--main-color);
  color: #fff;
}

.portfolio .portfolio-item {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.swiper-slide {
  overflow: hidden;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
  -ms-background-size: cover;
  background-size: cover;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  padding: 0 30px 30px;
  background-color: transparent;
  position: absolute;
  transition: all 0.3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item .portfolio-info a i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info a i:hover {
  color: white;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.6;
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
  width: 100%;
  height: 100%;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
  border-top-right-radius: 5px;
  padding: 5px 15px;
  background-color: var(--main-color);
  transition: all 0.5s ease-in-out;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
  margin-bottom: 80px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--main-color);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

.portfolio-details .portfolio-info h3,
.portfolio-details h3 {
  font-size: 22px;
  font-weight: bold;
  padding: 20px 10px;
  margin-bottom: 15px;
  color: var(--main-color);
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li {
  background-color: #fff;
  padding-bottom: 10px;
}
.portfolio-details .portfolio-info ul li .title {
  padding: 5px 10px;
  border-top: 2px solid var(--main-color);
  border-bottom: 2px solid #ddd;
  font-weight: bold;
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
}
.portfolio-details .portfolio-info ul li .content {
  font-size: 18px;
  padding: 15px;
}
.portfolio-details .portfolio-info ul li .content a {
  color: var(--main-color);
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 12px;
}

.portfolio-details .portfolio-description {
  padding: 20px;
  margin-bottom: 40px;
  background-color: #fff;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: 5px solid var(--main-color);
  border-bottom: 0;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.join {
  margin: 0 0 40px;
  padding: 200px 10px;
  position: relative;
  text-align: center;
}
.join::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.join::before {
  content: "";
  position: absolute;
  color: #FFF;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -2;
}
.join .footer-newsletter {
  font-size: 20px;
  color: #FFF;
}
.join .footer-newsletter h2 {
  color: var(--main-color);
}
.join .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.join .footer-newsletter form {
  margin: 30px auto;
  max-width: 600px;
  padding: 0 10px 0 0;
  position: relative;
  border-radius: 5px;
  text-align: center;
}
.join .footer-newsletter form input:not([type=submit]) {
  border: 0;
  color: #FFF;
  padding: 10px 5px;
  background-color: rgba(26, 32, 44, 0.4);
  border: 1px solid var(--main-color);
  width: 100%;
  border-radius: 0;
  height: 50px;
}
.join .footer-newsletter form input:hover {
  border: 1px solid var(--main-color);
}
.join .footer-newsletter form #btn-submit {
  border: 0;
  color: #FFF;
  padding: 10px 5px;
  background-color: var(--main-color);
  width: 100%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.domains {
  margin: 100px 0;
}
.domains .domain {
  background-color: #fff;
  border-radius: 15px;
  padding: 3px;
  min-height: 300px;
  margin-bottom: 40px;
}
.domains .domain .domain-wrapper {
  padding: 10px;
  border: 15px solid #eaeaea;
  border-radius: 25px;
  padding: 15px;
  min-height: 300px;
  transition: 0.3s ease-in-out;
  position: relative;
}
.domains .domain .domain-wrapper:hover {
  border-bottom: 25px solid #eaeaea;
  border-top: 5px solid #eaeaea;
}
.domains .domain .name {
  font-size: 30px !important;
  color: var(--main-color);
  font-weight: bold;
  background-color: #FFF;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  padding: 2px;
  position: absolute;
  top: -40px;
  left: auto;
}
.domains .domain .name a {
  width: 100%;
  border: 10px solid #eaeaea;
  padding: 10px;
  border-radius: 15px;
  display: block;
  color: var(--main-color);
}
.domains .domain .description {
  margin-top: 40px;
  color: rgba(51, 68, 102, 0.4666666667);
  font-weight: 600;
  margin-bottom: 30px;
}
.domains .domain .contact {
  width: 80%;
  margin: auto;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: var(--main-color);
  text-align: center;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}

.latest-random-posts {
  padding: 25px 0 60px;
}
.latest-random-posts .section-title h2 {
  padding: 10px auto;
}

.main-post {
  flex: 1;
  margin: 10px auto;
  background-color: #fff;
  position: relative;
  height: 330px;
  -ms-background-size: cover;
  background-size: cover;
  border: 5px solid #fff;
  border-bottom: 3px solid var(--main-color);
  transition: 0.3s ease-in-out;
}
.main-post::before {
  content: "";
  z-index: 3;
  border-style: solid;
  border-width: 16px;
  border-color: #eaeaea transparent transparent #eaeaea;
  position: absolute;
  left: -5px;
  top: -5px;
}
.main-post:hover img {
  transform: rotate(20deg);
  transform: scale(1.1);
}
.main-post .post-thumbnail {
  position: relative;
  overflow: hidden;
  max-height: 160px;
  width: 100%;
  text-align: center;
  background-color: rgba(30, 67, 86, 0.5);
  border-top-left-radius: 5px;
  border-top-right-radius: 8px;
}
.main-post .post-thumbnail::before {
  content: "";
  z-index: 2;
  border-style: solid;
  border-width: 15px;
  border-color: #fff transparent transparent #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.main-post .post-thumbnail img {
  display: block;
  max-width: 100%;
  height: 180px;
  transition: 0.3s ease-in-out;
}
.main-post .category {
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 10px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
.main-post .post-title {
  color: #000;
  font-weight: bold;
  line-height: 1.6;
  padding: 15px;
  display: block;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
.main-post .post-title a {
  color: #000;
  text-decoration: none;
}
.main-post .post-title a:hover {
  text-decoration: none;
}
.main-post .post-content {
  padding: 0 15px;
  line-height: 1.6;
  font-size: 15px;
}
.main-post .read-more {
  width: 100%;
  position: absolute;
  left: auto;
  right: auto;
  bottom: 8px;
}
.main-post .read-more span {
  display: block;
  background: var(--main-color);
  border-radius: 5px;
  text-align: center;
  width: 140px;
  color: #fff;
  padding: 4px 20px;
  transition: 0.3s;
  font-size: 14px;
  margin: auto;
}
.main-post .read-more a:hover {
  background: #7aafcb;
}

.home-ads .card {
  background-color: white;
  padding: 10px;
  overflow: hidden;
}
.home-ads .card:not(:last-of-type) {
  margin-right: 10px;
}
.home-ads .card img {
  width: auto;
  height: auto;
}

.search-form .form {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}
.search-form .form .input {
  border: 1px solid #999 !important;
  border-radius: 10px;
  width: 100%;
  height: 45px;
  position: relative;
}
.search-form .form .input:first-child {
  overflow: hidden;
}
@media (max-width: 767px) {
  .search-form .form .input {
    margin-bottom: 8px;
  }
}
.search-form .form .input .title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px;
}
.search-form .form .input .title i {
  padding: 5px;
}
.search-form .form .input input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  margin: auto 10px;
}
.search-form .form .input select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 2;
  border: none;
}
.search-form .form .input.submit {
  color: #fff;
  background-color: var(--main-color);
  border: none !important;
  text-align: center;
}
.search-form .form .input.submit i {
  padding: 5px;
}

.footer-wav {
  margin-top: 60px;
}
.footer-wav svg {
  background-color: #eaeaea;
}
.footer-wav svg:not(:root) {
  overflow: hidden;
  margin-bottom: -10px;
}
.footer-wav .intro-svg path {
  fill: #000;
}
.footer-wav .preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #262626;
}
.footer-wav ul.pre-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}
.footer-wav ul.pre-loader .second-name {
  margin-left: 15%;
}
.footer-wav ul.pre-loader li {
  list-style: none;
  color: #484848;
  display: inline;
  font-size: 30px;
  letter-spacing: 15px;
  animation: pre-load 3s linear infinite;
}

.footer {
  background-size: cover;
  position: relative;
  transition: background-image 1s ease-in-out;
  overflow: hidden;
}
.footer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -ms-background-size: cover;
  background-size: cover;
  z-index: 1;
}
.footer .logo {
  margin-top: -40px;
  height: 200px;
  overflow: hidden;
}
.footer .logo img {
  height: 100%;
}
.footer .footer-content {
  z-index: 5;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  background-color: #000;
  -ms-background-size: cover;
  background-size: cover;
}
.footer .footer-content .footer-top {
  padding: 40px 0 0 0;
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .footer .footer-content .footer-top {
    padding: 0;
  }
}
.footer .footer-content .footer-top span {
  font-size: 14px;
  font-weight: lighter;
}
.footer .footer-content .footer-top .footer-contact {
  text-align: start;
}
.footer .footer-content .footer-top .footer-contact p {
  font-size: 20px;
  line-height: 24px;
  color: #eaeaea;
}
.footer .footer-content .footer-top .footer-contact .footer-newsletter {
  margin-top: 30px;
}
.footer .footer-content .footer-top .footer-contact .footer-newsletter .join-form {
  width: 100%;
  text-align: center;
}
.footer .footer-content .footer-top .footer-contact .footer-newsletter .join-form form {
  margin: 20px auto;
  position: relative;
  max-width: 400px;
}
.footer .footer-content .footer-top .footer-contact .footer-newsletter .join-form form input[type=email] {
  overflow: hidden;
  font-weight: bold;
  border-radius: 50px;
  background-color: rgba(26, 32, 44, 0.6);
  padding: 10px 15px;
  padding-right: 100px;
  width: calc(100% - 20px);
  color: white;
  border: 2px solid rgb(26, 32, 44);
}
.footer .footer-content .footer-top .footer-contact .footer-newsletter .join-form form input[type=email]:focus {
  border: 1px solid var(--main-color);
  box-shadow: none;
}
.footer .footer-content .footer-top .footer-contact .footer-newsletter .join-form form .btn-submit {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: 5px;
  border: 0;
  border: 1px solid #1a202c;
  background: none;
  font-size: 14px;
  font-weight: bold;
  padding: 0 20px 2px 20px;
  background-color: var(--main-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 35px;
  cursor: pointer;
}
.footer .footer-content .footer-top .footer-contact .footer-newsletter .join-form form .btn-submit:hover {
  background-color: rgba(26, 32, 44, 0.4);
  border: 1px solid #fff;
}
.footer .footer-content .footer-top h4 {
  font-size: 25px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ffbd59;
  font-weight: bold;
}
@media (max-width: 991px) {
  .footer .footer-content .footer-top h4 {
    text-align: center;
  }
}
.footer .footer-content .footer-top .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
}
.footer .footer-content .footer-top .footer-links ul i {
  color: #f7f7f7;
  font-size: 15px;
  line-height: 1;
}
.footer .footer-content .footer-top .footer-links ul li {
  padding: 10px 5px;
  font-size: 18px;
  cursor: pointer;
}
.footer .footer-content .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
@media (max-width: 991px) {
  .footer .footer-content .footer-top .footer-links ul li {
    text-align: center;
  }
}
.footer .footer-content .footer-top .footer-links ul hr {
  height: 2px;
  background-color: #eaeaea;
  max-width: 200px;
  margin: auto;
  opacity: 1;
}
@media (min-width: 992px) {
  .footer .footer-content .footer-top .footer-links ul hr {
    margin: 0;
  }
}
.footer .footer-content .footer-top .footer-links ul a {
  color: #eaeaea;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content .footer-top .footer-infos .line {
  display: flex;
  align-items: center;
  color: #b9b9b9;
  margin-bottom: 30px;
  text-align: start;
}
@media (max-width: 767px) {
  .footer .footer-content .footer-top .footer-infos .line {
    flex-direction: column;
  }
}
.footer .footer-content .footer-top .footer-infos .line i {
  font-size: 25px;
  color: #ffbd59;
}
@media (max-width: 767px) {
  .footer .footer-content .footer-top .footer-infos .line i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.footer .footer-content .footer-top .footer-infos .line .info {
  flex: 1;
  color: #fff;
  font-size: medium;
  text-align: start;
  margin: 0 10px;
}
.footer .footer-content .footer-top .footer-infos .line .info a {
  color: #fff;
}
.footer .footer-content .footer-top .footer-infos .line .info span {
  display: block;
  font-size: medium;
  color: #fff;
}
.footer .footer-content .mySite {
  cursor: pointer;
}
.footer .footer-content .mySite span {
  color: var(--main-color);
}
.footer ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.footer ul.pre-loader li:nth-child(2) {
  animation-delay: 0.2s;
}
.footer ul.pre-loader li:nth-child(3) {
  animation-delay: 0.3s;
}
.footer ul.pre-loader li:nth-child(4) {
  animation-delay: 0.4s;
}
.footer ul.pre-loader li:nth-child(5) {
  animation-delay: 0.5s;
}
.footer ul.pre-loader li:nth-child(6) {
  animation-delay: 0.6s;
}
.footer ul.pre-loader li:nth-child(7) {
  animation-delay: 0.7s;
}
.footer ul.pre-loader li:nth-child(8) {
  animation-delay: 0.8s;
}
.footer ul.pre-loader li:nth-child(9) {
  animation-delay: 0.9s;
}
.footer ul.pre-loader li:nth-child(10) {
  animation-delay: 1s;
}
.footer ul.pre-loader li:nth-child(11) {
  animation-delay: 1.1s;
}
.footer ul.pre-loader li:nth-child(12) {
  animation-delay: 1.2s;
}
.footer ul.pre-loader li:nth-child(13) {
  animation-delay: 1.3s;
}
.footer ul.pre-loader li:nth-child(14) {
  animation-delay: 1.4s;
}
.footer ul.pre-loader li:nth-child(15) {
  animation-delay: 1.5s;
}
.footer ul.pre-loader li:nth-child(16) {
  animation-delay: 1.6s;
}
.footer ul.pre-loader li:nth-child(17) {
  animation-delay: 1.7s;
}
.footer ul.pre-loader li:nth-child(18) {
  animation-delay: 1.8s;
}
.footer ul.pre-loader li:nth-child(19) {
  animation-delay: 1.9s;
}
@media (max-width: 767px) {
  .footer .footer .footer-top .footer-links {
    text-align: center;
  }
  .footer .footer .footer-top .footer-links ul a {
    margin: auto;
  }
  .footer .footer .footer-top .footer-links ul li {
    margin: auto;
  }
  .footer .footer .footer-top .footer-contact {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer .footer-wav ul.pre-loader li {
    font-size: 18px;
    letter-spacing: -1.5px;
  }
}
.footer .made {
  font-size: 16px;
  color: #b9b9b9;
  padding: 0 20px 7px;
  background-color: #000;
  position: relative;
  z-index: 10;
  border-top: 1px solid #fff;
}
.footer .made .creator {
  margin-top: 25px;
}
.footer .made i.heart {
  color: red;
}
.footer .social-links {
  margin-top: 20px;
}
.footer .social-links .twitter i {
  transition: 0.3s;
}
.footer .social-links .twitter i:hover {
  color: #1da1f2;
}
.footer .social-links .facebook i {
  transition: 0.3s;
}
.footer .social-links .facebook i:hover {
  color: #3b5998;
}
.footer .social-links .linkedin i {
  transition: 0.3s;
}
.footer .social-links .linkedin i:hover {
  color: #0077b5;
}
.footer .social-links .instagram i {
  transition: 0.3s;
}
.footer .social-links .instagram i:hover {
  color: #e1306c;
}
.footer .social-links .youtube i {
  transition: 0.3s;
}
.footer .social-links .youtube i:hover {
  color: #ff0000;
}
.footer .social-links .contact i {
  transition: 0.3s;
}
.footer .social-links .contact i:hover {
  color: var(--main-color);
}
.footer .social-links a {
  font-size: 25px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #eaeaea;
  line-height: 40px;
  margin-right: 5px;
  border-radius: 4px;
  text-align: center;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

/* Style for the WhatsApp icon container */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.whatsapp-icon.top {
  bottom: 70px;
}

/* Style for the WhatsApp icon */
.whatsapp-icon i {
  font-size: 30px; /* Adjust the icon size as needed */
  color: #25d366; /* Adjust the icon color as needed */
  background-color: #fff; /* Adjust the background color as needed */
  border-radius: 50%; /* Make it round */
  padding: 10px 12px;
  box-shadow: 0px 0px -3px 10px rgba(0, 0, 0, 0.5); /* Add a shadow effect */
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  animation: bounce 3s infinite; /* Add the bounce animation */
}

/* Hover effect for the WhatsApp icon */
.whatsapp-icon i:hover {
  transform: scale(1.1);
}

/* Keyframes for the bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.pagination {
  margin: 20px 0 !important;
  padding: 20px 0 8px !important;
  text-align: center;
}
.pagination .disabled {
  background-color: #eee;
  box-shadow: none;
  cursor: not-allowed;
  color: #999;
}
.pagination .disabled:hover {
  background-color: #eee;
  color: #999;
}
.pagination ul {
  list-style: none;
  margin: auto;
}
.pagination ul li {
  cursor: pointer;
}
@media (max-width: 767px) {
  .pagination ul li {
    font-size: 10px;
    padding: 4px !important;
  }
}
.pagination li {
  display: inline-block;
  display: inline;
  background-color: #fff;
  border-radius: 8px;
  color: var(--main-color);
  margin: 10px 3px;
}
.pagination li:hover {
  background-color: var(--main-color);
}
.pagination li:hover a {
  color: #fff;
}
.pagination li a {
  color: var(--main-color);
}
.pagination .active {
  background-color: var(--main-color);
  padding: 7px;
}
.pagination .active:hover {
  background-color: #fff;
}
.pagination .active a {
  color: #fff;
  padding: 7px;
}
.pagination .active a:hover {
  color: var(--main-color);
}
.pagination .numbers {
  display: inline;
}
@media (max-width: 767px) {
  .pagination .numbers .number {
    margin: 1px;
    padding: 4px !important;
    font-size: 8px;
  }
}
.pagination .numbers .number {
  border-radius: 5px;
  border: 1px solid var(--main-color);
  padding: 5px 6px 5px 10px;
  background-color: transparent;
}
.pagination .numbers .number:hover, .pagination .numbers .number.active {
  background-color: var(--main-color);
  color: #FFF;
}
.pagination .numbers .number:hover a, .pagination .numbers .number.active a {
  color: #FFF;
  padding: 0;
}

.hero-search-form {
  width: 100%;
  padding: 20px;
}
.hero-search-form .input {
  border-radius: 30px;
  border: 1px solid #cccccc;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  font-size: 17px;
}
.hero-search-form .input input {
  color: #232327;
  border: none;
  outline: none;
  box-shadow: none;
  width: 100%;
}
.hero-search-form .input button {
  border: none;
  background-color: transparent;
  color: #CCC;
}

.search-form {
  overflow: hidden;
}
.search-form .row {
  background-color: #fff;
  border-radius: 15px;
}
.search-form .form .search {
  width: 45px;
  height: 45px;
  background-color: #0073ff;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  line-height: 45px;
  margin-top: 0;
  border: none;
}
.search-form .submit-container {
  line-height: 75px;
}
.search-form .submit-container .submit {
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  background-color: var(--main-color);
}

.content-area {
  margin-left: 260px;
  margin-top: 0;
  width: calc(100% - 260px);
  transition: 0.3s ease-in-out;
  padding: 10px 0;
  height: calc(100vh - 105px);
  overflow: hidden;
  overflow-y: scroll;
  position: fixed;
  top: 105px;
}
.content-area.no-sidebar {
  margin-left: 0;
  width: 100%;
  right: 0;
  left: 0;
  display: block;
  transition: 0.3s ease-in-out;
}
.content-area .footer {
  position: absolute;
  left: 0;
  right: 0;
}

@media (max-width: 767px) {
  .content-area {
    margin-left: 0;
    width: 100%;
    top: 75px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .content-area.no-sidebar::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.dashboard-container {
  z-index: 99;
  position: fixed;
  top: 60px;
}
@media (max-width: 767px) {
  .dashboard-container {
    top: 75px;
  }
}

.sidebar {
  width: 250px;
  height: calc(100vh - 85px);
  position: fixed;
  top: 60px;
  left: 0;
  transition: 0.3s ease-in-out;
  z-index: 9999;
  background-color: #fff;
}
@media (max-width: 767px) {
  .sidebar {
    left: -250px;
    top: 65px;
  }
  .sidebar .sidebar-body {
    height: calc(100vh - 220px) !important;
  }
  .sidebar .sidebar-toggler {
    right: -25px !important;
    top: 0 !important;
  }
  .sidebar.show {
    left: 0 !important;
  }
  .sidebar.show .sidebar-toggler {
    right: 5px !important;
  }
}
.sidebar.show {
  left: -250px;
}
.sidebar.show .sidebar-toggler {
  right: -25px !important;
}
.sidebar .sidebar-footer {
  position: absolute;
  bottom: -24px;
  width: 100%;
  box-shadow: -6px 0px 13px -1px rgba(0, 0, 0, 0.2) !important;
  padding-top: 10px !important;
  background-color: #fff;
}
@media (max-width: 767px) {
  .sidebar .sidebar-footer {
    bottom: -60px;
  }
}
.sidebar .sidebar-footer .menu-item {
  margin-bottom: 12px;
  position: relative;
}
.sidebar .sidebar-footer .menu-item form {
  display: flex;
}
.sidebar .sidebar-footer .menu-item .count {
  margin-top: 5px !important;
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 5px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: var(--main-color);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  opacity: 0.9;
  box-shadow: rgba(144, 164, 174, 0.1) 0px 1px 4px;
}
.sidebar .sidebar-footer .menu-item.active .list-items {
  display: block;
}
.sidebar .sidebar-footer .menu-item .open-close-icon {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #555;
}
.sidebar .sidebar-footer .menu-item .open-close-icon .open {
  display: none;
  transition: 0.2s ease-in-out;
}
.sidebar .sidebar-footer .menu-item a,
.sidebar .sidebar-footer .menu-item .title {
  display: flex;
  font-size: 18px;
  margin-bottom: 10px;
  color: #555 !important;
  cursor: pointer;
  width: 100%;
  border: none;
  background-color: transparent;
}
.sidebar .sidebar-footer .menu-item a span,
.sidebar .sidebar-footer .menu-item .title span {
  margin: auto 10px;
}
.sidebar .sidebar-footer .menu-item .name {
  width: 100%;
}
.sidebar .sidebar-footer .menu-item .icon {
  padding: 0 10px;
}
.sidebar .sidebar-footer .menu-item .list-items {
  display: none;
}
.sidebar .sidebar-footer .menu-item .list-items .list-item {
  padding: 0 0 0 35px;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding-right: 5px;
}
.sidebar .sidebar-footer .menu-item .list-items .list-item .count {
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 5px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: var(--main-color);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  opacity: 0.9;
  box-shadow: rgba(144, 164, 174, 0.1) 0px 1px 4px;
}
.sidebar .sidebar-footer .menu-active:nth-child(2) {
  margin-top: -10px;
  background-color: rgba(var(--main-color), 0.2) !important;
  color: var(--main-color);
}
.sidebar .sidebar-footer .menu-active:nth-child(2) > a {
  align-items: center;
}
.sidebar .sidebar-footer .menu-active .count {
  margin-top: 12px !important;
  float: left;
}
.sidebar .sidebar-footer .menu-active .open-close-icon {
  position: absolute;
  top: 12px;
  right: 10px;
  color: rgb(3, 115, 201);
}
.sidebar .sidebar-footer .menu-active .open-close-icon .open {
  display: none;
  transition: 0.2s ease-in-out;
}
.sidebar .sidebar-footer .menu-active a,
.sidebar .sidebar-footer .menu-active .title {
  display: flex;
  color: var(--main-color) !important;
  background-color: rgba(var(--main-color), 0.2);
}
.sidebar .sidebar-footer .menu-active .name {
  margin-top: 8px;
}
.sidebar .sidebar-footer .menu-active .icon {
  padding: 8px 10px 6px;
}
.sidebar .sidebar-footer .list-item a {
  background-color: #fff;
  color: #4a4a4a !important;
}
.sidebar .sidebar-footer .active-link {
  color: var(--main-color) !important;
}
.sidebar .sidebar-footer .active-link a {
  color: var(--main-color) !important;
}
.sidebar .sidebar-body {
  height: calc(100vh - 270px);
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 50px;
  /* Track */
  /* Handle */
}
.sidebar .sidebar-body::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
}
.sidebar .sidebar-body::-webkit-scrollbar-track {
  background-color: #ccc;
  padding: 2px;
  border-radius: 5px;
}
.sidebar .sidebar-body::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 5px;
  opacity: 1;
}
.sidebar .sidebar-wrapper {
  border-radius: 10px;
  color: #555 !important;
}
.sidebar .sidebar-wrapper .sidebar-menu {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.sidebar .sidebar-wrapper .sidebar-menu .show-shop-btn {
  margin: 0 5px 15px;
}
.sidebar .sidebar-wrapper .sidebar-menu .show-shop-btn a {
  color: white;
  background-color: #0069f2;
  padding: 7px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.sidebar .sidebar-wrapper .sidebar-menu .count {
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 5px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: var(--main-color);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  opacity: 0.9;
  box-shadow: rgba(144, 164, 174, 0.1) 0px 1px 4px;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item {
  margin-bottom: 12px;
  position: relative;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item form {
  display: flex;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .count {
  margin-top: 5px !important;
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 5px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: var(--main-color);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  opacity: 0.9;
  box-shadow: rgba(144, 164, 174, 0.1) 0px 1px 4px;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item.active .list-items {
  display: block;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .open-close-icon {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #555;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .open-close-icon .open {
  display: none;
  transition: 0.2s ease-in-out;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item a,
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .title {
  display: flex;
  font-size: 18px;
  margin-bottom: 10px;
  color: #555 !important;
  cursor: pointer;
  width: 100%;
  border: none;
  background-color: transparent;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item a span,
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .title span {
  margin: auto 10px;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .name {
  width: 100%;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .dashboard-name {
  margin-top: 0 !important;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .icon {
  padding: 0 10px;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .list-items {
  display: none;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .list-items .list-item {
  padding: 0 0 0 35px;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding-right: 5px;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-item .list-items .list-item .count {
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 5px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: var(--main-color);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  opacity: 0.9;
  box-shadow: rgba(144, 164, 174, 0.1) 0px 1px 4px;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-active:nth-child(2) {
  margin-top: -10px;
  background-color: rgba(var(--main-color), 0.2) !important;
  color: var(--main-color);
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-active:nth-child(2) > a {
  align-items: center;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-active .count {
  margin-top: 12px !important;
  float: left;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-active .open-close-icon {
  position: absolute;
  top: 12px;
  right: 10px;
  color: rgb(3, 115, 201);
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-active .open-close-icon .open {
  display: none;
  transition: 0.2s ease-in-out;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-active a,
.sidebar .sidebar-wrapper .sidebar-menu .menu-active .title {
  display: flex;
  color: var(--main-color) !important;
  background-color: rgba(var(--main-color), 0.2);
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-active .name {
  margin-top: 8px;
}
.sidebar .sidebar-wrapper .sidebar-menu .menu-active .icon {
  padding: 8px 10px 6px;
}
.sidebar .sidebar-wrapper .sidebar-menu .list-item a {
  background-color: #fff;
  color: #4a4a4a !important;
}
.sidebar .sidebar-wrapper .sidebar-menu .active-link {
  color: var(--main-color) !important;
}
.sidebar .sidebar-wrapper .sidebar-menu .active-link a {
  color: var(--main-color) !important;
}
.sidebar .sidebar-wrapper .stats-info {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.sidebar .sidebar-wrapper .stats-info .menu-item {
  display: flex;
  color: #555 !important;
  font-size: 18px;
}
.sidebar .sidebar-wrapper .stats-info .menu-item .count {
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 5px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: var(--main-color);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  opacity: 0.9;
  box-shadow: rgba(144, 164, 174, 0.1) 0px 1px 4px;
}
.sidebar .sidebar-wrapper .stats-info .icon {
  padding: 0 10px;
}
.sidebar .sidebar-wrapper .stats-info .list-items {
  padding: 5px 5px 5px 20px;
}
.sidebar .sidebar-wrapper .sidebar-hero {
  display: flex;
  background-color: #fff;
  padding: 30px 10px 10px;
  position: relative;
}
.sidebar .sidebar-wrapper .sidebar-hero .logo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-right: 15px;
  width: 50px;
  height: 50px;
}
.sidebar .sidebar-wrapper .sidebar-hero .logo img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.sidebar .sidebar-wrapper .sidebar-hero .name {
  font-weight: bold;
  font-size: 15px;
  color: #232327;
}
.sidebar .sidebar-wrapper .sidebar-hero .regestered-date {
  font-size: 12px;
  color: #4a4a4a;
}
.sidebar .sidebar-wrapper .sidebar-hero .sidebar-toggler {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #fff;
  height: 20px;
  font-size: 14px;
  width: 25px;
  text-align: center;
  line-height: 20px;
  color: #232327;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 8px 1px 8px -3px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 991px) {
  .sidebar .sidebar-wrapper .sidebar-hero .sidebar-toggler {
    display: block;
  }
}

.form .section {
  padding: 20px 15px;
  height: 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.form .section::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #ccc;
  position: absolute;
  left: 65.5%;
  display: block;
  top: 33px;
}

@media (max-width: 767px) {
  .form .section::after {
    left: 76%;
  }
}
.form .section::before {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #ccc;
  position: absolute;
  right: 65.5%;
  display: block;
  top: 33px;
}

@media (max-width: 767px) {
  .form .section::before {
    right: 76%;
  }
}
.form .section .title {
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 20px;
  width: 32%;
  font-size: 16px;
  font-weight: normal;
  color: #666;
  margin: auto;
}

@media (max-width: 767px) {
  .form .section .title {
    width: 55%;
  }
}
.form .logo {
  padding: 0 20px;
  text-align: start;
}

@media (max-width: 767px) {
  .form .logo {
    text-align: center;
  }
}
.form .logo label {
  color: #f2f2f2;
  background-color: var(--main-color);
  font-size: 18px;
  border-radius: 20px;
  margin-top: 10px;
  width: 200px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
  box-shadow: 0 7.9873px 6.974px rgba(39, 170, 109, 0.2);
}

.form .logo label:hover {
  background-color: var(--second-color);
}

.form .logo input {
  display: none;
}

.form .field {
  margin: 15px;
}

.form .field > label {
  display: block;
  margin: 0;
}

.form .field .radio {
  width: 30px;
}

.form .field input, .form .field select, .form .field textarea {
  width: 100%;
  border: none;
  border: 1px solid #999;
  border-radius: 5px;
  padding: 10px;
  outline: none;
  margin: 8px 0;
}

.form .field input:focus, .form .field select:focus, .form .field textarea:focus {
  outline: none;
  border-bottom: 2px solid var(--main-color);
}

.form .field input:hover, .form .field select:hover, .form .field textarea:hover {
  border-bottom: 2px solid var(--main-color);
}

.form .field label {
  font-weight: bold;
  color: #888;
}

.form .field.gender-section .gender-inputs {
  margin: 8px 0;
  padding: 7px;
  display: flex;
  justify-content: center;
  background-color: rgba(39, 170, 109, 0.1);
  border-bottom: 2px solid #999;
}

.form .field.gender-section .gender-inputs:hover {
  border-bottom: 2px solid var(--second-color);
}

.form .form-actions {
  margin: 10px;
  width: 100%;
  padding: 10px 0;
}

.form .form-actions::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #ccc;
  display: block;
  margin-bottom: 20px;
}

.form .form-actions .action {
  border: none;
  outline: none;
  margin: 0 10px;
}

.form .form-actions .action:focus {
  border: none;
  outline: none;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none !important;
}

/* Float cancel and delete .deletes and add an equal width */
.dashboard-title {
  font-weight: bold !important;
}

.cancelbtn,
.deletebtn {
  float: left;
  width: 50%;
  height: 50px;
  border: none;
}

/* Add a color to the cancel button */
.cancelbtn {
  background-color: rgba(204, 204, 204, 0.7);
  color: black;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.cancelbtn:hover, .cancelbtn:focus {
  background-color: #cccccc;
}

/* Add a color to the delete button */
.deletebtn {
  background-color: rgba(244, 67, 54, 0.7);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  position: relative;
}
.deletebtn:hover, .deletebtn:focus {
  background-color: #f44336;
}
.deletebtn a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  line-height: 50px;
  color: #232327;
}

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

/* The Modal (background) */
/* Modal Content/Box */
/* Style the horizontal ruler */
/* The Modal Close Button (x) */
/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn,
  .deletebtn {
    width: 100%;
  }
}
.no-sidebar .modal {
  width: 100% !important;
}

@media (max-width: 767px) {
  .modal {
    width: 100% !important;
  }
}
.help-block {
  font-weight: 600;
  color: #d84400;
}

label.main-label {
  margin: 10px auto;
}

.field .tags {
  background-color: rgba(39, 170, 109, 0.05);
  padding: 10px;
  border-bottom: 2px solid #999;
}
.field .tags:hover {
  border-bottom: 2px solid var(--second-color);
}

.tag-lable {
  border: 1px solid #888;
  border-radius: 10px;
  position: relative;
  padding: 2px 10px 2px 20px;
  font-weight: 500;
}
.tag-lable input {
  position: absolute;
  top: 8px;
  left: -22px;
  margin: 0;
  padding: 0;
}

.table {
  overflow-x: auto !important;
}
.table td {
  min-width: 100px !important;
  padding: 0 3px !important;
}
.table td:first-child, .table td:last-child {
  min-width: auto !important;
}
.table form {
  height: 40px;
  border-radius: 5px;
  border: 1px solid var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin: auto;
}
.table form button {
  padding: 0 5px;
  color: var(--main-color);
}
.table form button:hover {
  background-color: var(--main-color);
  color: #fff;
}
.table form select,
.table form button {
  height: 38px;
  border-radius: 0;
  border: none;
}
.table form select:focus, .table form select:hover,
.table form button:focus,
.table form button:hover {
  border: 1px solid var(--main-color);
  box-shadow: none;
  outline: none;
  border: none;
}
.table thead {
  background-color: rgba(0, 115, 255, 0.5);
}

.dataTables_scrollHead thead {
  background-color: rgba(0, 115, 255, 0.5);
}
.dataTables_scrollHead thead th {
  position: relative;
}
.dataTables_scrollHead thead th::before {
  content: "\f175";
  font-family: "Font Awesome 6 Free";
  display: block;
  font-size: 12px;
  position: absolute;
  top: 13px;
  left: 2px;
}
.dataTables_scrollHead thead th.sorting_asc::before {
  content: "\f176";
  font-family: "Font Awesome 6 Free";
  display: block;
  font-size: 12px;
  position: absolute;
  top: 13px;
  left: 2px;
}

table {
  width: 100% !important;
  overflow-x: auto !important;
}
table td {
  min-width: 100px !important;
  padding: 0 3px !important;
}
table td:first-child, table td:last-child {
  min-width: auto !important;
}
table td .btn-group a {
  margin: 10px 5px;
}

.ck-editor__editable {
  min-height: 300px;
  max-height: 500px;
}

#filter_div {
  display: none !important;
  opacity: 0 !important;
}

.dataTables_filter {
  margin-bottom: 5px;
}
.dataTables_filter input {
  border-radius: 20px !important;
  border: none;
  box-shadow: none;
  outline: none;
  color: var(--main-color);
  border: 2px solid rgba(0, 115, 255, 0.6) !important;
}

.export {
  float: left !important;
  height: 35px;
  width: 120px;
}

.dashboard-header {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .dashboard-header {
    display: block;
  }
}
.dashboard-header h2 {
  font-weight: bold;
}
.dashboard-header .actions {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .dashboard-header .actions {
    display: flex;
    justify-content: space-between;
  }
}
.dashboard-header .top-btn {
  background-color: var(--main-color);
  border-radius: 8px;
  padding: 7px 30px;
  color: #fff;
  margin-left: 10px;
  border: none;
  display: block;
  height: 40px !important;
  text-align: center;
}
@media (max-width: 767px) {
  .dashboard-header .top-btn {
    padding: 11px 10px;
    font-size: 12px;
    margin-left: 0;
  }
}
.dashboard-header .top-btn a {
  display: flex;
}
.dashboard-header .back {
  background-color: #ccc !important;
  color: #4a4a4a;
  font-weight: bold;
  height: 40px;
  border: none;
  display: block;
  border-radius: 8px;
}
.dashboard-header .back i {
  padding: 5px;
}
.dashboard-header .back a {
  display: flex;
}
.dashboard-header a.top-btn span,
.dashboard-header a.back span {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.dashboard-header select {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  opacity: 1;
}
.dashboard-header .stats .items-number {
  font-weight: bold;
  font-size: 20px;
  padding: 2px 25px;
  background-color: rgba(var(--main-color), 0.2);
  border-radius: 5px;
}

table {
  margin-bottom: 50px;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  overflow-x: auto !important;
}
table td {
  min-width: 100px !important;
  padding: 0 3px !important;
}
table td:first-child, table td:last-child {
  min-width: auto !important;
}
table thead {
  height: 60px;
  line-height: 60px;
  color: #4a4a4a;
}
table thead td {
  padding: 0 5px;
}
table .options {
  color: #4a4a4a !important;
  font-size: 16px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}
table .options a {
  color: #4a4a4a;
}
table .options .nav-link {
  position: absolute;
  top: -17px;
  left: -30px;
}
table .options .nav-link::after {
  display: none;
}
table .options .dropdown-menu li {
  padding: 3px 0;
}
table .options .dropdown-menu li.booster a {
  color: #fea500;
}
table .options .dropdown-menu li.on-admar a {
  color: var(--main-color);
}
table .options .dropdown-menu li i {
  margin-right: 12px;
}

.dashboard-select {
  padding: 10px;
  width: 100%;
  position: relative;
  opacity: 1 !important;
  border: 0 !important;
}
.dashboard-select::before {
  content: ">";
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #4a4a4a;
  transform: rotate(90deg);
}

.dashboard-body {
  margin-bottom: 40px;
}
.dashboard-body .form-content {
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 18px 1px rgba(49, 53, 72, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}
.dashboard-body .form-content .title {
  color: #232327;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 10px;
}
.dashboard-body .form-content .input {
  position: relative;
  border: 1px solid #999;
  height: 45px;
  border-radius: 5px;
  margin: 0;
  margin-bottom: 15px;
  overflow: hidden;
  width: 100%;
}
.dashboard-body .form-content .input select {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  border: 0;
  outline: none;
  box-shadow: none;
}
.dashboard-body .form-content .input .prifix {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 5px;
  color: #bbb;
}
.dashboard-body .form-content .input .suffex {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 5px;
  color: #aaa;
  z-index: 2;
}
.dashboard-body .form-content .input .suffex i {
  cursor: pointer;
}
.dashboard-body .form-content .input .suffex.show-password {
  display: none;
}
.dashboard-body .form-content .input input {
  border: none !important;
  position: absolute;
  top: -8px;
  left: 0px;
  right: 0;
  height: 100%;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  padding: 0 10px;
}
.dashboard-body .actions {
  display: flex;
  margin: 30px 0;
  justify-content: space-between;
  margin-bottom: 30px !important;
}
.dashboard-body .actions .action {
  border-radius: 8px;
  padding: 7px 10px;
  min-width: 150px;
  margin-left: 5px;
  border: none;
  text-align: center;
}
.dashboard-body .actions .save {
  background-color: var(--main-color);
  color: #fff;
}
.dashboard-body .actions .return {
  background-color: #ddd;
  color: #4a4a4a;
}

.profile .profile-header {
  text-align: center;
}
.profile .profile-header .cover {
  background-color: #fff;
  border: 3px solid #ddd;
  border-radius: 20px;
  height: 200px;
  width: 100%;
  position: relative;
}
.profile .profile-header .avatar {
  width: 150px;
  height: 150px;
  border: 3px solid #ddd;
  border-radius: 50%;
  position: absolute;
  bottom: -75px;
  left: calc(50% - 75px);
  background-color: #fff;
}
.profile .profile-header .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.profile .profile-header .avatar .edit {
  border: 1px solid var(--main-color);
  border-radius: 50%;
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  bottom: 5px;
  right: 5px;
  overflow: hidden;
}
.profile .profile-header .avatar .edit label input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.profile .profile-header .avatar .edit label i {
  background-color: #ddd;
  border: 1px solid var(--main-color);
  color: #232327;
  border-radius: 50%;
  width: 30px !important;
  height: 30px !important;
  position: absolute;
  top: -1px;
  right: -1px;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
}
.profile .profile-header .avatar .save {
  padding: 0 5px;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  position: absolute;
  bottom: 3px;
  right: 48px;
  display: none;
}
.profile .profile-header .avatar .save.active {
  display: block;
}
.profile .profile-header .edit {
  background-color: #ddd;
  border: 2px solid var(--main-color);
  color: #232327;
  border-radius: 50%;
  width: 45px !important;
  height: 45px !important;
  position: absolute;
  bottom: 5px;
  right: 10px;
  text-align: center;
  padding-top: 5px;
  font-size: 20px;
}
.profile .profile-header .name {
  font-weight: bold;
  font-size: 24px;
  color: #888;
  margin-top: 80px;
}
.profile .profile-header .registred-date {
  font-size: 18px;
  color: #888;
}
.profile .section-top {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
.profile .section-top .title {
  font-size: 20px;
  font-weight: bold;
  color: #555;
}
.profile .section-top .other-page {
  padding: 5px 15px;
  height: 35px;
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  font-weight: 500;
  background-color: var(--second-color);
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 7.9873px 6.974px rgba(0, 115, 255, 0.2);
}
.profile .section-top .other-page:hover {
  background-color: var(--main-color);
  color: #232327;
}
.profile .section-top .other-page a {
  color: #f2f2f2;
}
.profile .section-top .other-page i {
  margin: 0 5px;
}
.profile .all-shops .shops-item {
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid transparent;
  display: flex;
}
.profile .all-shops .shops-item.active {
  border-color: var(--main-color);
}
.profile .all-shops .shops-item .body {
  display: flex;
  justify-content: space-between;
}
.profile .all-shops .shops-item .body .title {
  color: #232327;
  font-size: 18px;
}
.profile .all-shops .shops-item .body .active {
  color: var(--second-color);
}
.profile .all-shops .shops-item .body .inactive {
  color: red;
}
.profile .all-shops .shops-item .icon {
  background-color: rgba(var(--main-color), 0.2);
  color: var(--main-color);
  border-radius: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
}

.admin-categories .sub-category {
  background-color: #eee;
  display: none;
}
.admin-categories .show {
  display: revert;
}
.admin-categories table {
  font-weight: bold;
  overflow-x: auto !important;
}
.admin-categories table td {
  min-width: 100px !important;
  padding: 0 3px !important;
  line-height: 25px;
}
.admin-categories table td:first-child, .admin-categories table td:last-child {
  min-width: auto !important;
}
.admin-categories table .retate-90 {
  cursor: pointer;
  transform: rotate(90deg);
  margin-left: 10px;
}
.admin-categories table thead {
  height: 60px;
  line-height: 60px;
  color: #4a4a4a;
}
.admin-categories table thead td {
  padding: 0 5px;
}
.admin-categories table tbody tr {
  background-color: #fff;
  height: 60px;
}
.admin-categories table tbody tr td {
  padding: 0 5px;
}
.admin-categories table tbody tr .status {
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 15px;
}
@media (max-width: 1087px) {
  .admin-categories table tbody tr .status {
    display: inline-table;
  }
}
.admin-categories table tbody tr .status1 {
  background-color: rgba(var(--second-color), 0.1);
  color: var(--second-color);
}
.admin-categories table tbody tr .status0 {
  background-color: rgba(225, 67, 66, 0.1);
  color: #e14342;
}

.update-image-header {
  display: flex;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .update-image-header {
    display: block;
  }
}
.update-image-header .upload-icon {
  width: 130px;
  height: 130px;
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(var(--main-color), 0.2);
  text-align: center;
  overflow: hidden;
}
.update-image-header .upload-icon .icon {
  text-align: center;
  line-height: 110px;
  font-size: 100px;
  font-weight: lighter;
  width: 110px;
  height: 110px;
  color: var(--main-color);
  border-radius: 10px;
  border: 1px dashed var(--main-color);
}
.update-image-header .upload-icon img {
  width: 100%;
  height: 110px;
  z-index: 2;
}
.update-image-header .right-section {
  padding: 20px;
  max-width: 300px;
}
.update-image-header .right-section .description {
  display: block;
}
.update-image-header .right-section .upload-image {
  position: relative;
  display: block;
  width: 200px;
  height: 40px;
}
.update-image-header .right-section .upload-image input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.update-image-header .right-section .upload-image span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  text-align: center;
  line-height: 35px;
}

.connection-with .google,
.connection-with .facebook {
  display: flex;
  justify-content: space-between;
  /* Rounded sliders */
}
.connection-with .google .icon,
.connection-with .facebook .icon {
  font-size: 35px;
  padding: 15px;
}
.connection-with .google .status,
.connection-with .facebook .status {
  margin: 0 20px;
  padding: 3px 8px;
  text-align: center;
  color: #4a4a4a;
  background-color: #ccc;
  border-radius: 20px;
}
.connection-with .google .status.active,
.connection-with .facebook .status.active {
  color: var(--second-color);
  background-color: rgba(var(--second-color), 0.2);
}
.connection-with .google .switch,
.connection-with .facebook .switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;
}
.connection-with .google .slider,
.connection-with .facebook .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.connection-with .google .slider:before,
.connection-with .facebook .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  transition: 0.4s;
}
.connection-with .google input:checked + .slider,
.connection-with .facebook input:checked + .slider {
  background-color: var(--main-color);
}
.connection-with .google input:checked + .slider::before,
.connection-with .facebook input:checked + .slider::before {
  left: -10px !important;
}
.connection-with .google input:focus + .slider,
.connection-with .facebook input:focus + .slider {
  box-shadow: 0 0 1px var(--main-color);
}
.connection-with .google input:checked + .slider:before,
.connection-with .facebook input:checked + .slider:before {
  transform: translateX(26px);
}
.connection-with .google .slider.round,
.connection-with .facebook .slider.round {
  border-radius: 34px;
}
.connection-with .google .slider.round:before,
.connection-with .facebook .slider.round:before {
  border-radius: 50%;
}
.connection-with .google .right,
.connection-with .google .left,
.connection-with .facebook .right,
.connection-with .facebook .left {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.settings .back {
  background-color: #ccc;
  color: #4a4a4a;
  font-weight: bold;
}
.settings .box {
  text-align: center;
  border: 0.5px solid #4a4a4a;
  padding: 15px 10px;
  border-radius: 10px;
  margin-bottom: 25px;
  min-height: 150px;
}
.settings .box .icon {
  text-align: center;
  font-size: 24px;
  color: var(--main-color);
}
.settings .box .icon i,
.settings .box .icon .material-symbols-outlined {
  padding: 10px;
  background-color: rgba(var(--main-color), 0.1);
  border-radius: 18px;
}
.settings .box .title {
  font-weight: bold;
  margin-bottom: 0;
  padding: 6px;
  font-size: 16px;
  color: #4a4a4a;
}
.settings .box .description {
  font-weight: lighter;
  font-size: 13px;
  color: #999;
}
.settings .add-option-container {
  display: none;
}
.settings .add-option-container.active {
  display: block;
}
.settings .add-option {
  margin-top: 20px;
}
.settings .add-option .remove {
  text-align: end;
}
.settings .add-option .remove i {
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: red;
  cursor: pointer;
}
.settings .add-option i {
  color: #bbb;
  padding: 10px 5px 10px 0;
}
.settings .add-option-btn {
  color: var(--main-color);
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  background-color: rgba(var(--main-color), 0.1);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  transition: 0.2s ease-in-out;
}
.settings .add-option-btn span {
  padding: 0 6px 1px;
  border: 1.5px solid var(--main-color);
  border-radius: 5px;
  margin-right: 5px;
}
.settings .add-option-btn:hover {
  color: #fff;
  background-color: var(--main-color);
}

.create-user {
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
.create-user .switch-section {
  display: flex;
  align-items: center;
}
.create-user .switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 20px;
}
.create-user .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.create-user .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.create-user .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  transition: 0.4s;
}
.create-user input:checked + .slider {
  background-color: var(--main-color);
}
.create-user input:checked + .slider::before {
  left: 0px !important;
}
.create-user input:focus + .slider {
  box-shadow: 0 0 1px var(--main-color);
}
.create-user input:checked + .slider:before {
  transform: translateX(26px);
}
.create-user .slider.round {
  border-radius: 34px;
}
.create-user .slider.round:before {
  border-radius: 50%;
}
.create-user .add-section {
  display: flex;
  align-items: center;
  color: var(--main-color);
}
.create-user .add-section .add {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #fff;
}
.create-user .add-section .plus {
  font-size: 24px;
  color: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.create-user .add-section .plus i {
  font-size: 14px;
  padding: 10px;
  font-weight: bold;
}
.create-user .add-option-container {
  display: none;
}
.create-user .add-option-container.active {
  display: block;
}
.create-user .add-option {
  margin-top: 20px;
}
.create-user .add-option .remove {
  text-align: center;
}
.create-user .add-option .remove i {
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: red;
  cursor: pointer;
}
.create-user .add-option i {
  color: #bbb;
  padding: 10px 5px 10px 0;
}
.create-user .add-option-btn {
  color: var(--main-color);
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}
.create-user .add-option-btn span {
  padding: 0 6px 1px;
  border: 1.5px solid var(--main-color);
  border-radius: 5px;
  margin-right: 5px;
}

.authorisations .header {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  align-items: center;
}
.authorisations .header .selection {
  padding: 5px 15px;
  border: 1px solid #ccc;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.authorisations .header .selection input {
  width: 17px;
  height: 17px;
  margin: 0 5px;
}

.admin-users .users {
  overflow-x: auto !important;
  padding-bottom: 150px;
}
.admin-users .users td {
  min-width: 150px !important;
  padding: 0 3px !important;
  line-height: 25px;
}
.admin-users .users td:first-child, .admin-users .users td:last-child {
  min-width: auto !important;
}
.admin-users .item .ckeck-item {
  margin: 15px 0;
  display: flex;
  align-items: center;
}
.admin-users .item .ckeck-item input {
  width: 18px;
  height: 18px;
  margin: 3px;
}
.admin-users .item .sub-item {
  margin-left: 15px;
}
.admin-users .ckeck-item {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.admin-users .ckeck-item input {
  width: 18px;
  height: 18px;
  margin: 3px;
}
.admin-users .sub-item {
  margin-left: 15px;
}
.admin-users form .user-field {
  margin: 15px 0;
}
.admin-users form .user-field label {
  padding: 5px 0;
  color: #4a4a4a;
}
.admin-users form .user-field textarea {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 5px;
  width: 100%;
}
.admin-users form .user-field .prifix {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 5px;
  color: #bbb;
}
.admin-users form .input {
  width: 100%;
  position: relative;
  border: 1px solid #bbb;
  height: 45px;
  border-radius: 5px;
  overflow: hidden;
}
.admin-users form .input select {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  border: 0;
  outline: none;
  box-shadow: none;
  border: 1px solid #bbb;
  height: 45px;
  border-radius: 5px;
  margin: 0;
}
.admin-users form .input select:hover, .admin-users form .input select:focus {
  border: 0;
}
.admin-users form .input .prifix {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 5px;
  color: #bbb;
}
.admin-users form .input input {
  margin: 0;
  border: none;
  position: absolute;
  top: 0 !important;
  left: 40px;
  right: 0;
  height: 100%;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}
.admin-users form .input input:hover, .admin-users form .input input:focus {
  border: 0;
}
.admin-users table {
  overflow-x: auto !important;
  font-weight: bold;
}
.admin-users table td {
  min-width: 100px !important;
  padding: 0 3px !important;
  line-height: 25px;
}
.admin-users table td:first-child, .admin-users table td:last-child {
  min-width: auto !important;
}
.admin-users table .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(var(--main-color), 0.1);
  text-align: center;
  line-height: 50px;
  color: var(--main-color);
}
.admin-users table .avatar1 {
  background-color: rgba(var(--second-color), 0.1);
  color: var(--second-color);
}
.admin-users table .avatar2 {
  background-color: rgba(225, 67, 66, 0.1);
  color: #e14342;
}
.admin-users table .avatar3 {
  background-color: rgba(var(--main-color), 0.1);
  color: var(--main-color);
}
.admin-users table .avatar4 {
  background-color: rgba(254, 165, 0, 0.1);
  color: #fea500;
}
.admin-users table .avatar5 {
  background-color: rgba(var(--thired-color), 0.1);
  color: var(--thired-color);
}
.admin-users table .avatar6 {
  background-color: rgba(146, 36, 193, 0.1);
  color: #9224c1;
}
.admin-users table .avatar7 {
  background-color: rgba(235, 37, 221, 0.1);
  color: #eb25dd;
}
.admin-users table .retate-90 {
  cursor: pointer;
  transform: rotate(90deg);
  margin-left: 10px;
}
.admin-users table thead {
  height: 60px;
  line-height: 60px;
  color: #4a4a4a;
}
.admin-users table thead td {
  padding: 0 5px;
}
.admin-users table tbody {
  background-color: #fff;
  border-radius: 15px;
}
.admin-users table tbody tr {
  height: 60px;
  line-height: 60px;
}
.admin-users table tbody tr td {
  padding: 0 5px;
}
.admin-users table tbody tr .status {
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 15px;
}
@media (max-width: 1087px) {
  .admin-users table tbody tr .status {
    display: inline-table;
  }
}
.admin-users table tbody tr .status1 {
  background-color: rgba(var(--second-color), 0.1);
  color: var(--second-color);
}
.admin-users table tbody tr .status0 {
  background-color: rgba(225, 67, 66, 0.1);
  color: #e14342;
}

.applications .applications-body {
  display: flex;
  margin-top: 30px;
}
.applications .applications-body .filter .categories {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.applications .applications-body .filter .categories .desabled {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
.applications .applications-body .filter .categories h2 {
  font-weight: bold;
}
.applications .applications-body .filter .categories div {
  display: block;
}
.applications .applications-body .filter .categories div input,
.applications .applications-body .filter .categories div label {
  margin: 5px 3px;
  font-weight: 600;
}
.applications .applications-body .filter .categories div input:checked + label {
  color: var(--main-color);
}
.applications .applications-body .filter .prix {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}
.applications .applications-body .filter .prix .desabled {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
.applications .applications-body .filter .prix h2 {
  font-weight: bold;
}
.applications .applications-body .filter .prix div {
  display: block;
}
.applications .applications-body .filter .prix div input,
.applications .applications-body .filter .prix div label {
  margin: 5px 3px;
  font-weight: 600;
}
.applications .applications-body .filter .prix div input:checked + label {
  color: var(--main-color);
}
.applications .applications-body .applications-wrapper .app {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  margin: 0px 6px 20px 6px;
  position: relative;
  overflow: hidden;
}
.applications .applications-body .applications-wrapper .app .desabled {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
.applications .applications-body .applications-wrapper .app .head {
  display: flex;
}
.applications .applications-body .applications-wrapper .app .head img {
  border-radius: 20px;
}
.applications .applications-body .applications-wrapper .app .head .title {
  margin: 16px 5px 5px 10px;
}
.applications .applications-body .applications-wrapper .app .head .title .titre {
  font-weight: bold;
  margin-bottom: -4px;
}
.applications .applications-body .applications-wrapper .app .buttom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.applications .applications-body .applications-wrapper .app .buttom .reglage {
  margin-top: -25px;
  width: 100px;
}
.applications .applications-body .applications-wrapper .app .buttom .reglage a {
  margin-top: 15px;
  padding: 5px 10px;
  color: rgb(57, 57, 57);
  background-color: rgb(221, 221, 221);
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.applications .applications-body .applications-wrapper .app .buttom .reglage a i {
  padding-right: 5px;
}
.applications .applications-body .applications-wrapper .app .buttom .installer {
  margin-top: -25px;
}
.applications .applications-body .applications-wrapper .app .buttom .installer a {
  margin-top: 15px;
  padding: 8px 20px;
  color: white;
  background-color: var(--main-color);
  border-radius: 10px;
}

.showapplication {
  position: relative;
}
.showapplication .headpage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0px;
  padding: 10px 0px;
}
.showapplication .headpage a {
  margin-top: 5px;
  padding: 11px 66px;
  color: rgb(47, 47, 47);
  background-color: rgb(227, 227, 227);
  border-radius: 10px;
}
.showapplication .headpage h1 {
  font-weight: bold;
}
.showapplication .section {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
.showapplication .section .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.showapplication .section .top .block {
  display: flex;
}
.showapplication .section .top .block img {
  border-radius: 20px;
}
.showapplication .section .top .block .title {
  margin: 16px 5px 5px 10px;
}
.showapplication .section .top .block .title .titre {
  font-weight: bold;
  margin-bottom: -4px;
}
.showapplication .section .top .button {
  margin: 5px;
  text-align: center;
}
.showapplication .section .top .button a {
  margin-bottom: 15px;
  padding: 11px 30px;
  color: white;
  background-color: var(--main-color);
  border-radius: 10px;
}
.showapplication .section .top .button p {
  margin-bottom: 0;
  margin-top: 14px;
}
.showapplication .section .video {
  margin-top: 20px;
}
.showapplication .section .video .image {
  position: relative;
}
.showapplication .section .video .image .imagevideo {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}
.showapplication .section .video .image .play {
  width: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.showapplication .section .video .video-play {
  position: relative;
  display: none;
}
.showapplication .section .video .video-play .iframe {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}
.showapplication .section .video .video-play .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  cursor: pointer;
}
.showapplication .section .desc {
  margin-top: 30px;
}
.showapplication .section .desc h1 {
  font-weight: 800;
  font-size: 30px;
}
.showapplication .section .desc h2 {
  font-size: 20px;
  font-weight: bold;
}
.showapplication .section .desc ul {
  list-style: inside;
}
.showapplication .section .Guide {
  margin-top: 30px;
}
.showapplication .section .Guide h1 {
  font-weight: 800;
  font-size: 30px;
}
.showapplication .section .Guide h2 {
  font-size: 20px;
  font-weight: bold;
}
.showapplication .section .Guide ul {
  list-style: inside;
}
.showapplication .section .Ressources {
  margin-top: 30px;
}
.showapplication .section .Ressources h1 {
  font-weight: 800;
  font-size: 30px;
}
.showapplication .section .Ressources .contact {
  display: flex;
  justify-content: space-between;
  margin-top: -7px;
  padding-left: 10px;
  padding-right: 10px;
}
.showapplication .section .Ressources .contact a {
  color: rgb(155, 155, 155);
}
.showapplication .section .Ressources .contact a i {
  margin-right: 5px;
}
.showapplication .section .Ressources .contact a:hover {
  color: rgb(94, 94, 94);
}

.gererapplication .headpage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0px;
  padding: 10px 0px;
}
.gererapplication .headpage a {
  margin-top: 5px;
  padding: 11px 66px;
  color: rgb(47, 47, 47);
  background-color: rgb(227, 227, 227);
  border-radius: 10px;
}
.gererapplication .headpage h1 {
  font-weight: bold;
  font-size: 33px;
}
.gererapplication .section table {
  overflow-x: auto !important;
  margin-top: 30px;
}
.gererapplication .section table td {
  min-width: 100px !important;
  padding: 0 3px !important;
}
.gererapplication .section table td:first-child, .gererapplication .section table td:last-child {
  min-width: auto !important;
}
.gererapplication .section table th {
  color: rgb(165, 165, 165);
  padding: 10px;
}
.gererapplication .section table tbody tr {
  margin: 10px 0px;
  background-color: white;
  padding: 10px;
  border-radius: 20px;
  border-bottom: 10px solid #f2f2f2;
}
.gererapplication .section table tbody tr td {
  font-weight: 600;
  padding: 15px;
}
.gererapplication .section table tbody tr td img {
  margin-right: 5px;
}
.gererapplication .section table tbody tr td input {
  display: none;
}
.gererapplication .section table tbody tr td label {
  display: block;
  width: 56px;
  height: 24px;
  background-color: #555;
  border-radius: 20px;
  position: relative;
}
.gererapplication .section table tbody tr td label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.gererapplication .section table tbody tr td input:checked + label {
  background-color: #00acee;
}
.gererapplication .section table tbody tr td input:checked + label:before {
  left: 33px;
}
.gererapplication .section table tbody tr td .active {
  padding: 2px 17px;
  background-color: rgb(200, 255, 188);
  border-radius: 20px;
  color: var(--second-color);
}
.gererapplication .section table tbody tr td .inactive {
  padding: 2px 17px;
  background-color: rgb(204, 204, 204);
  border-radius: 20px;
  color: rgb(73, 73, 73);
}
.gererapplication .section table tbody tr td a {
  margin-top: 15px;
  padding: 10px 10px;
  color: rgb(57, 57, 57);
  background-color: rgb(221, 221, 221);
  border-radius: 10px;
}
.gererapplication .section table tbody tr td .switch {
  margin-top: 9px;
  position: relative;
  display: inline-block;
  width: 56px;
  height: 24px;
}
.gererapplication .section table tbody tr td .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.gererapplication .section table tbody tr td .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.gererapplication .section table tbody tr td .switch .slider:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}
.gererapplication .section table tbody tr td .switch input:checked + .slider {
  background-color: var(--main-color);
}
.gererapplication .section table tbody tr td .switch input:focus + .slider {
  box-shadow: 0 0 1px var(--main-color);
}
.gererapplication .section table tbody tr td .switch input:checked + .slider:before {
  transform: translateX(44px);
}
.gererapplication .section table tbody tr td .switch .slider.round {
  border-radius: 34px;
}
.gererapplication .section table tbody tr td .switch .slider.round:before {
  border-radius: 50%;
}

.reglageapplication .headpage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0px;
  padding: 10px 0px;
}
.reglageapplication .headpage a {
  margin-top: 5px;
  padding: 11px 66px;
  color: rgb(47, 47, 47);
  background-color: rgb(227, 227, 227);
  border-radius: 10px;
}
.reglageapplication .headpage h1 {
  font-weight: bold;
  font-size: 33px;
}
.reglageapplication .section {
  background-color: white;
  padding: 15px 15px 30px 15px;
  border-radius: 10px;
}
.reglageapplication .section h3 {
  font-size: 22px;
  margin: 30px 5px 20px 0;
}
.reglageapplication .section .form-group {
  margin: 10px 0;
}
.reglageapplication .section .form-group label {
  color: rgb(105, 105, 105);
}
.reglageapplication .section .form-group input::-moz-placeholder {
  color: rgb(165, 165, 165);
}
.reglageapplication .section .form-group input::placeholder {
  color: rgb(165, 165, 165);
}
.reglageapplication .section .form-group .form-control,
.reglageapplication .section .form-group .form-select {
  border-color: none;
  box-shadow: none;
}
.reglageapplication .section .radio input {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  vertical-align: middle;
}
.reglageapplication .section .radio label {
  font-size: 15px;
  color: black;
}
.reglageapplication .section .radio input:checked + label {
  color: var(--main-color);
}
.reglageapplication .btn {
  display: flex;
  justify-content: space-between;
  margin: 20px 0px;
}
.reglageapplication .btn a {
  background-color: rgb(231, 231, 231);
  color: rgb(66, 66, 66);
  padding: 7px 62px;
  border-radius: 5px;
}
.reglageapplication .btn input {
  background-color: #0069f2;
  color: black;
  padding: 7px 62px;
  border-radius: 5px;
  color: white;
  border: none;
}

.admin-posts table {
  overflow-x: auto !important;
}
.admin-posts table td {
  min-width: 100px !important;
  padding: 0 3px !important;
  line-height: 25px;
}
.admin-posts table td:first-child, .admin-posts table td:last-child {
  min-width: auto !important;
}
.admin-posts table tr .id {
  padding: 0 10px !important;
}
.admin-posts table tbody tr {
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  padding-left: 10px;
}
.admin-posts .post {
  display: flex;
  background-color: transparent;
  padding: 10px 0;
  align-items: center;
}
.admin-posts .post .post-img {
  width: 200px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
  background-color: transparent;
}
.admin-posts .post .post-img img {
  width: 100%;
  height: 100%;
}

.supper-admin-users h1 {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
}
.supper-admin-users .users {
  overflow-x: auto !important;
}
.supper-admin-users .users td {
  min-width: 100px !important;
  padding: 0 3px !important;
  line-height: 25px;
}
.supper-admin-users .users td:first-child, .supper-admin-users .users td:last-child {
  min-width: auto !important;
}
.supper-admin-users .dvider {
  width: 100%;
  text-align: center;
  position: relative;
  color: #555;
  margin: 20px 0;
}
.supper-admin-users .dvider::before {
  content: "";
  width: 46.5%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: 11px;
  left: 0;
}
.supper-admin-users .dvider::after {
  content: "";
  width: 46.5%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: 11px;
  right: 0;
}
.supper-admin-users .connection-with {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.supper-admin-users .connection-with .facebook {
  border-radius: 15px;
  background-color: var(--main-color);
  text-align: center;
  font-size: 18px;
  margin: 20px 10px 10px;
  padding: 0px 15px;
  height: 50px;
}
.supper-admin-users .connection-with .facebook a {
  color: #fff;
}
.supper-admin-users .connection-with .facebook i {
  font-size: 22px;
  padding: 10px;
}
.supper-admin-users .connection-with .google {
  text-align: center;
  border-radius: 15px;
  font-size: 18px;
  margin: 20px 10px 10px;
  padding: 0px 15px;
  border: 1px solid #4a4a4a;
  height: 50px;
  line-height: 45px;
}
.supper-admin-users .connection-with .google a {
  color: #4a4a4a;
}
.supper-admin-users .connection-with .google img {
  width: 30px;
  height: 30px;
  padding: 5px;
}
.supper-admin-users .register-form {
  margin: auto;
  max-width: 650px;
}
.supper-admin-users .register-form p {
  font-size: 12px;
  width: 100%;
  margin: 25px 0;
}
.supper-admin-users .register-form .footer-p {
  font-size: 10px;
}
.supper-admin-users .register-form h6 {
  width: 100%;
  font-size: 15px;
  margin: 30px 0 5px;
}
.supper-admin-users .register-form h5 {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  margin: 5px 0;
}
.supper-admin-users .register-form .type-label {
  width: 100%;
}
.supper-admin-users .register-form .type {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.supper-admin-users .register-form .type .option {
  float: right;
}
.supper-admin-users .register-form .type .option label {
  display: inline;
}
.supper-admin-users .register-form .type .option input {
  display: inline;
  margin: 0 10px 0 0;
}
.supper-admin-users .register-form label {
  margin: 15px 0 10px;
  width: 100%;
}
.supper-admin-users .register-form .submit {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
.supper-admin-users .register-form textarea {
  width: 100%;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 15px;
}
.supper-admin-users .register-form .input {
  width: 100%;
  position: relative;
  border: 1px solid #bbb;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}
.supper-admin-users .register-form .input select {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  border: 0;
  outline: none;
  box-shadow: none;
}
.supper-admin-users .register-form .input .prifix {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 5px;
  color: #bbb;
}
.supper-admin-users .register-form .input input {
  border: none;
  position: absolute;
  top: 0;
  left: 40px;
  right: 0;
  height: 100%;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.faq .content {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
}
.faq .content .header {
  margin: 20px 0px;
}
.faq .content .header p:first-child {
  font-size: 20px;
  font-weight: 600;
}
.faq .content .header p:last-child {
  font-size: 15px;
  color: #4a4a4a;
  margin-top: -15px;
}
.faq .content .admar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 10px;
}
.faq .content .admar .admar_principale {
  padding: 10px 17px;
  width: 185px;
  text-align: center;
  background-color: var(--main-color);
  color: white;
  border-radius: 30px;
  cursor: pointer;
}
.faq .content .admar .admar_principale:hover {
  background-color: rgba(var(--main-color), 0.6);
  color: black;
}
.faq .content .admar .admar_shop {
  padding: 10px 17px;
  width: 185px;
  text-align: center;
  border: 1px solid rgba(35, 35, 39, 0.5);
  border-radius: 30px;
  cursor: pointer;
}
.faq .content .admar .admar_shop:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}
.faq .content .admar .hmizate_admar {
  padding: 10px 17px;
  width: 185px;
  text-align: center;
  border: 1px solid rgba(35, 35, 39, 0.5);
  color: var(--main-color);
  border-radius: 30px;
  cursor: pointer;
}
.faq .content .admar .hmizate_admar:hover {
  background-color: rgba(35, 35, 39, 0.1);
}
.faq .content .questions .actions {
  width: 100%;
  text-align: end;
  float: right;
}
.faq .content .questions .actions button {
  padding: 2px 10px;
  color: #fff;
  background-color: var(--thired-color);
  border: none;
  border-radius: 5px;
}
.faq .content .questions .actions button:first-child {
  background-color: var(--main-color);
}
.faq .content .questions .question {
  width: 100%;
}
.faq .content .questions .question .faq {
  background-color: rgba(35, 35, 39, 0.05);
  padding: 10px 15px;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  height: auto;
}
.faq .content .questions .question .faq .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-top: 15px;
}
.faq .content .questions .question .faq .top i {
  vertical-align: middle;
  margin-top: -10px;
  font-size: 18px;
}
.faq .content .questions .question .faq .detail {
  color: black;
  padding: 0px !important;
  font-size: 15px;
  background-color: none !important;
  display: none;
}
.faq .content .questions .question .faqchecked {
  position: absolute;
  top: 1px;
  right: 1px;
  display: none;
}
.faq .content .questions .question .faqchecked:checked + .faq .top i {
  transform: rotate(180deg);
}
.faq .content .questions .question .faqchecked:checked + .faq .detail {
  display: block;
}

.stats {
  padding: 15px 5px;
}
.stats .stat {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 25px;
  background-color: #FFF;
  box-shadow: rgba(144, 164, 174, 0.1) 0px 1px 4px;
  padding: 10px 3px;
  min-height: 133px;
  border-radius: 10px;
  position: relative;
}
.stats .stat .stat-icon {
  color: var(--main-color);
  padding: 10px;
  font-size: 40px;
  opacity: 0.6;
}
.stats .stat .stat-header {
  display: flex;
  padding: 10px 0;
}
.stats .stat .stat-header .stat-title {
  color: var(--main-color);
  font-weight: bold;
  font-size: 30px;
  opacity: 0.85;
}
.stats .stat .stat-body .stat-info {
  font-weight: 14px;
}
.stats .stat .stat-body .stat-info .increas {
  color: green;
}
.stats .stat .stat-body .stat-info .decreas {
  color: red;
}
.stats .stat .stat-footer {
  padding: 10px 0;
  display: block;
  font-size: 12px;
  color: #232327;
}

.content-box {
  position: relative;
}
.content-box .action {
  padding: 3px 5px;
  font-size: 13px;
  margin: 3px;
}
.content-box .card {
  margin-top: 0.5px;
}
.content-box .all {
  margin: 15px auto 10px;
  border-radius: 16px;
  padding: 3px 15px;
  display: block;
  width: 200px;
}
.content-box .search {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.content-box .search input {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  color: #777;
  border: none;
  box-shadow: 0 0 7.8976px -0.2104px rgba(35, 35, 39, 0.3);
  outline: none;
}
.content-box .search input:focus {
  outline: none;
  border: none;
}
.content-box .search button {
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 2px;
  width: 80px;
  color: var(--body-bg);
  font-weight: bold;
  background-color: #232327;
  border-radius: 30px;
  border: none;
  outline: none;
}
.content-box .search button:hover {
  border: none;
  outline: none;
}
