/** Shopify CDN: Minification failed

Line 111:49 Unexpected "-->"

**/
.main-page-title {font-size:150%;}


#dyic {
    position: relative !important;
    width: 150px;
}

.dynamic-pricing-input-container::after {
    
    position: absolute;
    right: 2px;
    top: 2px;
    padding: 15px;
    width: 60px;
    height: 30px;
}
#dyic {
    position: relative !important;
    width: 150px;
}
.dynamic-pricing-container input {
   font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    font-style: normal;
    background: #fff;
    color: #637381;
    border: 1px solid #e8eaec;
    padding: .8em 15px;
    margin: 0;
    vertical-align: middle;
    max-width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.dynamic-pricing-container {
    max-height: 0px;
    overflow: hidden;
}

.dynamic-pricing-container-appear {
    animation: dynamicPricingAppear ease-in-out .8s forwards;
}

@keyframes dynamicPricingAppear {
    from {
        max-height: 0px;
    }
    to {
        max-height: 500px;
    }
}

.dynamic-pricing-input-fixed {
    padding: 7.5px 10px;
    border: 1px solid #b0b0b0;
    display: inline-block;
    border-radius: 4px;
}

.dynamic-pricing-input-fixed-active {
    color: #637381 !important;
    background-color: rgba(42, 181, 74, 0.1);
}

.dynamic-pricing-input-fixed-container {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.dynamic-pricing-error-message {
    color: rgb(240, 93, 93);
    height: 0;
    overflow: hidden;
    margin: 0;
  
}

.dynamic-pricing-error-message-show {
    animation: showError .2s ease-in forwards;
    padding-bottom: 25px;
}

@keyframes showError {
    from {
        height: 0;
    }

    to {
        height: 15px;
    }
}

.dynamic-pricing-input-fixed:hover {
	cursor: pointer !important;
}

@media only screen and (max-width: 768px) {
  .cart-title-right {
    display: block !important;
  }
}
 <!-- Custome variants creating purpose end code -->