/*Helix Ultimate Options*/
.template-options {
    position: fixed;
    font-family: Poppins, sans-serif;
    top: 130px;
    right: 10px;
    background: #fff;
    -webkit-transition: right 400ms;
    transition: right 400ms;
    z-index: 999;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.option-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.option-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.option-section h4 {
    color: #333;
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: Poppins, sans-serif;
    letter-spacing: 1px;
}

.option-section .checkbox {
    margin-bottom: 0;
}

.options-inner {
    position: relative;
}

.helixultimate-toggler:hover {
    color: #000;
}

.helixultimate-presets,
.helixultimate-bg-images {
    list-style: none;
    padding: 0px 0px 10px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 0px;
}

.helixultimate-presets li,
.helixultimate-bg-images li {
    display: inline-block;
    border: 2px solid transparent;
    padding: 2px;
    border-radius: 50%;
    &.active {
        border-color: #091df6;
    }
}

.helixultimate-presets li a,
.helixultimate-bg-images li a {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    float: left;
}

.helixultimate-bg-images li a img {
    width: 100%;
}

.style-chooser-inner ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: -8px;
}
.style-chooser-inner ul > li {
    width: 50%;
    float: left;
    padding: 8px;
}
.style-chooser-inner ul > li > a {
    color: #333;
    display: block;
    padding-bottom: 5px;
    position: relative;
}
.style-chooser-inner ul > li > a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.style-chooser-inner ul > li > a strong {
    margin: 5px;
    display: block;
    font-weight: 400;
    font-size: 14px;
    z-index: 100;
    position: relative;
}
body.default-home .style-chooser-inner ul > li.home > a:after,
body.lms-home .style-chooser-inner ul > li.lms > a:after,
.style-chooser-inner ul > li > a:hover:after {
    background-color: rgba(0, 0, 0, 0.55);
}
body.default-home .style-chooser-inner ul > li.home > a strong,
body.lms-home .style-chooser-inner ul > li.lms > a strong,
.style-chooser-inner ul > li > a:hover strong {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .template-options {
        right: -280px;
    }
    .template-options.closed {
        right: 0;
    }
}

.layout-boxed.pattern {
    background-repeat: repeat !important;
    background-size: initial !important;
}
.helixultimate-presets li a {
    width: 32px;
    height: 32px;
}

.preset-icon {
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding: 20px 30px 12px 15px;
    display: flex;
    gap: 5px;
    .fa-chevron-down {
        opacity: 0px;
        visibility: hidden;
    }

    .fa-chevron-up {
        position: absolute;
    }
    .fa-chevron-down {
        position: absolute;
    }
    span {
        color: #415162;
    }

    &.collapsed {
        .fa-chevron-up {
            opacity: 0px;
            visibility: hidden;
        }
        .fa-chevron-down {
            opacity: 1px;
            visibility: visible;
        }
    }
}
