.repair {
    max-width: 600px;
    height: 100%;

    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: transform 0.7s;

    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.repair .price {
    font-weight: 600;
    margin-top: auto;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background: #0d0e18;
    display: block;
    color: white;
    padding: 5px 0;
    width: 100%;
    text-align: center;

}
.repair .name{
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 1em;
}
.sidebar-repair{
    max-width: 600px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: transform 0.7s;
    background-color: #fff;
    margin-bottom: 15px;
}
.total-in-sidebar{
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px 15px;
}

.sidebar-repair .price{

    border-radius: 0 0 10px 10px;
    padding: 5px 0px;
    text-align: center;
    color: white;
    background: #0d0e18;
}
.sidebar-repair .sidebar-image{
    height: auto;
    width: 100%;
}
.repair > a{
    align-self: flex-end;
}
.repair:hover{
    border-radius: 15px;
    /* border: 1px solid black; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    transform: translateY(-10px);
}
.repair.selected{
    border-radius: 15px;
    /* border: 1px solid black; */
    box-shadow: #f0f4ff29 2px 4px 0px 0px, #00000029 1px 1px 10px 3px;
    background: #f0f4ff;
}
.repair .checkbox{
    position: absolute;
    top:0;
    right:0;
}
.shimmer-bg {
    position: relative;
    background-image: url('shimmer.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    filter: blur(2px);
}

.shimmer-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}