@charset "UTF-8";
/* snippet-row-form-colored-inputs-with-image START */
#snippet-row-form-colored-inputs-with-image {
    .customPadding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .form-control {
        background-color: #ebebeb;
        color: rgba(0,0,0,0.6);
        border: none;
    }
    .form-control:focus {
        box-shadow: 0 0 0 .2rem var(--md-primary-300);
    }
    .input-group-text {
        background-color: #dedede;
        color: rgba(0, 0, 0, 0.6);
        border-right: 2px solid #fff;
        padding: 0.5rem;
        border-radius: 10px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    @media screen and (min-width: 768px) {
        .customMargin {
            margin-left: -100px;
        }
    }
    @media screen and (max-width: 767.99px) {
        .rounded-end-0 {
            border-top-right-radius: var(--bs-border-radius) !important;
            border-bottom-right-radius: var(--bs-border-radius) !important;
        }
        .rounded-start-0 {
            border-top-left-radius: var(--bs-border-radius) !important;
            border-bottom-left-radius: var(--bs-border-radius) !important;
        }
        .customPadding {
            padding-top: 0;
        }
        .card {
            border: none;
        }
    }
}
[data-bs-theme=dark] #snippet-row-form-colored-inputs-with-image {
    input::placeholder, textarea::placeholder {
        color: rgba(0,0,0,0.6);
    }
}
/* snippet-row-form-colored-inputs-with-image END */
