.custominput-button img,
.custominput-edit-btn img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    display: block;
    flex-shrink: 0;
	transition: 250ms ease;
}

.custominput-edit-btn img {
    transform: translateY(3px);
}

.custominput-button:hover img,
.custominput-edit-btn:hover img {
    opacity: 0.66;
}


.custominput-edit-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-right: 14px;
    display: inline-flex;
    align-items: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}



.custominput-edit-btn:hover {
	opacity: 1;
}

.custominput-button {
	opacity: 1;	
    display: flex;
    align-items: center;
    justify-content: center;
}

.custominput-button:hover {
	opacity: 0.66;	
}

.custominput-title {
    font-family: 'Bison', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #404040;
    margin-bottom: 10px;
}

.custominput-wrap {
    margin: 0 auto;
}

.custominput-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 7px;
    margin-bottom: 15px;
    font-family: Verdana, sans-serif;
}

.custominput-summary,
.custominput-row,
.custominput-form {
    display: grid;
    grid-template-columns: var(--custominput-grid-template, 1.2fr 0.8fr 0.8fr 1.4fr auto);
    align-items: center;
}

.custominput-input::placeholder {
  color: #999;
  opacity: 1;
	font-weight: 100;
}

.custominput-row {
    gap: 16px;
    padding: 6px 4px;
    font-size: 14px;
    min-width: 0;
}

.custominput-row.custominput-data {
    color: #444;
    background: #f3f3f3;
    gap: 1px;
    padding: 8px 0 6px 10px;
}

.custominput-summary {
    display: none;
    color: #444;
    background: #dddddd;
    gap: 1px;
    padding: 6px 0 6px 10px;
    font-size: 14px;
    font-weight: 900;
    margin-top: -9px;
    margin-bottom: 7px;
	border-radius: 5px;
    font-family: Verdana, sans-serif;
}

.custominput-empty {
    font-size: 14px;
    color: #777;
    padding: 6px 4px;
    font-family: Verdana, sans-serif;
}

.custominput-form {
    gap: 8px;
}

.custominput-config {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.custominput-products-editor {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custominput-product-editor-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.custominput-input,
.custominput-button,
.custominput-add-product,
.custominput-remove-product {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: Verdana, sans-serif;
    box-sizing: border-box;
    min-width: 0;
    font-weight: bold;
    color: #404040;
    border-radius: 5px;
	transition: 250ms ease;
}

.custominput-input:focus,
.custominput-button:focus,
.custominput-add-product:focus,
.custominput-remove-product:focus {
    border-color: #a9201f;
    outline: none;
}

.custominput-button {
    background: #a9201f;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0 14px;
    font-family: 'Bison';
    font-size: 20px;
    font-weight: bold;
}

.custominput-add-product,
.custominput-remove-product {
    background: #a9201f;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Bison';
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.custominput-add-product {
    align-self: flex-start;
    padding: 0 16px;
}

.custominput-remove-product {
    width: 42px;
    padding: 0;
}

.custominput-remove-product:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.custominput-feedback {
    margin: 0 0 12px;
    font-size: 13px;
    color: #a9201f;
    font-family: Verdana, sans-serif;
}

@media (max-width: 800px) {
    .custominput-summary,
    .custominput-row,
    .custominput-form {
        grid-template-columns: 1fr !important;
    }
	
	.custominput-row.custominput-data {
		padding: 8px 0 3px 10px;
	}

    .custominput-product-editor-row {
        grid-template-columns: 1fr auto;
    }
	
    .custominput-row.custominput-data > div:last-child {
        display: flex;
        justify-content: flex-end;
        transform: translateY(-8px);
    }
	
}

@media (max-width: 768px) {
    .news-text .custominput-wrap .custominput-button img {
        width: 18px !important;
        max-width: 18px !important;
        height: 18px !important;
        display: block !important;
    }
}