/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.gurado-loader::before {
    background: #fff;
    position: fixed;
    content: "";
    height: 100%;
    width: 100%;
    z-index: 9999;
    opacity: 0.8;
}

.input-invalid {
    border: 1px solid red;
}

.sg_coupon_info {
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    opacity: 0.8;
    margin-bottom: 10px;
}
#coupon-error-gurado {
    color: red;
    display: none;
}

.gurado-error-input {
    border: 2px solid red !important;
}

.gurado-loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;

    align-items: center;
    justify-content: center;
}

.gurado-loading .gurado-loading__spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid black;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.simtec-gurado-review-page {
	margin-bottom: 25px;
}

.simtec-gurado-review-page .gurado-discount {
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     align-content: flex-start;
}

.simtec-gurado-review-page .gurado-discount > * {
	flex: 0 0 auto;
}

.simtec-gurado-review-page .gurado-discount label {
font-weight: bold;
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
}


.simtec-gurado-review-page .gurado-discount span {
text-align: right;
flex-grow: 1;
flex-shrink: 0;
flex-basis: auto;
}


