/**
 * Css for Widget
 */

.form-shortcode{
    padding-top: var(--website-padding-top-bottom);
    padding-bottom: var(--website-padding-top-bottom);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.form-shortcode .website-title{
    color: #fff;
}

.form-shortcode .website-content{
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 3rem;
}


.form-shortcode .boxInput{
    background-color: #fff;
    border: 1px solid #8c8c8c;
    padding: 8px 16px;
    margin-bottom: 16px;
}

.form-shortcode .boxInput>p{
    padding: 0;
    margin: 0;
}

.form-shortcode .boxInput label{
    display: block;
    color: var(--website-primary);
    font-size: 0.875rem;
    font-weight: normal;
    margin: 0;
    padding: 0 0 2px 0;
}

.form-shortcode .boxInput textarea,
.form-shortcode .boxInput input[type=text],
.form-shortcode .boxInput input[type=email]{
    background-color: transparent;
    border: none;
    font-size: 0.875rem;
    font-weight: normal;
    margin: 0;
    padding: 2px 0;
    width: 100%;
}

.form-shortcode .boxInput input:focus,
.form-shortcode .boxInput textarea:focus {
    outline: none;
}

.form-shortcode input[type="submit"] {
    background: var(--website-primary);
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    border-radius: 24px;
}

.form-shortcode input[type="submit"]:hover {
    background: var(--website-primary-dark);
    transition: all 0.3s ease-in;
}

.form-shortcode input[type="submit"]:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}


.form-shortcode .autoload-select-toggle svg{
    width: 20px;
    height: 20px;
    color: #896A43;
}

.form-shortcode .col-for-input-privacy .boxInput{
    border: none;
    padding: 8px 0;
    background: transparent;
}

.form-shortcode .col-for-input-privacy .boxInput label{
    display: inline-block;
}


.form-shortcode .col-for-input-privacy .boxInput a{
    font-size: 1rem;
    color: var(--website-primary);
    text-decoration: underline;
}

.form-shortcode .col-for-input-privacy .boxInput .wpcf7-list-item {
    margin: 0;
}

.form-shortcode .col-for-input-privacy .boxInput .wpcf7-list-item-label{
    display: none;
}

.form-shortcode .col-for-input-privacy .boxInput a:hover{
    color: var(--website-primary-dark);
}


.form-shortcode input[type="submit"]:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

.form-shortcode .wpcf7 form.invalid .wpcf7-response-output,
.form-shortcode.wpcf7 form.unaccepted .wpcf7-response-output,
.form-shortcode.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: var(--website-primary-light);
}

/*
xs      <576px      col-            smart-phone
sm      ≥576px 	    col-sm
md      ≥768px 	    col-md          ipad
lg      ≥992px 	    col-lg          ipad pro
xl      ≥1200px 	col-xl          desktop
xxl     ≥1400px     col-xxl
*/

/*============================================================
 *
 * XXL  desktop large
 *
 */
@media (min-width: 1400px) {

}

/*============================================================
 *
 * XL   desktop
 *
 */
@media (max-width: 1399px) {

}

/*============================================================
 *
 * LG   small desktop
 *
 */

@media (max-width: 1199px) {

}

/*============================================================
 *
 * LG   ipadpro
 *
 */
@media (pointer:coarse) and (max-width: 1199px) {

}


/*============================================================
 *
 *  MD  ipad
 *
 */
@media (max-width: 991px) {

}


/*============================================================
 *
 *  SM smart-phone 576-767
 *  XS 0-567
 */
@media (max-width: 767px) {
    .form-shortcode{
        padding-left: 15px;
        padding-right: 15px;
    }
}


/*============================================================
 *
 * XS   smartphone
 *
 */
@media (min-width: 10px)  and (max-width: 575px) {

}






