@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.quickview {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    max-width: calc(100% - 50px);
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 35;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: .3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    will-change: transform
}

.quickview.is-marginless {
    max-width: 100%
}

@media screen and (max-width:768px) {
    .quickview {
        width: 100%;
        right: -100%
    }
}

@media screen and (min-width:769px),
print {
    .quickview {
        width: 50%;
        right: -50%
    }
}

@media screen and (min-width:1088px) {
    .quickview {
        width: 35%;
        right: -35%
    }
}

@media screen and (min-width:1280px) {
    .quickview {
        width: 35%;
        right: -35%
    }
}

@media screen and (min-width:1472px) {
    .quickview {
        width: 35%;
        right: -35%
    }
}

@media screen and (max-width:768px) {
    .quickview.is-left {
        left: -100%
    }
}

@media screen and (min-width:769px),
print {
    .quickview.is-left {
        left: -50%
    }
}

@media screen and (min-width:1088px) {
    .quickview.is-left {
        left: -35%
    }
}

@media screen and (min-width:1280px) {
    .quickview.is-left {
        left: -30%
    }
}

@media screen and (min-width:1472px) {
    .quickview.is-left {
        left: -25%
    }
}

.quickview.is-active {
    right: 0;
    box-shadow: 5px 0 13px 3px rgba(0, 0, 0, .1)
}

.quickview.is-active.is-left {
    left: 0
}

.quickview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    min-height: 3.25em !important;
    border-bottom: 1px solid #dbdbdb
}

.quickview-header.is-white {
    background-color: #fff
}

.quickview-header.is-white .title {
    color: #0a0a0a
}

.quickview-header.is-black {
    background-color: #0a0a0a
}

.quickview-header.is-black .title {
    color: #fff
}

.quickview-header.is-light {
    background-color: #f5f5f5
}

.quickview-header.is-light .title {
    color: #363636
}

.quickview-header.is-dark {
    background-color: #363636
}

.quickview-header.is-dark .title {
    color: #f5f5f5
}

.quickview-header.is-primary {
    background-color: #00d1b2
}

.quickview-header.is-primary .title {
    color: #fff
}

.quickview-header.is-link {
    background-color: #3273dc
}

.quickview-header.is-link .title {
    color: #fff
}

.quickview-header.is-info {
    background-color: #209cee
}

.quickview-header.is-info .title {
    color: #fff
}

.quickview-header.is-success {
    background-color: #23d160
}

.quickview-header.is-success .title {
    color: #fff
}

.quickview-header.is-warning {
    background-color: #ffdd57
}

.quickview-header.is-warning .title {
    color: rgba(0, 0, 0, .7)
}

.quickview-header.is-danger {
    background-color: #ff3860
}

.quickview-header.is-danger .title {
    color: #fff
}

.quickview-header .title {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0
}

.quickview-header .title img {
    max-height: 2em
}

.quickview-body {
    flex: 1 1 0%;
    overflow-y: auto
}

.quickview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    min-height: 4rem;
    background-color: #f5f5f5;
    border-top: 1px solid #dbdbdb
}

.quickview-footer>* {
    margin: 0 .4rem
}