.price {
    background-color: #e6fff7;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #91c7b6;
}
.spinner {
    /* display: none; */
    width: 50px;
    height: 50px;
    position: absolute;
    margin: 100px auto;
    left: 50%;
    margin-left: 25px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffc700;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.5s infinite ease-in-out;
    animation: sk-bounce 2.5s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.table.table-row-dashed tr.detailRow{
    border-bottom-color: #b3cae1;
    border-top-style: hidden;
    border-bottom-width: 2px;
    border-bottom-style: dashed;
   
}
.partial-view{
    padding: 25px 15px;
    border: 1px solid #f0f0f0;
    margin: 10px;
    border-radius: 10px;
    box-shadow:  2px -1px 6px 3px silver;
}