/* The apply box is the sticky box on the left side of the screen */

.ApplyBox {
    z-index: 100;
    background-color: white;
    height: 100px;
    margin-left: 10px;
}

.ApplyBox .btn {
    /*width: calc( 100% - 100px );*/
    width: 100%;
}

.ApplyBox .Icon.Icon-heart {
    position: unset;
    height: 26px;
    width: 26px;
    background-size: contain;
    margin-left: 10px;
}

.ApplyBox .Icon.Icon-share {
    position: unset;
    height: 26px;
    width: 26px;
    background-size: contain;
    margin-left: 10px;
}

.Download {
    height:100%;
}

@media (min-width: 992px){

    .ApplyBox{
        transform: rotate(90deg);
        left: -85px;
        top: 50%;
    }

    .ApplyBox .Icon.Icon-heart {
        transform: rotate(-90deg) translateX(-30%); 
    }
    
    .ApplyBox .Icon.Icon-share {
        transform: rotate(-90deg) translateX(-30%);
    }

}

@media (max-width: 991px){
    .ApplyBox{
        background-color: #00A79D;
        height: 42px;
        width: 100%;
        bottom: 0;
        left: 0;
        margin-left: 0;
    }
 
    .ApplyBox .Icon{
        width: 50px !important;
        height: 50px !important;
        transform: none;
        border-left: 2px solid #fff;
        margin-left: 0px !important;
        background-size: 25px 25px !important;
    }
    .ApplyBox .Icon.Icon-heart{
        background-image: url(../assets/btn-save-icon-white.svg);
    }
    .ApplyBox .Icon.Icon-share{
        background-image: url(../assets/btn-share-icon-white.svg);
    }
}