@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,700&display=swap');

html, body {
    font-family: 'Open Sans' !important;
	font-size: 16px !important;
}

a {
    text-decoration: none !important;
}

.my-text {
    color: #e31e24ff;
}

.active {
    background-color: #e31e24ff !important;
}

.my-btn {
    background-color: #e31e24ff !important;
    color: #fff;
}

.my-btn:hover {
    background-color: rgb(238, 64, 69) !important;
    color: #fff;
}

.form-control, .form-select, .input-group-text .form-check-input{
    border-color: #a8a7a7 !important; 
}

.form-control:focus, .form-select:focus, .input-group-text:focus .form-check-input:focus{
	border-color: #e31e24ff !important;
  	box-shadow: none !important;
}

.justify {
    text-align: justify;
}

.my-border {
    border-color: #e31e24ff !important;
}

.carousel .carousel-inner .carousel-item {
    background-color: transparent !important;
}

.stars {
    color: #ffcc00;
}

.stars span {
    font-size: 24px;
}

.review-description {
    color: gray;
    margin-left: 10px;
}

.news-box {
    height: 750px;
    overflow-y: auto;
}
@media (max-width: 768px) {
    .news-box {
        height: 400px;
    }
}

.img-news {
    width: 30%;
}
@media (max-width: 768px) {
    .img-news {
        width: 100%;
    }
}

.my-margin {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .my-margin {
        margin-top: auto;
    }
}

/* Stili per l'icona WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}