:root{
    --color1: #0079db;
    --color2: #ee7c2b;
    --color3: #363636;  
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.w_def{
    width: 90%;
    margin: auto;
}
.flex{
	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */    flex-flow: row wrap;
    align-content: center;
    justify-content: center;
}
.space_between{
	justify-content: space-between;
}
.btn, .btn_option{
    border-radius: 10px;
    background-color: white;
    color: var(--color1);
    font-family: "Poppins-Medium";
    padding: 7px 15px;
    cursor: pointer;
}
.btn.reverse, .btn_option.selected{
    background-color:var(--color1);
    color: white;
}
.btn_option{
    background-color: rgba(240, 242, 245, 1);
    color: rgba(103, 115, 126, 1);
}
.clear_20{
    clear: both;
    height: 20px;
}
.clear_5{
    clear: both;
    height: 5px;
}
body{
    font-family: "Poppins-Regular";
    background-color: #F9FAFB;
    color: var(--color3);
}
a{
    text-decoration: none;
    color: var(--color1);
}
h1, h2, b, strong{
    font-family: "Poppins-Bold";
    font-weight: normal;
}
h2{
    color: var(--color1);
    font-size: 27px;
    margin-bottom: 15px;
}
header{
    padding: 10px 0;
}
header .logo{
    width: 130px;
}
header ul{
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: "Poppins-Medium";
}
header .logo{
    margin-left: 5vw;
}
.sub_header_home{
    background: linear-gradient(135deg, rgba(0, 121, 219, 0.9), rgba(238, 124, 43, 0.9));
    padding: 50px 0;
    color: white;
}
.sub_header_home .btn{
    display: block;
    width: 150px;
}
.card_preview{
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    width: 350px;
    max-width: 100%;
    color: var(--color3);
    display: grid;
    grid-template-rows: auto 1fr;
}
.card_preview .title{
    margin-bottom: 10px;
    color: var(--color1);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    height: 29px;    
}
.card_preview .wrap_details{
    display: grid;
    grid-template-columns: .7fr .3fr;
    gap: 10px;
}
.card_preview .wrap_details img{
	object-fit: scale-down;
    width: 100%;
    height: 100%;
}
.card_preview .wrap_details .detail{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 13px;
    word-break: break-all;
}
.card_preview .wrap_details .detail img{
    width: 20px;
}
.card_preview .wrap_details .detail .emoji{
    font-size: 19px;
}
.card_preview .wrap_details .detail .light{
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.card_preview .wrap_details .detail .light.green,
.card .detail .light.green
{
    background-color: rgba(50, 143, 0, 1);
    box-shadow: 0 0 10px rgba(50, 143, 0, 1);
}
.card_preview .wrap_details .detail .light.blue,
.card .detail .light.blue
{
    background-color: rgba(0, 37, 143, 1);
    box-shadow: 0 0 10px rgba(0, 37, 143, 1);
}
.card_preview .wrap_details .detail .light.yellow,
.card .detail .light.yellow
{
    background-color: rgba(211, 163, 16, 1);
    box-shadow: 0 0 10px rgba(211, 163, 16, 1);
}
.card_preview .wrap_details .detail.price{
    font-size: 23px;
    font-family: "Poppins-Medium";
    padding-top: 20px;
    margin-top: auto;
}
.card .title{
    color: var(--color1);
}
.card .detail{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.card .detail.wb{
    word-break: break-all;
}
.card .detail .light{
    width: 15px;
    height: 15px;
    border-radius: 100%;
}
.card .detail.price{
    font-size: 28px;
    font-family: "Poppins-Bold";
}

.card .wrap_img img{
	object-fit: scale-down;
    width: 100%;
    height: 100%;
}

.search_wrap input, .search_wrap select{
    display: block;
    width: 280px;
    max-width: 100%;
    padding: 5px;
    font-size: 18px;
    font-family: inherit;
}
.search_wrap input[name='prezzo_max']{
    width: 190px;
}
footer{
    background-color: #f0f2f5;
    padding: 40px 0;
    margin-top: 50px;
    font-size: 14px;
}
footer a, footer .link{
    color: rgba(103, 115, 126, 1);
    cursor: pointer;
}
footer .col{
    overflow: hidden;
}
footer .col b{
    display: block;
    margin-bottom: 12px;
}
footer .col .a_list{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 8px;
}
footer .col a{
    display: block;
}
form.sales label{
    margin: 20px 0;
}
form.sales label, form.sales input, form.sales select, form.sales textarea{
    display: block;
    width: 100%;
}
form.sales input[type='text'], form.sales textarea, form.sales select {
    font-family: inherit;
    font-size: inherit;
}
.card_layout{
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    background-color: white;
    border-radius: 10px;
}

