/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
    --company-color: #ffc451;
}

.container-fluid {
    width: 100%;
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a:link, a:visited {
    outline: none;
}

a:link:active, a:visited:active {
    outline: none;
}

a, a:active, a:focus {
    outline: none !important;
}

a:focus {
    box-shadow: none !important;
}

input:focus {
    box-shadow: none !important;
}

textarea:focus {
    box-shadow: none !important;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: var(--company-color);
    text-decoration: none;
}

#accesspanel .login {
    direction: rtl;
    text-align: right;
}

.btn-outline-danger {
    color: #c00;
    border-color: #c00;
}

.btn-outline-danger:hover {
    background-color: #c00;
    border-color: #c00;
}

.bg-ededed {
    background-color: #ededed !important;
}

.nav-link {
    color: #444;
}

.nav-link.show {
    border-bottom: 3px solid var(--company-color);
}

.nav-link:focus, .nav-link:hover {
    color: var(--company-color) !important;
}

/*.nav-link:focus {*/
/*    border-bottom: 3px solid #cc0000;*/
/*}*/

/*p {*/
/*    direction: rtl;*/
/*}*/

button {
    box-shadow: none !important;
}

input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]:hover,
input[type="number"]:focus {
    -moz-appearance: number-input;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-check-input:focus , .form-select:focus {
    box-shadow: none;
}

* {
    scrollbar-width:thin;
    scrollbar-color:#eee,transparent
}
::-webkit-scrollbar {
    width:10px;
    background-color:transparent
}
::-webkit-scrollbar-track {
    background:#eee;
    background-color:transparent
}
::-webkit-scrollbar-thumb {
    background-color:#eee;
    border-radius:0
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #000000;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px rgba(35, 35, 35, 0);
}

.textLeft {
    text-align: left !important;
}

.textRight {
    text-align: right !important;
}

.textCenter {
    text-align: center !important;
}

.leftFloat {
    float: left !important;
}

.rightFloat {
    float: right !important;
}

.font-bold {
    font-weight: bold !important;
}

.cursor-pointer {
    cursor: pointer;
}

.ltr {
    direction: ltr !important;
}

.rtl {
    direction: rtl !important;
}

.overflowXHidden {
    overflow-x: hidden !important;
}

.imgResponsive {
    width: 100%;
    height: auto;
}

.mt-4-5 {
    margin-top: 2rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

.mt-7 {
    margin-top: 5rem !important;
}

.pt-7 {
    padding-top: 5rem !important;
}

.pb-7 {
    padding-bottom: 5rem !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

@font-face {
    font-family: 'yekan';
    src: url('../fonts/IranSans/eot/IRANSansWeb(FaNum).eot');
    src: url('../fonts/IranSans/eot/IRANSansWeb(FaNum).eot?#iefix') format('embedded-opentype'),  /* IE6-8 */
    url('../fonts/IranSans/woff2/IRANSansWeb(FaNum).woff2') format('woff2'),  /* FF39+,Chrome36+, Opera24+*/
    url('../fonts/IranSans/woff/IRANSansWeb(FaNum).woff') format('woff'),  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('../fonts/IranSans/ttf/IRANSansWeb(FaNum).ttf') format('truetype');
}

@font-face {
    font-family: "font-awesome4.7.0";
    src: url('../fonts/font-awesome4.7.0/css/fontawesome-webfont.ttf') format("truetype");
}

body {
    font-family: 'yekan' !important;
}

.selectProduct {
    color: #000 !important;
}

.selectProduct:hover {
    color: var(--company-color) !important;
}

body #main {
    z-index: 2;
    /*box-shadow: 0 0 20px rgba(0, 0, 0, .07);*/
    /*box-shadow: 0 0 20px rgba(0, 0, 0, .01);*/
    /*height: 100vh;*/
}

#explainofproduct #descriptionofproduct {
    text-align: justify;
    line-height: 35px;
    padding: 0 30px;
}

.topHeader {
    background-color: #ededed;
    height: 35px;
    color: black;
    line-height: 35px;
    font-family: 'yekan';
    font-size: 10pt;
    z-index: 1000;
}
#topHeader #cart {
    line-height: 0.5 !important;
}

.parentDiv{
    position: relative;
}

.parentDiv .imageCol {
    height: 500px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.parentDiv .textCol {
    direction: rtl;
    text-align: right;
    background-color: #fff;
    height: auto;
    padding: 40px;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .parentDiv .textCol {
        position: absolute;
        top: 60px;
        left: 50px;
    }
}

@media (max-width: 992px) {
    .parentDiv .textCol {
        padding: 0 15px;
    }
    .parentDiv .imageCol {
        height: 200px;
    }
}

#myModal .modal-footer .submitBtn {
    background-color: var(--company-color);
    color: #fff;
}

#flush-headingTen .accordion-button:not(.collapsed) {
    color: #747474;
    background-color: #fff;
}

#flush-headingTen .accordion-button:after {
    margin-right: 10px;
    margin-left: 10px;
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.8rem;
}

.parentDiv .textCol h2 {
    border-bottom: 2px solid #cc0000;
    border-top: 2px solid #cc0000;
    color: #cc0000;
    padding: 10px;
}

.parentDiv .textCol p {
    color: #434346;
    line-height: 1.9em;
    text-align: justify;
    font-size: 15px;
}

.submit-request {
    border-color: #cc0000 !important;
    width: 170px;
    border-radius: 4px;
    background: linear-gradient(to right, #cc0000, #cc0000) !important;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    padding: 8px;
    transition: all 0.4s;
    cursor: pointer;
    margin: 5px;
    height: 45px;
    float: left;
}

.submit-request.continueBtn {
    width: 100px;
    font-size: 14px;
    height: 35px;
    padding: 5px !important;
    line-height: 23px;
}

.submit-request span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.4s;
    text-decoration: none;
    color: #FFFFFF;
}

.submit-request span::after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -20px;
    transition: 0.5s;
}

.submit-request:hover span {
    padding-left: 25px;
}

.submit-request-link:focus {
    color: #FFFFFF;
}

.submit-request:hover span:after {
    opacity: 1;
    right: 0;
}

.button-effect {
    padding: 30px 0;
}
.button-effect a {
    margin-right: 17px;
    background-color: #cc0000;
}

/* button styles !!!YOU NEED THEM
!!!ALSO YOU NEED TO ADD FONTWESOME */
.effect {
    text-align: center;
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    /* background-color: - add your own background-color */
    /* put your font-family */
    font-size: 14px;
    padding: 8px 0;
    width: 100px;
    border-radius: 4px;
    overflow: hidden;
}

/* effect-5 styles */
.effect.effect-5 {
    transition: all 0.2s linear 0s;
}
.effect.effect-5:before {
    font-family: FontAwesome;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    height: 100%;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0, 1);
    transition: all 0.2s linear 0s;
}
.effect.effect-5:hover {
    text-indent: 30px;
    color: white;
}
.effect.effect-5:hover:before {
    transform: scale(1, 1);
    text-indent: 0;
}
.effect.effect-6 {
    transition: all 0.2s linear 0s;
}
.effect.effect-6:before {
    font-family: FontAwesome;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    height: 100%;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0, 1);
    transition: all 0.2s linear 0s;
}
.effect.effect-6:hover {
    text-indent: -30px;
    color: white;
}
.effect.effect-6:hover:before {
    transform: scale(1, 1);
    text-indent: 0;
}

/*.carousel-indicators [data-bs-target] {*/
/* box-sizing: content-box;*/
/* flex: 0 1 auto;*/
/* width: 10px; !* change width *!*/
/* height: 10px; !* change height *!*/
/* padding: 0;*/
/* margin-right: 3px;*/
/* margin-left: 3px;*/
/* text-indent: -999px;*/
/* cursor: pointer;*/
/* background-color: #fff;*/
/* background-clip: padding-box;*/
/* border: 0;*/
/* border-top: 10px solid transparent;*/
/* border-bottom: 10px solid transparent;*/
/* opacity: .5;*/
/* transition: opacity .6s ease;*/
/* border-radius: 100%; // !* add border-radius *!*/
/*}*/

#productDetail {
    padding: 0;
    margin: 3rem 0;
}

#productDetail div {
    width: 100%;
    height: 85px;
    background-color: rgba(0,0,0,0.05);
}

#productDetail span {
    display: block;
    text-align: center;
    line-height: 80px;
    font-weight: 500;
    font-size: 20pt;
    color: #606060;
}

.align-items-start {
    margin-bottom: 5rem;
}

.nav-pills .nav-link.active {
    color: #606060;
    background-color: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-left-color: transparent;
    border-radius: 0 8px 8px 0;
}

.nav-pills .nav-link {
    border-radius: 0;
    /*border-left: 1px solid #e5e5e5;*/
    color: #606060;
    padding: 17px 5px;
    text-align: right;
}

.nav-pills .nav-link:hover {
    color: #cc0000;
}

.etab-icon-wrapper {
    margin-left: 10px;
}

.fa-cog:before {
    font-family: 'font-awesome4.7.0';
    content: '/f013';
}

.fa-object-ungroup:before {
    font-family: 'font-awesome4.7.0';
    content: '/f248';
}

.fa-tasks:before {
    font-family: 'font-awesome4.7.0';
    content: '/f0ae';
}

.fa-plus-circle:before {
    font-family: 'font-awesome4.7.0';
    content: '/f055';
}

.fa-download:before {
    font-family: 'font-awesome4.7.0';
    content: '/f019';
}

#v-pills-tabContent table {
    color: #000;
    --bs-table-hover-color:#000;
}

.tab-pane {
    padding: 0 25px;
}

.swatchContainer {
    height: 135px;
    width: 125px;
    display: inline-block;
}

.swatchContainer i {
    text-decoration: none;
    font-style: normal;
    display: block;
    text-align: center;
    font-size: .75em;
}

.swatchContainer span {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    display: block;
    box-shadow: 1px 5px 12px rgba(0,0,0,0.35);
    margin: 20px;
    text-align: center;
}

.swatchContainer span:hover {
    transform: scale(1.2);
}

.figure {
    cursor: pointer;
    padding: 25px;
}

.figure:before {
    line-height: normal;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    font-size: 22px;
    text-decoration: none;
    font-family: "font-awesome4.7.0";
    display: inline-block;
    content: "\f100";
    position: absolute;
    left: 24px;
    bottom: 30px;
    z-index: 2;
    color: #fff;
}

.figure .figure-img {
    -webkit-filter: brightness(100%);
}

.figure:hover {
    -webkit-filter: brightness(50%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 0.5s ease;
}

.figure-caption {
    font-size: 90%;
    color: #6c757d;
    border-bottom: 1px solid #241e4633;
    padding: 10px;
    text-align: center;
    direction: rtl;
    width: 90%;
    height: 64.2px;
}

@media screen and (max-width: 766px) {
    .product-collection .figure {
        text-align: center !important;
    }
}

@media screen and (max-width: 990px) {
    .figure .figure-img {
        padding: 0;
    }
}

.catalog .catalog-image figcaption {
    line-height: 21px;
    font-size: 14px;
    border: unset;
    display: inline-block;
    padding: 0;
}

.link-of-download a {
    text-decoration: none;
    color: #241e46;
    font-size: 14px;
}

.cadfile-image {
    text-align: center;
}

figure .cadfile-image img {
    padding-top: 15px;
}

.cadlink-of-download {
    margin-top: 5px;
    text-align: center;
    direction: rtl;
}

.cadlink-of-download a {
    text-decoration: none;
    color: #241e46;
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .cadlink-of-download {
        text-align: right;
    }
    .figure:before {
        left: 0;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        width: 24%;
    }
}

.tab-content {
    border-right: 1px solid #e5e5e5;
    padding-right: 1rem;
    min-height: 270px;
}

.design {
    color: #fff;
}

.summeryRow {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.summeryRow > * {
    width: 50%;
}

.summeryCol .summery {
    font-size: 10pt;
    color: #000;
}

.summeryCol .answer {
    font-size: 10pt;
    color: rgba(68, 68, 68, 0.86);
}

#itemNoInput {
    border: none;
    cursor: pointer;
    background-color: #fbfbfb;
    width: 145px;
    color: rgba(68, 68, 68, 0.86);
}

#itemNoInput:hover {
    color: var(--company-color);
}

#itemNoInput:focus-visible {
    border: 1px solid var(--company-color);
    outline: none;
}

#itemNameInput {
    border: none;
    cursor: pointer;
    background-color: #fbfbfb;
    width: 145px;
    color: rgba(68, 68, 68, 0.86);
}

#itemNameInput:focus-visible {
    border: 1px solid var(--company-color);
    outline: none;
}

#itemNameInput:hover {
    color: var(--company-color);
}

#itemCountIn {
    border: none;
    cursor: pointer;
    background-color: #fbfbfb;
    width: 145px;
    color: rgba(68, 68, 68, 0.86);
}

#itemCountIn:focus-visible {
    border: 1px solid var(--company-color);
    outline: none;
}

#itemCountIn:hover {
    color: var(--company-color);
}

.minHeightUnset {
    min-height: unset;
}

.margin-0-auto {
    margin: 0 auto;
}

.colorBlack {
    color: black !important;
}

.font-9 {
    font-size: 9pt !important;
}

.font-10 {
    font-size: 10pt !important;
}

.font-10-5 {
    font-size: 10.5pt !important;
}

.font-11 {
    font-size: 11pt !important;
}

.font-12 {
    font-size: 12pt !important;
}

.font-13 {
    font-size: 13pt !important;
}

.font-14 {
    font-size: 14pt !important;
}

.switchColor {
    min-height: 50px;
    text-align: right;
    font-size: 10.5pt;
    display: inline;
    margin-right: 10px;
}

.colorTitle {
    font-size: 10pt;
    margin-top: 25px;
    margin-bottom: 12px;
}

.displayNone {
    display: none;
}

.displayBlock {
    display: block;
}

.insideColorCol {
    padding: 0;
    position: relative;
}

.width150 {
    width: 150px;
}

.optionSelectAcc {
    text-align: right;
    font-size: 11pt;
}

.inputParameter {
    width: 40px;
    text-align: center;
    height: 20px;
    font-size: 10.5pt;
    /*border: 1px solid #ccc;*/
    font-weight: 500;
    padding: 0;
    border: none;
    cursor: pointer;
}

.inputParameter:hover {
    color: #ce1b1b;
}

.modalDivSize {
    margin: 20px auto;
}

.modalDivSizeInput {
    margin-bottom: 8px;
}

.rangeNumber {
    color: #6c757d;
    font-size: 10pt;
}

.fontSize1-5rem {
    font-size: 1.5rem;
}

.backgroundGray {
    background-color: #fbfbfb;
}

.leftFloat {
    float: left;
}

.divPulse {
    text-align: center;
    width: fit-content;
    padding-left: 25px;
}

.pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    animation: animate-pulse 2s linear infinite;
    margin: auto;
}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 71, 148, 0.7), 0 0 0 0 rgba(0, 71, 148, 0.7);
    }
    40% {
        box-shadow: 0 0 0 25px rgba(0, 71, 148, 0.0), 0 0 0 0 rgba(0, 71, 148, 0.7);
    }
    80% {
        box-shadow: 0 0 0 25px rgba(0, 71, 148, 0.0), 0 0 0 20px rgba(0, 71, 148, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 71, 148, 0.0), 0 0 0 20px rgba(0, 71, 148, 0);
    }

}

.divPulse .pulse img {
    margin-bottom: 0;
    vertical-align: unset;
    margin-top: 4px;
}

.rowPulse .form-check {
    line-height: 65px;
    font-size: 10.5pt;
}

.rowPulse .form-check input {
    margin-top: 25px;
}

@media screen and (max-width: 500px){
    .form-check #termsSpan {
        font-size: 10pt;
    }
    #downloadTerms {
        width: 45px !important;
    }
}

#detailCol {
    /*overflow-y: scroll;*/
    /*height: 850px;*/
    /*direction: ltr;*/
}

#detailCol #accordionPanelsStayOpenExample {
    /*direction: rtl;*/
}

.card .card-body #code {
    box-shadow: none;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
#allProducts .col, #allProducts .col .card , #portfolio .isotope-item , #portfolio .isotope-item img {
    transition: all ease-in-out 0.4s;
}

#portfolio .isotope-item .parentDiv {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#portfolio .isotope-item img {
    max-height: 140px;
    height: auto;
}

#allProducts .col:hover , #portfolio .isotope-item:hover {
    transform: translateY(-5px);
}

#allProducts .col .card:hover , #portfolio .isotope-item:hover .parentDiv {
    box-shadow: 0 0 10px #ccc;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.c-go-top {
    background: none repeat scroll 0 0 padding-box #cc0000;
    bottom: 100px;
    border: 1px solid #cc0000;
    border-radius: 4px;
    color: #eee;
    display: none;
    opacity: 1;
    font-size: 12px;
    padding: 10px;
    position: fixed;
    left: 5%;
    text-decoration: none;
    z-index: 999;
}

.c-go-top:hover,
.c-go-top:focus,
.c-go-top:active,
.c-go-top:visited {
    color: #fff;
    outline: 0;
    text-decoration: none;
    opacity: 0.8;
}

#designer {
    margin-top: 80px;
}

#designer .designerDes {
    font-size: 12pt;
    padding: 0 20px;
}

#designer .designerDes p {
    text-align: justify;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.backBread {
    float: left;
    margin-top: 10px;
    line-height: 44px;
}

.breadcrumb-item + .breadcrumb-item::before {
    padding-right: .5rem;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 5px;
    font-size: 20px;
    font-weight: 600;
    margin: 0 10px;
    line-height: 1;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: #cc0000;
}

.portfolio .portfolio-filters li.filter-active {
    border-bottom: 3px solid #c00;
}

/*.portfolio .portfolio-filters li:first-child {*/
/*    margin-left: 0;*/
/*}*/

/*.portfolio .portfolio-filters li:last-child {*/
/*    margin-right: 0;*/
/*}*/

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-item {
    position: relative;
}

.portfolio-filters img {
    width: 50px;
    height: auto;
}

/*--------------------------------------------------------------
# Item Options
--------------------------------------------------------------*/
#itemOptions .typeOpening , .itemOptions .typeOpening {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    transition: 0.3s;
    cursor: pointer;
    height: 100%;
}

#itemOptions .typeOpening.active , .itemOptions .typeOpening.active {
    box-shadow: 0 0 5px #c00;
}

#itemOptions .typeOpening:hover , .itemOptions .typeOpening:hover {
    box-shadow: 0 0 10px #ccc;
}

#itemOptions nav {
    width: fit-content;
}

#itemOptions .nav-tabs .nav-link.active {
    border: none;
    color: #e1a738 !important;
    font-weight: 600;
    border-bottom: 3px solid var(--company-color);
}

#itemOptions .nav-tabs .nav-link:hover {
    border-top: none;
    border-left: none;
    border-right: none;
}

#itemOptions .nav-tabs .nav-link {
    border: none;
}

#itemOptions #accordionPanelsStayOpenExample .glassTitle {
    font-size: 10pt;
}

#itemOptions #accordionPanelsStayOpenExample .accordion-item {
    border: none;
    margin-bottom: 35px;
}

#itemOptions #accordionPanelsStayOpenExample .accordion-button {
    padding: 1rem .25rem;
    width: fit-content;
    border-bottom: 2px solid #00305E;
}

#itemOptions #accordionPanelsStayOpenExample .accordion-button::after {
    display: none;
}

#itemOptions #accordionPanelsStayOpenExample .accordion-button:not(.collapsed) {
    color: #4B4B4B;
    background-color: white;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/*--------------------------------------------------------------
# Configuration Page
--------------------------------------------------------------*/
#configurationNav {
    flex-direction: row;
    overflow-x: auto;
}

#configurationNav .nav-item {
    display: inline-block;
}

.scrolling-navbar {
    white-space: nowrap;
    position: sticky;
    background-color: #f7f7f7;
    height: 60px;
}

#configurationNav .nav-link {
    font-size: 11pt;
    padding-top: 13px;
    padding-bottom: 13px;
    color: #444;
}

.breadTitle {
    font-size: 9.5pt;
}

@media (min-width: 576px) {
    #configurationNav .nav-link {
        font-size: 11.5pt;
    }
    .breadTitle {
        font-size: 10pt;
    }
}

@media (min-width: 768px) {
    #configurationNav .nav-link , .breadTitle {
        font-size: 12pt;
    }
    .breadTitle {
        font-size: 11pt;
    }
}

@media (min-width: 992px) {
    #configurationNav .nav-link , .breadTitle {
        font-size: 13pt;
    }
    .breadTitle {
        font-size: 11pt;
    }
}

@media (min-width: 1200px) {
    #configurationNav .nav-link , .breadTitle {
        font-size: 13pt;
    }
    .breadTitle {
        font-size: 11pt;
    }
}

#configurationNav .nav-link.active {
    border-bottom: 3px solid var(--company-color);
    color: var(--company-color); !important;
}

.detailConfig {
    width: 55px;
    height: 55px;
    display: block;
    /*margin: 0 0 15px 0;*/
    border: 1px solid #bbb;
    border-radius: 5px;
    cursor: pointer;
}

.detailConfigImg {
    display: block;
    /*margin: 0 0 15px 0;*/
    cursor: pointer;
    width: 100px;
    height: auto;
}

.configTitle {
    border-bottom: 3px solid var(--company-color);
    padding-bottom: 13px;
    width: fit-content;
}

.effect {
    text-align: center;
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    background-color: #cc0000;
    font-size: 15px;
    padding: 6px 0;
    width: 90px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.effect:hover {
    background-color: #494949;
}

#toggleColorDiv .toggle:focus {
    box-shadow: none;
}

#toggleColorDiv .toggle > .toggle-group > .toggle-off , #toggleColorDiv .toggle > .toggle-group > .toggle-on {
    line-height: 10px !important;
    font-size: 10pt !important;
}

#titleTD {
    font-size: 13pt;
}

#answerTD {
    font-size: 14pt;
}

#totalPrice {
    border: none;
    width: 100%;
}

/*--------------------------------------------------------------
# Button Styles
--------------------------------------------------------------*/
.styleButton , #addToCart {
    display: inline-block;
    border-radius: 5px;
    background-color: var(--company-color);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 12pt;
    padding: 0 16px;
    width: 120px;
    transition: all 0.5s;
    cursor: pointer;
    height: 2.7rem;
}

#addToCart {
    height: 3.2rem;
}

.styleButton span , #addToCart span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.styleButton span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -15px;
    right: unset;
    transition: 0.5s;
}

.styleButton:hover span {
    padding-left: 15px;
    padding-right: 0;
}

.styleButton:hover span:after , #addToCart:hover span:after {
    opacity: 1;
    left: 0;
    right: unset;
}

#addToCart span:after {
    content: "\f1ea";
    font-family: "FontAwesome";
    position: absolute;
    opacity: 0;
    top: 0;
    left: -25px;
    right: unset;
    transition: 0.5s;
}

#addToCart:hover span {
      padding-left: 30px;
      padding-right: 0;
  }

#techInfo1Title {
    border-bottom: 1px solid #ccc;
}

#installCode {
    cursor: pointer;
    display: inline;
    padding-right: 0;
}

#installCode:hover {
    color: var(--company-color);
}

#installCode option {
    color: black;
}

.configVal {
    color: rgba(68, 68, 68, 0.86);
    font-size: 10pt;
}

.editIcon:hover {
    fill: var(--company-color);
}

.editIcon2 {
    cursor: pointer;
}

.editIcon2:hover {
    fill: var(--company-color);
}

#technicalInfoBtn , #technicalInfoBtn1 {
    padding-left: 0;
    padding-right: 0;
    background-color: #f7f7f7;
    margin: 7px 0;
}

/*#technicalInfoBtn::after , #technicalInfoBtn1::after {*/
/*    margin-left: 15px;*/
/*    margin-right: 15px;*/
/*}*/

#technicalInfo .accordion-button:not(.collapsed) , #technicalInfo1 .accordion-button:not(.collapsed) {
    color: rgba(68, 68, 68, 0.86);
    /*background-color: unset !important;*/
    box-shadow: none;
}

#shapePage .nav .nav-item button.active {
    background-color: transparent;
    color: #e1a738 !important;
    border: none;
}

#shapePage .nav .nav-item button.active::after {
    content: "";
    border-bottom: 4px solid var(--company-color);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 5px 5px 0 0 !important;
}

.descTitle {
    font-size: 10.5pt;
    color: #707070;
    margin: 0 3px;
}

#viewSide {
    color: #707070;
    font-size: 11pt;
}

#viewButton {
    color: #2260ff;
    background: unset;
    border: unset;
}

/*--------------------------------------------------------------
# Toggle Color
--------------------------------------------------------------*/
/* From Uiverse.io by 3HugaDa3 */
.checkbox-wrapper {
    --checkbox-size: 22px;
    --checkbox-color: #2260ff;
    --checkbox-shadow: rgba(34, 96, 255, 0.3);
    --checkbox-border: rgba(34, 96, 255, 0.7);
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 10px;
}

.checkbox-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-wrapper .checkmark {
    position: relative;
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    /*border: 2px solid #b3b3b3;*/
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    /*box-shadow: 0 0 15px var(--checkbox-shadow);*/
    overflow: hidden;
}

.checkbox-wrapper .checkmark::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--checkbox-color), #2260ff);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0) rotate(-45deg);
}

.checkbox-wrapper input:checked ~ .checkmark::before {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.checkbox-wrapper .checkmark svg {
    width: 0;
    height: 0;
    color: #fff;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.checkbox-wrapper input:checked ~ .checkmark svg {
    width: 18px;
    height: 18px;
    transform: rotate(360deg);
}

.checkbox-wrapper:hover .checkmark {
    border-color: var(--checkbox-color);
    transform: scale(1.1);
    box-shadow:
        0 0 20px var(--checkbox-shadow),
        0 0 40px var(--checkbox-shadow),
        inset 0 0 10px var(--checkbox-shadow);
}

.checkbox-wrapper input:checked ~ .checkmark {
    animation: pulse 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--checkbox-shadow);
    }
    50% {
        transform: scale(0.9);
        box-shadow:
            0 0 30px var(--checkbox-shadow),
            0 0 50px var(--checkbox-shadow);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--checkbox-shadow);
    }
}

.checkbox-wrapper .label {
    margin-right: 15px;
    margin-left: 0;
    color: #474747;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s;
}

.checkbox-wrapper:hover .label {
    opacity: 1;
    transform: translateX(-5px);
}


/*--------------------------------------------------------------
# Threshold
--------------------------------------------------------------*/
/* From Uiverse.io by Darlley */
.checkbox-wrapper-16 *,
.checkbox-wrapper-16 *:after,
.checkbox-wrapper-16 *:before {
    box-sizing: border-box;
}

.checkbox-wrapper-16 {
    margin: 1rem 0;
}

.checkbox-wrapper-16 .checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile {
    border-color: var(--company-color);
    /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);*/
    color: var(--company-color);
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--company-color);
    border-color: var(--company-color);
    color: #fff;
    content: "✓";
}

.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-icon,
.checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-label {
    color: var(--company-color);
}

.checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile {
    /*border-color: #2260ff;*/
    /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;*/
}

.checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-wrapper-16 .checkbox-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10rem;
    min-height: 2.7rem;
    border-radius: 0.5rem;
    border: 2px solid #b3b3b3;
    background-color: #fff;
    /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);*/
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
    font-size: 12pt;
}

.checkbox-wrapper-16 .checkbox-tile:before {
    content: "";
    font-size: 12px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b3b3b3;
    border-radius: 50%;
    top: 0.55rem;
    left: 1rem;
    right: unset;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
}

.checkbox-wrapper-16 .checkbox-tile:hover {
    /*border-color: #2260ff;*/
}

.checkbox-wrapper-16 .checkbox-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-wrapper-16 .checkbox-icon {
    transition: 0.375s ease;
    color: #494949;
}

.checkbox-wrapper-16 .checkbox-icon svg {
    width: 3rem;
    height: 3rem;
}

.checkbox-wrapper-16 .checkbox-label {
    color: #707070;
    transition: 0.375s ease;
    /*text-align: center;*/
    width: 75%;
}

/*--------------------------------------------------------------
# Delete
--------------------------------------------------------------*/
/* From Uiverse.io by andrew-demchenk0 */
#deleteButton .button {
    position: relative;
    width: 11rem;
    height: 2.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #cc0000;
    background-color: #e50000;
    overflow: hidden;
    border-radius: 5px;
    direction: ltr;
}

#editButton .button {
    position: relative;
    width: 7rem;
    height: 2.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #6c757d;
    background-color: #6c757d;
    overflow: hidden;
    border-radius: 5px;
    direction: ltr;
}

#deleteButton .button, .button__icon {
    transition: all 0.3s;
}

.button__text , #editButton .button {
    transition: all 0.5s;
}

#deleteButton .button .button__text , #editButton .button .button__text {
    transform: translateX(15px);
    color: #fff;
    font-weight: 500;
    font-size: 10pt;
}

#deleteButton .button .button__icon {
    position: absolute;
    transform: translateX(135px);
    height: 100%;
    width: 39px;
    background-color: #cc0000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#editButton .button .button__icon {
    position: absolute;
    transform: translateX(75px);
    height: 100%;
    width: 39px;
    background-color: #5d6063;
    display: flex;
    align-items: center;
    justify-content: center;
}

#deleteButton .button .svg , #editButton .button .svg {
    width: 20px;
}

#deleteButton .button:hover {
    background: #cc0000;
}

#editButton .button:hover {
    background: #5d6063;
}

#deleteButton .button:hover .button__text , #editButton .button:hover .button__text {
    color: transparent;
}

#deleteButton .button:hover .button__icon {
    width: 11rem;
    transform: translateX(0);
}

#editButton .button:hover .button__icon {
    width: 7rem;
    transform: translateX(0);
}

#deleteButton .button:active .button__icon {
    background-color: #b20000;
}

#editButton .button:active .button__icon {
    background-color: #5d6063;
}

#editButton .editIcon:hover {
    fill: #fff;
}

#deleteButton .button:active {
    border: 1px solid #b20000;
}

#editButton .button:active {
    border: 1px solid #6c757d;
}
