/** Shopify CDN: Minification failed

Line 775:0 Unexpected "}"

**/
.cut-container {
    width: 100%;
    border: 1px solid;
    margin: 5px;
}

.cut-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 5px;
}

.cut-text p {
    margin-bottom: 0;
    padding: 5px 10px;
    background-color: rgba(0, 36, 93, 1);
    color: white;
}

.product-form__cut-item--buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.product-form__cut-item--buttons button {
    width: 48%;
}

/* .product-form__cut-item--buttons button:last-child {
    margin-left: 4%;
} */

.cut-item {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #d4d4d4;
    padding-top: 5px;
}

.cut-item:first-child {
    border: none;
}

.remove-cut_item {
    width: 30px;
}

.cut-message {
    padding: 10px 20px;
    background: rgba(253, 118, 142, 1);
    margin: 10px 5px;
    color: white;
    display: none;
}

.cut-message.active {
    display: block;
}

.cut-order div {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
}

.cart-properties__cut span.icon-property {
    position: relative;
    width: 25px;
    height: 17px;
    display: inline-block;
}

.cart-properties__cut span:last-child {
    margin-left: 4px;
}

.cart-properties__cut span svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 2px;
    left: 0px;
}

.cut-product-item {
    display: none !important;
}

.cut-item .product-form__input {
    width: auto;
}

.cut-container .btn {
    padding: 0;
}


@media (max-width: 768px) {
    .cut-item .product-form__input {
        width: 100%;
    }
}

.cut-selectors .cut-item .product-form__input {
    width: 100%;
}

#CutSelectorContainer {
    display: none;
}

.orders-section {
    background-color: #e7e7e7;
    height: 225px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 30px;
    margin-top: -50px;
}

.order-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 1200px) {
    .order-items {
        justify-content: center;
        gap: 400px;
    }
}

.order-item {
    display: flex;
    flex-direction: column;
    max-width: 350px;
}

.order-icon {
    text-align: center;
}

.order-icon img {
    width: 100%;
}

.order-text {
    margin-top: 30px;
    padding: 10px 20px;
    border-top: 1px solid #e81eb2;
}

.order-text * {
    letter-spacing: 0;
    line-height: 1.1;
    font-weight: 500;
}

@media (max-width: 750px) {
    .order-items {
        padding: 0 15px;
    }

    .orders-section {
    margin-top: 25px;
    height: 160px;
    }
  
    .order-item {
        max-width: 150px;
    }

    .order-text * {
        font-size: 12px !important;
    }
}

.site-nav {
    display: flex !important;
    flex-wrap: wrap;
}

.notification__link {
    text-align: center;
}

.notification__link a {
    text-decoration: underline;
}

.custom-btn {
    transition: all 0.2s ease;
    background: #d2d5d8;
    border:0;
    font-weight: bold;
    margin: 2rem auto;
    display: block;
    border-radius: 25px;
    position: relative;
    outline: none;
    padding: 3px;
    cursor: pointer;
    min-width: 200px;
    animation-name: button;
    animation-duration: 0.75s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
  
  .btn-text {
    color: black;
    font-size: 1rem;
    line-height: 1.2rem;
    opacity: 1;
    animation-name: button-text;
    animation-duration: 0.75s;
    animation-delay: 1.3s;
    animation-fill-mode: backwards;
  }
  
  .custom-btn:before,
  .custom-btn:after,
  .custom-btn span:before,
  .custom-btn span:after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
  }
  
  .custom-btn:before {
  /*   box-shadow: -10px -8px 20px #fff; */
    animation-name: button-before;
    animation-duration: 0.75s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
  
  .custom-btn:after {
  /*   box-shadow: 10px 8px 20px #9496B0; */
    animation-name: button-after;
    animation-duration: 0.75s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
  
  .btn-inner {
    max-width: 100%;
    position: relative;
    background: #d2d5d8;
  /*   background: linear-gradient(165deg, rgba(255,255,255,1) 0%, rgba(210,213,216,1) 50%, rgba(210,213,216,1) 95%, rgba(148,150,176,1) 100%); */
    padding: 1rem 2rem;
    display: block;
    border-radius: 25px;
    position: relative;
    animation-name: button-inner;
    animation-duration: 0.75s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
  
  .custom-btn:active .btn-text {
    font-size: 0.95rem;
  }
  
  .custom-btn:active .btn-inner:before {
     box-shadow: 4px 4px 10px inset #9496B0;
    -webkit-box-shadow: 4px 4px 10px inset #9496B0;
  }
  
  .custom-btn:active .btn-inner:after {
    box-shadow: -4px -4px 10px inset #fff;
    -webkit-box-shadow: -4px -4px 10px inset #fff;
  }
  
  @keyframes button-before {
    from {box-shadow: 0 0 0 #fff;}
    to {box-shadow: -10px -8px 20px #fff;}
  }
  
  @keyframes button-after {
    from {box-shadow: 0 0 0 #9496B0;}
    to {box-shadow: 10px 8px 20px #9496B0;}
  }
  
  @keyframes button-inner {
    from {background: #d2d5d8;}
    to {background: linear-gradient(165deg, rgba(255,255,255,1) 0%, rgba(210,213,216,1) 50%, rgba(210,213,216,1) 95%, rgba(148,150,176,1) 100%);}
  }
  
  @keyframes button {
    from {background: #d2d5d8;}
    to {background: linear-gradient(165deg, rgba(255,255,255,1) 10%, rgba(148,150,176,1) 100%);}
  }
  
  @keyframes button-text {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  @media (min-width: 750px) {
    .pagination {
        margin: 40px 40px 0 270px;
    } 
  }

  @media (max-width: 750px) {
    .notification__inner--has-link {
        padding: 0 10px;
    }
  }


.chover * {
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box
}
.chover {
    position:relative;
    display:inline-block;
    background:#fff;
    float: left;
    box-shadow:0px 2px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow:0px 2px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow:0px 2px 3px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}
.chover a {
    text-decoration:none;
}

.chover img 
{
    width:100%;height:100%;border:3px solid #fff;float:left;
    -webkit-border-image:-webkit-linear-gradient(#fff, #a9a9a9, #fff) 10 stretch;
    -o-border-image:-o-linear-gradient(#fff, #a9a9a9, #fff) 10 stretch;
    -moz-border-image:-moz-linear-gradient(#fff, #a9a9a9, #fff) 10 stretch;
    border-image:linear-gradient(#fff, #a9a9a9, #fff) 10 stretch
}

.chover
{
    transform:perspective(1000px);
    -webkit-transform:perspective(1000px);
    -moz-transform:perspective(1000px);
    -ms-transform:perspective(1000px);
    -o-transform:perspective(1000px);
}

.chover:hover
{
    transform:perspective(1200px) rotateY(-25deg) rotateX(15deg);
    -webkit-transform:perspective(1200px) rotateY(-25deg) rotateX(15deg);
    -moz-transform:perspective(1200px) rotateY(-25deg) rotateX(15deg);
    -ms-transform:perspective(1200px) rotateY(-25deg) rotateX(15deg);
    -o-transform:perspective(1200px) rotateY(-25deg) rotateX(15deg);
}

.chover, .chover:hover
{
    transition:all .6s ease-in-out;
    -webkit-transition:all .6s ease-in-out;
    -moz-transition:all .6s ease-in-out;
    -ms-transition:all .6s ease-in-out;
    -o-transition:all .6s ease-in-out;
    box-shadow: 5px 5px 15px #bbb;
}

.product-form__item--info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-form__item--info span {
    display: flex;
    width: 30px;
    margin-top: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
}

.product-form__item--info span.remove-cut_item {
    margin-left: 25px;
}

.cut-item .product-form__item--info .add-cut_item {
    display: none;
}

.product-form__item--info svg {
    width: 30px;
    height: auto;
    cursor: pointer;
}

.cut-item.active .product-form__item--info .add-cut_item {
    display: flex;
}

.cut-item.active .product-form__item--info .edit-cut_item {
    display: none;
}

.cut-item .product-form__item input {
    pointer-events: none;
}

.cut-item.active .product-form__item input {
    pointer-events: visible;
    max-width: 75px;
}

/* .cut-container.active .product-form__cut-item--buttons button {
    display: none;
} */

@media (max-width: 750px) {

    .product-form__cut-item--buttons button {
        width: 90%;
        margin: 10px auto;
    }
}


/*      Back to top button      */
#back-to-top {
    display: inline-block;
    background-color: #d8878b;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 20px;
    left: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  #back-to-top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
  }
  #back-to-top:hover {
    cursor: pointer;
    background-color: #333;
  }
  #back-to-top:active {
    background-color: #555;
  }
  #back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* Styles for the content section */
  

#shopify-section-header {
    position: sticky;
    top: 0;
    z-index: 12;
}

del.cart__item-total {
    display: none;
}

.cart__cell--total span {
    font-size: 1.2rem;
}

@media (min-width: 750px) {
    .product-single__sticky {
        position: sticky;
        top: 250px;
    }

    .template-product .page-container {
        overflow: visible;
    }

    .template-product .page-container .main-content {
        margin-top: 0;
        padding-top: 60px;
    }
}

.pt-apply {
    display: none;
}

@media (max-width: 767px) {
    .filter-menu .filter-group {
        display: none !important;
    }

    .filter-menu.pt-expand {
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: white;
        z-index: 35;
        margin: 0;
        padding: 30px 0 250px;
        top: 0;
        left: 0;
        overflow-y: auto;
    }

    .filter-menu.pt-expand .filter-group {
        display: block !important;
    }

    .filter-menu.pt-expand .filter-group:last-of-type {
        position: fixed;
        width: 100vw;
        left: 0;
        bottom: 0;
        margin: 0;
        padding: 10px;
        border-top: 1px solid;
        background: white;
    }

    .pt-expand .pt-apply {
        margin: 20px 0 !important;
    }
}

.site-nav__dropdown-desk {
    display: none;
}

@media (min-width: 750px) {
    #SiteNavParent {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .site-nav__link {
        padding: 10px;
    }
    
    .meganav__product {
        display: none;
    }
    
    .site-header .meganav.meganav--active {
        background: transparent;
    }
    
    .site-nav li {
        position: relative;
        z-index: 10;
    }
    
    .meganav__list {
        background: white;
        padding: 20px !important;
        box-shadow: 0 0 10px;
        position: absolute;
        width: max-content !important;
        left: 0px;
        top: 1px;
    }

    .meganav__link {
        padding: 0 10px;
    }

    .site-nav {
        display: none !important;
    }

    .site-nav__desk {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        z-index: 15;
        list-style: none;
    }

    .site-nav__desk-link  {
        position: relative;
        padding: 5px 10px;
    }

    .site-nav__desk-link a {
        z-index: 10;
        text-transform: uppercase;
        color: black;
    }

    .site-nav__desk-link svg {
        width: 12px;
        stroke: black;
    }

    .site-nav__desk-link svg path {
        fill: black !important;
    }

    .site-nav__desk-link:hover svg {
        stroke: #4c4a4a ;
    }

    .site-nav__desk-link:hover svg path {
        fill: #4c4a4a  !important;
    }

    .site-nav__desk-link a:hover, a.site-nav__desk-active {
        color: #4c4a4a ;
    }

    .site-nav__desk-megamenu {
        list-style: none;
        position: absolute;
        display: none;
        min-width: 200px;
        padding: 10px;
        background: #eaaeb0;
        box-shadow: 3px 3px 5px;
        z-index: 12;
        top: 30px;
        border-radius: 5px;
        border-top: 1.5px solid;
    }

    .site-nav__desk-megamenu a {
        min-width: 200px;
        display: block;
        padding: 5px;
    }

    .site-nav__desk-link:hover .site-nav__desk-megamenu {
        display: block;
    }
}

@media (max-width: 750px) {
    .site-nav__desk {
        display: none;
    }
}



/* notification */
  
.visible {
    animation: movein 0.5s ease forwards, moveout 0.5s 3s ease forwards;
}
  
#notif {
    background: rgba(253, 118, 142, 1);
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    position: fixed;
    display: flex;
    justify-content: center;
    z-index: 999;
    align-items: center;
    padding: 10px 20px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -300px;
}
  
@keyframes movein {
    from { bottom: -300px; }
    to   { bottom: 100px; }
}

@keyframes moveout {
    from { bottom: 100px; }
    to   { bottom: -300px; }
}

.site-header__cart-indicator {
    position: absolute;
    bottom: 24px;
    right: 3px;
    background-color: #d8878b;
    height: 17px;
    width: 17px;
    border-radius: 10px;
    text-align: center;
    padding-top: 2px;
    font-size: 12px;
    color: white;
}

@media (min-width: 750px) {
    .main-filter-content .grid__item {
        float: left;
        width: 25%;
        clear: unset !important;
    }
}

@media (min-width: 768px) {
    .ets_fs_app_box.grid__item {
        max-width: 100% !important;
    }
}

.optioncart_bottom_product_image_content {
    display: none !important;
}

.ets_fs_main_result_page .page-width {
    max-width: 1800px !important;
}

.ets_fs_filter_bar ul.ets_fs_list_options {
    max-height: 700px !important;
}

.grid--table{
    display: flex;
    table-layout: fixed;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
}

.notification{
    margin-left: 20px;
    width: 55%;
    z-index: -1;
}
/*
.medium-up--one-third{
    width: 14%;
    display: flex!important;
    align-items: center;
*/
}


@media only screen and (min-width: 750px){
    .medium-up--two-thirds{
        width: 25%;
    }

}

@media only screen and (max-width: 750px){

    .notification{
        display: none!important;
    }
}

.cal{
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.product-form__item:nth-child(2){
    width: 50%;
}

.product-form__item--length{
    padding: 0;
}

.ets_fs_product_img_display_box{
    background-image: unset!important;
}

.ets_fs_product_img_display_box img{
    visibility: visible;
    position: absolute;
    left: 0;
    object-fit: contain;
    object-position: center;
    opacity: 1!important;
}

.cut-text p:first-child{
    display: none;
}

.active_link{
    display: none;
}

.btn_pick{
    transition: all .2s ease;
    background: #d2d5d8;
    border: 0;
    font-weight: 700;
    margin: 2rem auto;
    display: block;
    border-radius: 25px;
    position: relative;
    outline: none;
    padding: 3px;
    cursor: pointer;
    min-width: 200px;
    animation-name: button;
    animation-duration: .75s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}



/* #side-filter-container, .pagination {
    display: none;
} */

/* .collection-container {
    min-height: 500px;
} */

/* .ets_fs_block_filter {
    position: relative;
}

.ets_fs_block_filter_body {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    box-shadow: 5px 5px 10px #ccc;
    padding: 10px;
    display: none !important;
    z-index: 2;
    background-color: white;
}

.ets_fs_block_filter_body.ets_fs_open {
    display: block !important;
}

.ets_fs_filter_header{
    border-bottom: 1px solid;
    margin-top: 20px;
} */