@import "bootstrap-overrides.css";
@import "header.css";
@import "footer.css";
@import "universal-template.css";
@import "special-offers.css";
@import "us-home.css";
@import "us-product.css";
@import "us-phones.css";
@import "us-product-detail.css";

html {
    overflow-x: hidden;
}

body {
    width: 100% !important;
    overflow-x: hidden !important;
    font-family: 'poppins', sans-serif;
}

button:focus {
    outline: none;
}

h1 {
    font-weight: bold;
    font-size: 2.75rem;
}

h3 {
    font-size: 1.95rem;
}

.text-primary {
    color: #006FBA !important;
}

.text-yellow {
    color: #FEE401;
}

.text-grey {
    color: #45484A !important;
}

.cursor-pointer {
    cursor: pointer;
}

.no-shadow {
    box-shadow: none !important;
}

.slick-prev.slick-arrow, .slick-next.slick-arrow {
    width: 25px;
    height: 25px;
    z-index: 1;
}

.slick-prev.slick-arrow {
    cursor: pointer;
    position: absolute;
    left: -0.6rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

.slick-next.slick-arrow {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translate(50%);
    margin: auto;
}

/* Notice badge */
.lm-notice-badge {
    position: relative;
    padding: 1rem 5%;
    z-index: 10;
    background-color: #FEE401;
    width: 100%;
    text-align: center;
    color: #006FBA;
}

.lm-notice-badge .close {
    color: #006FBA;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
    right: 0.5rem;
    margin: auto;
}

ul.slick-dots {
    text-align: center;
    padding: 0;
    width: 100%;
}

.slick-dots li {
    list-style: none;
    display: inline-block;
    margin-right: 0.5rem;
}

.slick-dots li.slick-active button {
    background-color: #006FBA;
}

.slick-dots li button {
    background-color: transparent;
    border: 1px solid #006FBA;
    font-size: 0;
    width: 10px;
    height: 14px;
    border-radius: 50%;
}

.slick-dots li button:active {
    outline: none;
}

@media (max-width: 767px) {

    .lm-notice-badge {
        text-align: left;
        padding: 1rem 40px;
        font-size: 0.75rem;
    }

    .lm-notice-badge .close {
        width: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 300px) {
    .slick-prev.slick-arrow {
        left: 0;
    }
    .slick-next.slick-arrow {
        right: 0.75rem;
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 1.75rem;
    }
}

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


