﻿.white-text {
    color: white !important;
}

.gl-item-info.no-favourites {
    text-align: center;
    padding: 15px 5% 15px 5% !important;
}

.product-page-container {
    margin-top: 30px;
}

.breadcrumb-custom {
    margin-bottom: 15px;
}

.header-custom {
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
}

#page-header {
    padding-top: 62px;
}


/** LIGHTBOX MARKUP **/

.lightbox {
    /** Default lightbox to hidden */
    display: none;
    /** Position and style */
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
}

    .lightbox img {
        /** Pad the lightbox image */
        max-width: 90%;
        max-height: 80%;
        margin-top: 2%;
    }

    .lightbox:target {
        /** Remove default browser outline */
        outline: none;
        /** Unhide lightbox **/
        display: block;
    }

.table > tbody > tr > td {
    vertical-align: middle;
}

.orderTotal {
    margin-right: 15px;
    font-size: 1.5em;
}

.responsive-table {
    overflow-x: auto
}

.justify-content-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Absolute Center Spinner */
.loading-container {
    position: fixed;
    z-index: 99999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading-container:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 9999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    .lds-dual-ring:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));
        background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
    }

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        z-index: 999999;
        border-radius: 50%;
        border: 6px solid #fff;
        border-color: #fff transparent #fff transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.form-container {
    background-color: #f2f2f2;
    padding: 5px 20px 15px 20px;
    border: 1px solid lightgrey;
    border-radius: 3px;
    width: 100%;
}

/*input[type=text] {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

label {
    margin-bottom: 10px;
    display: block;
}

.icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
}*/

span.price {
    float: right;
    color: grey;
}

.form-button-right {
    margin-right: 15px;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.text-align-center{
    text-align:center;
}

.order-confirm-summary {
    font-size: 1.1em;
}

.summary-tick{
    max-width:none;
}

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}