﻿/***********************
RESPONSIVE - DEVICES
***********************/

/*If the screen is LARGER than, then; */
@media screen and (min-width: 300px) 
{
   
}
@media screen and (min-width: 320px) 
{
    
}
@media screen and (min-width: 640px) 
{
    
}
@media screen and (min-width: 1600px) 
{
    
}

/* If screen is SMALLER than, then; */

@media screen and (max-width: 1024px) {
    .btn-bid-now-hdr{
        display:block;
        background:#fff;
        text-align:center;

    }

    .btn.bid-now, .wine-store-ui .btn.bid-now {
        position: relative;
        left:auto;
        top:auto;
        margin:1em auto;
        opacity:1;
        padding: 7px 40px;

    }

    /* Override the make-an-offer styles to fix positioning of the bid now button on the mobile UI */
    .make-an-offer-ui .btn.bid-now {
        left: auto;
        top: auto;
    }

    .wine-store-ui.ws-list-view .btn.bid-now{
        position:absolute;
        opacity:1;
        top:auto;
        bottom:0

    }
}

@media screen and (max-width: 640px) 
{

}
@media screen and (max-width: 480px) 
{
    .explicit-msg {
    top:0;
    left:0;
    width:100%;
    height:320px;
    margin:0;
    padding:0;
    border:none;
    overflow:scroll;
    } 
}
@media screen and (max-width: 320px) 
{
/* Explicit Overlay */

.explicit-msg {
    height:480px;
    }  
}
@media screen and (max-width: 280px) 
{

}

