/*
    * ********************************************************************************
    *
    * Layout
    *
    * ********************************************************************************
*/

.navbar.transparent {
    background-color: rgba(0,0,0,0.5);
}

@media (max-width: 700px) {
    .navbar-brand {
        width: 50%;
    }
}

/*
    * ********************************************************************************
    *
    * Colors
    *
    * ********************************************************************************
*/

/* Backgrounds */

.bg-light-cream1 {
    background-color: #f8f7f2;
}

.bg-light-cream2 {
    background-color: #f5f3ea;
}

.bg-footer {
    background-color: #687179;
}

/* Buttons */

.btn-outline-cream {
    color: #e4a848;
    background-color: transparent;
    border-color: #e4a848;
}

.btn-outline-cream:hover {
    color: #fff;
    background-color: #e4a848;
    border-color: #e4a848;
}

/*
    * ********************************************************************************
    *
    * common styles
    *
    * ********************************************************************************
*/

a, a:hover {
    text-decoration: none;
    color: inherit;
}

.card.card-transparent-0 {
    background-color: rgba(0,0,0,0.0);
}

.card.card-transparent-1 {
    background-color: rgba(44,54,72,0.6);
}

.lightlink:hover {
    color: darkgrey;
}

.topmargin {
    margin-top: 100px;
}

.bg-cell {
    background-color: #cccccc;
}

.light-title {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: 300;
}

.text-mandatory {
    color: red;
}

ol.no-number {
    list-style: none;
    counter-reset: mycounter;
    padding: 0;
}

.numblist {
    position: relative;
    margin-left: 30px;
    padding: 0;
}

.numblist::before {
    content: counter(mycounter);
    counter-increment: mycounter;
    position: absolute;
    top: 0;
    left: -30px;
    width: 25px;
    height: 25px;
    line-height: 23px;
    border-radius: 50%;
    color: #fff;
    background: #aaa;
    text-align: center;
}

select#langflags option[value="en"] {background-image: url(../img/us.png);}

/*
    * ********************************************************************************
    *
    * common styles
    *
    * ********************************************************************************
*/

.corner-ribbon {
    width: 300px;
    background: #e43;
    position: absolute;
    top: 50px;
    left: -70px;
    text-align: center;
    line-height: 60px;
    letter-spacing: 1px;
    color: #f0f0f0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    z-index: 1031;
}

.corner-ribbon.sticky {
    position: fixed;
}

.corner-ribbon.shadow {
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}

/*.corner-ribbon.top-left {
    top: 25px;
    left: -50px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}*/

.corner-ribbon.red {
    background: #e43;
}


/*
    * ********************************************************************************
    *
    * welcome.blade.php
    *
    * ********************************************************************************
*/

.intro {
    background: url(../img/bbintro_high.jpg) no-repeat center center;
    background-size: cover;
    min-height: 768px;
    z-index: -1;
}

.newsletter {
    background: url(../img/newsletter_background.jpg) no-repeat center center;
    background-size: cover;
    /*min-height: 500px;*/
    z-index: -1;
}

.newsletter input.transparent {
    background-color: rgba(127,127,127,0.5);
}

.card-img-overlay.card-fg {
    background-color: rgba(255,255,255,0.8);
    opacity: 0.0;
    transition: opacity 1s;
}

.card-img-overlay.card-fg:hover {
    opacity: 1.0;
}

.carousel-item img {
    max-height: 768px;
    object-fit: cover;
    object-position: center center;
}

/*
    * ********************************************************************************
    *
    * products.blade.php
    *
    * ********************************************************************************
*/

.card.card-size {
    width: 300px;
    height: 400px;
    margin-top: 20px;
}

.product_bblens {
    background: url(../img/bbintro_high.jpg) center center no-repeat;
    background-size: cover;
    min-height: 480px;
    z-index: -1;
}

.product_qchange {
    background: url(../img/qchange_high.jpg) center center no-repeat;
    background-size: cover;
    min-height: 480px;
    z-index: -1;
}

.product_fulfull {
    background: url(../img/fulfull_high.jpg) center top no-repeat;
    background-size: cover;
    min-height: 480px;
    z-index: -1;
}

.product_polarized {
    background: url(../img/polarized_high.jpg) center top no-repeat;
    background-size: cover;
    min-height: 480px;
    z-index: -1;
}

.product_yocolors {
    background: url(../img/yocolors_high.jpg) center center no-repeat;
    background-size: cover;
    min-height: 480px;
    z-index: -1;
}

.product_ultraflex {
    background: url(../img/ultraflex_high.jpg) center center no-repeat;
    background-size: cover;
    min-height: 480px;
    z-index: -1;
}

.gradient-background-blue {
    background: linear-gradient(to right, rgba(22,38,63,1), rgba(22,38,63,0));
    padding: 10px;
}

.gradient-background-grey {
    background: linear-gradient(to right, rgba(211,211,211,1), rgba(211,211,211,0));
    padding: 10px;
}

.gradient-background-green {
    background: linear-gradient(to right, rgba(0,70,26,1), rgba(0,70,26,0));
    padding: 10px;
}

.h1brown {
    font: italic bold 32px Impact, Arial, sans-serif, Verdana;
    color: #c86220;
}

/*
    * ********************************************************************************
    *
    * contact.blade.php
    *
    * ********************************************************************************
*/

.contactpic {
    background: url(../img/contactus_high.jpg) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    z-index: -1;
}

/*
    * ********************************************************************************
    *
    * about.blade.php
    *
    * ********************************************************************************
*/

.aboutpic {
    background: url(../img/cvusa_high.jpg) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    z-index: -1;
}

/*
    * ********************************************************************************
    *
    * newsletter.blade.php
    *
    * ********************************************************************************
*/

.newsletterpic {
    background: url(../img/newsletter_high.jpg) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    z-index: -1;
}

/*
    * ********************************************************************************
    *
    * privacy.blade.php
    *
    * ********************************************************************************
*/

.privacypic {
    background: url(../img/privacy_high.jpg) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    z-index: -1;
}

/*
    * ********************************************************************************
    *
    * returns.blade.php
    *
    * ********************************************************************************
*/

.returnspic {
    background: url(../img/returns_high.jpg) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    z-index: -1;
}

/*
    * ********************************************************************************
    *
    * terms.blade.php
    *
    * ********************************************************************************
*/

.termspic {
    background: url(../img/terms_high.jpg) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    z-index: -1;
}
