﻿
body {
    font-family: 'PT Sans', sans-serif;
}

.linkbuyseller {
    border-bottom-color: darkred !important;
}

.linkbuyseller a {
    color: darkred !important;
}


    .linkbuyseller ul li a {
        color: black !important;
    }

/*The collapse link (accordian) for all the questions in the buyer and seller guide*/
.accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border:1px solid grey;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.2s;
}

.active, .accordion:hover {
  background-color: white;
}

    .accordion:after {
        font-family: "Font Awesome 5 Free";
        content: '\f0d7';
        color: black;
        font-weight: bold;
        float: right;
    }

.active:after {
    content: "\f0d8";
}

.panel {
    border: 0px solid lightgrey;
    padding: 0px 20px;
    margin: 5px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    -webkit-box-shadow: 0 0px 0px rgba(0,0,0,.00);
}
.panel > div 
{
    padding:10px;
}
/*font deco for the main topics like "FAQ" and "How to Buy a Car */
.font-deco-main
{
    font-size:20px;
    color:#33464E; 
    font-weight:bolder;
}
/*Font size for the subtopics like the Questions and the Answers*/
.font-sub
{
    font-size:14px;
}
/*CSS for the questions*/
.panel-link{
    color:black;
}
.panel-link:hover , panel-link:active{
    text-decoration:none;
    color:black
}
/*CSS for HR*/
.line_deco
{
    background-color:blue;
    height:1px; 
}

/*CSS for the TnC in seller guide and the Exclusions in buyer guide*/
.div_box{
    border:1px solid grey;
    text-align:justify;
    padding:10px;
}

