/** MAMP Flux Réseaux Sociaux Widget CSS */
/** JS CSS BOOTSTRAP TOGGLE TABS */
.flux-rs .toggle-tabs .wrapper{
    width: 590px;
    margin: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, .1);
}
.flux-rs .toggle-tabs .button-wrapper{
    display: flex;
    justify-content: left;
    width: 80%;
    padding-left: 14px;
    margin: auto;
}
.flux-rs .toggle-tabs .button-wrapper-responsive{
    display: none;
}
.flux-rs .toggle-tabs button{
    display: flex;
    align-items: center;
    border-left: none;
    border-top: 3px solid #ffffff;
    border-right: none;
    border-bottom: 3px solid #ffffff;
    padding: 10px 34px;
    background-color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .1s;
}
.tab-button-rs{
    position: relative;
}
.tab-button-rs:after{
    content: '';
    position: absolute;
    background-color: #0d1d2d;
    width: 100%;
    height: 1px;
    bottom: -3px;
    left: 0;
}
.tab-button-rs:hover:after{
    background-color: #e94e1b;
}
.tab-button-rs.active:after{
    background-color: #e94e1b;
}
.flux-rs .toggle-tabs>.content-wrapper>.button-wrapper>button img{
    padding-right: 16px;
}
.flux-rs .toggle-tabs button:hover {
    border-bottom: 3px solid #e94e1b;
    transition: .1s;
}
.flux-rs .toggle-tabs button.active {
    border-bottom: 3px solid #e94e1b;
}
.flux-rs .toggle-tabs .active {
    background-color: white;
}
.flux-rs .toggle-tabs .content {
    visibility: hidden;
    position: absolute; top: -9999px; left: -9999px;
    opacity: 0;
}
.flux-rs .toggle-tabs .content.active {
    position: inherit;
    visibility: visible;
    opacity: 1;
    transition: .2s;
}
.content-rs{
    margin: auto !important;
}

/** BOOTSTRAP CARD + CUSTOM CSS */
.content-rs{
    max-width: 80% !important;
}
.content-rs .card{
    transition: .2s;
}
.content-rs .card:hover{
    box-shadow: 0px 18px 56px -12px rgb(13 29 45 / 50%);
}
.flux-rs .card{
    border: none !important;
    border-radius: unset !important;
    box-shadow: 0px 18px 56px -12px rgba(13,29,45,0.25);
}
.flux-rs .card-img-top{
    position: relative;
    height: 200px;
    padding: 14px;
    overflow: hidden;
}
.flux-rs .card-img-top img{
    height: 100% !important;
    max-width: unset !important;
    width: 100%;
    object-fit: cover;
}
.flux-rs .card-body{
    padding: 0 !important;
}

.flux-rs .card-body svg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}

.flux-rs .card-body p{
    text-align: left;
}
.flux-rs .card-text{
    position: relative;
}
.flux-rs .card-text p{
    font-family: IBM Plex Serif, sans-serif;
    font-size: 15px;
    padding: 10px 14px 10px 14px;
    color: #0d1d2d;
    font-size: 15px;
    line-height: 22px;
    text-align: left;
}
.card-social-network-icon{
    display: flex;
    justify-content: end;
}
.card-social-network-icon img{
    padding: 0 18px 18px;
}

.mamp-rs-read-more-button {
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
/** RESPONSIVE */
@media screen and (max-width: 1200px) {
    .content-rs {
        max-width: 100% !important;
    }
    .flux-rs .toggle-tabs .button-wrapper{
        display: none;
    }
    .flux-rs .toggle-tabs .button-wrapper-responsive{
        display: flex;
        justify-content: center;
    }
    .flux-rs .toggle-tabs .button-wrapper-responsive > button img{
        padding-right: 0;
    }
}
@media screen and (max-width: 570px) {
    .flux-rs .toggle-tabs .button-wrapper-responsive button{
        padding: 10px 14px;
    }
}