.container{padding:0;margin:0;box-sizing:border-box;font-family:Arial,Helvetica,sans-serif;justify-content:flex-start}.container,.label{display:flex;align-items:center}.label{background-color:transparent;border:2px solid hsl(var(--primary));border-radius:50px;width:160px;cursor:pointer;padding:5px;position:relative}.label,.label:before{transition:all .4s ease}.label:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:hsl(var(--primary-foreground));width:8px;height:8px;border-radius:100%;margin:auto;opacity:0;visibility:hidden}.label .input{display:none}.label .title{font-size:17px;color:hsl(var(--primary));transition:all .4s ease;position:absolute;right:18px;bottom:14px;text-align:center}.label .title:last-child{opacity:0;visibility:hidden}.label .circle{height:45px;width:45px;border-radius:50%;background-color:hsl(var(--primary));display:flex;justify-content:center;align-items:center;transition:all .4s ease;position:relative;box-shadow:0 0 0 0 hsla(0,0%,100%,0);overflow:hidden}.label .circle .icon{color:hsl(var(--primary-foreground));width:30px}.label .circle .icon,.label .circle .square{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease}.label .circle .square{aspect-ratio:1;width:15px;border-radius:2px;background-color:hsl(var(--primary-foreground));opacity:0;visibility:hidden}.label .circle:before{content:"";position:absolute;left:0;top:0;background-color:hsl(var(--primary)/.8);width:100%;height:0;transition:all .4s ease}.label:has(.input:checked){width:57px;animation:installed .4s ease 3.5s forwards}.label:has(.input:checked):before{animation:rotate 3s ease-in-out .4s forwards}.label .input:checked+.circle{animation:pulse 1s forwards,circleDelete .2s ease 3.5s forwards;transform:rotate(180deg)}.label .input:checked+.circle:before{animation:installing 3s ease-in-out forwards}.label .input:checked+.circle .icon{opacity:0;visibility:hidden}.label .input:checked~.circle .square{opacity:1;visibility:visible}.label .input:checked~.title{opacity:0;visibility:hidden}.label .input:checked~.title:last-child{animation:showInstalledMessage .4s ease 3.5s forwards}@keyframes pulse{0%{scale:.95;box-shadow:0 0 0 0 hsla(var(--primary-foreground),.7)}70%{scale:1;box-shadow:0 0 0 16px hsla(var(--primary-foreground),0)}to{scale:.95;box-shadow:0 0 0 0 hsla(var(--primary-foreground),0)}}@keyframes installing{0%{height:0}to{height:100%}}@keyframes rotate{0%{transform:rotate(-90deg) translate(27px) rotate(0);opacity:1;visibility:visible}99%{transform:rotate(270deg) translate(27px) rotate(270deg);opacity:1;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes installed{to{width:150px;border-color:#23ae23}}@keyframes circleDelete{to{opacity:0;visibility:hidden}}@keyframes showInstalledMessage{to{opacity:1;visibility:visible;right:36px;color:#23ae23}}