
/*BOUTON SWITCH TYPE IPHONE*/
.toggle {display: inline-block; position: relative; user-select: none; margin:0px 10px;}
.toggle input {position: absolute; z-index: 1; top: auto; height: 1px; width: 1px; overflow: hidden; opacity:0;}
.toggle input + label {margin-left: 45px; cursor: pointer;text-transform: uppercase; color: #8e7e5f;}/*texte label*/
.toggle label{margin-top:1px;}
/*fond toggle*/
.toggle input + label::before {content: ''; position: absolute; z-index: 2; top: 0; left: 0; background-color: #BBB; display: inline-block; height: 20px; width: 40px; border-radius: 10px; transition: background-color 0.3s ease 0s;}
/*bouton toggle*/
.toggle input + label::after {content: '';position: absolute;z-index: 3;top: 2px;left: 2px;height: 16px;width: 16px;background-color: #fff;border-radius: 10px;transition: transform 0.2s ease 0s;}
.toggle input:checked + label::before {background-color: #BBB;}
.toggle input:checked + label::after {transform: translateX(20px);}/*mouvement*/