.vehicle-options-container,
.technical-options-container {
        display:grid;
        grid-template-columns:auto auto auto;
        grid-column-gap: 30px;
        align-items: flex-start;
    }

.option.suspension,
.option.kits,
.option.accessories,
.option.technical,
.option.selling,
.option.install {
    max-width:400px;
    margin:0 auto;
    width: 100%;
}
.vehicle-options-container .option,
.technical-options-container .option {
    text-align:center;
}
.vehicle-options-container button,
.technical-options-container button {
    border:1pt solid #000;
    padding:15px;
    width:100%;
}
.vehicle-options-container button {
    background-color:#fff;
}
.technical-options-container button {
    background-color:#ff0000;
}
.technical-options-container button h3 {
    color:#fff;
}
.vehicle-options-container button h3,
.technical-options-container button h3 {
    font-size:20px;
    font-weight: 500;
    font-family:'Barlow Semi Condensed';
    margin:0;
    text-transform: uppercase;
}
.vehicle-options-container button:hover,
.technical-options-container button:hover {
    background-color:#333;
}
.vehicle-options-container button:hover h3,
.technical-options-container button:hover h3 {
    color:#fff!important;
}
.kits-modal-content,
.accessories-modal-content {
    position: absolute;
    background-color: #fefefe;
    padding: 0;
    width: calc(100% - 3em);
    max-width: 400px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.kits-modal,
.accessories-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    z-index: 5000;
}
.kits-modal-header,
.accessories-modal-header {
    display:grid;
    grid-template-columns: calc(100% - 40px) 40px;
    grid-template-areas:'modLab modCls';
    height:40px;
    background-color:#333;
}
.kits-modal-header > .button-label,
.accessories-modal-header > .button-label {grid-area:modLab;}

.kits-modal-header > .kits-close,
.accessories-modal-header > .accessories-close {grid-area:modCls;}

.kits-modal-header > .button-label,
.kits-modal-header > .kits-close,
.accessories-modal-header > .button-label,
.accessories-modal-header > .accessories-close {
    display:flex;
    align-items:center;
    justify-content:center;
}
.kits-modal-header > .button-label,
.accessories-modal-header > .button-label {
    font-size:20px;
    font-weight:600;
    color:#fff;
}

.kits-modal-header > .kits-close > .close-icon,
.accessories-modal-header > .accessories-close > .close-icon {
    width:15px;
}
.kits-modal-body,
.accessories-modal-body {
    padding: 15px 15px 0 15px;
}

.kits-modal-body a,
.accessories-modal-body a {
    display:block;
    padding:15px;
    margin-bottom:15px;
    background-color: #efefef;
}

.kits-modal-body a:hover,
.accessories-modal-body a:hover,
.kits-modal-body select:hover,
.accessories-modal-body select:hover {
    background-color: #696969;
    color:#fff;
}
.kits-modal-body select,
.accessories-modal-body select {
    font-family: 'Barlow Semi Condensed';
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    min-height: 50px;
    padding-left: 10px;
    text-align: center;
    border: none;
    background-color: #efefef;
    width: 100%;
    margin-bottom: 15px;
    color: #333;
}
.kits-modal-body select > option,
.accessories-modal-body select > option {
    background-color:#fff;
    color:#333;
    padding:20px!important;
}
.img-sus:hover,

.suspension-button:hover{
    cursor: pointer;
}
.tech-modal-header,
.sell-modal-header,
.install-modal-header {
    background: #d6d4d4;
    display: inline-flex;
    width: 100%;
}
.tech-modal-header .button-label,
.sell-modal-header .button-label,
.install-modal-header .button-label {
    font-size: 24px;
    padding: 10px 0;
    width: calc(100% - 30px);
    font-weight:600;
}
.tech-close,
.sell-close,
.install-close {
    display:flex;
    align-items:center;
    justify-content:center;
    background: #262626;
    width: 50px;
    cursor:pointer;
}
.tech-close .close-icon,
.sell-close .close-icon,
.install-close .close-icon {
    width: 20px;
}
.tech-modal-body,
.sell-modal-body,
.install-modal-body {
    padding:30px;
    overflow-y:scroll;
    max-height: 684px;
}

.tech-modal-body > table,
.sell-modal-body > table,
.install-modal-body > table {
    width:100%;
}

.tech-modal-body .table th,
.tech-modal-body .table td,
.sell-modal-body .table th,
.sell-modal-body .table td,
.install-modal-body .table th,
.install-modal-body .table td {
    padding: 15px 5px;
    line-height: 22px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}
.tech-modal-body .table th,
.sell-modal-body .table th {
    width:20%;
}
.tech-modal-body .table td,
.sell-modal-body .table td {
    width:80%;
}
.install-modal-body .table th {
    width:calc(100% - 100px);
}

.tech-modal-body .table th p,
.tech-modal-body .table td p,
.sell-modal-body .table th p,
.sell-modal-body .table td p,
.install-modal-body .table th p,
.install-modal-body .table td p {
    margin: 0 0 10px 0!important;
    line-height: 25px;
}
.tech-modal-body .table ul,
.sell-modal-body .table ul,
.install-modal-body .table ul {
    margin-top:0;
    line-height:30px;
}

.vehicle-header-top {
    margin-top:200px;
}
@media only screen and (max-width: 1630px) 
{
    main#content {
        margin-left: 15px!important;
        margin-right: 15px!important;
    }
}
.vehicle-options-container,
.technical-options-container {
    display:grid;
    grid-template-columns:auto auto auto;
    margin-top:50px;
}
@media only screen and (max-width: 787px) 
{
    .vehicle-options-container,
    .technical-options-container {
        grid-template-columns:100%;
        grid-row-gap:30px;
        margin-top:10px;
    }
}
.kits-modal,
.accessories-modal,
.tech-modal,
.sell-modal,
.install-modal
{
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.kits-modal-content,
.accessories-modal-content,
.tech-modal-content,
.sell-modal-content,
.install-modal-content
{
    position: absolute;
    background-color: #fefefe;
    padding: 0;
    width: calc(100% - 3em);
    max-width: 400px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.tech-modal,
.sell-modal,
.install-modal {
    padding-top: 100px;
}
.tech-modal-content,
.sell-modal-content,
.install-modal-content {
    max-width: 1200px;
    max-height:800px;
}

.option.install .btn.download-doc:before {
    font-size:25px;
}
.option.install .btn.view-doc:before {
    font-size:20px;
}
.option.install .btn.download-doc:before {
    content:"\f56d";
    font-family:'Font Awesome 5 Free';
    font-weight:900;
}
.option.install .btn.view-doc:before {
    content:"\f06e";
    font-family:'Font Awesome 5 Free';
    font-weight:900;
}
.img-sus:hover {
    cursor: pointer;
}

@media (max-width: 767px) {
    
 /*
.vehicle-information {
    position: relative;
    background:#262626;
    padding-top:10px;
}
*/

.vehicle-information > .info-table {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.vehicle-details-heading {
    font-size:20px !important;
    font-weight:bold;
    vertical-align: top;
}

.button-container {
    position: relative;
    height:auto;
}

.vehicle-details p {
    font-size:20px !important;
    padding-left:15px !important;
    vertical-align: top;
}

.kits-button-container, .suspension-button-container, .accessories-button-container {
    max-width: 370px;
}
.section.vehicle-header {
    float:none !important;
}
.vehicle-header {
    float:none !important;
}
}

@media only screen and (min-width: 601px) and (max-width: 1333px) {
    .vehicle-info, .vehicle-info > p {
    	font-size: 1.8vw;
    }
}

@media only screen and (max-width: 600px) {
    .body {
    	font-size: 5vw;
    	line-height: 7vw;
    }
    .header-top-left, .header-top-middle, .header-top-right {
        padding:5px;
    }
    .vehicle-header-top {
        grid-template-columns: 100% ;
        grid-template-areas: 'htl' 'htm' 'htr';
    }
    .vehicle-detail-container {
        width:95%;
        grid-template-columns: 100% ;
        grid-template-areas: 'vdi' 'vdt' 'pdf';
        margin:0 auto;
    }
    .vehicle-detail-logo {
        display:none !important;
    }
    
}

.vehicle-header-top {
    margin-top:200px;
}

@media only screen and (max-width: 1630px) {
    main#content {
        margin-left: 15px!important;
        margin-right: 15px!important;
    }
}
@media only screen and (max-width: 787px) {
        .vehicle-options-container,
        .technical-options-container {
            grid-template-columns:100%;
            grid-row-gap:30px;
            margin-top:10px;
        }
    }
