/* Product Options */
.product-option{
    margin-bottom: 1.25em;
}
.product-option-label{
    margin-bottom: 6px;
}
.product-option-label label {
    font-size: 1em;
    display: block;
    font-weight: 600;
}
.product-option .selectize-with-data .selectize-input {
    box-shadow: none;
    background: #ffffff;
    height: 48px;
    border-radius: 5px;
    padding: 14px;
    font-size: 0.937em;
    border-color: #e3e3e3;
}
.selectize-with-data .option{
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    align-items: center;
    padding: 10px;
}
.woocommerce .product-options .product-option textarea{
    height: 130px;
    border-radius: 4px;
    resize: none;
}

.option-content{
    flex: 1;
}
.option-image {
    flex: 0 0 100%;
    max-width: 60px;
}
.option-image img{
    width: 100%;
    height: auto;
}
.selectize-dropdown .selected {
    background-color: var(--sitePrimaryColor);
    color: var(--bs-black);
}

.option-title{
    font-weight: 600;
    font-size: 15px;
}

.product-option-area{
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
	max-width: 400px;
}
.width_height_mm{
	flex: 0 0 100%;
}

.area-input-group{
    flex: 1;
	border: 1px solid #e3e3e3;
    padding: 0;
    text-align: center;
	background: var(--bs-white);
    position: relative;
}
.product-options .product-option-area .area-input-group input {
    border: none;
    color: var(--sitePrimaryColor);
    font-size: 2em;
    font-weight: 900;
    line-height: 1.33;
    padding: 10px 40px 10px 10px;
    text-align: center;
    height: 80px;
}
.product-options .product-option-area .area-input-group input[type="number"] {
    -moz-appearance: textfield;
}
.product-options .product-option-area .area-input-group input[type="number"]::-webkit-inner-spin-button,
.product-options .product-option-area .area-input-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    opacity: 1 !important;
    display: block !important;
}
.area-input-error{
    font-size: 0.875em;
    color: rgb(255, 68, 0);
	font-family: var(--bodyfont);
}
.area-input-group label{
    width: 100%;
    display: block;
    padding: 5px 0;
    border-top: 1px solid #e3e3e3;
}
.area_input_plusminus {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    width: 40px;
    height: 80px;
    border-left: 1px solid #e3e3e3;
}
.area_input_plusminus a{
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
    color: var(--bs-black);
}
.area_input_plusminus a:hover{
    background: var(--sitePrimaryColor);
}
.area_input_plusminus a:focus{
    outline: none;
}
.area_input_plusminus a:last-child{
    border-bottom: 0;
}
.area_input_plusminus a svg{
    width: 18px;
    height: 18px;
}

/* Pricing Table */
.pricing-table{
    margin-bottom: 1.5em;
}
.pricing-table-header{
    background: #dedede;
    cursor: pointer;
    font-family: var(--heading_font);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.875em 1.25em;
    font-size: 1.125em;
    line-height: 1;
    border-radius: 5px;
}
.pricing-table-wrapper{
    display: none;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 1em;
    border: 1px solid #ddd;
}
.pt-row{
    padding: 12px;
}
.pt-row:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.pt-row-head .pt-col{
    font-size: 1em;
    font-weight: bold;
    font-family: var(--heading_font);
    text-transform: uppercase;
}
.pt-col{
    font-size: 0.937em;
    font-weight: 500;
    text-align: center;
}
.pt-row.active{
    box-shadow: 0 0 0 2px inset var(--sitePrimaryColor);
}






/* Antigro & Artwork */
.artwork_file_upload_wrapper,
.antigro_btn_wrapper{
    flex: 1;
}

.antigro_desing_btn,
.artwork_file_upload{
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 1em;
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1;
    position: relative;
    color: var(--bs-white);
    border: 1px solid transparent;
    transition: all 250ms ease-in-out;
    z-index: 1;
    background: var(--siteDarkBg2);
    border-radius: 12px 0 12px 0;
    text-align: center;
    height: 50px;
    align-items: center;
}
.antigro_desing_btn:hover,
.artwork_file_upload:hover{
    color: var(--bs-black);
    background: var(--sitePrimaryColor);
    border-color: var(--sitePrimaryColor);
}
.artwork_file_upload input{
    cursor: pointer;
    
}
.remove_file{
    font-size: 12px;
    background: rgb(250, 82, 4);
}
.remove_file:hover{
    background: var(--bs-black);
}