:root {
    --primary-color: #161616;
    --secondary-color: #00FFAA;
    --tertiary-color: #dd9933;
    --quartanery-color:#f3f1ea;
    --dark-color: rgba(22, 22, 22, .8);

    --primary-color-light: #393939;
    --primary-color-lighter: #5C5C5C;
    --primary-color-lightest: #B9B9B9;
    --primary-color-dark: #101010;
    --primary-color-darker: #0C0C0C;
    --primary-color-darkest: #0C0C0C;

    --secondary-color-light: #26FFB7;
    --secondary-color-lighter: #4DFFC4;
    --secondary-color-lightest: #B3FFE6;
    --secondary-color-dark: #00FF99;
    --secondary-color-darker: #00FF90;
    --secondary-color-darkest: #00FF7F;

    --accent:  #26FFB7;;
    --accent-lighter: #4DFFC4;
    --accent-lightest: #B3FFE6;
    --accent-dark: #00FF99;
    --accent-darker: #00FF90;
    --accent-darkest: #00FF7F;
}

/* =============================== *
 * THEME
 * =============================== */
html.theme-constructeur {
    --accent:  #26FFB7;;
    --accent-lighter: #4DFFC4;
    --accent-lightest: #B3FFE6;
    --accent-dark: #00FF99;
    --accent-darker: #00FF90;
    --accent-darkest: #00FF7F;
}
html.theme-promoteur {
    --accent:  #26FFB7;;
    --accent-lighter: #4DFFC4;
    --accent-lightest: #B3FFE6;
    --accent-dark: #00FF99;
    --accent-darker: #00FF90;
    --accent-darkest: #00FF7F;
}
html.theme-artisan {
    --accent: #62B576;
    --accent-light: #91CB9F;
    --accent-lighter: #C0E1C8;
    --accent-lightest: #EFF8F1;
    --accent-dark: #58A36A;
    --accent-darker: #3B6D47;
    --accent-darkest: #1D3623;
}
html.theme-partenaires {
    --accent:  #26FFB7;;
    --accent-lighter: #4DFFC4;
    --accent-lightest: #B3FFE6;
    --accent-dark: #00FF99;
    --accent-darker: #00FF90;
    --accent-darkest: #00FF7F;
}
html.theme-renovation {
    --accent:  #26FFB7;;
    --accent-lighter: #4DFFC4;
    --accent-lightest: #B3FFE6;
    --accent-dark: #00FF99;
    --accent-darker: #00FF90;
    --accent-darkest: #00FF7F;
}

/* =============================== *
 * BODY
 * =============================== */
body {
    background-color: white !important;
}

/* =============================== *
 * HELPERS
 * =============================== */
/* */
.overflow-visible {
    overflow: visible !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

/* BACKGROUND COLOR */
.bg-white {
    background-color: white !important;
}
.bg-black {
    background-color: black !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-secondary {
    background-color: var(--secondary-color) !important;
}
.bg-tertiary {
    background-color: var(--tertiary-color) !important;
}
.bg-quartanery{
    background-color: var(--quartanery-color) !important;
}
.bg-dark {
    background-color: var(--dark-color) !important;
}
.bg-accent {
    background-color: var(--accent) !important;
}
.bg-accent-light {
    background-color: var(--accent-light) !important;
}
.bg-accent-lighter {
    background-color: var(--accent-lighter) !important;
}
.bg-accent-lightest {
    background-color: var(--accent-lightest) !important;
}
.bg-accent-dark {
    background-color: var(--accent-dark) !important;
}
.bg-accent-darker {
    background-color: var(--accent-darker) !important;
}
.bg-accent-darkest {
    background-color: var(--accent-darkest) !important;
}
/* TEXT COLOR */
.text-white {
    color: white !important;
}
.text-black {
    color: black !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.text-tertiary {
    color: var(--tertiary-color) !important;
}
.text-dark {
    color: var(--dark-color) !important;
}
.text-accent {
    color: var(--accent) !important;
}
.text-accent-light {
    color: var(--accent-light) !important;
}
.text-accent-lighter {
    color: var(--accent-lighter) !important;
}
.text-accent-lightest {
    color: var(--accent-lightest) !important;
}
.text-accent-dark {
    color: var(--accent-dark) !important;
}
.text-accent-darker {
    color: var(--accent-darker) !important;
}
.text-accent-darkest {
    color: var(--accent-darkest) !important;
}
/* TEXT ALIGNMENT */
.text-center {
    text-align: center !important;
}
@media screen and (min-width: 992px) {
    .text-md-left {
        text-align: left !important;
    }
}

/* TEXT TRANSFORM */
.text-uppercase {
    text-transform: uppercase !important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-bold {
    font-weight: bold;
}
.ws-nowrap {
    white-space: nowrap !important;
}

/* IMAGE */
.img-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.img-contain {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.img-scale-down {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: scale-down;
}

/* FLEXBOX */
.flex-row {
    display: flex;
    flex-flow: row wrap;
}
.flex-column {
    display: flex;
    flex-flow: column nowrap;
}
.flex-content {
    flex-grow: 1 !important;
    flex-shrink: 0 !important;
}
.flex-content-overflowed {
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    min-height: 1px !important;
    overflow-y: auto !important;
}

/* =============================== *
 * ASPECT RATIO
 * =============================== */
[style*="--aspect-ratio"] > :first-child {
    width: 100%;
}
[style*="--aspect-ratio"] > img {
    height: auto;
}
@supports (--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }
    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }
    [style*="--aspect-ratio"] > :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

.scroll-shadow-h {
    --shadow-h-bg: white;
    background:
            linear-gradient(90deg, var(--shadow-h-bg) 0%, rgba(255,255,255,0)),
            linear-gradient(-90deg, var(--shadow-h-bg) 0%, rgba(255,255,255,0)) 100% 0,
            radial-gradient(farthest-side at 0% 50%, rgba(0,0,0,.2), rgba(0,0,0,0)),
            radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,.2), rgba(0,0,0,0)) 100% 0%;
    background-repeat: no-repeat;
    background-color: var(--shadow-h-bg);
    background-size: 100px 100%, 100px 100%, 14px 100%, 14px 100%;
    background-attachment: local, local, scroll, scroll;
}
.scroll-shadow-v {
    --shadow-v-bg: rgba(255, 255, 255,0.1);
    background:
            linear-gradient(var(--shadow-v-bg) 30%, hsla(0,0%,100%, 0)),
            linear-gradient(hsla(0,0%,100%,0) 10px, var(--shadow-v-bg) 70%) bottom,
            radial-gradient(at top, rgba(0,0,0,0.2), transparent 70%),
            radial-gradient(at bottom, rgba(0,0,0,0.2), transparent 70%) bottom;
    background-repeat: no-repeat no-repeat;
    background-color: var(--shadow-v-bg);
    background-size: 100% 20px, 100% 20px, 100% 10px, 100% 10px;
    background-attachment: local, local, scroll, scroll;
}


/* =============================== *
 * BOUTONS
 * =============================== */
.f-button {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    margin-left: 5px;
    padding: 1px 6px;
    color: white;
    border: 0;
    border-radius: 0;
    text-transform: none;
}


/* =============================== *
 * CARTES
 * =============================== */
/* CARD */
/*.card {
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 10px 4px rgba(0,0,0,.04);
}*/
.card-icon {
    background-color: var(--accent);
}
.card-icon {
    background-color: var(--accent-dark);
}
/* CARTE */
/*.carte-container{
    padding: 2rem;
    max-width: 1600px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    margin-bottom: 5rem;
}
@media (max-width: 489.98px) {
    .carte-container{
        padding: 2rem 0.5rem;
    }
}*/
.carte {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    margin: 1rem 0;
    padding: 1.5rem;
    background-color: var(--quartanery-color);
    box-shadow: 0 3px 10px 4px rgba(0,0,0,.04) !important;
    border-radius: 10px;
    border-left: 3px solid lightgray;
}
.carte.padded {
    padding: 1.5rem;
}
/* titre */
.carte-title {
    display: flow-root;
    margin: 0;
    text-wrap: pretty;
    line-height: 1.25;
}
.carte-title-action {
    float: right;
}
/* en-tête */
.carte-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
    margin-bottom: 1rem;
}
.carte-header .card-title {
    color: white;
}
/* content */
.carte-content {
    flex-grow: 1;
}
.carte-content.no-overflow {
    flex-shrink: 0;
}
.carte-content:not(.no-overflow) {
    flex-shrink: 1;
    min-height: 1px;
    overflow-y: auto;
    overflow-x: hidden;
}
/* footer */
.carte-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
}
footer.carte-footer {
    padding: 0;
}
/* action */
.carte-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
}
.carte-action button:not(.theme-button),
.carte-action a:not(.theme-button) {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    padding: 1px 6px;
    margin-left: 1rem;
    color: white;
    background-color: var(--accent);
    /*.carte-action button:not(.bs-adapt, .dropdown > .dropdown-menu > ul > li > button) {*/
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px;
    min-height: 24px;
    transition: all 0.3s var(--standard-easing);
}
/* dark color for yellow button */
body.theme-promoteur .carte-action button {
    color: var(--dark-color);
}
/* info */
.carte .carte-info-trigger {
    display: inline-block;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
}
.carte .carte-info-trigger i {
    /*float: none;*/
    margin: 0;
}
.carte .carte-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    max-height: 100%;
    overflow-y: auto;
    background-color: var(--accent-darker);
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0.2, 0, 1);
}
.carte .carte-info.open {
    height: 100%;
}
.carte .carte-info .carte-info-inner {
    padding: 1.5rem;
}
.carte .carte-info .carte-info-content {
    padding: 0 1.5rem 0 0;
}
.carte .carte-info-close {
    display: inline-block;
    float: right;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    color: white;
}
.carte .carte-info-close i {
    margin: 0;
}

/*
.carte-footer button:not(.bs-adapt, .dropdown > .dropdown-menu > ul > li > button) {
    border: 1px solid rgba(0, 0, 0, 0.4) !important;
    border-radius: 10px !important;
    padding: 2px 10px 2px 10px !important;
    transition: all 0.3s ease-in-out;
    min-height: 30px;
}
 */

/* =============================== *
 * DOSSIER
 * =============================== */
.nav-folder {
    background-color: #373736 !important;
}

/* =========================
 * FORM ROWS
 * ========================= */
.form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.form-row > *:first-child {
    padding: 0;
    padding-right: 1rem;
    white-space: nowrap;
}
.form-row > *:not(:first-child) {
    padding-bottom: 0;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 1px;
}
.form-row > *:not(:first-child):not(:last-child) {
    padding-right: 1rem;
}
.form-row > * {
    margin-top: 0;
    margin-bottom: 0;
}
/* GROUPS */
.form-group-rows {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.form-group-rows > * {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 1px;
}
.form-group-rows > *:not(:last-child) {
    padding-right: 1rem;
}

@media screen and (max-width: 720px) {
    .form-group-rows.collapse-sm .form-row {
        display: block;
    }
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    padding: 0;
    /*max-height: 70%;*/
    max-height: 80%;
    width: 55%;
    margin: auto;
    /*overflow-y: auto;*/
    border-radius: 2px;
    will-change: top, opacity;
    /* Fix style */
    top: auto;
    bottom: auto;
}
.modal.modal-centered {
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    right: auto !important;
    transform: translate(-50%, -50%) scaleX(1) !important;
}

.modal:focus {
    outline: none;
}
/* Fix style */
.modal.open {
    display: flex !important;
    flex-flow: column nowrap;
}

.modal.loading > :not(.modal-loader) {
    filter: blur(8px);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.modal-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 999999;
}
.modal.loading > .modal-loader {
    display: flex;
}

@media only screen and (max-width: 992px) {
    .modal {
        width:80%;
    }
}

.modal h1,.modal h2,.modal h3,.modal h4 {
    margin-top: 0;
}
.modal.modal-fullscreen {
    top: 0 !important;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    margin: 0;
}

.modal-content {
    padding: 24px;
    /* Fix style */
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    min-height: 1px;
    overflow-y: auto;
    overflow-x: visible;
}
.modal-fullscreen .modal-content {
    border-radius: 0;
}
.modal-content .modal-footer button + button {
    margin-bottom: 0;
}
.modal-content.subpaddings {
    padding: 0;
}
.modal-content.subpaddings .modal-header {
    /*padding: 24px 24px 0 24px;*/
    padding: 12px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.modal-content.subpaddings .modal-body {
    padding: 0 24px;
}
.modal-content.subpaddings .modal-footer {
    /*padding: 0 24px 24px 24px;*/
    padding: 12px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Fix style */
.modal-content .modal-header {
    flex-shrink: 0;
    padding: 0;
}
 .modal-content .modal-header h4 {
    border: none;
}

.modal .modal-close {
    cursor: pointer;
}

/* Fix style */
.modal-content .modal-body {
    flex-grow: 1;
    flex-shrink: 1;
    min-height: 1px;
    overflow-y: auto;
    overflow-x: visible;
    padding: 5px;
}

.modal-content .modal-body-overflowed {
    overflow: inherit;
}

.modal-footer:not(.container) {
    display: flow-root;
    border-radius: 0 0 2px 2px;
    /*padding: 4px 6px;
    min-height: 56px;*/
    width: 100%;
    text-align: right;
    /* Fix style */
    flex-shrink: 0;
    padding: 0;
}

.modal .modal-footer .btn,
.modal .modal-footer .btn-large,
.modal .modal-footer .btn-small,
.modal .modal-footer .btn-flat {
    margin: 6px 0;
}

.modal-overlay {
    position: fixed;
    z-index: 999 !important;
    top: -25%;
    left: 0;
    bottom: 0;
    right: 0;
    height: 125%;
    width: 100%;
    background: #000;
    display: none;
    will-change: opacity;
}

.modal.modal-fixed-footer {
    padding: 0;
    height: 70%;
}



.flist:not(.browser-default) {
    margin-right: 0;
    padding: 0;
    list-style: none;
}

.flist > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.flist > strong > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.fgrid:not(.browser-default) {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.js-collapse-toggle > * {
    pointer-events: none;
}
.faccordion {
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0.2, 0, 1);
}

.faccordion.stretch-height {
    display: flex;
    flex-flow: column nowrap;
    min-height: 1px;
    flex: 0 0 auto;
}
.faccordion.stretch-height.active {
    flex: 1 1 auto;
}


.faccordion:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.faccordion.active {
    margin-bottom: 3rem;
}
.faccordion.bordered {
    border: 1px solid rgba(0, 0, 0, 0.10);
}
.faccordion.bordered.active {
    /*box-shadow: 0 3px 10px 4px rgba(0,0,0,.04);
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.10);*/
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.15);
}
.faccordion.active.no-shadow {
    box-shadow: none;
}
.faccordion.muted {
    background-color: #eeeeee;
}
.faccordion.muted:not(:last-child) {
    border: none;
}
.faccordion.muted.active {
    background-color: white;
}
.faccordion-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background: var(--quartanery-color);
}
.faccordion-header .theme-button:not(.bs-adapt):not(.focus-invisible):not(.no-borders),
.faccordion-header .theme-fab-button:not(.bs-adapt):not(.focus-invisible):not(.no-borders) {
    border: none !important;
    border-radius: 0 !important;
}
.faccordion-header-block {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 1px;
}
.faccordion-toggler {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    cursor: pointer;
    flex-grow: 1;
    padding: 1rem 1rem 1rem 1.5rem;
    text-align: left;
    background-color: transparent;
}

.faccordion-toggler  > i{
    color: white;
    background: var(--primary-color);
    border-radius: 50%;
    height: 20px;
    width: 20px;
    text-align: center;
    border: 1px solid var(--secondary-color);
}
/*.faccordion-toggler > *:not(.faccordion-toggler-exception) {
    pointer-events: none;
}*/
.faccordion-caret-down {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0.2, 0, 1);
}
.faccordion-content-inner {
    padding: 1rem 2rem;
    /*border-top: 1px solid rgba(0, 0, 0, 0.10);*/
    background: var(--quartanery-color);
}
/* FRAMEWORK CHIPS */
.fchip {
    display: inline-block;
    height: 32px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
    line-height: 32px;
    padding: 0 12px;
    border-radius: 16px;
    background-color: #e4e4e4;
    margin-bottom: 5px;
    margin-right: 5px
}

.fchip:focus {
    outline: none;
    background-color: #26a69a;
    color: #fff
}

.fchip>img {
    float: left;
    margin: 0 8px 0 -12px;
    height: 32px;
    width: 32px;
    border-radius: 50%
}

.fchip .close {
    cursor: pointer;
    float: right;
    font-size: 16px;
    line-height: 32px;
    padding-left: 8px;
    color: inherit;
}

.fchips {
    border: none;
    border-bottom: 1px solid #9e9e9e;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0 0 8px 0;
    min-height: 45px;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .3s
}

.fchips.focus {
    border-bottom: 1px solid #26a69a;
    -webkit-box-shadow: 0 1px 0 0 #26a69a;
    box-shadow: 0 1px 0 0 #26a69a
}

.fchips:hover {
    cursor: text
}

.fchips .input {
    background: none;
    border: 0;
    color: rgba(0,0,0,0.6);
    display: inline-block;
    font-size: 16px;
    height: 3rem;
    line-height: 32px;
    outline: 0;
    margin: 0;
    padding: 0 !important;
    width: 120px !important
}

.fchips .input:focus {
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.fchips .autocomplete-content {
    margin-top: 0;
    margin-bottom: 0
}

.prefix ~ .fchips {
    margin-left: 3rem;
    width: 92%;
    width: calc(100% - 3rem)
}

.fchips:empty ~ label {
    font-size: 0.8rem;
    -webkit-transform: translateY(-140%);
    transform: translateY(-140%)
}

/* FRAMEWORK BUTTON */
.fbutton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 16px;
}
.fbutton.rounded {
    border-radius: 24px;
}
.fbutton.rounded-circle {
    border-radius: 50%;
    width: 48px;
}
.fbutton.fbutton-sm {
    height: 32px;
    padding: 0 12px;
}
.fbutton.fbutton-sm.rounded {
    border-radius: 16px;
}
.fbutton.fbutton-sm.rounded-circle {
    width: 32px;
}
.fbutton.fbutton-xs {
    height: 24px;
    padding: 0 6px;
}
.fbutton.fbutton-xs.rounded {
    border-radius: 12px;
}
.fbutton.fbutton-xs.rounded-circle {
    width: 24px;
}
.fbutton > i:not(:last-child) {
    margin-right: 1rem;
}

.ffont-lato {
    font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}



.toggler input {
    display: none;
}

.toggler label {
    display: block;
    position: relative;
    width: 50px;
    height: 30px;
    border: 1px solid #d6d6d6;
    border-radius: 36px;
    background: #e4e8e8;
    cursor: pointer;
}

.toggler label::after {
    display: block;
    border-radius: 100%;
    background-color: #d7062a;
    content: '';
    animation-name: toggler-size;
    animation-duration: 0.15s;
    animation-timing-function: ease-out;
    animation-direction: forwards;
    animation-iteration-count: 1;
    animation-play-state: running;
}
.toggler-off {
    color: white;
    text-align: center;
    margin-top: 0.2em;
}

.toggler-on {
    color: white;
    text-align: center;
    margin-top: 0.2em;
}

.toggler label::after, .toggler label .toggler-on, .toggler label .toggler-off {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%) translateX(-50%);
    transition: left 0.15s ease-in-out, background-color 0.2s ease-out, width 0.15s ease-in-out, height 0.15s ease-in-out, opacity 0.15s ease-in-out;
}

.toggler input:checked + label::after, .toggler input:checked + label .toggler-on, .toggler input:checked + label .toggler-off {
    left: 75%;
}

.toggler input:checked + label::after {
    background-color: #50ac5d;
    animation-name: toggler-size2;
}

.toggler .toggler-on, .toggler .toggler-off {
    opacity: 1;
    z-index: 2;
}

.toggler input:checked + label .toggler-off, .toggler input:not(:checked) + label .toggler-on {
    width: 0;
    height: 0;
    opacity: 0;
}

.toggler .path {
    fill: none;
    stroke: #fefefe;
    stroke-width: 7px;
    stroke-linecap: round;
    stroke-miterlimit: 10;
}

@keyframes toggler-size {
    0%, 100% {
        width: 20px;
        height: 20px;
    }

    50% {
        width: 20px;
        height: 20px;
    }
}

@keyframes toggler-size2 {
    0%, 100% {
        width: 20px;
        height: 20px;
    }

    50% {
        width: 20px;
        height: 20px;
    }
}

.gswitch-btn {
    background-color: #f2f2f2;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    margin: 0 10px;
    font-weight: 700;
    transition: all 0.1s ease-in-out;
}
.gswitch-btn.active {
    background-color: #373735;
    color: #fff;
}
