body.modal-open {
    padding-right: 0!important;
}

/** Page Annuaire **/
.page-annuaire {
	 padding-top: 34px;
	 padding-bottom: 34px;
}
.page-annuaire .archive-top .cols-wrapper .title, .page-annuaire .archive-top .cols-wrapper .txt {
     padding-bottom: 0;
}
.page-annuaire .archive-top .title {
    padding-bottom: 40px;
}
.page-annuaire .archive-top .txt {
	 padding-bottom: 56px;
}
.page-annuaire .archive-top .columns-1 .col-2 {
	 margin-top: 35px;
}
.page-annuaire .archive-top .columns-2.cols-wrapper {
	 display: flex;
	 gap: 35px;
}
.page-annuaire .archive-top .columns-2 .col-1 {
	 flex-basis: 33.33%;
}
.page-annuaire .archive-top .columns-2 .col-2 {
	 flex-basis: 65.81%;
}
.page-annuaire .btn-wrapper {
   display: flex;
   justify-content: flex-end;
   column-gap: 2rem;
   margin-top: 0;
}
.page-annuaire .btn-wrapper .btn {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    width: fit-content;
}
.page-annuaire .btn-wrapper .color-default {
    color: var(--color-default);
}
.page-annuaire .btn-wrapper .color-default svg > * {
    fill: var(--color-default);
}
.page-annuaire .btn-wrapper .color-default:hover svg > * {
    fill: var(--color-background);
}
.page-annuaire .btn-wrapper .btn.register {
    margin-top: 0;
    margin-bottom: 1.75rem;
}
.page-annuaire .btn-wrapper .btn svg {
    fill: #fff;
    height: 1.5rem;
    max-width: 1.5rem;
}
.page-annuaire:not(.single) .list {
    align-items: flex-start;
    column-gap: 1.625rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1.25rem;
    row-gap: 6.25rem;
}
.page-annuaire:not(.single) .list > * {
    flex: 0 1 auto;
    flex-basis: calc(33.33333% - 1.08333rem);
}
.page-annuaire:not(.single) .item {
    position: relative;
    min-height: 200px;
    background-color: var(--color-primary);    
    transition: all 0.3s ease;
    display: flex;
}
.border-rounded .page-annuaire:not(.single) .item {
    border-radius: .75rem;
}
.page-annuaire:not(.single) .item:hover {
    background-color: var(--color-secondary);
}
.page-annuaire:not(.single) .item .link {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;    
    padding: 3rem;
}
.page-annuaire .item .link .overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    opacity: 0;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 4px;
    transition: opacity 0.3s ease;
}
.page-annuaire .item .link:hover .overlay {
    opacity: 1;
}
.page-annuaire .link .overlay .icon {
    display: block;
    width: 22px;
}
.page-annuaire .link .overlay svg * {
    fill: var(--color-background);
}
.page-annuaire:not(.single) .item h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-background);
}
.page-annuaire:not(.single) .item img {
    width: 100px;
}
.page-annuaire .modal {
    position: fixed;
    opacity: 0;
    z-index: -1;
    visibility: hidden;    
    transition: all 0.3s ease;
}
.page-annuaire .show.modal {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 999;
    padding-right: 15px;
    visibility: visible;
}
.page-annuaire  .modal-dialog {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 100%;
}
.page-annuaire .modal .module-form {
    padding: 0;
}
.page-annuaire .modal .modal-dialog .modal-content{
    position: relative;
    width: 1200px;
    height: 80vh;
    overflow-y: scroll;
    background: #fff;
    padding: 3rem;
}
.page-annuaire .modal .modal-dialog .close {
    position: absolute;
    right:  1.25rem;
    top:  1.25rem;
    border: unset;
    display: inline-block;
    transition: transform 0.6s ease;
}
.page-annuaire .modal .modal-dialog .close:hover {
    transform: rotate(90deg);
}
.page-annuaire .modal .modal-dialog .close svg {
    fill: var(--color-secondary);
}

/** Page catégorie **/
.category .title_cat {
    height: 100px;
    display: flex;
    align-items: center;
}
.category .title_cat h3 {
    font-size: 40px;
}
.category .item {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/** Page single commerce **/
.page-annuaire.single .cols-wrapper {
    display: flex;
    gap: 35px;
    margin-top: 35px;
}
.page-annuaire.single .columns-2 .col {
    width: 50%;
}
.page-annuaire.single .columns-3 .col {
    width: 33%;
}
.page-annuaire.single .module-introduction .columns-2 .col-1 {
    width: 20%;
}
.page-annuaire.single .module-introduction .columns-2 .col-2 {
    width: 80%;
}
.page-annuaire.single .module-introduction .editor {
    margin-top: 16px;
}
.page-annuaire.single h4 {
    text-align: left;
}
.page-annuaire.single .module-infos .item, .page-annuaire.single .btn-wrapper .btn  {
    margin-top: 16px;
    display: flex;
    column-gap: .5rem;
    width: fit-content;
    align-items: center;
}
.page-annuaire.single .module-infos h4 {
    margin-bottom: 1.5rem;
}
.page-annuaire.single .module-infos .item svg, .page-annuaire.single .module-infos .item svg > * {
    fill: var(--color-secondary);
    transition: ease all 0.3s;
}
.page-annuaire.single .module-infos .item:hover a svg > * {
    fill: var(--color-primary);
}
.page-annuaire.single .module-infos .contacts svg {
    width:  1.25rem;
    max-height:  1.25rem;
}
.page-annuaire.single .module-infos .contacts .contact-name {
    font-size:  1.25rem;
    font-weight: 700;
}
.page-annuaire.single .module-infos .socials {
    display: flex;
    column-gap: 12px;
}
.page-annuaire.single .module-infos .socials .item svg {
    height: 1.5rem;
}
.page-annuaire.single .module-infos .btn-wrapper {
    justify-content: flex-start;
}
.page-annuaire.single .btn-wrapper .btn svg {
    width:  1.25rem;
    fill: var(--color-background);
}
.page-annuaire.single .map-wrapper:before {
    padding-top: 500px;
}
.page-annuaire.single .map {
    height: 500px;
}
