/**  block  **/

.ad-area {
    position: relative;
    display: flex;
    max-width: 100%;
    background: #EBEBEB;
    margin: 6px 0;
    border-radius: 4px;
    padding: 8px 0;
}

.ad-image {
    display: inline-block;
    max-width: 180px;
    margin: 0 6px;
    box-sizing: border-box;
}

.ad-title {
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    max-width: 70%;
    height: 140px;
    padding: 0 6px 0 18px;
}

.ad-link {
    position: absolute;
    right: 6%;
    bottom: 20px;
    border: none;
    text-decoration: none;
    color: black;
    border-radius: 4px;
    background: white;
    padding: 8px 4px;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #008ddf;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 141, 223, 0.25);
}

.form-control::placeholder {
    color: #999;
    opacity: 1;
}

.btn-primary {
    color: #fff;
    background-color: #008ddf;
    border-color: #008ddf;
    display: inline-block;
    padding: 12px 30px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    width: 100%;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-color: #0070b8;
    border-color: #0066a8;
    text-decoration: none;
}

.btn-primary:active {
    background-color: #005a95;
    border-color: #005085;
}

.contact-submit-btn {
    margin-top: 10px;
}

.contact-success-message {
    text-align: center;
    padding: 30px 20px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

.contact-success-message p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #155724;
}

#contact-form-modal .modal-body {
    direction: rtl;
    text-align: right;
}

#contact-form-modal .form-control {
    direction: rtl;
    text-align: right;
}

#contact-form-modal .form-control::placeholder {
    direction: rtl;
    text-align: right;
}

.contact-form-trigger {
    cursor: pointer;
}

.aside-box-product.contact-form-trigger {
    cursor: pointer;
}