/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Description: Child theme for Blocksy
Author: Your Name
Template: blocksy
Version: 1.0
*/

#free-shipping-toast {
    position: fixed;
    bottom: 20px;
    right: 0px;
	left: 0px;
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
    background: #FBA81F;
	border: 1px solid #6F1D1B;
    color: #6F1D1B;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 999999;
    display: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media screen and (max-width: 480px){
	#free-shipping-toast{
		width: auto;
		margin: 0 auto;
	}
}