.card {
    background-color: #f1f1f1;
    margin: 5px;
    /*border-radius: 7px;*/
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #91a891;
}

.card-header b {
    font-size: 14px;
}

body {
    max-width: 600px;
    margin: auto;
}

.header {
    position: sticky;
    top: 0;
    text-align: left;
    background-color: #469846;
    padding: 5px 15px;
    color: #f1f1f1;
    z-index: 999;
}

.tabcontent {
    display: none;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    background-color: lightgray;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.img {
    opacity: 0.4;
    filter: alpha(opacity=40); /* msie */
}

#NewOrdersModal .modal-content {
    background-color: rgba(0, 0, 0, 0);
    margin-top: 65px;
}

#NewOrdersModal .modal-content .card {
    height: 120px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;

    left: 0;
    opacity: 0;
    transform: translateX(200px);
    transition: all 0.4s ease-out;
}

#NewOrdersModal .modal-content .card.show {
    opacity: 1;
    transform: translateX(0);
}

.btn-cancel {
    width: 160px;
    height: 40px;
    border-radius: 25px;
    font-size: large;
    border-color: red;
    color: red;
}

.btn-get {
    width: 160px;
    height: 40px;
    border-radius: 25px;
    font-size: large;
    border-color: #469846;
    background-color: #469846;
    color: #f1f1f1;
}

#items-content .modal-body .card {
    margin-left: 0;
    margin-right: 0;
    height: 65px;
}

.float-phone{
	position:fixed;
	width:50px;
	height:50px;
	bottom:60px;
	right:30px;
	background-color:#0C9;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
}

.float-wa{
	position:fixed;
	width:50px;
	height:50px;
	bottom:120px;
	right:30px;
	background-color: #00cc30;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
}

.my-float{
	margin-top:18px;
}