
.template-thumb{
    height: 250px;
     width: 95%;
     object-fit: contain;
     background-color: white;
     transition: all 0.2s ease;
}
.card-template {
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    width: 90%;
    top:0;
    left:14px;
    margin:auto;
    /* display:none; */
}

.card-template .garment-image {
    background-color: white;
    height: 250px;
}

.card-template img {
    filter: grayscale(1);
}

.card-template::before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 100%;
    top: 0;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-15deg);
    animation: shineTemplate 1s ease infinite;
}

.card-template::after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 100%;
    top: 0;
    filter: blur(5px);
    transform: translateX(-100px) skewX(-15deg);
    animation: shineTemplate 1s ease infinite;
}

@keyframes shineTemplate {
    0% {
        transform: translateX(-100px) skewX(-15deg);
        transition: 1s;
    }

    100% {
        transform: translateX(300px) skewX(-15deg);
        transition: 1s;
    }
}
.password-btn {
    z-index: 2;
    position: absolute;
    top: 7px;
    right: 5px;
}
.garment-thumbnail {
    border: solid 1px lightgray;
    height: 250px;
    width: 95%;
    object-fit: contain;
    background-color: white;
    transition: all 0.25s ease;
}

.garment-custom-thumbnail {
    border: solid 1px lightgray;
    height: 250px;
    width: 100%;
    object-fit: contain;
    background-color: white;
    transition: all 0.25s ease;
}

#errorPanelClose {
    float: right;
    color: lightgray;
    position: relative;
    right: 4px;
    top: -2px;
}
.btn-group {
    overflow: hidden !important;
    border-radius: 0 0 0.375rem 0.375rem !important;
}

.empty-text{
    z-index:5;position:absolute;top:50%;left:50%;background-color:rgba(0,0,0,0.5);color:whitesmoke;transform:translate(-50%,-50%);
    width: 80%;
}
.favorite-icon {
    position: absolute;
    top: -5px;
    right: 12px;
    z-index: 500;
}

.garment-thumbnail:hover {
    cursor: pointer;
    transform: translateY(-4px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.favorite-icon .bi-star {
    display: none;
}

.garment-item:hover .bi-star {
    display: block;
}

.garment-name,
.company-name {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 90%;
}

.garment-item {
    position: relative;
    pointer-events: none;
    /* border-left: dashed 2px lightgrey; */
    /* border-bottom: dashed 2px lightgrey; */
}

.garment-image {
    height: 260px;
}

.filter-sticker {
    display: none;
}

.full-screen-btn {
    top: 0px;
    right: 0px;
    position: absolute;
    z-index: 50;
}

.filter-sticker {
    text-align: right !important;
}

#filterBtn {
    width: 100%;
}

#filterBtn:hover {
    cursor: pointer;
}

#filterColumn {
    position: sticky;
    top: 0;
    z-index: 1020;
}

div::-webkit-scrollbar {
    width: 0.4em;
}

div::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

div::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

@media (hover: none) {
    .favorite-icon .bi-star {
        /* display: block; */
    }
}

@media only screen and (max-width:767px) {
    .tuka-block {
        display: block;
    }

    #filterColumn {
        width: auto;
        position: relative;
        z-index: 1020;
        align-items: center !important;
    }

    #filterRow {
        text-align: center !important;
    }

    #filterBtn {
        margin: auto;
    }

    .filter-options {
        display: inline-block;
    }

    .filter-options select {
        width: 88px !important;
        margin-right: 8px !important;
    }

    .filter-container {
        display: flex;
    }

    .homepage-container {
        margin-top: 0px !important;
    }

    #bannerText {
        line-height: 50px;
    }
}