/* Loading Spinner Styles */
.loading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #3498db;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.loadingmsg {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 8px #000;
}

.img-sizfix img{
    min-width: 200px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.clickboxnone {
    display: none;
}

/* Checkbox Styles */
.checkstyle input+label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.checkstyle input:checked+label::before {
    background: orange;
}

.checkstyle input+label::before {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(50%);
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Select Styles */
.selectstyle {
    width: 100%;
    padding: .2em .5em;
}

/* Fixed Price Bar Styles */
.fpricebarbox {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.fpricebarboxsub {
    display: flex;
    gap: 2em;
}

.fpricetitlebar {
    max-width: 1200px;
    margin: auto;
    border: 2px solid #cccccc;
    background-color: #ffffff;
    transition: .3s;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.75em;
    align-items: center;
}

.fpricetitlebar>div>p {
    color: #444444;
}

.fpricetitlebar>div>ul {
    font-size: 0.75em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin-top: 0.75em;
    font-weight: bold;
}

.fpricetitlebar>div>ul>li.twinboxft {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fpricetitlebar>div>ul>li.twinboxft>div>span,
.fpricetitlebar>div>ul>li>span:not(.finkcolortag) {
    padding: 0.25em 0.75em;
    background-color: #eeeeee;
    color: #313233;
    min-width: 12em;
}

.price-bar-select li::before {
    content: '';
}

.fpricetitlebar>div {
    flex: 0 1 auto;
    max-width: 55%;
}

.kinkaku {
    font-size: 2em;
    color: #3576f4;
}

/* Button Styles */
.square {
    width: 5em;
    height: 5em;
    position: relative;
}

.zoomonbt {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #28A838;
    color: #ffffff;
    border: 0;
    border-radius: 0.2em;
    cursor: pointer;
}

.zoomonbt:hover,
.zoomonbt:focus {
    filter: brightness(1.25);
}

/* Table Styles */
.firstthtb {
    width: 7em;
}

.countnums {
    text-align: right !important;
    background: #efefef !important;
}

.contcount:nth-child(odd)>td:first-child {
    background: #ffffff !important;
}

.table-cfp {
    width: 8em;
}

/* Layout Styles */
.fixwidemain {
    width: min(94%, 1500px);
}

.finkcolortag {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    border: #a1a2a3 solid 0.1em;
    background: #ffffff;
}

.toptextboxjicm {
    width: 100%;
    margin: 0;
    max-width: 100%;
    text-align: right;
    padding-right: 6.5em;
}

.tableboxbd {
    border: 1px solid #efefef;
}

/* Responsive Styles */
@media screen and (max-width: 1050px) {
    .fpricetitlebar>div {
        max-width: 100%;
    }

    .fpricebarboxsub {
        margin-top: 1em;
    }
}
@media screen and (max-width: 480px) {
    .footerPriceBar li{
        flex-direction: column;
    }
}
