.dp_askprice-btn {
    margin-top: 0.5rem;
    background: transparent !important;
    color: #04AFD7 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: underline;
    transition: 0.3s all;
    padding: 0px !important;
    margin: 0px !important;
}

.dp_askprice-btn:hover{
    opacity: 0.7;
}

.dp_askprice-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.dp_askprice-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.dp_askprice-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.dp_askprice-modal__box {
    position: relative;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dp_askprice-modal__title {
    margin: 10px;
    font-size: 1.25rem;
}

.dp_askprice-modal .card-header{
    position: relative;
}


.dp_askprice-modal__close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0%, -50%);
    background: none;
    border: none;
    font-size: 38px;
    color: #000000;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    color: inherit;
    opacity: 1;
    transition: 0.3s all;
}

.dp_askprice-modal__close:hover {
    opacity: 0.7;
}

.dp_askprice-form .required {
    color: #e74c3c;
}

.dp_askprice-suffix {
    font-weight: normal;
    color: #6c757d;
}

.dp_askprice-form-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dp_askprice-privacy-label {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.dp_askprice-privacy-label .form-check-input {
    margin-right: 6px;
}

.dp_askprice-recaptcha {
    min-height: 1px;
}

.dp_askprice-modal .form-group{
    margin-top: 20px;
}     


.dp_askprice-modal .form-control-label{
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-blue) !important;
    opacity: 1 !important;
}

.dp_askprice-modal .form-control{
    margin-top: 4px;
    border-radius: 24px;
    font-family: "Montserrat", "sans-serif";
    font-size: 12px;
     border: 1px solid transparent;
    background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #18DAD4 0%, #04AFD7 100%) border-box;
    margin-top: 10px;
}


#dp_askprice_product_name{
    border: 0px !important;
    padding: 0px !important;
    font-weight: 600;
} 

.dp_askprice-success {
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.dp_askprice-success__content {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px 28px;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: "Montserrat", "sans-serif";
}

.dp_askprice-success__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #04AFD7;
}

.dp_askprice-success__text {
    font-size: 13px;
    color: #555454;
    margin-bottom: 16px;
}

.dp_askprice-success__close {
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #18DAD4 0%, #04AFD7 100%);
    color: #ffffff;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.dp_askprice-success__close:hover {
    opacity: 0.85;
}