.toggle + label svg,
.toggle:checked + label svg {
transition: all .4s;
}
.toggle:checked + label svg {
transform: rotate(90deg) !important;
}
.template .btn_box {
position: relative;
padding: 0;
z-index: 1;
justify-content: flex-start;
margin-top: 2rem;
}
.template .btn_box a {
white-space: nowrap;
} .template .selects {
max-width: unset;
width: 100%; z-index: 1;
}
.template .select .button {
background-color: var(--main-grey);
}
.template .select .button:hover {
background-color: var(--main-gold);
}
.template .select_label {
justify-content: space-between;
}
.template .select_label svg {
width: 10%;
height: 100%;
}
.template .select_ul {
height: 0;
padding-top: 1rem;
transform: scale(0);
transform-origin: left top;
transition: all .2s ease;
width: 0 !important;
}
.template .select li {
opacity: 1;
list-style: disc;
list-style-position: inside;
}
.template .select li::marker {
color: var(--main-gold);
}
.template .second_li {
padding-left: 2rem;
}
.template .select_ul a {
text-decoration: underline;
}
.template .toggle:checked + .select_label + ul {
height: 100%;
transform: scale(1);
width: 100% !important;
}
@media (max-width: 1000px) {
.template .btn_box a {
right: 50%;
}
}
@media (max-width: 650px) {
.template .btn_box a {
position: static;
}
}