.service p {
	margin: 20px 0;
}

.service .service-page-content-gallery {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 25px 0 0 0;
}

.service .service-page-content-gallery>a,
.gallery-hide-wrap>div>a {
	width: 45%;
}

.service .service-page-content-gallery img {
	max-width: 100%;
}

.gallery-hide-wrap {
	display: none;
}

.gallery-hide-wrap>div {
	display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.show-hide-gallsery-button-wrap {
	margin: 25px 0 0 0;
	width: 100%;
	text-align: center;
}

.description-after-gallery {
	margin: 25px 0 0 0;
}

#cookie-note {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 10px 15px;
    background-color: white;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    gap: 15px;
    z-index: 99999;
    align-items: center;
}

#cookie-note p {
    margin: 0;
    font-size: 10px;
    text-align: left;
}

#cookie-note p a {
	color: #993300;
}

#cookie-note p a:hover {
	color: #8a6942;
}

.cookie-accept {
	position: relative;
    display: inline-block;
    line-height: 40px;
}

@media (min-width: 576px) {
    #cookie-note.show {
        display: flex;
    }
}

@media (max-width: 575px) {
    #cookie-note.show {
        display: block;
        text-align: left;
    }
    
    .cookie-accept {
    	margin: 15px 0 0 0;
    }
}