﻿@charset "UTF-8";
a {
  color: var(--secondary);
}

ul {
  list-style: none;
}
.landing_page {
    margin-top: 110px;
}
/* .header-container {
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 99;
  background-color: var(--primary);
  padding-top: 20px;
}
.header-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-img {
  width: 154px;
  float: left;
  display: flex;
  padding: 0 15px;
  margin-left: 70px;
}
.logo-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.button {
  text-decoration: none;
}

.btn-login {
  background-color: var(--white);
  border-color: #fff !important;
  color: var(--secondary) !important;
  height: 42px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5em;
  align-items: center;
  display: inline-flex;
  border: 1px solid #fff;
  cursor: pointer;
}
.btn-login:hover {
  background-color: var(--white-secondary);
  color: #fff;
}

.btn-menu-toggle {
  position: absolute;
  left: 0;
} */

@media screen and (max-width: 992px) {
  .header-container {
    position: relative;
  }

/*  .logo-img {
    width: 92px;
    margin: 0;
    padding: 0;
  }*/

  .btn-menu-toggle {
    right: 0;
    left: auto;
  }

  .login-sign {
    padding-right: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-login {
    height: 33px;
    width: auto;
  }
}
@media screen and (max-width: 424px) {
  .login-sign {
    display: flex;
  }
}
.container-divider {
  border-top: 0px solid #fff;
  margin-bottom: 24px;
}

.sub-nav {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 30px;
  padding-bottom: 15px;
  min-height: 50px;
}

.breadcrumbs {
  padding: 0;
  margin: 0 0 15px 0;
}
.breadcrumbs li {
  display: inline;
  font-size: 13px;
}
.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}

.contact-search {
  position: relative;
}
.contact-search svg {
  position: absolute;
  color: #ddd;
  background-color: #fff;
  left: 15px;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-search input {
  width: 100%;
  height: 48px;
  border-radius: 30px;
  color: #999;
  padding-left: 40px;
  padding-right: 20px;
  border: 1px solid #ddd;
  min-width: 300px;
}
.contact-search input:focus {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3490196078);
}

.article-container {
  display: flex;
  flex-direction: row;
}

.article-sidebar {
  flex: 0 0 25%;
  height: auto;
  margin-bottom: 20px;
  padding: 0;
}

.article-section {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.article-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#sidebar-input-response {
  display: none;
}

.sidebar-title-response {
  display: none;
}

.sidebar-title {
  font-size: 20px;
  padding-bottom: 15px;
}

.sidenav-item {
  color: var(--black);
  display: block;
  padding: 0px;
  margin-bottom: 15px;
  border-radius: 4px;
}
.sidenav-item:hover, .sidenav-item.sidenav-active {
  /* background-color: var(--secondary); */
  color: var(--secondary );
  font-weight: 700;
}

.article {
  flex: 1 0 75%;
  max-width: 75%;
  min-width: 640px;
  padding: 0 0px 0 64px;
  margin-left: 20px;
  border-left: 1px solid #E8E8E8;
}
.article-header {
  margin-bottom: 40px;
  display: flex;
  line-height: 22.5px;
}
.article-header h1 {
  font-size: 32px;
  flex-basis: 100%;
  line-height: 48px;
}
.article-infor {
  max-width: 100%;
}
.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}
.article-footer {
  margin-bottom: 20px;
}
.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}

.article-vote {
  background: transparent;
  border: 1px solid var(--secondary);
  min-width: 90px;
  margin: 10px 5px;
}
.article-vote::before {
  font-size: 10px;
  margin-right: 10px;
}
.article-vote::after {
  content: attr(title);
  color: var(--secondary);
}
.article-vote:hover {
  background-color: var(--secondary);
  color: var(--white);
}
.article-vote:hover::after {
  color: var(--white);
}
.article-vote-up::before {
  content: "✓";
}
.article-vote-down::before {
  content: "✕";
}

.button {
  padding: 0 20px;
  font-size: 12px;
  border-radius: 4px;
  line-height: 2.34;
  display: inline-block;
}

.article-more-questions {
  text-align: center;
  margin: 10px 0 20px;
}
.article-more-questions a:hover {
  text-decoration: underline;
}

.article-relatives {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
}
.article-relatives h3 {
  font-size: 15px;
  margin: 20px 0;
}
.article-relatives ul {
  margin: 0;
  padding: 0;
}
.article-relatives li {
  margin-bottom: 15px;
}
.article-relatives > * {
  margin-right: 20px;
  flex: 1;
}
.article-relatives > *:last-child {
  margin: 0;
}

#footer {
  margin-top: 64px;
}

@media screen and (max-width: 1024px) {
  .article-container {
    flex-direction: column;
  }

  .article-sidebar {
    border-bottom: 1px solid var(--gray);
    border-top: 1px solid var(--gray);
  }

  .article-section {
    padding: 10px 0;
  }
  .article-section ul {
    display: none;
  }
  .article-section label {
    margin-bottom: 0;
  }

  .web-respons {
    display: none;
  }

  .sidebar-title-response {
    display: inline;
  }

  .sidebar-title::after {
    content: "▾";
    position: absolute;
    right: 0;
  }

  #sidebar-input-response:checked ~ .article-section ul {
    display: block;
  }

  .article {
    flex: 1 auto;
    padding: 0;
    max-width: none;
    min-width: auto;
  }
}

/*# sourceMappingURL=about-car-question.css.map */
