﻿h2 {
    font: 34px 'Poppins Semibold';
    background-color: transparent;
    text-align: left;
    color: #2a4174;
    text-transform: uppercase;
}

.new_container {
    display: flex;
    justify-content: center;
    background-color: white;
}

.max_width {
    width: 1260px;
}

.cover {
    transition: .5s ease;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    float: left;
    width: 100%;
    height: 100%;
    background-color: aqua;
    opacity: 0;
}

.container:hover .cover {
    opacity: .5;
}

.products_detbox {
    text-align: center;
}

.proddet_img {
    width: 40%;
    padding: 20px;
}

.tabs {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .tabs:after {
        content: "";
        display: table;
        clear: both;
    }

    .tabs input[type=radio] {
        display: none;
    }

    .tabs label {
        display: inline-block;
        min-width: 25%;
        flex: 1 1 25%;
        color: #ccc;
        text-align: center;
        cursor: pointer;
        -webkit-transition: all 0.5s;
        /* Safari 3.1 to 6.0 */
        transition: all 0.5s;
    }

        .tabs label span {
            font-family: 'Poppins Regular';
            display: block;
            font-size: 24px;
        }

        .tabs label:hover {
            color: #3498db;
        }

            .tabs label:hover .icon {
                border-color: #3498db;
                background-position: 100px 0;
                background-size: 200px 100px;
            }

.tab__content {
    display: none;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #ffffff;
    margin-top: 2rem;
}

    .tab__content * {
        -webkit-animation: scale 0.2s ease-in-out;
        -moz-animation: scale 0.2s ease-in-out;
        animation: scale 0.2s ease-in-out;
    }

@keyframes scale {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    50% {
        transform: scale(1.01);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tabs [id^=tab]:checked + label {
    background: #FFF;
    color: #3498db;
}

    .tabs [id^=tab]:checked + label i {
        border-color: #3498db;
        background-position: 100px 0;
        background-size: 200px 100px;
    }

@media (min-width: 768px) {
    .tabs label span {
        display: block;
    }

    .banner_container {
        display: flex;
    }
}

.icon {
    margin-top: 1rem;
    display: inline-block;
    width: 104px;
    height: 104px;
    border-radius: 100%;
    border: 2px solid #CACFD6;
    background-size: 100px 50px;
    box-sizing: border-box;
}

.prescription {
    background: white url("/Content/Images/1.png");
    background-size: 200px 100px;
    background-position: 0 0;
}

.cosmetic {
    background: white url("/Content/Images/2.png");
    background-size: 200px 100px;
    background-position: 0 0;
}



.animate_border::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 0;
    height: 0;
    background: transparent;
    border: 2px solid transparent;
}

.animate_border:hover::before {
    animation: animate .2s linear forwards;
}

@keyframes animate {
    0% {
        width: 0;
        height: 0;
        border-top-color: #e65c31;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

    50% {
        width: 100%;
        height: 0;
        border-top-color: #e65c31;
        border-right-color: #e65c31;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

    100% {
        width: 100%;
        height: 100%;
        border-top-color: #e65c31;
        border-right-color: #e65c31;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
}

.animate_border::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 0;
    height: 0;
    background: transparent;
    border: 2px solid transparent;
}

.animate_border:hover::after {
    animation: animates .2s linear forwards;
}

@keyframes animates {
    0% {
        width: 0;
        height: 0;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: #e65c31;
    }

    50% {
        width: 0;
        height: 100%;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: #e65c31;
        border-left-color: #e65c31;
    }

    100% {
        width: 100%;
        height: 100%;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: #e65c31;
        border-left-color: #e65c31;
    }
}


.cover {
    transition: .5s ease;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    float: left;
    width: 100%;
    height: 100%;
    background-color: #48468e;
    opacity: 0;
}

.my_item:hover .cover {
    opacity: .3;
}


.flex-container2 {
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    align-items: center;
    justify-content: center;
}

    .flex-container2 > div {
        width: 200px;
        height: 150px;
        margin: 3px;
        text-align: center;
        font-size: 14px;
    }




.img_div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 5px;
    border: solid 0px;
}

    .img_div img {
        max-height: 80%;
        text-align: center !important;
    }

.brand_text p {
    font: 13px 'Poppins Regular' !important;
    color: #2a4174 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    text-align: center !important;
}

.feature_image {
    padding-top: 15px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    align-items: center;
    justify-content: center;
}

    .flex-container > div {
        width: 300px;
        height: 200px;
        margin: 5px;
        text-align: center;
        font-size: 14px;
        border: 1px solid;
        border-color: #434149;
    }

        .flex-container > div > img {
            height: 100px;
        }

.shob_by_title {
    background-color: #ecedf2;
    padding: 0 0 60px 0;
}

    .shob_by_title h4 {
        font: 26px 'Poppins Regular';
        color: #e65c31;
        text-align: center;
    }


    .shob_by_title h2 {
        font: 34px 'Poppins Semibold';
        background-color: transparent;
        text-align: center;
        color: #2a4174;
        text-transform: uppercase;
        padding: 30px 0 30px 0;
    }

.feature_title {
    background-color: #fff;
    padding: 60px 0 100px 0;
}

    .feature_title h4 {
        font: 26px 'Poppins Regular';
        color: #e65c31;
        text-align: center;
        padding: 0 0 50px 0;
    }


    .feature_title h2 {
        font: 34px 'Poppins Semibold';
        background-color: transparent;
        text-align: center;
        color: #2a4174;
        text-transform: uppercase;
    }


.my_item {
    position: relative;
    background-color: #fff;
    border: 1px solid transparent;
}

    .my_item p {
        font: 20px/19px 'Poppins Regular';
        color: #434149;
        padding: 10px 10px 10px 10px;
    }

.gray_border {
    border: 1px solid #dddddd;
}

    .gray_border:hover {
        box-shadow: 0 10px 15px -3px rgb(42 65 116 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
        border: 1px solid #2a4174;
    }


.d-table {
    display: table;
    position: absolute;
    bottom: 0;
}

.d-table-cell {
    display: table-cell;
}

.w-100 {
    width: 100%;
}

/* Button contained inside*/
.tar {
    text-align: right;
    padding-right: 10px;
    padding-bottom: 10px;
}

.button {
    font: 16px/19px 'Poppins Regular';
    background-color: #434149;
    border: none;
    color: white;
    padding: 5px 5px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
}

.blog_home {
    background-color: #ecedf2;
    align-items: center;
}

    .blog_home h2 {
        font: 34px 'Poppins Regular';
        background-color: transparent;
        text-align: center;
        color: #2a4174;
        padding: 25px 0 15px 0;
    }

    .blog_home img {
        width: 100%;
        border: solid 1px;
        margin-bottom: 15px;
        border-color: red;
    }

    .blog_home .box {
        display: table;
        height: 70px;
        width: inherit;
        background-color: #2a4174;
        text-transform: uppercase;
    }

        .blog_home .box .innerbox {
            display: table-cell;
            vertical-align: middle;
            overflow: hidden;
            overflow: hidden;
        }

    .blog_home h3 {
        font: 14px 'Poppins Regular';
        text-align: center;
        color: #ffffff;
    }

    .blog_home p {
        font: 14px 'Poppins Regular';
        padding: 15px 15px 0 15px;
    }

    .blog_home .link {
        color: orange;
        font: 24px 'Poppins Light';
        text-decoration: underline;
        text-decoration-thickness: from-font;
        padding: 15px 0 0 10px;
        /*    position: absolute;
    bottom: 0;
    left: 0;*/
    }
    /* Three image containers (use 25% for four, and 50% for two, etc) */
    .blog_home .column {
        position: relative;
        float: left;
        width: 322px;
        padding: 5px;
        height: 500px;
        overflow: hidden;
        background-color: #ecedf2;
    }

    /* Clear floats after image containers */
    .blog_home::after {
        content: "";
        clear: both;
        display: table;
    }

/* SUPPLIERS */
.supplier {
    max-width: 1260px;
    margin: 0 auto;
    padding-top: 20px;
}

    .supplier p {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 13px !important;
        line-height: 18px !important;
    }

.flex-container3 {
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    align-items: center;
    justify-content: center;
}

    .flex-container3 > div {
        width: 240px;
        margin: 10px;
        text-align: center;
        font-size: 14px;
        border: solid 1px;
        border-color: lightgray;
    }

.img_div2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px !important;
    padding: 5px 10px 0px 10px;
    border: solid 0px;
}

    .img_div2 img {
        max-height: 100%;
        text-align: center !important;
    }

.blog_home_container {
    background-color: #ecedf2;
    align-items: center;
    padding: 0 0 20px 0;
}

    .blog_home_container h2 {
        font: 34px 'Poppins Semibold';
        background-color: transparent;
        text-align: center;
        color: #2a4174;
        text-transform: uppercase;
        margin: 60px 0 50px 0;
    }

.blog_container {
    display: flex;
    padding: 0 75px 0 85px;
}


.blog_section {
    flex: 1; /*grow*/
    margin: 0 5px;
    position: relative;
    background-color: #fff;
    padding: 0 0 50px 0;
    border: 1px solid #dddddd;
}

    .blog_section img {
        width: 100%;
        margin-bottom: 15px;
    }


    .blog_section h3 {
        font: 18px 'Poppins Medium';
        text-align: center;
        color: #434149;
    }

    .blog_section p {
        font: 14px 'Poppins Regular';
        padding: 25px 10px;
        text-align: justify;
    }

    .blog_section .link {
        color: #e65c31;
        font: 24px 'Poppins regular';
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 0 0 20px 20px;
    }

.banner_container {
    display: flex;
}

.supplier_banner {
    display: flex;
    align-items: center;
}

.supplier_col {
    flex: 1;
}

@media (max-width: 768px) { /*breakpoint*/
    .search_pan {
        padding: 0 8px 0 0 !important;
    }

    .flex-container2 > div {
        width: 180px !important;
    }

    .banner_container {
        flex-direction: column-reverse;
    }

    .new_banner h2 {
        font: 20px 'Poppins Bold' !important;
        padding: 0 0 10px 0;
    }

    .banner_icon {
        width: 50px !important;
    }


    .banner_left, .banner_right, .banner_supplier {
        min-height: 200px !important;
        width: 100% !important;
        float: none !important;
    }



    .banner_info {
        float: none !important;
        padding: 10px 10px !important;
    }


    .new_banner p {
        font: 14px 'Poppins Regular' !important;
    }

    .new_banner .col p {
        font: 10px 'Poppins Regular' !important;
    }

        .new_banner .col p span {
            font: 12px 'Poppins Bold' !important;
        }

    .sue_text {
        padding: 5px !important;
        width: unset !important;
        font-size: 14px !important;
    }


    .blog_section {
        flex-direction: column;
    }
}

.new_banner h2 {
    font: 42px 'Poppins Bold';
    background-color: transparent;
    text-align: center;
    color: #2a4174;
    text-transform: uppercase;
    padding: 0 0 10px 0;
}

.new_banner .banner_icon {
    width: 75px;
}

.new_banner p {
    font: 18px 'Poppins Regular';
    background-color: transparent;
    text-align: center;
    color: #434149;
}

.new_banner .banner_left {
    order: 3;
    float: right;
    width: 45%;
    background: no-repeat 0 0;
    background-size: cover;
    background-position: center center;
    background-image: url(/Content/images/contact-lens-christmas-banner-2025.jpg);
}

.new_banner .banner_supplier {
    order: 3;
    float: right;
    width: 45%;
    background: no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

.new_banner .banner_supplier {
    order: 3;
    float: right;
    width: 45%;
    background: no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}

.new_banner .banner_right {
    order: 1;
    float: left;
    width: 55%;
}

.new_banner .banner_info {
    max-width: 730px;
    float: right;
    padding: 30px 30px 15px 30px;
}

.new_banner .banner_center {
    order: 2
}

.sue_text {
    text-align: center;
    padding: 14px 0 14px 0;
    width: 1260px;
    display: flex;
    justify-content: center;
    background-color: #c2b19d;
    color: white;
    font-size: 20px
}


.shop_button {
    background-color: #e65c31;
    border-radius: 2px;
    display: inline-block;
    font: 14px 'Poppins Medium';
    color: #fff;
    margin-top: 10px;
    padding: 10px 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: -1px
}

    .shop_button:hover {
        background-color: #2a4174
    }

.three-columns-grid {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

    /* columns */
    .three-columns-grid .col {
        padding-top: 10px;
        text-align: center;
    }

        .three-columns-grid .col p {
            padding: .5rem;
            text-align: center;
            font: 18px 'Poppins Regular';
            background-color: transparent;
            text-align: center;
            color: #2a4174;
        }

.four-columns-grid {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

    /* columns */
    .four-columns-grid .col {
        padding: 15px 15px 15px 15px;
        text-align: center;
    }

        .four-columns-grid .col p {
            padding: .5rem;
            text-align: center;
            font: 18px 'Poppins Regular';
            background-color: transparent;
            text-align: center;
            color: #2a4174;
        }


.button2 {
    font: 18px 'Poppins Regular';
    background-color: #e65c31;
    border: none;
    color: white;
    padding: 10px 40px;
    text-align: center;
    display: inline-block;
}

    .button2:hover {
        font: 18px 'Poppins Regular';
        background-color: #2a4174;
        border: none;
        color: white;
        padding: 10px 40px;
        text-align: center;
        display: inline-block;
    }

.float-container {
    display: flex;
    flex-wrap: wrap;
}

.float-child {
    flex: 1;
    min-width: 300px;
}

.faq {
    padding: 20px 60px;
}

    .faq h3 {
        font: 16px/19px 'Poppins Medium';
        color: #2a4174;
    }

details {
    width: 100%;
    cursor: pointer;
}

summary {
    border-bottom: 1px solid #2a4174;
    font: 14px/19px 'Poppins Medium';
    color: #2a4174;
}

details div {
    background-color: white;
    padding: 10px;
}

details.other-marker summary {
    position: relative;
    padding: 15px 10px 15px 35px;
    list-style: none;
    background-color: white;
    color: #2a4174;
}

    details.other-marker summary:before {
        content: "▶";
        position: absolute;
        top: 17px;
        left: 12px;
        line-height: 1;
        transition: 0.3s;
        background-color: transparent;
        color: #2a4174;
    }

details.other-marker[open] summary:before {
    transform: rotate(90deg);
    background-color: transparent;
    color: white;
}

details.other-marker[open] summary {
    background-color: #2a4174;
    color: white;
}

details[name="only-one"] {
    background-image: none;
    background-color: var(--purple);
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
}


* {
    box-sizing: border-box;
}

input[type=text], input[type=email], input[type=password], select, textarea, email {
    background-color: #f0f1f5;
    width: 100%;
    padding: 12px;
    border: none;
    resize: vertical;
    font: 13px 'Poppins Medium';
}


    input[type=text]:disabled {
        color: rgb(170, 170, 170);
    }


input[type=submit] {
    background-color: #2a4174;
    color: white;
    padding: 15px 40px;
    margin: 5px 0;
    border: none;
    cursor: pointer;
    float: left;
}

    input[type=submit]:hover {
        background-color: #e65c31;
    }


input[type="checkbox"]:checked {
    accent-color: #2a4174;
    border: 1px solid #4CAF50;
    accent-color: #2a4174;
}


.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-40 {
    float: left;
    min-width: 40%;
    margin-top: 6px;
}

.col-60 {
    float: left;
    width: 60%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

.col-100 {
    float: left;
    width: 100%;
    margin-top: 6px;
}


/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pages {
    width: 90%;
    padding: 20px 0;
}

    .pages p {
        word-spacing: 3px;
    }

    .pages h2 {
        color: #2a4174;
        font: 16px 'Poppins Medium';
    }

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 831px) {
    .col-25, .col-75, .col-40, .col-60, input[type=submit] {
        width: 100% !important;
    }

    .shob_by_title {
        padding: 0 0 0 0;
    }

    .flex-container3 > div {
        width: 180px;
        height: 205px;
        margin: 5px;
    }

    .column {
        width: 100% !important;
    }
}

.text-red {
    color: red !important;
}


.text-orange {
    color: #e65c31 !important;
}

.text-white {
    color: white !important;
}

.text-navy {
    color: #2a4174 !important;
}

.text-gray {
    color: #434149 !important;
}

.bg-orange {
    background-color: #e65c31 !important;
}

.bg-navy {
    background-color: #2a4174 !important;
}

.bg-gray {
    background-color: #434149 !important;
}

.bg-lightgray {
    background-color: #ecedf2 !important;
}

.bg-white {
    background-color: white !important;
}

.font-base {
    font-family: 'Poppins Regular' !important;
}

.font-medium {
    font-family: 'Poppins Medium' !important;
}

.font-bold {
    font-family: 'Poppins Bold' !important;
}

.flex {
    display: flex !important;
}

.text-xs {
    font-size: 0.75rem !important; /* 12px */
    line-height: 1rem !important; /* 16px */
}

.text-sm {
    font-size: 0.875rem !important; /* 14px */
    line-height: 1.25rem !important; /* 20px */
}

.text-base {
    font-size: 1rem !important; /* 16px */
    line-height: 1.5rem !important; /* 24px */
}

.text-lg {
    font-size: 1.125rem !important; /* 18px */
    line-height: 1.75rem !important; /* 28px */
}

.text-xl {
    font-size: 1.25rem !important; /* 20px */
    line-height: 1.75rem !important; /* 28px */
}

.text-2xl {
    font-size: 1.5rem !important; /* 24px */
    line-height: 2rem !important; /* 32px */
}

.text-3xl {
    font-size: 1.875rem !important; /* 30px */
    line-height: 2.25rem !important; /* 36px */
}

.text-4xl {
    font-size: 2.25rem !important; /* 36px */
    line-height: 2.5rem !important; /* 40px */
}

.text-5xl {
    font-size: 3rem !important; /* 48px */
    line-height: 1 !important;
}

.text-6xl {
    font-size: 3.75rem !important; /* 60px */
    line-height: 1 !important;
}

.text-7xl {
    font-size: 4.5rem !important; /* 72px */
    line-height: 1 !important;
}

.text-8xl {
    font-size: 6rem !important; /* 96px */
    line-height: 1 !important;
}

.text-9xl {
    font-size: 8rem !important; /* 128px */
    line-height: 1 !important;
}

.m-5 {
    margin: 1.25rem;
}

.p-10 {
    padding: 2.5rem;
}

.p-5 {
    padding: 1.25rem;
}

.pt-5 {
    padding-top: 1.25rem;
}

.pr-5 {
    padding-right: 1.25rem;
}

.pb-5 {
    padding-bottom: 1.25rem;
}

.pl-5 {
    padding-left: 1.25rem;
}


.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-start {
    justify-content: flex-start !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.social {
    display: flex;
    font-size: 1.5rem !important; /* 24px */
    line-height: 2rem !important; /* 32px */
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
}


@media (max-width: 1100px) {

    .topnav_pan ul li {
        font: 14px/32px 'Poppins Medium' !important;
    }
}

@media (max-width: 1000px) {
    .supplier_banner {
        flex-direction: column-reverse;
    }

    .hide-nav {
        display: none !important;
    }
}

@media screen and (min-width:1000px) {
    .hide-search {
        display: none;
    }
}


@media screen and (max-width: 1000px) {

    #banner .search_main .search_pan {
        float: none;
        margin: 0 auto;
        overflow: auto;
        width: 90%;
    }

    .nav_logo {
        background: url(../images/logo_sq_s.png) no-repeat center !important;
        background-size: contain !important;
        display: block !important;
        height: 100px !important;
        max-height: 100px !important;
        margin-left: 5px;
        !important;
    }
}
