/*
The single template page stylesheet
*/

.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;
}
.template .btn_box a {
    white-space: nowrap;
}
/* SELECT */
.template .selects {
    max-width: unset;
    width: 100%;
    padding: 2rem 0;
}
.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;
}
.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 .toggle:checked + .select_label + ul {
    height: 100%;
    transform: scale(1);
}
@media (max-width: 1000px) {
    .template .btn_box a {
        right: 50%;
    }
}
@media (max-width: 650px) {
    .template .btn_box a {
        position: static;
    }
}
@media (max-width: 480px) {
    .template .slider-outer-shell {
        width: 90%;
    }
}