﻿:root {
    --background: #ffc000;
    --cream: #fff9eb;
    --gray: #c4c4c4;
    --lightgray: #f8f8f8;
}

.htag-back-lg {
    background-color: unset;
}

.htag-back-cr {
    background-color: var(--cream);
}

.htag-back-yl {
    background-color: var(--background);
}

.htag-thumbnail {
    height: 70px;
    width: 50px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
}

.htag-selected {
    border: 3px solid black !important;
}

.htag-star {
    --percent: calc(var(--rating) / 5 * 100%);
    font-size: 20px;
}

    .htag-star::before {
        content: '★★★★★';
        background: linear-gradient(90deg, var(--background) var(--percent), #cacaca var(--percent));
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

.htag-display-flex {
    display: flex;
}

.htag-center {
    justify-content: center;
    align-items: center;
}

.htag-mr-5 {
    margin-right: 5px;
}

.htag-mr-10 {
    margin-right: 10px;
}

.htag-ml-5 {
    margin-left: 5px;
}

.htag-mt-5 {
    margin-top: 5px;
}

.htag-mt-10 {
    margin-top: unset;
    padding: 10px;
}

.htag-mb-10 {
    margin-bottom: 10px;
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 0;
    margin: 0px 0 10px;
    position: relative;
}
.htag-rsm {
    background-color: unset;
    padding: 10px 5px 5px 25px;
}
.htag-fltr {
    background-color: unset;
    padding: 0px 5px 5px 25px;
}
.htag-cm-icon {
    height: 20px;
}

.htag-h-20 {
    height: 20px;
}

.htag-h-30 {
    height: 30px;
}

.htag-pt-10 {
    padding-top: 10px;
}

.htag-pb-10 {
    padding-bottom: 10px;
}

.htag-h-btn {
    border: 3px solid var(--gray);
    border-radius: 0;
    background-color: white;
    cursor: pointer;
    padding: 0 10px;
}

.htag-w-p-100 {
    width: unset;
}

.htag-m-10 {
    margin: 10px;
}

.htag-m-15 {
    margin: 15px;
}

/* HTag Popup */
.htag-popup {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.htag-popup-inner {
    margin: 0 auto;
    width: 450px;
    height: 100%;
    background-color: white;
}

@media (max-width: 480px) {
    .htag-popup-inner {
        width: 100%;
    }
}

.htag-popup-inner-image {
    object-fit: cover;
    height: 80%;
    width: 100%;
}

.htag-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: black;
    font-size: 36px;
    cursor: pointer;
    background-color: white;
    padding: 10px;
    border-radius: 35px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 20px;
    z-index: 9999999999;
}

.htag-popup-prev {
    position: absolute;
    top: 40%;
    left: 15px;
    color: black;
    font-size: 30px;
    cursor: pointer;
    background-color: white;
    padding: 10px;
    border-radius: 35px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 20px;
    z-index: 9999999999;
}

.htag-popup-next {
    position: absolute;
    top: 40%;
    right: 15px;
    color: black;
    font-size: 30px;
    cursor: pointer;
    background-color: white;
    padding: 10px;
    border-radius: 35px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 20px;
    z-index: 9999999999;
}

.htag-overflow-auto {
    overflow: auto;
}
