.c-layout-page {
    margin-top: 65px !important;
}
.c-layout-header .c-brand {
    margin-top: 16px !important;
}
.profil-btn {
    font-size: 90%;
    background-color: #FF6347;
    border-radius: 1em;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    cursor: pointer;
    color: white;
    transition: border-radius 0.2s, padding 0.2s,  transform 0.2s;

}

.profil-btn:hover {
    color: white;
    /*padding-top: 5px;*/
    /*padding-bottom: 5px;*/
    border-radius: 0.2em;
}

.pointer {
    cursor: pointer;
}

.link-dossier {
    cursor: pointer;
}

.hoverable:hover {
    background-color: #F7FAFB;
}

.force-theme {
    color: #FF6347 !important;
}
.label-info {
    background-color: #FF6347 !important;
}
.hr-centered {
    width: 30%;
    height: 3px;
    background-color: #FF6347;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

.hr-full {
    width: 98%;
    height: 3px;
    background-color: #FF6347;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 15px;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.m-3 {
    margin: 1rem !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1760px !important;
        width: 100% !important;
    }
}

@media only screen and (max-device-width: 480px){
    .filter-type {
        max-width: 25px !important;
        display: inline-block;
        align-content: center;
        text-align: center;
        margin-left: 25px;
        margin-right: 25px;
        cursor: pointer;
        margin-bottom: 30px;
    }
    .c-content-box > .container-fluid {
        padding: 0 15px;
    }
}

#caterers-container {
    animation: customFadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes customFadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -webkit-transform: translateY(0);
        -ms-transform:     translateY(0);
        transform:         translateY(0)
    }
    40% {
        -webkit-transform: translateY(-5px);
        -ms-transform:     translateY(-5px);
        transform:         translateY(-5px)
    }
    60% {
        -webkit-transform: translateY(-2px);
        -ms-transform:     translateY(-2px);
        transform:         translateY(-2px)
    }
}
.label-service {
    position:relative; z-index: 99; margin: 15px;
    display: block;
    color: #3F444A;
    background-color: white;
}
.filter-types {
    margin: auto;
    align-content: center;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.filter-type {
    max-width: 225px;
    display: inline-block;
    align-content: center;
    text-align: center;
    margin-left: 25px;
    margin-right: 25px;
    cursor: pointer;
    margin-bottom: 30px;
    border-bottom: solid 4px transparent;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
}
.filter-type.active {
    border-bottom: solid 4px #FF6347;
}
.filter-type:not(.active):hover {
    border-bottom: solid 4px #ffc4b8;
    animation-name: bounce;
    -moz-animation-name: bounce;
}

.filter-type {
    color: #3f444a !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.filter-text {
    text-align: center;
}
.filter-type-logo {
    /*margin-bottom: 30px;*/
}
.img-caterer {
    transition: transform .5s;
}
.img-caterer:hover{
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1);
}
.imagecontour {
    border-radius: 25px;
    overflow: hidden;
}
.block {
    display: block;
}
.cat-name {
    font-weight: 600;
    font-size: 120%;
}

.a-prestataire:hover {
    opacity: 75%;
    color: inherit;
}
.check-filter{
    display: inline-block;
    margin-left:15px;
    margin-bottom:15px;
}
.filters-div {
    padding-top: 25px !important;
    display: none;
}


.loader {
    position: relative;
    margin: 0 auto;
    width: 50%;
    &:before {
        content: '';
        display: block;
        padding-top: 100%;
    }
}

.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100%,
    0% {
        stroke: #FF6347;
    }
    40% {
        stroke: #3f444a ;
    }
    66% {
        stroke: #FF6347;
    }
    80%,
    90% {
        stroke: #3f444a;
    }
}

.socicon2 {
    /* position: relative; */
    /* top: 1px; */
    /* display: inline-block; */
    /* font-family: 'socicon'; */
    /* font-style: normal; */
    /* font-weight: normal; */
    /* line-height: 1; */
    /* -webkit-font-smoothing: antialiased; */
}

#cookies {
    position: fixed;
    bottom: 15px;
    z-index: 1000;
    width: 80%;
    left: 50%;
    transform: translate(-50%, 0);
    box-shadow: rgba(0, 0, 0, 0.28) 0px 8px 28px 0px;
    border-radius: 25px;
    padding: 15px;
    background-color: #fff;
    display: none;
    font-size: 85%;
}

/* Caché au départ avec opacité et transformation */
#cookiesMore, #cookiesMain {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Masquer cookiesMore initialement */
#cookiesMore {
    display: none;
}

/* Montrer cookiesMain initialement */
#cookiesMain {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    width: 100%;
}

/* Lorsque cookiesMain est masqué */
#cookiesMain.hidden {
    opacity: 0;
    transform: translateY(-100%);
}

/* Lorsque cookiesMore est visible */
#cookiesMore.active {
    display: block;
}

/* Boutons de cookies */
.btn-cookies {
    background-color: rgb(34, 34, 34);
    color: #fff;
}

.btn-cookies:hover, .btn-cookies:focus, .btn-cookies:active {
    color: #e1d291;
}
