/* Custom CSS */
body,
.btn {
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1400px;
}

.c-builder {
  background-color: #FFF;
  padding: 2rem; 
}

.c-builder__header {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-bottom: 2rem;
}

.c-builder__header button {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.5rem 2rem;
}

@media screen and (max-width: 761px) {
    .c-builder__header {
        display: flex;
        flex-direction: column;
    }

    .c-builder__header button {
        width: 100%;    
    }
}

/* Tabs */
.c-builder__tabs {
  width: 100%;
}

.c-builder__tabs .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.c-builder__tabs .nav-tabs .nav-link {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  padding: .5rem 0;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.c-builder__tabs .nav-tabs .nav-link.active,
.c-builder__tabs .nav-tabs .nav-link:hover {
  background: transparent;
  border: none;
  border-bottom: 2px solid #162d54;
}

.c-builder__tabs .tab-content .tab-pane {
  padding: 0;
}

.c-builder__tabs .tab-content .tab-pane .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.c-builder__tabs .tab-content .tab-pane .row .card {
  box-shadow: none;
  padding: 0 .75rem;
  max-width: 20%;
  flex: 0 0 20%;
  margin: 0;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1101px) {
    .c-builder__tabs .tab-content .tab-pane .row .card {
        max-width: 33.333333%;
        flex: 0 0 33.333333%;
    }
}


@media screen and (max-width: 761px) {
    .c-builder__tabs .tab-content .tab-pane .row .card {
        max-width: 50%;
        flex: 0 0 50%;
    }
}


.thumbnail-image-wrapper {
  position: relative;
  background-color: #f7f8fa;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 1rem;
  padding-bottom: 0;
}

.c-builder__tabs .tab-content .tab-pane h2:not(.small):not([class^="tt-title"]):not([class^="tt-collapse"]):not([class^="tt-aside"]) {
    font-family: 'Inter', sans-serif !important;
    padding: 0;
    margin: 0 !important;
    margin-bottom: 2rem !important;
    letter-spacing: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    text-align: left !important;
}

.c-builder__tabs .tab-content .tab-pane .row .card.active {
    border: none;
}

.c-builder__tabs .tab-content .tab-pane .row .card.active .thumbnail-image-wrapper {
    border: 3px solid #162d54;
    background-color: #FFF;
}

.thumbnail-image-wrapper::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.thumbnail-image {
  position: absolute;
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
}

.c-builder__tabs .tab-content .tab-pane .row .card h6,
.c-builder .modal-body .row > div h6 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  font-family: 'Inter', sans-serif !important;
  max-width: 80%;
  margin: 0;
}

.c-builder .modal-body .row>div h6 {
    max-width: 100%;
    margin-top: 2rem;
    padding-top: 1rem;
}

.modal-menu h3:not([class^="tt-title"]):not([class^="tt-collapse"]):not([class^="tt-aside"]) {
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif !important;
    font-weight: bold;
}

.modal-menu .modal-dialog {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.modal-menu .modal-body .container {
    padding: 0;
}

.modal-menu .modal-body:not(.no-background) {
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 2rem !important;
}

.modal-menu .nav-tabs {
    border: none;
}

.modal-menu .modal-footer {
    background-color: #f7f8fa;
    border-radius: 5px;
    padding: 1rem 2rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.modal-menu .modal-dialog .nav-link {
    text-transform: uppercase;
    font-size: 12px;
    height: unset;
    max-height: unset;
    border-radius: 5px;
    background-color: #e7eaf0;
}

.modal-menu .modal-dialog .nav-link:hover {
    background-color: #162d54;
    color: #FFF;
}

.c-builder__tabs .tt-price,
.c-builder .modal-body .row>div .tt-price {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #87909E;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.c-builder .modal-body .row>div .tt-price {
    font-size: 12px;
}

.c-builder .modal .modal-header button::before{
  display: none;
}

.c-builder .modal.show .modal-dialog,
.c-builder .modal.in .modal-dialog {
  max-width: 800px;
  width: 100%;
}

.c-builder .modal-body {
    padding: 0;
}

.c-builder .modal-body .row {
    margin: 0;
}

.c-builder .modal .modal-body:not(.no-background) {
    background-color: #f7f8fa;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.c-builder .modal .modal-footer  {
    background-color: #e7eaf0;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.c-builder .modal .modal-footer button,
.tt-shopcart-table-02 button,
.modal-menu .modal-footer button {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5;
    min-height: unset;
    padding: 10px 20px;
    height: unset;
}

.c-builder .modal-body .row > div:first-child {
    width: 50%;
    flex: 0 0 50%;
    margin: 0;
    padding: 2rem;
    background-color: #FFF;
}

.c-builder .modal-body .row>div:last-child {
    flex: 1;
    flex-grow: 1;
    padding: 2rem;
    max-width: 100%;
}

.c-builder .modal-body .row > div h5 {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 1rem !important;
}

.c-builder ul.tt-options-swatch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    margin-bottom: 2rem;
}
.c-builder ul.tt-options-swatch li {
    margin: 0;
}
.c-builder ul.tt-options-swatch li a:not(.options-color) {
    font-size: 12px;
    line-height: 1;
    border-width: 600px;
    text-transform: uppercase;
    color: #152D55;
    font-weight: 500;
    padding: 10px 15px;
    font-family: 'Inter', sans-serif !important;
    min-height: unset;
    min-width: unset;
    border-radius: 3px;
    cursor: pointer;
    background-color: #FFF;
    border: 1px solid #FFF;
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-builder ul.tt-options-swatch li a:not(.options-color):hover {
    border: 1px solid #152D55;
}

.c-builder ul.tt-options-swatch li.active a:not(.options-color) {
    background-color: #152D55;
    border-color: #152D55;
    color: #FFF;
}

.c-builder .tt-shopcart-table-02 table tr {
    border-top: 1px solid rgba(100, 100, 100, 10%);
    padding: 1rem 0;
}

.tt-shopcart-table-02 table td:nth-child(2) {
    padding-left: 2rem;
}

.c-builder .tt-product-img {
    position: relative;
    background-color: #f7f8fa;
    border-radius: 5px;
    padding: 1rem;
    overflow: hidden;
}

.c-builder .tt-product-img::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
    inset: 0;
}

.c-builder .tt-product-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    mix-blend-mode: multiply;
    max-width: 100%;
}

.tt-shopcart-table-02 table {
    margin-bottom: 2rem;
}
.tt-shopcart-table-02 .tt-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: bold;
    margin: 0;
}

.tt-shopcart-table-02 .tt-title p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
    opacity: 0.6;
    margin-top: 0.5rem;
}

.c-builder #summary-accordion {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 2rem;
}

.c-builder #summary-accordion .card {
    box-shadow: none;
    margin: 0;
}

.c-builder #summary-accordion .card-header {
    background-color: transparent;
    padding: 1rem 0;
    border-radius: 0;
    border-bottom: 3px solid #162d54;
}

.c-builder #summary-accordion .card-header .row {
    align-items: center;
}

.c-builder #summary-accordion .card-header h3,
.c-builder #summary-accordion .card-header h4 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0;
    bottom: unset !important;
    line-height: 1.2;
}

@media screen and (max-width: 500px) {
 
    .c-builder #summary-accordion .card-header h3,
    .c-builder #summary-accordion .card-header h4 {
        font-size: 1rem;
    }
}

.c-builder #summary-accordion .card-body {
    padding: 1rem 0;
    border-bottom: 3px solid #162d54;
}

.c-builder #summary-accordion .card-body table {
    margin: 0;
}

.c-builder #summary-accordion .card-body table tr:first-child {
    border: none;
}

.c-builder #summary-accordion .card-body table tr:last-child {
    border-bottom: none;
}

.c-builder .tab-pane > div > label {
    padding: 0;
}

.tab-pane#review button.m-2 {
    padding: 1.5rem;
    font-weight: bold;
    letter-spacing: 0;
    min-height: unset;
    max-height: unset;
    height: unset;
}

#shopify-section-footer-template footer {
  margin-top: 0;
}

.modal-club .modal.show,
.modal-menu.show,
.modal-order.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 761px) {
 .c-builder.modal-club .modal-body > .row > .col-md-6.col-sm-12 {
    width: 100% !important;
    flex: 0 0 100% !important;
 }

@media (max-width: 789px){
  .tt-shopcart-table-02 table td:nth-child(3) {
      display: table-cell !important;
  }
}