﻿.hotSpotWrapper
{
    background: #d1e9f6;
    background-position: bottom;
    margin: 0;
    margin-top: -20px;
    margin-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    
    background-image: url(/img/solutions-sky.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}




.hotSpotWrapper .hotSpotTitle
{
    display: block;
    font-family: Montserrat-Medium;
    margin-bottom: 30px;
    color: black;
    padding: 0px;
    font-size: 26px;
}

.hotSpotWrapper .hotSpotGraphicWrapper
{
    height: 450px;
    width: 950px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    position:relative;
}


.hotSpotWrapper .hotSpotDescriptionWrapper
{
    margin-top: auto;
    font-size: 16px;
    line-height: 22px;
    text-align:left;
    margin-left: 15%;
    margin-right: 15%;
    padding-bottom: 20px;
}

.hotSpotWrapper .hotSpotDescriptionWrapper p:last-child
{
    
    padding-bottom: 0px;
    margin-bottom:0px;
}




.hotSpotWrapper .hotSpotItemTitle
{
    color: #C39428;
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 20px;
}



.hotSpotWrapper .hotSpotItemDescription
{
    font-weight: bold;
    color: #000;
}






.hotSpotWrapper .hotSpotNavText
{
    margin-top: auto;
    color: #C39428;
    font-weight: bold;
    font-size: 20px;
}


.hotSpotWrapper .hotSpotDotWrapper
{
    position: absolute;
    height: 45px;
    width: 45px;
}

.hotSpotWrapper .hotSpotDot
{
    height: 45px;
    width: 45px;
    background-image: url(/img/circlePlus-28-5383AD.png);
    background-position: center;
    background-repeat: no-repeat
}

.hotSpotWrapper .hotSpotItemImage
{
    height: 135px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
}


.hotSpotWrapper .hotSpotItemWrapper
{
    
    width: 400px;
    background-position: center 90px;
    background-color: #fff;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: 20px;
    position: absolute;
    top: -111px;    
    display: none;
    z-index: 1;
    box-sizing:border-box;
}

.hotSpotWrapper .hotSpotDotWrapper.right .hotSpotItemWrapper
{
    left: 45px;
}

.hotSpotWrapper .hotSpotDotWrapper.left .hotSpotItemWrapper
{
    left: -398px;
}


.hotSpotWrapper .hotSpotDotWrapper.showing .hotSpotItemWrapper
{
    display: flex;
    animation: rollIn .7s ease-out;
    animation-iteration-count: 1;
}


@keyframes rollIn
{
    0%
    {
        transform: scaleY(0);
        opacity: 0;        
    }
    

    100%
    {
        transform: scaleY(1);
        opacity: 1;        
    }
}

.hotSpotWrapper .hotSpotDotWrapper.showing .pointer
{
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: -10px;
    z-index: 2;
    animation: rollIn .7s ease-out;
    animation-iteration-count: 1;
}

.hotSpotWrapper .hotSpotDotWrapper.showing.right .pointer
{
    left: 36px;
    border-right: 10px solid #fff;
}

.hotSpotWrapper .hotSpotDotWrapper.showing.left .pointer
{
    left: 0;
    border-left: 10px solid #fff;
}





.hotSpotWrapper .hotSpotPulse
{
    position: absolute;
    border: solid 2px rgba(0, 41, 87, 0.6);
    background-color: rgba(255, 255, 255, 0.00);
    height: 34px;
    width: 34px;
    border-radius: 25px;
    top: 6px;
    left: 6px;
    animation: dotPulse 1.2s ease-out;
    animation-iteration-count: infinite;
    cursor: pointer;
}



@keyframes dotPulse
{
    0%
    {
        transform: scale(1);
        opacity: 1;
    }

    

    100%
    {
        transform: scale(1.45);
        opacity: 0;
    }
}

@media (max-width: 1020px)
{


    .hotSpotWrapper 
    {
        background-image: none;
        height:inherit;
        padding: 20px; 
    }

    .hotSpotWrapper .hotSpotTitle
    {
        margin-bottom: 30px;
    }


    .hotSpotWrapper .hotSpotGraphicWrapper
    {
        height: inherit;
        width: inherit;
        
    }

    .hotSpotWrapper .hotSpotGraphicWrapper
    {
        background-image: none !important;
    }

    .hotSpotWrapper .hotSpotPulse,
    .hotSpotWrapper .hotSpotDot
    {
        display: none;
    }

    .hotSpotWrapper .hotSpotDotWrapper.showInMobileMode .hotSpotItemWrapper
    {
        display: flex;
        position: relative;
        top: inherit;
        left: inherit;
        height: 100%;
        width: 100%;
    }

    .hotSpotWrapper .hotSpotDescriptionWrapper
    {
        margin-left: 0;
        margin-right: 0;
    }


    .hotSpotWrapper .hotSpotDotWrapper.left .hotSpotItemWrapper,
    .hotSpotWrapper .hotSpotDotWrapper.right .hotSpotItemWrapper
    {
        left: inherit !important;
        right: inherit !important;
    }

    .hotSpotWrapper .hotSpotDotWrapper.showing .hotSpotItemWrapper
    {
        animation: none;
        animation-iteration-count: 0;
    }

    .hotSpotWrapper .hotSpotDotWrapper.showing .hotSpotItemWrapper::before
    {
        display: none;
    }



    .hotSpotWrapper .hotSpotDotWrapper.showInMobileMode
    {
        position: relative;
        left: inherit !important;
        top: inherit !important;
        height: 268px;
        width: 100%;
        /*width: 46%;*/
        min-width: 315px;
        margin-right: 20px;
        margin-bottom: 20px;
        display: inline-block;
    }

    

    .hotSpotWrapper .hotSpotGraphicWrapper
    {
        width: 100%;
    }

    
}


@media (max-width: 773px)
{
    .hotSpotWrapper .hotSpotDotWrapper.showInMobileMode
    {
        position: relative;
        left: inherit !important;
        top: inherit !important;
        height: inherit;
        width: 100%;
        min-width: 315px;
        margin-right: 20px;
        margin-bottom: 20px;
        display: inline-block;
    }
}


@media (max-width: 475px)
{
    .hotSpotWrapper .hotSpotItemWrapper
    {
        width:inherit;
    }
    .hotSpotWrapper .hotSpotGraphicWrapper
    {
        width: inherit;
        background-size:cover;
    }
}