/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 
for details on configuring this project to bundle and minify static web assets. */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1000px;
    }
}

@media (max-width: 767px) {
    .gi-FontSize {
        font-size: 5em;
    }
}

@media (min-width: 400px) {
    .container {
        width: auto;
    }
}


.gi-1x {
    font-size: 1em;
}
.gi-1-5x {
    font-size: 1.5em;
}

    .gi-2x {
        font-size: 2em;
    }

    .gi-3x {
        font-size: 3em;
    }

    .gi-4x {
        font-size: 4em;
    }

    .gi-5x {
        font-size: 5em;
    }

    .gi-6x {
        font-size: 6em;
    }

    .gi-7x {
        font-size: 7em;
    }

    .gi-8x {
        font-size: 8em;
    }

    .icon-container {
        display: inline-block;
        border: 1px solid rgba(0,0,0,.4); /*#ccc; */
        border-radius: 6px;
        margin: 5px;
        padding: 10px;
        position: relative;
    }

    .icon {
        vertical-align: middle;
        display: block;
    }

    .icon-text {
        font-weight: 600;
    }

    .icon-container .icon-overlay {
        background: rgba(0,0,0,.4) !important;
        opacity: 0;
        transition: opacity .5s;
        height: 100%;
        width: 100%;
        padding: 0;
        top: 0;
        left: 0;
        position: absolute;
        border-radius: 6px;
    }

    .icon-container:hover .icon-overlay {
        opacity: .9;
        transition: opacity .5s;
        cursor: pointer;
    }

    .icon-overlay p {
        position: relative;
        display: inline-block;
        top: 40%;
    }

        .icon-overlay p a {
            color: #fff;
            font-weight: 700;
            text-decoration: none;
        }

.cartSku-items-count {
    position: relative;
    display: block;
    text-align: center;
    justify-content: center;
    top: -95px;
    left: -15px;
}

.cartSku-items-counter {
    position: absolute;
    left: 8px;
    background-color: rgba(212, 19, 13, 1);
    color: #fff;
    border-radius: 3px;
    padding: 1px 3px;
    font: 14px Verdana;
}

    .blink {
        /*animation: blinker 1s step-start infinite;  Blinking */
        animation: blinker 1.5s infinite;
    }

    @keyframes blinker {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
    /*
Blinking
@keyframes blinker {
    50% {
        opacity: 0;
    }
} */

/* Swap Sections WaitForScan and ScanResult */
.ScanSection.show {
    opacity: 1;
    height: 100px;
    width: auto;
}
.ScanSection.off {
    height: 1px;
    opacity: 0;
    transition: all .75s linear;
}
.ScanResultSection.off {
   /* height: 1px;*/
    opacity: 0;
    transition: all .3s linear;
}
.ScanResultSection {
    /*opacity: 0;
    height: 1px;*/
    width: 300px;
    border: 2px solid;
    border-radius: 5px;
    padding-bottom: 8px;
}
.ScanResultSection.show {
    height: 160px;
    width: 40%;
    opacity: 1;
    transition: all .75s ease-in-out;
    border: 2px solid;
    border-radius: 5px;
    padding-bottom: 8px;
    }
.ScanResultHeader {
    background-color: rgba(246, 245, 245, 1);
    margin-right: 1px
}
.ScanResultCloseIconColor {
    color: rgba(212, 19, 13, 1);
}
.ScanResultOkIconColor {
    color: green;
}
.ScanResultIcons:hover {
    cursor: pointer;
}
.ScanResultLabel {
    font-size: 0.7em;
    margin-bottom: 0px;
}
.ScanResultContent {
    position: relative;
    display: block
}
.Spans {
    float: left;
    padding-left: 5px;
    padding-top: 3px;
    text-align: left;
    padding-right: 10px
}
.Span-Glyph {
    width: 40px;
}
.pullUp {
    animation-name: pullUp;
    -webkit-animation-name: pullUp;
    animation-duration: 0.75s;
    -webkit-animation-duration: 0.75s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
    0% {
        transform: scaleY(0.1);
    }

    40% {
        transform: scaleY(1.02);
    }

    60% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(1);
    }
}
@-webkit-keyframes pullUp {
    0% {
        -webkit-transform: scaleY(0.1);
    }

    40% {
        -webkit-transform: scaleY(1.02);
    }

    60% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(1);
    }
}

/*
==============================================
pullDown
==============================================
*/
.pullDown {
    animation-name: pullDown;
    -webkit-animation-name: pullDown;
    animation-duration: 0.75s;
    -webkit-animation-duration: 0.75s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
    0% {
        transform: scaleY(0.1);
    }

    40% {
        transform: scaleY(1.02);
    }

    60% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(1);
    }
}
@-webkit-keyframes pullDown {
    0% {
        -webkit-transform: scaleY(0.1);
    }

    40% {
        -webkit-transform: scaleY(1.02);
    }

    60% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(1);
    }
}

/* SKuCart*/
#SkuCartSection{
    width:300px;
}
.confirmationArea {
    border: 1px solid;
    border-radius: 5px;
    padding: 3px;
    margin: 5px
}
.infoText {
    font-size: 0.6em;
    margin-top: 2px
}
.success {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.success-info {
    color: #518b53;
    background-color: #bfe2b0;
    border-color: #96dca7;
}
