@font-face {
    font-family: 'Montserrat';
    src: url(../Montserrat/Montserrat-VariableFont_wght.ttf);
}

.print {
    line-height: inherit !important;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 14px;
    width: 21cm;
    height: 29.2cm;
    margin: 8mm 8mm 8mm 8mm;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Montserrat", sans-serif;
    color: #444444;
}

a {
    color: #306cc4;
    text-decoration: none;
}

    a:hover {
        color: #E10093;
        text-decoration: none;
    }

.magenta-background {
    background: #E10093;
}

.magenta-text {
    color: #E10093;
}

.hidden {
    display: none;
}

.market-info {
    font-size: 1.3em;
}

.text-center {
    text-align: center;
}

.text-line-through {
    text-decoration: line-through;
    font-size: .8em;
}

.topmats-logo {
    height: 30px;
    width: 259px;
}

/*--------------------------------------------------------------
# Error validation
--------------------------------------------------------------*/
.field-validation-valid {
    display: none;
}

.field-validation-error {
    display: block;
    padding: 5px 5px 5px 14px;
    font-size: .9em;
    background-color: #a94442;
    color: #fff;
    width: 100%;
}

.border-validation-error {
    border: solid 2px #a94442;
    background-color: #FFB2B2;
}

.validation-summary-errors {
    display: block;
    padding: 5px 5px 5px 5px;
    font-size: .9em;
    background-color: #a94442;
    color: #fff;
    width: 100%;
    margin-bottom: 20px;
}

    .validation-summary-errors ul {
        margin-bottom: 0px;
        padding-left: 15px;
    }

    .validation-summary-errors li {
        color: #fff;
    }

.field-validation-warning {
    display: block;
    padding: 5px 5px 5px 14px;
    font-size: .9em;
    background-color: #E8AE00;
    color: #fff;
    width: 100%;
}

.nok-icon {
    font-size: 5em;
    color: #a94442;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
}

.ok-icon {
    font-size: 5em;
    color: limegreen;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
}

.element-ok {
    border: 2px solid limegreen !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #306cc4;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #151515;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #151515;
    }

        .back-to-top:hover i {
            color: #306cc4;
        }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0px 0px 0px;
    background-color: #000;
}

    #header.header-scrolled,
    #header.header-inner-pages {
        background: rgba(0, 0, 0, 1);
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #fff;
        }

            #header .logo a span {
                color: #306cc4;
            }

        #header .logo img {
            max-height: 30px;
        }

.header-space {
    padding-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 10px 0px 10px 0px;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #306cc4;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            color: #151515;
            font-weight: 400;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                background-color: #306cc4;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Top Bar Navigation 
*/
.topnavbar {
    padding: 0;
}

    .topnavbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .topnavbar li {
        position: relative;
    }

    .topnavbar a,
    .topnavbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
    }

        .topnavbar a i,
        .topnavbar a:focus i {
            line-height: 0;
            margin-left: 5px;
        }

        .topnavbar a:hover,
        .topnavbar .active,
        .topnavbar .active:focus,
        .topnavbar li:hover > a {
            color: #306cc4;
        }

    .topnavbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .topnavbar .dropdown ul li {
            min-width: 200px;
        }

        .topnavbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            color: #151515;
            font-weight: 400;
        }

            .topnavbar .dropdown ul a i {
                font-size: 12px;
            }

            .topnavbar .dropdown ul a:hover,
            .topnavbar .dropdown ul .active:hover,
            .topnavbar .dropdown ul li:hover > a {
                background-color: #306cc4;
            }

    .topnavbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .topnavbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .topnavbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .topnavbar .dropdown .dropdown ul {
        left: -90%;
    }

    .topnavbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 1);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #151515;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #151515;
            background-color: #306cc4;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
            color: #151515;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                background-color: #306cc4;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

.nav-header {
    width: 100%;
    padding: 0px 10px 0px 10px;
    background-color: #333;
    font-size: .9em;
}

.nav-header-inner {
    padding: 0px;
}

    .nav-header-inner .button-icon {
        font-size: 1.8em;
    }

        .nav-header-inner .button-icon:hover {
            font-size: 1.8em;
        }

/*--------------------------------------------------------------
# Photos
--------------------------------------------------------------*/

.photos {
    padding-bottom: 10px;
    padding-top: 10px;
}

    .photos .photo {
        text-align: center;
    }

        .photos .photo img {
            border: 1px solid #000;
        }

@media (min-width: 992px) {
    .photos .photo img {
        width: 300px;
    }
}

@media (min-width: 1200px) {
    .photos .photo img {
        width: 350px;
    }
}

@media (min-width: 1400px) {
    .photos .photo img {
        width: 400px;
    }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: auto;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
}

    #hero:before {
        content: "";
        background: rgba(0, 0, 0, 0);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        position: relative;
        text-align: center;
    }

    #hero h1 {
        margin: 50px 0px 0px 0px;
        font-size: 2.7em;
        font-weight: 500;
        color: #fff;
    }

        #hero h1 span {
            color: #306cc4;
        }

    #hero h2 {
        color: rgba(255, 255, 255, 1);
        margin: 35px 0 0 0;
        font-weight: 400;
        line-height: 1.7em;
        font-size: 1.2em;
    }

    #hero .icon-box {
        padding: 30px 5px;
        transition: ease-in-out 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.9);
        height: 100%;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.8);
    }

    #hero .frosted {
        border: 3px solid rgba(255, 255, 255, 0.9);
    }

    #hero .icon-box .intro {
        font-weight: normal;
        padding: 0;
        font-size: .9em;
        color: #2c7fc8;
    }

    #hero .icon-box h3 {
        font-weight: 700;
        margin: 0px 0 0 0;
        padding: 0;
        font-size: 1.6em;
        color: #2c7fc8;
    }

        #hero .icon-box h3 a {
            color: #306cc4;
            transition: ease-in-out 0.3s;
            text-decoration: underline;
        }

            #hero .icon-box h3 a:hover {
                color: #fff;
            }

    #hero .icon-box .info {
        margin: 15px 0 0 0;
        padding: 0;
        font-size: .95em;
        font-style: italic;
        color: #E6E6E6;
    }

    #hero .icon-box .list {
        margin: 15px 0 0 0;
        padding: 0;
        font-size: .95em;
        line-height: 2.2em;
        color: #E6E6E6;
    }

        #hero .icon-box .list ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

    #hero .icon-box .calculate {
        margin: 15px 0 0 0;
        padding: 0;
        font-size: .75em;
        font-style: normal;
        color: #E6E6E6;
    }

    #hero .icon-box .tickness {
        margin: 10px 0px 0px 0px;
    }

        #hero .icon-box .tickness .link {
            background: #E10093;
            border: 1px solid #E10093;
            padding: 2px 3px !important;
            font-weight: 600;
            font-size: .8em;
            color: #fff;
            transition: 0.4s;
            border-radius: 3px;
            margin-left: 0px 20px 0px 20px;
        }

            #hero .icon-box .tickness .link:hover {
                background: #2c7fc8;
                border: 1px solid #2c7fc8;
            }

    #hero .icon-box .addition .item {
        white-space: nowrap;
        background: #333;
        border: 1px solid #333;
        padding: 2px 5px !important;
        font-weight: 600;
        font-size: .6em;
        color: #fff;
        transition: 0.4s;
        border-radius: 6px;
        margin: 15px 3px 0px 3px;
    }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 20px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Section custom size
--------------------------------------------------------------*/

.custom-size {
}

    .custom-size .photo {
        text-align: center;
    }

        .custom-size .photo img {
            border: 1px solid #000;
            margin-bottom: 15px;
        }

@media (min-width: 992px) {
    .custom-size .photo img {
        width: 420px;
        height: 260px;
    }
}

@media (min-width: 1200px) {
    .custom-size .photo img {
        width: 576px;
        height: 384px;
    }
}

@media (min-width: 1400px) {
    .custom-size .photo img {
        width: 576px;
        height: 384px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 50px 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 25px;
}

    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaaaaa;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: #306cc4;
            margin: 4px 10px;
        }

    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 1.7em;
        font-weight: 700;
        text-transform: uppercase;
        color: #151515;
    }

/*--------------------------------------------------------------
# Sections Product
--------------------------------------------------------------*/

.section-product-title {
    padding-bottom: 25px;
}

.section-product-title {
    margin: 0;
    margin: 0;
    font-size: 1.7em;
    text-transform: uppercase;
    color: #151515;
}

.price-highlighted {
    color: #306cc4;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
}

.product-breadcrumb {
}

    .product-breadcrumb ul > li {
        display: inline-block
    }

.product-or {
    width: 100%;
    padding: 10px;
    text-align: center;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 28px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding: 0 0 8px 26px;
        position: relative;
    }

    .about .content ul i {
        position: absolute;
        font-size: 20px;
        left: 0;
        top: -3px;
        color: #306cc4;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding-top: 20px;
}

    .clients .swiper-slide img {
        opacity: 0.8;
        transition: 0.3s;
        filter: grayscale(100);
    }

        .clients .swiper-slide img:hover {
            filter: none;
            opacity: 1;
        }

    .clients .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .clients .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            background-color: #ddd;
        }

        .clients .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #306cc4;
        }

/*--------------------------------------------------------------
# border-less box
--------------------------------------------------------------*/
.border-less-box {
    padding: 20px 20px 30px 20px;
    text-align: center;
    width: 100%;
}

    .border-less-box .image img {
        width: 75px;
        height: 75px;
    }

    .border-less-box .text {
        font-weight: 600;
        color: #000;
        font-size: .9em;
        margin-top: 0px;
    }

    .border-less-box .content {
        font-weight: 400;
        color: #000;
        font-size: .8em;
        margin-top: 5px;
    }

/*--------------------------------------------------------------
# Outlet Section
--------------------------------------------------------------*/

.outlet .icon-box {
    padding: 0px 0px 20px 0px;
    transition: ease-in-out 0.3s;
    border: 1px solid #ccc;
    height: 100%;
    text-align: center;
}

.outlet table tr th {
    
}

.outlet table tr td {
    padding: 10px 5px 10px 5px;
}

/*--------------------------------------------------------------
# Important
--------------------------------------------------------------*/
.important {
    border: 1px solid #ccc;
    padding: 10px 10px 10px 10px;
    text-align: left;
    background-color: antiquewhite;
}

    .important .header {
        padding: 0px 0px 20px 0px;
        text-align: left;
        font-weight: 700;
        font-size: 1.2em;
    }

    .important .content {
        padding: 0px 0px 0px 0px;
        text-align: left;
    }

/*--------------------------------------------------------------
# Variants icon-box
--------------------------------------------------------------*/

.variants .icon-box {
    padding: 0px 0px 20px 0px;
    transition: ease-in-out 0.3s;
    border: 1px solid #ccc;
    height: 100%;
    text-align: center;
}

    .variants .icon-box .image img {
        width: 100%;
    }

    .variants .icon-box .title {
        margin-top: 20px;
        font-weight: 600;
        padding: 0;
        font-size: .95em;
        color: #000;
    }

        .variants .icon-box .title a {
            color: #000;
            text-decoration: underline;
        }

            .variants .icon-box .title a:hover {
                color: #306cc4;
            }

        .variants .icon-box .title span a {
            color: #000;
            text-decoration: underline;
        }

            .variants .icon-box .title span a:hover {
                color: #306cc4;
                text-decoration: underline;
            }

    .variants .icon-box .description {
        margin: 15px 0 0 0;
        padding: 20px 20px;
        font-size: .85em;
        min-height: 180px;
        color: #111;
    }

    .variants .icon-box .calculate {
        margin: 15px 0 0 0;
        padding: 0;
        font-size: .75em;
        font-style: normal;
        color: #111;
    }

    .variants .icon-box .tickness {
        margin: 10px 0px 0px 0px;
    }

        .variants .icon-box .tickness .link {
            white-space: nowrap;
            background: #E10093;
            border: 1px solid #E10093;
            padding: 2px 2px !important;
            font-weight: 600;
            font-size: .9em;
            color: #fff;
            transition: 0.4s;
            border-radius: 3px;
            margin: 0px 0px 0px 0px;
        }

            .variants .icon-box .tickness .link:hover {
                background: #2c7fc8;
                border: 1px solid #2c7fc8;
            }

    .variants .icon-box .addition {
        padding-top: 7px;
    }

        .variants .icon-box .addition .item {
            white-space: nowrap;
            background: #000;
            border: 1px solid #000;
            padding: 2px 5px !important;
            font-weight: 600;
            font-size: .6em;
            color: #fff;
            transition: 0.4s;
            border-radius: 6px;
            margin: 0px 3px 0px 3px;
        }

/*--------------------------------------------------------------
# Safety icon-box
--------------------------------------------------------------*/

.safety .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid #ccc;
    height: 100%;
    text-align: center;
}

    .safety .icon-box .image img {
        width: 100px;
    }

    .safety .icon-box .title {
        margin-top: 10px;
        font-weight: 600;
        padding: 0;
        font-size: .95em;
        color: #000;
    }

        .safety .icon-box .title span {
            color: #000;
            text-decoration: underline;
        }

    .safety .icon-box .description {
        margin: 15px 0 0 0;
        padding: 0;
        font-size: .85em;
        color: #111;
    }

    .safety .icon-box .calculate {
        margin: 15px 0 0 0;
        padding: 0;
        font-size: .75em;
        font-style: normal;
        color: #111;
    }

    .safety .icon-box .tickness {
        margin: 10px 0px 0px 0px;
    }

        .safety .icon-box .tickness .link {
            background: #E10093;
            border: 1px solid #E10093;
            padding: 2px 5px !important;
            font-weight: 600;
            font-size: .7em;
            color: #fff;
            transition: 0.4s;
            border-radius: 3px;
            margin: 0px 3px 0px 3px;
        }

            .safety .icon-box .tickness .link:hover {
                background: #4F91FF;
                border: 1px solid #4F91FF;
            }

/*--------------------------------------------------------------
# Faq section
--------------------------------------------------------------*/

.faq .question {
    padding: 2px 2px 10px 2px;
    font-weight: 500;
    text-decoration: underline;
    font-size: 1.1em;
    cursor: pointer;
}

.faq .answer {
    padding: 5px 5px 20px 15px;
}

.hidden {
    display: none;
}

/*--------------------------------------------------------------
# Faq quote
--------------------------------------------------------------*/

.quote .statement {
    padding: 2px 2px 10px 2px;
    font-weight: 500;
}

.quote .balloon img {
    width: 100px;
    padding: 5px;
}

@media (min-width: 992px) {
    .quote .balloon img {
        width: 100px;
    }
}

@media (min-width: 1200px) {
    .quote .balloon img {
        width: 150px;
    }
}


/*--------------------------------------------------------------
# Diagram section
--------------------------------------------------------------*/
.diagram table {
    border: 1px solid #D0D1D2;
    width: 100%;
}

    .diagram table tr th {
        font-weight: 700;
        font-size: 1em;
        text-align: center;
        padding: 20px 1px 20px 1px;
    }

    .diagram table tr td {
        font-weight: 500;
        font-size: .8em;
        padding: 8px 1px 8px 10px;
    }

    .diagram table .odd {
        background-color: #E6E7E8;
    }

    .diagram table .even {
        background-color: #FFF;
    }

/*--------------------------------------------------------------
# Contact icon-box
--------------------------------------------------------------*/

.contact .icon-box {
    padding: 0px 0px;
    transition: ease-in-out 0.3s;
    border: none;
    height: 100%;
    text-align: center;
}

    .contact .icon-box .image img {
        width: 60px;
        height: 60px;
    }

    .contact .icon-box .title {
        margin-top: 10px;
        margin-bottom: 10px;
        font-weight: 600;
        padding: 0;
        font-size: .95em;
        font-weight: 800;
        color: #000;
    }

        .contact .icon-box .title span {
            color: #000;
            text-decoration: underline;
        }

/*--------------------------------------------------------------
# Various icon-box
--------------------------------------------------------------*/

.various .icon-box {
    padding: 30px 20px;
    border: 1px solid #ccc;
    height: 100%;
}

    .various .icon-box .title {
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 0;
        font-size: 1.1em;
        font-weight: 700;
        color: #000;
        text-transform: uppercase;
        text-align: center;
    }


/*--------------------------------------------------------------
# Thickness icon-box
--------------------------------------------------------------*/

.thickness .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid #ccc;
    height: 100%;
    text-align: center;
}

    .thickness .icon-box .image img {
        width: 30px;
        margin: 0px 2px 0px 2px;
    }

    .thickness .icon-box .title {
        margin-top: 10px;
        font-weight: 600;
        padding: 0;
        font-size: 1.3em;
        color: #000;
    }

        .thickness .icon-box .title span {
            color: #000;
            text-decoration: underline;
        }

    .thickness .icon-box .header {
        margin: 35px 0 0 0;
        padding: 0;
        font-size: .85em;
        color: #111;
        text-decoration: underline;
        font-weight: 700;
    }

    .thickness .icon-box .description {
        margin: 15px 0 0 0;
        padding: 0;
        font-size: .85em;
        color: #111;
        min-height: 110px;
    }

    .thickness .icon-box .calculate {
        margin: 15px 0 0 0;
        padding: 0;
        font-size: .75em;
        font-style: normal;
        color: #111;
    }

    .thickness .icon-box .variants {
        margin: 20px 0px 0px 0px;
    }

        .thickness .icon-box .variants .link {
            background: #E10093;
            border: 1px solid #E10093;
            padding: 2px 5px !important;
            font-weight: 600;
            font-size: .8em;
            color: #fff;
            transition: 0.4s;
            border-radius: 3px;
            margin: 0px 2px 0px 2px;
        }

            .thickness .icon-box .variants .link:hover {
                background: #2c7fc8;
                border: 1px solid #2c7fc8;
            }

    .thickness .icon-box .addition .item {
        white-space: nowrap;
        background: #333;
        border: 1px solid #333;
        padding: 2px 5px !important;
        font-weight: 600;
        font-size: .6em;
        color: #fff;
        transition: 0.4s;
        border-radius: 6px;
        margin: 15px 3px 0px 3px;
    }

    .thickness .icon-box .not-available {
        opacity: 0.25;
    }

.thickness .not-available-border {
    border: 1px solid #eee;
}

/*--------------------------------------------------------------
# Tile Icon box
--------------------------------------------------------------*/
.tile .icon-box {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    width: 100%;
}

    .tile .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #306cc4;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.3s;
    }

        .tile .icon-box .icon i {
            color: #151515;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .tile .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .tile .icon-box h4 a {
            color: #151515;
            transition: ease-in-out 0.3s;
        }

            .tile .icon-box h4 a:hover {
                color: #306cc4;
            }

    .tile .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .tile .icon-box:hover {
        border-color: #fff;
        box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 15px 10px 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
    }

        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
            color: #fff;
            background: #000;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(21, 21, 21, 0.6);
}

    .portfolio .portfolio-wrap::before {
        content: "";
        background: rgba(21, 21, 21, 0.6);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transition: all ease-in-out 0.3s;
        z-index: 2;
        opacity: 0;
    }

    .portfolio .portfolio-wrap img {
        transition: all ease-in-out 0.3s;
    }

    .portfolio .portfolio-wrap .portfolio-info {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 20px;
    }

        .portfolio .portfolio-wrap .portfolio-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .portfolio .portfolio-wrap .portfolio-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            text-transform: uppercase;
            padding: 0;
            margin: 0;
            font-style: italic;
        }

    .portfolio .portfolio-wrap .portfolio-links {
        text-align: center;
        z-index: 4;
    }

        .portfolio .portfolio-wrap .portfolio-links a {
            color: #fff;
            margin: 0 5px 0 0;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .portfolio .portfolio-wrap .portfolio-links a:hover {
                color: #306cc4;
            }

    .portfolio .portfolio-wrap:hover::before {
        opacity: 1;
    }

    .portfolio .portfolio-wrap:hover img {
        transform: scale(1.2);
    }

    .portfolio .portfolio-wrap:hover .portfolio-info {
        opacity: 1;
    }


/*--------------------------------------------------------------
# Purpose
--------------------------------------------------------------*/
.purpose .purpose-item {
    margin-bottom: 30px;
}

.purpose #purpose-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .purpose #purpose-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 15px 10px 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
    }

        .purpose #purpose-flters li:hover,
        .purpose #purpose-flters li.filter-active {
            color: #fff;
            background: #000;
        }

        .purpose #purpose-flters li:last-child {
            margin-right: 0;
        }

.purpose .purpose-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(21, 21, 21, 0.6);
}

    .purpose .purpose-wrap::before {
        content: "";
        background: rgba(21, 21, 21, 0.6);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transition: all ease-in-out 0.3s;
        z-index: 2;
        opacity: 0;
    }

    .purpose .purpose-wrap img {
        transition: all ease-in-out 0.3s;
    }

    .purpose .purpose-wrap .purpose-info {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 20px;
    }

        .purpose .purpose-wrap .purpose-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .purpose .purpose-wrap .purpose-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            text-transform: uppercase;
            padding: 0;
            margin: 0;
            font-style: italic;
        }

    .purpose .purpose-wrap .purpose-links {
        text-align: center;
        z-index: 4;
    }

        .purpose .purpose-wrap .purpose-links a {
            color: #fff;
            margin: 0 5px 0 0;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .purpose .purpose-wrap .purpose-links a:hover {
                color: #306cc4;
            }

    .purpose .purpose-wrap:hover::before {
        opacity: 1;
    }

    .purpose .purpose-wrap:hover img {
        transform: scale(1.2);
    }

    .purpose .purpose-wrap:hover .purpose-info {
        opacity: 1;
    }

/*--------------------------------------------------------------
# List group overrides
--------------------------------------------------------------*/

.list-group .active {
    color: #fff;
    background-color: rgb(48, 108, 196);
    border-color: rgb(48, 108, 196);
}

.list-group-item {
    padding: .3rem .8rem;
}

.list-group .disabled {
    opacity: .3;
}

/*--------------------------------------------------------------
# Questions
--------------------------------------------------------------*/

.topmats-answer-left {
    width: 50%;
    float: left;
    padding-right: 15px;
    text-align: right;
}

.topmats-answer-right {
    width: 50%;
    float: right;
    padding-left: 15px;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-configurator {
    background: #E10093;
    border: 1px solid #E10093;
    padding: 3px 12px !important;
    color: #151515;
    justify-content: center;
    transition: 0.4s;
    border-radius: 4px;
    margin: 5px 15px 5px 15px;
}

    .btn-configurator a {
        width: auto !important;
    }

    .btn-configurator:hover {
        background: #ffffff;
        border: 1px solid #306cc4;
    }

.btn-configurator-small-device {
    background: #E10093;
    border: 1px solid #E10093;
    border-radius: 4px;
    margin: 5px 5px 5px 5px;
    display: flex;
    justify-content: center;
    padding: 7px 0px 7px 0px;
    font-size: 17px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    transition: all 0.3s ease 0s;
}

    .btn-configurator-small-device a {
        width: auto !important;
    }

    .btn-configurator-small-device:hover {
        background: #ffffff !important;
        color: #306cc4 !important;
        border: 1px solid #306cc4 !important;
    }


.btn-magenta-sm {
    background: #E10093;
    border: 1px solid #E10093;
    padding: 3px 12px !important;
    color: #151515;
    transition: 0.4s;
    border-radius: 4px;
    margin-left: 20px;
}

    .btn-magenta-sm:hover {
        background: #ffffff;
        border: 1px solid #306cc4;
    }

.btn-magenta {
    background: #E10093;
    border: 1px solid #E10093;
    padding: 5px 18px !important;
    color: #151515;
    transition: 0.4s;
    border-radius: 4px;
    margin-left: 20px;
}

    .btn-magenta:hover {
        background: #ffffff;
        border: 1px solid #306cc4;
    }

.btn-blue {
    background: rgb(48, 108, 196);
    border: 1px solid rgb(48, 108, 196);
    padding: 5px 18px !important;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    margin-left: 20px;
    margin-right: 20px;
}

    .btn-blue:hover {
        background: #ffffff;
        border: 1px solid #306cc4;
    }

.btn-blue-sm {
    background: rgb(48, 108, 196);
    border: 1px solid rgb(48, 108, 196);
    padding: 2px 10px !important;
    font-size: .9em;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    margin-left: 10px;
    margin-right: 10px;
}

    .btn-blue-sm:hover {
        background: #ffffff;
        border: 1px solid #306cc4;
    }

.btn-blue-lg {
    background: rgb(48, 108, 196);
    border: 1px solid rgb(48, 108, 196);
    padding: 10px 10px !important;
    font-size: 1.1em;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    margin-left: 10px;
    margin-right: 10px;
}

    .btn-blue-lg:hover {
        background: #ffffff;
        border: 1px solid #306cc4;
    }

.btn-green {
    background: #009900;
    border: 1px solid #009900;
    padding: 5px 18px !important;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    margin-left: 20px;
    margin-right: 20px;
}

    .btn-green:hover {
        background: #ffffff;
        border: 1px solid #306cc4;
    }

.btn-neutral {
    background: #fff;
    border: 1px solid #333;
    padding: 5px 18px !important;
    color: #000;
    transition: 0.4s;
    border-radius: 4px;
    margin-left: 20px;
    margin-right: 20px;
}

    .btn-neutral:hover {
        background: #fff;
        border: 1px solid rgb(48, 108, 196);
    }

.btn-neutral-secondary {
    background: #fff;
    border: 1px solid #333;
    color: #000;
    transition: 0.4s;
}

    .btn-neutral-secondary:hover {
        background: #fff;
        color: #000;
        border: 1px solid rgb(48, 108, 196);
    }

.btn-full-width {
    width: 100%;
    margin-left: 0px;
}

.badge-recommended {
    background-color: #009900;
    padding: 6px 4px 0px 4px;
    font-size: .8em !important;
    letter-spacing: -0.5px;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breamcrump {
    font-size: .85em;
    margin-bottom: 15px;
}

    .breamcrump .list-group-item {
        background-color: #DDE5F5;
        color: #000;
        padding: 6px;
        margin-right: 2px;
        border: none;
    }

.breamcrump-text {
    padding-left: 10px;
}

.breamcrump .active {
    background-color: rgb(48, 108, 196);
    color: #fff;
    font-weight: 500;
}

.breamcrump-icon {
    font-size: 1.1em;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: black;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .footer-top {
        background: #151515;
        border-bottom: 1px solid #222222;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 28px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
                text-transform: uppercase;
            }

                #footer .footer-top .footer-info h3 span {
                    color: #306cc4;
                }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #292929;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #306cc4;
                color: #151515;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #306cc4;
                    font-size: 12px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #306cc4;
                    }

.footersection {
    padding-bottom: 0px !important;
}

    .footersection .background {
        background: url("../img/footer_bg.jpg") top center;
        background-repeat: no-repeat;
        height: 380px;
    }

    .footersection .paragraph {
        text-align: center;
    }

        .footersection .paragraph .content {
            margin-top: 50px;
        }

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/*--------------------------------------------------------------
# Card overrides
--------------------------------------------------------------*/

.card-header {
    padding: 0px 10px 0px 10px;
    font-size: 1.1em;
    font-weight: 500;
    background-color: #FFF;
    color: #333;
    border: none;
}

    .card-header i {
        margin: 6px 5px 5px 5px;
        font-size: 1.5em;
    }

.card {
    border: 1px solid #737373;
    border-radius: 0;
}

.tab-content {
    font-size: .9em;
}

.card-footer {
    background-color: #fff;
    border-top: none;
    padding: 5px 15px 15px 15px;
}

.card-body {
    position: relative;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 50px;
    padding-top: 5px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
}

    /* Hide the browser's default checkbox */
    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 35px;
    width: 35px;
    background-color: #eee;
    border-radius: 20px;
    border: 6px solid #335CA5;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.card-rounded-light-blue {
    border-radius: 20px;
    border: none;
    background-color: #E4EBF2;
}

    .card-rounded-light-blue .card-header {
        padding: 10px 0px 0px 20px;
        font-size: 1.1em;
        font-weight: 700;
        background-color: #E4EBF2;
        color: #333;
        border: none;
        border-radius: 20px;
    }

        .card-rounded-light-blue .card-header i {
            margin: 6px 5px 5px 5px;
            font-size: 1.5em;
        }

    .card-rounded-light-blue input {
        border-radius: 20px;
        border: none;
        text-align: center;
        color: #306cc4;
        font-weight: 450;
        padding: 10px 5px;
    }

    .card-rounded-light-blue .btn-primary-bottom {
        background-color: #000;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        width: 100%;
        margin: 0px;
        padding: 10px 5px;
        border: 1px solid #000;
    }

    .card-rounded-light-blue .btn-primary {
        background-color: #000;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        border-radius: 20px;
        width: 100%;
        margin: 5px;
        border: 1px solid #000;
    }

    .card-rounded-light-blue .btn-secondary {
        background-color: #DDE5F5;
        color: #000;
        font-size: 18px;
        font-weight: 400;
        border-radius: 20px;
        width: 100%;
        margin: 5px;
        border: 1px solid #DDE5F5;
    }

.address .card-rounded-light-blue input {
    border-radius: 4px;
    border: none;
    text-align: left;
    color: #306cc4;
    font-weight: 450;
    padding: 10px 5px;
    margin-bottom: 10px;
}

.address .card-rounded-light-blue textarea {
    border-radius: 4px;
    border: none;
    text-align: left;
    color: #306cc4;
    font-weight: 450;
    padding: 10px 5px;
    margin-bottom: 10px;
}

.address .card-rounded-light-blue select {
    border-radius: 4px;
    border: none;
    text-align: left;
    color: #306cc4;
    font-weight: 450;
    padding: 10px 5px;
    margin-bottom: 10px;
}

.cart .card-rounded-light-blue input {
    border-radius: 4px;
    border: none;
    text-align: left;
    color: #306cc4;
    font-weight: 450;
    padding: 10px 5px;
    margin-bottom: 10px;
}

.cart .card-rounded-light-blue button {
    border-radius: 4px;
    border: none;
    text-align: left;
    color: #fff;
    font-weight: 450;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #306cc4;
}



.card-rounded-dark-blue {
    border-radius: 20px;
    border: none;
    background-color: #466FB5;
}

    .card-rounded-dark-blue a {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
    }

a:hover {
    color: #E10093;
    text-decoration: none;
}

.card-rounded-dark-blue .card-header {
    padding: 10px 0px 10px 20px;
    font-size: 1.1em;
    font-weight: 700;
    background-color: #466FB5;
    color: #fff;
    border: none;
    border-radius: 20px;
}

    .card-rounded-dark-blue .card-header i {
        margin: 6px 5px 5px 5px;
        font-size: 1.5em;
    }

.card-rounded-dark-blue .card-body {
    color: #fff;
    padding: 0px 20px 20px 20px;
}

.card-rounded-dark-blue .card-footer {
    font-size: 1.1em;
    font-weight: 700;
    background-color: #466FB5;
    color: #fff;
    border: none;
    border-radius: 20px;
}

.card-rounded-dark-blue .btn-primary-bottom {
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 20px;
    width: 100%;
    margin: 0px;
    padding: 10px 5px;
    border: 1px solid #000;
}

.card-rounded-dark-blue .btn-primary {
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 20px;
    width: 100%;
    margin: 5px;
    border: 1px solid #000;
}


.card-rounded-dark-blue .btn-secondary {
    background-color: #DDE5F5;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    border-radius: 20px;
    width: 100%;
    margin: 5px;
    border: 1px solid #DDE5F5;
}

.variant {
    padding: 0px 5px 35px 5px;
    text-align: center
}

    .variant .badge-box {
        position: absolute;
        text-align: center;
        margin-top: 0px;
        width: 100%;
    }

        .variant .badge-box .badge {
            border-radius: 20px;
            text-align: center;
            background-color: #000;
            padding: 6px;
            color: #fff;
        }

    .variant .active .variant-product-container {
        border-radius: 20px;
        border: 4px solid #335CA5;
        background-color: #fff;
        text-align: center;
        height: 130px;
        position: relative;
    }

    .variant .variant-product-container {
        border-radius: 20px;
        border: none;
        background-color: #fff;
        text-align: center;
        height: 130px;
        position: relative;
    }

        .variant .variant-product-container .clearblue {
            text-align: center;
            padding-top: 15px;
            width: 100%;
        }

        .variant .variant-product-container .name {
            text-align: center;
            font-weight: 600;
            padding-top: 0px;
            width: 100%;
        }

        .variant .variant-product-container .icon {
            text-align: center;
            height: 50px;
        }

            .variant .variant-product-container .icon img {
                width: 30px;
                height: 30px;
                margin-top: 10px;
                margin-bottom: 10px;
            }

    .variant .selected {
        border-radius: 20px;
    }

.configurator-image-container {
    margin: 0px 0px 20px 0px;
}

    .configurator-image-container .invisible {
        display: none;
    }

    .configurator-image-container .view {
        margin: 0px 0px 28px 0px;
    }

        .configurator-image-container .view img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .configurator-image-container .configuratorimage-item {
    }

        .configurator-image-container .configuratorimage-item .configuratorimage-wrap {
        }

            .configurator-image-container .configuratorimage-item .configuratorimage-wrap img {
                max-width: 100%;
                border-radius: 20px;
            }

                .configurator-image-container .configuratorimage-item .configuratorimage-wrap img:hover {
                    cursor: pointer;
                }

.thick {
    padding: 0px 5px 35px 5px;
    text-align: center
}

    .thick .badge-box {
        position: absolute;
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

        .thick .badge-box .badge {
            border-radius: 20px;
            text-align: center;
            background-color: #000;
            padding: 6px;
            color: #fff;
        }

    .thick .active .thick-product-container {
        border-radius: 20px;
        border: 4px solid #335CA5;
        background-color: #fff;
        text-align: center;
        height: 70px;
        position: relative;
    }

    .thick .disabled .thick-product-container {
        border-radius: 20px;
        border: 4px solid #fff;
        background-color: #fff;
        text-align: center;
        height: 70px;
        position: relative;
        color: #cccccc;
    }

    .thick .thick-product-container {
        border-radius: 20px;
        border: 4px solid #fff;
        background-color: #fff;
        text-align: center;
        height: 70px;
        position: relative;
    }

        .thick .thick-product-container .size {
            text-align: center;
            padding-top: 20px;
            width: 100%;
            font-weight: 550;
        }

.preview-table-container {
    width: 100%;
    text-align: center;
    margin-left: -30px;
    padding-top: 30px;
}

.preview-table {
    border: none;
    width: 400px;
    margin: 0px auto;
}

    .preview-table .square-cell {
        width: 200px;
    }

    .preview-table .square {
        background-color: #466FB5;
        border: 1px solid #000;
        width: 100%;
        height: 100%;
        margin: 0px auto;
    }

    .preview-table .size-number-length-cell {
        width: 100px;
    }

    .preview-table .size-arrow-length-cell {
        padding-left: 10px;
        width:30px;
    }

    .preview-table .arrow-vertical {
        display: inline;
    }

        .preview-table .arrow-vertical div {
            padding: 0px;
            margin: 0px;
        }

        .preview-table .arrow-vertical .arrow-up {
            width: 15px;
            height: 11px;
        }

        .preview-table .arrow-vertical .arrow-line {
            width: 15px;
        }

            .preview-table .arrow-vertical .arrow-line img {
                width: 15px;
            }

        .preview-table .arrow-vertical .arrow-down {
            width: 15px;
            height: 11px;
            display: flex;
        }

    .preview-table .size-arrow-width-cell {
        text-align: center;
        display: table-cell;
    }

    .preview-table .arrow-horizontal {
        display: flex;
        width: fit-content;
        margin: auto;
    }

        .preview-table .arrow-horizontal div {
            padding: 0px;
            margin: 0px;
        }

        .preview-table .arrow-horizontal .arrow-left {
            width: 11px;
            height: 15px;
        }

        .preview-table .arrow-horizontal .arrow-line {
            width: 15px;
            width: fit-content;
        }

            .preview-table .arrow-horizontal .arrow-line img {
                height: 15px;
                width: 15px;
            }

        .preview-table .arrow-horizontal .arrow-right {
            width: 11px;
            height: 15px;
        }

    .preview-table .size-number-length {
        height: 100%;
        display: flex;
        justify-content: left;
        align-items: center;
        color: #fff;
        padding-left: 10px;
        font-size: .9em;
        width: fit-content;
    }

        .preview-table .size-number-length .item {
            background-color: #466FB5;
            text-align: center;
            padding: 10px;
            border-radius: 20px;
        }

    .preview-table .size-number-width {
        text-align: center;
        color: #fff;
        font-size: .9em;
    }

        .preview-table .size-number-width .item {
            background-color: #466FB5;
            text-align: center;
            padding: 10px;
            border-radius: 20px;
            margin-top: 10px;
            width: fit-content;
            margin: 0px auto;
        }

.address {
    padding: 0px 5px 35px 5px;
    text-align: center
}

    .address .active .order-type {
        background-color: none;
    }

    .address .order-type {
        background-color: none;
    }

    .address .active .order-type-subscribe {
        background-color: none;
    }

    .address .order-type-subscribe {
        background-color: none;
    }

    .address .selected {
        border-radius: 20px;
    }

.order-type {
    padding: 0px 5px 25px 5px;
    text-align: center
}

    .order-type .active .order-type-container {
        border-radius: 20px;
        border: 4px solid #335CA5;
        background-color: #fff;
        text-align: center;
        height: 72px;
        position: relative;
    }

    .order-type .order-type-container {
        border-radius: 20px;
        border: 4px solid #fff;
        background-color: #fff;
        text-align: center;
        height: 72px;
        position: relative;
        margin: 10px 0px;
    }

        .order-type .order-type-container .type {
            text-align: center;
            padding-top: 20px;
            width: 100%;
            font-weight: 550;
        }

    .order-type .selected {
        border-radius: 20px;
    }

.order-type-subscribe {
    padding: 0px 15px 0px 15px;
    text-align: center;
}

    .order-type-subscribe a {
        color: #306cc4;
        text-decoration: none;
    }

    .order-type-subscribe .active .order-type-container {
        border-radius: 20px;
        border: 4px solid #335CA5;
        background-color: #fff;
        text-align: center;
        height: 72px;
        position: relative;
    }

    .order-type-subscribe .order-type-container {
        border-radius: 20px;
        border: 4px solid #fff;
        background-color: #fff;
        text-align: center;
        height: 72px;
        position: relative;
        margin: 10px 0px;
    }

        .order-type-subscribe .order-type-container .type {
            text-align: center;
            padding-top: 20px;
            width: 100%;
            font-weight: 550;
        }

    .order-type-subscribe .selected {
        border-radius: 20px;
    }

.company-info {
    padding-bottom: 15px;
}

.ship {
    padding: 0px 5px 35px 5px;
    text-align: center
}

    .ship .disabled {
        opacity: .3;
    }

.sub-title {
    text-align: left;
    font-size: 1.2em;
    font-weight: 500;
    padding-bottom: 10px;
    padding-top: 10px;
}

.ship .active .ship-product-container {
    border-radius: 20px;
    border: 4px solid #335CA5;
    background-color: #fff;
    text-align: center;
    height: 70px;
    position: relative;
}

.ship .disabled .ship-product-container {
    border-radius: 20px;
    border: 4px solid #fff;
    background-color: #fff;
    text-align: center;
    height: 70px;
    position: relative;
    color: #cccccc;
}

.ship .ship-product-container {
    border-radius: 20px;
    border: 4px solid #fff;
    background-color: #fff;
    text-align: center;
    height: 70px;
    position: relative;
    margin: 10px 0px;
}

    .ship .ship-product-container .size {
        text-align: center;
        padding-top: 20px;
        width: 100%;
        font-weight: 550;
    }

.ship .selected {
    border-radius: 20px;
}

.ship .shipper-box {
    padding: 5px 5px 5px 15px;
    width: 50%;
    float: left;
}

    .ship .shipper-box .shipper-image {
        width: 100px;
        float: left;
    }

    .ship .shipper-box .shipper-price {
        padding-left: 10px;
        padding-right: 20px;
        padding-top: 11px;
        font-weight: bold;
        float: right;
        font-size: 1.2em;
        color: #000;
    }

.ship .offer-box {
    padding: 15px 5px 5px 15px;
    width: 100%;
    float: left;
    font-weight: bold;
    font-size: 1.2em;
    color: #000;
}

.pay {
    padding: 0px 5px 35px 5px;
    text-align: center
}

    .pay .active .pay-product-container {
        border-radius: 20px;
        border: 4px solid #335CA5;
        background-color: #fff;
        text-align: center;
        height: 60px;
        position: relative;
    }

    .pay .pay-product-container {
        border-radius: 20px;
        border: 4px solid #fff;
        background-color: #fff;
        text-align: center;
        height: 60px;
        position: relative;
        margin: 10px 0px;
    }

        .pay .pay-product-container .size {
            text-align: center;
            padding-top: 20px;
            width: 100%;
            font-weight: 550;
        }

    .pay .selected {
        border-radius: 20px;
    }


    .pay .pay-product-container .pay-image {
        width: 100px;
        float: left;
    }

        .pay .pay-product-container .pay-image img {
            width: 50px;
            height: 50px;
            margin: 0px 5px 2px 25px;
            padding: 5px;
            background-color: #fff;
            border: none;
        }

    .pay .pay-product-container .pay-description {
        float: left;
        padding-left: 20px;
        padding-top: 12px;
        font-size: 1.2em;
        font-weight: 600;
    }

.selected-box {
    position: absolute;
    text-align: left;
    margin-top: -15px;
    margin-left: -5px;
    width: 100%;
}

    .selected-box .icon {
        font-size: 35px;
        color: #A9EBA7;
    }

.product-info {
    width: 100%;
    padding:21px 10px 10px 10px;
}

    .product-info .item {
        width: 100%;
        overflow: hidden;
    }

    .product-info .icon-item {
        float: left;
    }

    .product-info .icon {
        font-size: 25px;
        color: #335CA5;
    }

    .product-info .text {
        font-weight: 500;
        color: #000;
        padding: 6px 0px 22px 40px;
    }

.thickness-info {
    width: 100%;
}

    .thickness-info .item {
        width: 100%;
        overflow: hidden;
    }

    .thickness-info .icon-item {
        float: left;
        text-align: center;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .thickness-info .fill-icon {
        font-size: 20px;
        background-color: #335CA5;
        color: rgb(228, 235, 242);
        padding: 6px 8px;
        border-radius: 50px;
        margin: 5px 5px;
    }

    .thickness-info .none-fill-icon {
        font-size: 20px;
        background-color: rgb(228, 235, 242);
        color: #335CA5;
        padding: 6px 8px;
        border: 1px solid #335CA5;
        border-radius: 50px;
        margin: 5px 5px;
    }

    .thickness-info .icon {
        font-size: 25px;
        color: #335CA5;
    }

    .thickness-info .title {
        font-weight: 700;
        color: #000;
        padding: 6px 0px 0px 0px;
    }

    .thickness-info .text {
        font-weight: 400;
        color: #000;
        font-size: .8em;
        padding: 6px 0px 0px 0px;
    }

.non-active {
    display: none;
}

/*--------------------------------------------------------------
# Form overrides
--------------------------------------------------------------*/
.form-group {
    padding-bottom: 15px;
}

    .form-group::after {
        padding-bottom: 0px;
    }

    .form-group label {
        font-weight: 700;
    }

    .form-group .value-label {
        font-weight: 400;
        font-size: 1.2em;
    }

    .form-group .item-label {
        font-weight: 700;
    }

    .form-group .control-label {
        font-weight: 450;
        text-align: left;
        width: 100%;
    }

    .form-group .smaller {
        font-weight:400;
        font-size:.85em;
    }

    .form-group .center {
        text-align: center;
        width: 100%;
    }

.form-check-input {
}

.form-check-label {
    padding: 1px 0px 0px 8px;
}

.control-label {
    padding-bottom: 5px;
}

.form-control {
    -webkit-appearance: listbox !important;
}

.full-width {
    width: 100%;
}

.max-width-300 {
    max-width: 300px;
}

/*--------------------------------------------------------------
# tables
--------------------------------------------------------------*/

.topmats-table {
    margin-bottom: 0px;
    border: none;
    width: 100%;
}

    .topmats-table th {
        font-size: .9em;
        padding: 5px;
        border-bottom: 2px solid #ccc;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .topmats-table td {
        font-size: .95em;
        font-weight: 500;
        padding: 5px;
        border-bottom: 1px solid #ccc;
        border-top: none;
        border-left: none;
        border-right: none;
    }

        .topmats-table td .cell-icon {
            color: rgb(48, 108, 196);
            font-size: 1.8em;
        }

    .topmats-table .amount-icon {
        align-items: center;
        justify-content: center;
        width: 50px;
    }

        .topmats-table .amount-icon i {
            border-radius: 4px;
            background: #306cc4;
            color: #151515;
            font-size: 23px;
            padding: 0px 2px 0px 2px;
        }

            .topmats-table .amount-icon i:hover {
                background: rgb(255, 0, 165);
            }

    .topmats-table .product-description {
        font-weight: 800;
    }

    .topmats-table .non-border {
        border-bottom: none;
    }

    .topmats-table .sum-border {
        border-top: 2px solid #ccc;
        padding-top: 15px;
    }

.plugin-order-waiting {
    border-left: 5px solid #FFCC33 !important;
}

.plugin-order-approved {
    border-left: 5px solid #339900 !important;
}

.plugin-order-disapproved {
    border-left: 5px solid #CC3333 !important;
}

@media only screen and (max-width: 768px) {

    .topmats-table th {
        font-size: .7em;
        padding: 2px;
        border-bottom: 2px solid #ccc;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .topmats-table td {
        font-size: .7em;
        font-weight: 500;
        padding: 2px;
        border-bottom: 1px solid #ccc;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .card-rounded-light-blue .btn-secondary {
        background-color: #DDE5F5;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        border-radius: 20px;
        width: 100%;
        margin: 5px;
        border: 1px solid #DDE5F5;
    }

    .card-rounded-dark-blue .btn-secondary {
        background-color: #DDE5F5;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        border-radius: 20px;
        width: 100%;
        margin: 5px;
        border: 1px solid #DDE5F5;
    }

    .card-rounded-dark-blue .btn-primary {
        background-color: #000;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 20px;
        width: 100%;
        margin: 5px;
        border: 1px solid #000;
    }

    .card-rounded-dark-blue .btn-primary-bottom {
        background-color: #000;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 20px;
        width: 100%;
        margin: 0px;
        padding: 10px 5px;
        border: 1px solid #000;
    }

    .card-rounded-light-blue .btn-primary-bottom {
        background-color: #000;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 20px;
        width: 100%;
        margin: 0px;
        padding: 10px 5px;
        border: 1px solid #000;
    }

    .card-rounded-light-blue .btn-primary {
        background-color: #000;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 20px;
        width: 100%;
        margin: 5px;
        border: 1px solid #000;
    }

    .section-title {
        padding-bottom: 10px;
    }

    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 1.2em;
        font-weight: 700;
        text-transform: uppercase;
        color: #151515;
    }

    .pay .pay-product-container .pay-image {
        width: 80px;
        float: left;
    }

        .pay .pay-product-container .pay-image img {
            width: 50px;
            height: 50px;
            margin: 0px 5px 2px 25px;
            padding: 5px;
            background-color: #fff;
            border: none;
        }

    .pay .pay-product-container .pay-description {
        float: left;
        padding-left: 20px;
        padding-top: 12px;
        font-size: 1em;
        font-weight: 600;
    }

    .variant .variant-product-container .clearblue {
        text-align: center;
        padding-top: 35px;
        width: 100%;
    }

    .variant .active .variant-product-container {
        border-radius: 20px;
        border: 4px solid #335CA5;
        background-color: #fff;
        text-align: center;
        height: 150px;
        position: relative;
        font-size: .85em;
    }

    .variant .variant-product-container {
        border-radius: 20px;
        border: none;
        background-color: #fff;
        text-align: center;
        height: 150px;
        position: relative;
        font-size:.85em;
    }

    .variant .badge-box {
        position: absolute;
        text-align: center;
        margin-top: 2px;
    }

        .variant .badge-box .badge {
            border-radius: 20px;
            text-align: center;
            background-color: #000;
            padding: 6px;
            color: #fff;
            width: 78px;
            white-space: pre-line;
        }


    .product-info .icon {
        font-size: 20px;
        color: #335CA5;
    }

    .product-info .text {
        font-weight: 500;
        color: #000;
        padding: 6px 0px 0px 40px;
        font-size:1em;
    }

    .configurator-image-container .view {
        margin: 15px 0px 28px 0px;
    }

    .preview-table {
        border: none;
        width: 250px;
        margin: 0px auto;
    }

        .preview-table .square-cell {
            width: 150px;
        }

        .preview-table .square {
            background-color: #466FB5;
            border: 1px solid #000;
            width: 100%;
            height: 100%;
            margin: 0px auto;
        }

        .preview-table .size-number-length-cell {
            width: 60px;
            padding-left:10px;
        }

        .preview-table .size-arrow-length-cell {
            padding-left: 0px;
            padding-right:10px;
        }

        .preview-table .arrow-vertical {
            display: inline;
        }

            .preview-table .arrow-vertical div {
                padding: 0px;
                margin: 0px;
            }

            .preview-table .arrow-vertical .arrow-up {
                width: 15px;
                height: 11px;
            }

            .preview-table .arrow-vertical .arrow-line {
                width: 15px;
            }

                .preview-table .arrow-vertical .arrow-line img {
                    width: 15px;
                }

            .preview-table .arrow-vertical .arrow-down {
                width: 15px;
                height: 11px;
                display: flex;
            }

        .preview-table .size-arrow-width-cell {
            text-align: center;
            display: table-cell;
        }

        .preview-table .arrow-horizontal {
            display: flex;
            width: fit-content;
            margin: auto;
        }

            .preview-table .arrow-horizontal div {
                padding: 0px;
                margin: 0px;
            }

            .preview-table .arrow-horizontal .arrow-left {
                width: 11px;
                height: 15px;
            }

            .preview-table .arrow-horizontal .arrow-line {
                width: 15px;
                width: fit-content;
            }

                .preview-table .arrow-horizontal .arrow-line img {
                    height: 15px;
                    width: 15px;
                }

            .preview-table .arrow-horizontal .arrow-right {
                width: 11px;
                height: 15px;
            }

        .preview-table .size-number-length {
            height: 100%;
            display: flex;
            justify-content: left;
            align-items: center;
            color: #fff;
            padding-left: 10px;
            font-size: .6em;
            width: fit-content;
        }

            .preview-table .size-number-length .item {
                background-color: #466FB5;
                text-align: center;
                padding: 2px;
                border-radius: 10px;
            }

        .preview-table .size-number-width {
            text-align: center;
            color: #fff;
            font-size: .6em;
        }

            .preview-table .size-number-width .item {
                background-color: #466FB5;
                text-align: center;
                padding: 2px;
                border-radius: 10px;
                margin-top: 10px;
                width: fit-content;
                margin: 0px auto;
            }

    .ship .offer-box {
        padding: 10px 15px 5px 15px;
        width: 100%;
        float: left;
        font-weight: bold;
        font-size: .9em;
        color: #000;
    }

    .outlet table tr th {
        font-size:.7em;
        font-weight:400;
    }

    .outlet table tr td {
        font-size: .7em;
        padding: 2px 2px 2px 2px;
    }

    .thickness-info .fill-icon {
        font-size: 15px;
        background-color: #335CA5;
        color: rgb(228, 235, 242);
        padding: 6px 8px;
        border-radius: 50px;
        margin: 5px 5px;
    }

    .thickness-info .none-fill-icon {
        font-size: 15px;
        background-color: rgb(228, 235, 242);
        color: #335CA5;
        padding: 6px 8px;
        border: 1px solid #335CA5;
        border-radius: 50px;
        margin: 5px 5px;
    }
}