/* LASER CLUB */
/* style */

@import url("inheritedpp.css");
@import url("basicslaser.css");

/* 
Colors:

Primary: #00AF40
secondary: #FCDC00 
*/

/* GENERAL */
*, html {
    font-family: 'Open Sans', sans-serif;
}
*:focus { 
    outline: none !important; 
}
body, table, .table {
    color: var(--color-text-la);
}
a {
    transition: all 0.25s ease;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
}

/* PRELOADER */
body {
    overflow: hidden;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFF;
    z-index: 99999;
    background-image: url('https://laser.premierplus.net/content/img/loader-points.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 96px;
}

/* HEADER */
header {
    position: sticky;
    z-index: 1000;
}
.top-bar-box {
    background-color: var(--color-primary);
}
.topbar-links .topbar-status-link, .topbar-links .topbar-user-link {
    font-size: 12px;
    padding: 8px 16px;
    line-height: 100%;
}
.topbar-links .topbar-status-link {
    background-color: #FFF;
    color: var(--color-primary);
}
.topbar-links .topbar-user-link {
    background-color: var(--color-secondary);
}

.header-links-box {
    background-color: var(--color-primary);
    border-bottom: solid 3px var(--color-secondary);
}
.logo-header .logo-header-img-white {
    width: 160px;
}
.logo-header .logo-header-img-full {
    width: 200px;
}

.menu-tigger-mobile a i {
    font-size: 24px;
}

/* FOOTER */
.footer-1 {
    background-color: var(--color-primary);
}
.footer-1 .footer-social-links .social-item {
    width: 36px;
    height: 36px;
    background-color: #FFF;
    color: var(--color-primary);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-1 .footer-social-links .social-item:hover {
    text-decoration: none;
}
.footer-1 .logo-footer-img-white {
    width: 200px;
}

/* Carousel Bootstrap */
.carousel-custom-1 .carousel .carousel-indicators li {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 6px;
}

@media screen and (min-width:992px) {
    /* HEADER */
    .header-links-box {
        background-color: #FFF;
        border-bottom: none;
        border-top: solid 3px var(--color-secondary);
    }

    /* FOOTER */
    .footer-1 .logo-footer-img-white {
        width: 240px;
    }
}

/* Banners custom display */
.banners-display-lg {
    display: none;
}
.banners-display-xl {
    display: none;
}
.banners-display-xxl {
    display: none;
}
@media screen and (min-width: 768px) {
    .banners-display-sm {
        display: none;
    }
    .banners-display-lg {
        display: block;
    }
}
@media screen and (min-width: 1200px) {
    .banners-display-lg {
        display: none;
    }
    .banners-display-xl {
        display: block;
    }            
}
@media screen and (min-width: 1600px) {
    .banners-display-xl {
        display: none;
    }
    .banners-display-xxl {
        display: block;
    }
}