/* Model Selector CSS */


#model_selector{
    min-height: 100vh;
    z-index: 50;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

#model_selector.active{
    display: block;
}

.chaparral .model-selector-brand-logo img
{
    max-width: 200px;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 70;
}

.robalo .model-selector-brand-logo img
{
    max-width: 150px;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 70;
}

i.close-selector{
    color: #d1d1d1;
    position: fixed;
    top: 1.5rem;
    font-size: 1.5rem;
    left: 1.5rem;
    z-index: 80;
    transition: transform .2s ease-in-out;
}

.robalo i.close-selector{
    color: #000;
}

i.close-selector:hover{
    cursor: pointer;
    transform: scale(1.2);
}

.swiper-container{
    height: 100%;
    width: 100%;
}

.swiper-slide{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60% !important;
    padding: 0 4rem;
    flex-direction: column;
}

.swiper-pagination-bullet{
    background: #fff !important;
}

.swiper-slide img{
    width: 100%;
    max-width: 1000px;
}

.slider-nav{
    position: absolute;
    z-index: 55;
    bottom: 20%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
    font-size: 3rem;
    pointer-events: none;
}

.swiper-model-title{
    /* margin-bottom: -5rem; */
    color: #d1d1d1;
    font-size: 2rem;
    letter-spacing: 5px;
    position: absolute;
    top: 15%;
    text-transform: uppercase;
}

.robalo .swiper-model-title{
    color: #000;
}

.swiper-lg{
    display: block;
}

.swiper-sm{
    display: none;
}

.slider-nav i{
    cursor: pointer;
    transition: all .5s ease-in-out;
    pointer-events: all;
}
.swiper-lg .slider-nav i:hover{
    transform: translateX(15px);
}

.swiper-lg .slider-nav i.prev:hover{
    transform: translateX(-15px);
}

.selector-cta-container{
    position: absolute;
    bottom: 15%;
    letter-spacing: 2px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

.selector-cta-container a{
    padding: .75rem 2.5rem;
    font-size: .85rem;
    z-index: 60;
}

.selector-cta-container a:visited{
    color: inherit;
}
.selector-cta-container a:hover{
    cursor: pointer;
    text-decoration: none;
}

.selector-cta-container a:first-child{
    background: #d1d1d1;
    color: #555;
    margin-bottom: 1.5rem;
}

.robalo .selector-cta-container a:first-child{
    background: #000;
    color: #d1d1d1;
}

.selector-cta-container a:first-child:hover{
    color: #fff;
    background: #000;
}

.robalo .selector-cta-container a:first-child:hover{
    color: #000;
    background: #d1d1d1;
}

.selector-cta-container a:last-child{
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.robalo .selector-cta-container a:last-child{
    background: transparent;
    color: #000;
    border: 2px solid rgb(0, 0, 0);
}

.selector-cta-container a:last-child:hover{
    background: #fff;
    color: #555;
}

.robalo .selector-cta-container a:last-child:hover{
    background: #000;
    color: #d1d1d1;
}

.selector-cta-container .unity-identifier{
    position: absolute;
    right: 0;
    top: -18px;
    background: #555;
    padding: 0px 10px;
    color: #fff;
    font-size: .75rem;
}

.unity-identifier::before{
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100%;
    background: #555;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(-45deg);
    -ms-transform: skew(-45deg);
    transform: skew(-45deg);
    z-index: -1;
}




.selector-cta-container a:first-child:hover .unity-identifier,.selector-cta-container a:first-child:hover .unity-identifier::before{
    background: #000;
    border-bottom: 1px solid #fff;
}

.selector-cta-container a:first-child:hover .unity-identifier{
    top: -20px;
}
.selector-cta-container a:first-child:hover .unity-identifier::before{
    top: 1px;
}

.model-selector-return{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 2rem;
    background: #000;
    z-index: 60;
}

.robalo .model-selector-return{
    background: transparent;
}

.model-selector-return p{
    font-size: .65rem;
    letter-spacing: 1px;
    margin-bottom: 0 !important;
    margin-left: -1rem;
}

.model-selector-return a:hover{
    cursor: pointer;
    text-decoration: none;
}

.model-selector-return a:visited{
    color: inherit;
}

.model-selector-return::before{
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(-45deg);
    -ms-transform: skew(-45deg);
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: skew(-45deg);
    z-index: -1;
}

.robalo .model-selector-return::before{
    background: transparent;
}

.robalo .model-selector-return::before{
    width: 104%;
}

.change-model-link{
    top: 1.75rem;
    left: 0;
    padding: 1rem;
    transition: transform .2s ease-in-out;
}

.change-model-link p{
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: .55rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.change-model-link i{
    font-size: .75rem;
    margin-right: .25rem;
}

.change-model-link:hover{
    cursor: pointer;
    transform: translateX(10px);
}



.robalo .model-selector-brand-logo img{
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
}

.robalo .swiper-pagination-bullet {
    background: #646464 !important;
}

@media screen and (min-width: 1280px) and (max-height: 1100px)
{
    .swiper-slide img {
        width: 80%;
    }
}

@media screen and (max-width: 1920px)
{
    .swiper-model-title{
        top: 17%;
    }
}


@media screen and (max-width: 1300px)
{
    .swiper-slide{
        padding: 0 1rem;
    }

    .swiper-model-title{
        top: 25%;
    }

    .selector-cta-container{
        bottom: 20%;
    }
}

@media only screen and (max-width: 769px) and (max-height: 1024px) 
 {
    .swiper-slide img {
        width: 75%;
    }

    .swiper-model-title{
       top: 22%;
    }
}

@media screen and (max-width: 769px)
{
    .swiper-sm{
        display: block;
    }
    .swiper-lg{
        display: none;
    }
}

@media screen and (max-width: 1024px) and (max-height: 769px)
{
    .slider-nav{
        bottom: 25%;
    }

  
}

@media screen and (max-height: 850px) and (min-width: 768px) 
{
    .swiper-slide img {
        width: 100%;
    }
    .swiper-slide {
        width: 40% !important;
    }
    .swiper-model-title{
        font-size: 1.75rem;
    }

    .selector-cta-container a{
        font-size:  .65rem;
    }
}

@media screen and (max-height: 700px) and (min-width: 768px) 
{

    .swiper-model-title{
        font-size: 1.5rem;
    }
    .selector-cta-container {
        bottom: 20%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .robalo .selector-cta-container {
        bottom: 25%;
    }


    .selector-cta-container a:first-child {
        margin-right: 1.5rem !important;
        margin-bottom: 0 !important;
        
    }
  
    .robalo .selector-cta-container a:first-child,.selector-cta-container a:first-child:hover{
        border: 2px solid #000;
    }
    .robalo .selector-cta-container a:first-child:hover,.selector-cta-container a:first-child{
        border: 2px solid #d1d1d1;
    }
    .unity-identifier{
        display: none !important;
    }
}

@media screen and (max-width: 992px)
{
    .change-model-link{
        display: none;
    }
}

@media screen and (max-width: 769px)
{

  
    .swiper-slide{ 
        width: 100% !important;
    }

    .slider-nav{
        position: absolute;
        flex-direction: column;
        bottom: 20px;
        top: 20px;
        width: 100%;
        align-items: center;
        font-size: 2rem;
    }

    #model_selector.chaparral{
        min-height: -webkit-fill-available;
        max-height: -webkit-fill-available !important;
        background-position: center -80px !important;
    }

    #model_selector.robalo{
        min-height: -webkit-fill-available;
        max-height: -webkit-fill-available !important;
    }

    .swiper-model-title{
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .unity-identifier{
        display: none;
    }
    .selector-cta-container a{
        font-size: .65rem;
    }

    .selector-cta-container{
        bottom: 15%;
    }
    .swiper-sm .slider-nav i.next:hover{
        transform: translateY(-15px);
    }
    
    .swiper-sm .slider-nav i.prev:hover{
        transform: translateY(15px);
    }

    .model-selector-return{
        padding: 1rem;
    }

    .model-selector-return p{
        font-size: .55rem;
    }
    .model-selector-brand-logo img , .robalo .model-selector-brand-logo img{
        top: 7em;
        left: 50%;
        max-width: 150px;
        transform: translateX(-45%);
    }

    .robalo .model-selector-brand-logo img{
        top: 6em;
        max-width: 125px;
       
    }
    
}

@media screen and (max-width: 500px)
{

    .swiper-slide img {
        width: 100%;
    }

    .swiper-model-title{
        font-size: 1.5rem;
        padding: 0;
        max-width: 200px;
        top: 25%;
    }

    .model-selector-return p{
        font-size: .45rem;
        font-weight: bold;
    }
}
