/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

.wpcf7 .wpcf7-form p {
    margin-bottom: 15px;
}

.wpcf7 .wpcf7-form label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-email,
.wpcf7 .wpcf7-tel,
.wpcf7 .wpcf7-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.wpcf7 .wpcf7-text:focus,
.wpcf7 .wpcf7-email:focus,
.wpcf7 .wpcf7-tel:focus,
.wpcf7 .wpcf7-textarea:focus {
    border-color: #6b2d5c;
    outline: none;
}

.wpcf7 .wpcf7-textarea {
    height: 150px;
    resize: vertical;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    margin: 10px 0;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.wpcf7 .h-captcha {
    margin: 15px 0;
}

.wpcf7 .wpcf7-submit {
    background-color: #6b2d5c;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wpcf7 .wpcf7-submit:hover {
    background-color: #532346;
}

.wpcf7 .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7 .wpcf7-response-output {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
}

.wpcf7 .wpcf7-mail-sent-ok {
    border: 2px solid #2ecc71;
    color: #2ecc71;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

.wpcf7 .wpcf7-checkbox {
    margin: 15px 0;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #6b2d5c;
    border-radius: 3px;
    margin-right: 10px;
    background-color: #fff;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked+.wpcf7-list-item-label:before {
    background-color: #6b2d5c;
    border-color: #6b2d5c;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked+.wpcf7-list-item-label:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
}