	/* LINEUP CATEGORY ***************************************************************************/
	
    #lineup-container {
        background                          : #f2f2f2;
    }

    #lineup-category-container {
        padding                             : 12px 48px;
        background                          : #f2f2f2;
    }
    
    #category-options {
        padding-bottom                      : 24px;
        text-align                          : center;
    }

    .lineup-cat-container {
        display                             : grid;
        grid-template-columns               : repeat(3, 1fr);
        grid-gap                            : 12px;
    }

    .model {
        display                             : grid;
        background                          : white;
        border                              : 1px solid gray;
        border-radius                       : 6px;
        box-shadow                          : 2px 2px 12px lightgray;
        cursor                              : pointer;
    }

    .model:hover {
        border                              : 1px solid black;
	    box-shadow                          : 2px 2px 12px gray;
    }

    .model-title {
        height                              : 24px;
        padding                             : 6px 12px 0px 12px;
        background                          : silver;
        border-top-left-radius              : 6px;
	    border-top-right-radius             : 6px;
	    border-bottom                       : 1px solid gray;
        font-family                         : 'Exo';
        text-shadow                         : 2px 2px 12px white;

    }

    .model-img {
        height                              : max-content;
        background                          : white;
    }

    .model-img img {
        width                               : 100%;
        object-fit                          : contain;
    }

    .model-desc {
        padding                             : 12px;
        background                          : white;
        border-radius                       : 6px;
        text-shadow                         : 2px 2px 4px lightgray;
        font-size                           : 0.9em;
    }

    #model-container {
        padding                             : 12px 48px;
        background                          : #f2f2f2;
        display:none;
    }

    .model-info-section {
        padding                             : 0px 24px;   
        margin-bottom                       : 12px;
        border-radius                       : 6px;
        /*
        box-shadow                          : 2px 2px 12px lightgray;
        */
    }

    .model-info-title {
        padding: 0px 0px 12px 0px;
        text-align: center;
    }

    .model-info-title > div {
        font-family                         : 'Exo';
        font-size                           : 1.2em;
        text-shadow                         : 2px 2px 4px gray;
    }

    #model-overview {
        color                               : #464646;
        font-family                         : 'calibri';
        font-size                           : 1em;
        padding-top                         : 6px;
    }

    .model-info-story {
        display                             : grid;
        grid-template-columns               : 1fr 1fr 1fr;
        justify-items                       : center;
        align-items                         : center;
        grid-gap                            : 12px;
    }

    .model-info-story > div:nth-of-type(1) {
        text-align                          : right;
    }

    .model-info-story img {
        height                              : 240px;
        margin                              : 12px 0px;
        border-radius                       : 12px;
        box-shadow                          : 2px 2px 12px lightgray;
        
    }

    #model-story-c {
        text-align                          : center;
        padding-top                         : 12px;
        padding-bottom                      : 12px;
    }

    .model-carousel {
        display                             : grid; 
        grid-template-columns               : 64px 1fr 64px; 
        justify-items                       : center; 
        grid-gap                            : 12px; 
        padding-bottom                      : 12px;
    }

    #model-carousel-wrapper {
        display                             : grid;
        grid-template-columns               : repeat(2, 1fr);
        grid-gap                            : 12px;
    }

    .carousel-img {
        width                               : 100%;
        /*
        height                              : 240px;
        */
        object-fit                          : cover;
        border-radius                       : 6px; 
        box-shadow                          : 2px 2px 12px lightgray;
    }

    #model-carousel-prev,
    #model-carousel-next {
        align-self                          : center;
    }

    #model-carousel-prev img,
    #model-carousel-next img {
        height                              : 40px;
        cursor                              : pointer;
    }

    #model-carousel-prev img:hover,
    #model-carousel-next img:hover {
        filter                              : brightness(0.85);
        transition                          : filter 0.3s ease;
    }

    .model-info-desc-specs .model-info-section {
        margin-top                          : 12px;
        box-shadow                          : unset;
    }

    .model-specs-container {
        display                             : grid;
        grid-template-columns               : 1fr;
        justify-items                       : center;
        padding                             : 0px 48px;
    }

    .model-specs-container > div {
        width                               : 100%;
    }

    #specs-category-options {
        padding                             : 12px;
        text-align                          : center;
    }

    #specs-category-dropdown {
        width                               : 240px;
    }

    .model-spec-title {
        text-align                          : center;
        background                          : antiquewhite;
        border-bottom                       : solid 1px #464646;
    }

    .model-specs-container table tr:nth-child(2n) {
        background                          : #eee;
    }

    .model-specs-container table td {
        height                              : 34px;
    }

    #specs-table-chassis,
    #specs-table-dimensions {
        display                             : none;
    }

    .table-key {
        height                              : 24px;
        font-size                           : 0.75em;
        font-weight                         : 500;
        font-family                         : 'Tahoma';
        border-bottom                       : 1px dotted gray;
        padding-top                         : 6px;
        padding-left                        : 6px;
        white-space                         : nowrap;
    }

    .table-value {
        font-size                           : 0.7em;
        font-family                         : 'Tahoma';
        text-align                          : end;
        border-bottom                       : 1px dotted gray;
        padding-top                         : 6px;
        white-space                         : pre-line;
    }

    #lineup-category-link {
        height                              : 12px;
        display                             : grid;
        justify-items                       : end;
        padding                             : 12px;
        text-align                          : end;
    }

    #lineup-category-link-txt {
        font-style                          : italic;
        font-weight                         : semi;
        color                               : #777;
        cursor                              : pointer;
    }

    #lineup-category-link-txt:hover {
        color                               : SteelBlue;
        border-bottom                       : 1px dotted SteelBlue;
    }

/*********************************************************************************************/
    hr {
        position                            : relative;
        border                              : 0;
        margin                              : 0;
        display                             : flex;
        justify-content                     : center;
        font-size                           : 18px;
    }

    hr:before {
        content                             : '';
        background                          : linear-gradient(to right, transparent, #818078, transparent);
        position                            : absolute;
        top                                 : 50%;
        width                               : 100%;
        height                              : 1px;
    }

    hr:after {
        content                             : attr(data-content);
        position                            : relative;
        padding                             : 0 20px;
        color                               : #818078;
        background-color                    : #f2f2f2;
        line-height                         : 1;
    }

/*********************************************************************************************/
@media (max-width: 1080px) {
    .lineup-cat-container {
        grid-template-columns              : repeat(2, 1fr);
    }

    .model-info-story {
        grid-template-columns              : 1fr 1fr;
    }

    #model-story-b {
        display                             : none;
    }

    #model-carousel-wrapper {
	    grid-template-columns               : repeat(1, 1fr);
    }

    #model-carousel-wrapper div:nth-child(3),
    #model-carousel-wrapper div:nth-child(4) {
        display                             : none;
    }

    .carousel-img {
        height                             : 280px;
    }

    .model-specs-container {
        padding                             : 0px;
    }
}

/*********************************************************************************************/
@media (max-width: 880px) {
    .lineup-cat-container {
        grid-template-columns               : repeat(1, 1fr);
    }

    #model-container {
        padding                             : 12px 12px;
    }

    .model-info-section {
        padding:unset;
    }

    .model-info-story {
        grid-template-columns               : 1fr;
    }

    #model-story-a {
        text-align                         : center;
    }

    #specs-category-options {
        display                             : block;
    }

    .table-value {
        text-align                          : end;
    }
}

/*********************************************************************************************/
@media (max-width: 580px) {
    .lineup-cat-container {
        grid-template-columns               : repeat(1, 1fr);
    }

    .model-info-section {
        padding:unset;
    }

    .model-info-story {
        grid-template-columns               : 1fr;
    }

    .model-info-story img {
        height                            : 220px;
    }

    .model-carousel {
        grid-template-columns           :  24px 1fr 24px;
    }

    #model-carousel-prev img, 
    #model-carousel-next img {
        height: 24px;
    }

    #model-carousel-wrapper div:nth-child(2) {
        display                             : none;
    }

    .carousel-img {
        height                             : unset;
    }
}

/*********************************************************************************************/
@media (max-width: 490px) {
    .model-info-story img {
        height                            : 180px;
    }
}

/*********************************************************************************************/
@media (max-width: 380px) {
    .model-info-story img {
        height                           : 145px;
    }

    #model-story-a {
        font-size                       : 4vw;
        position                        : relative;
        left                            : -6px;
    }
}

/*********************************************************************************************/
.fade-out {
	-webkit-animation: fade-out 0.5s ease-out both;
	        animation: fade-out 0.5s ease-out both;
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
