@-webkit-keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotating {
    animation: rotating 1s linear infinite;
}

@font-face {
    font-family: "pny";
    src:url("../fonts/pny.eot");
    src:url("../fonts/pny.eot?#iefix") format("embedded-opentype"),
        url("../fonts/pny.woff") format("woff"),
        url("../fonts/pny.ttf") format("truetype"),
        url("../fonts/pny.svg#pny") format("svg");
    font-weight: normal;
    font-style: normal;
}

[data-icon]:before {
    font-family: "pny" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="pnyicon-"]:before,
[class*=" pnyicon-"]:before {
    font-family: "pny" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pnyicon-loading:before {
    content: "\61";
}

i.pnyicon.pnyicon-loading {
    display: block;
    font-size: 20px;
    width: 20px;
    height: 18px;
    -webkit-animation: rotating 1s linear infinite;
    -o-animation: rotating 1s linear infinite;
    animation: rotating 1s linear infinite;
}

.pny-contact-form {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (min-width: 992px) {
    .pny-contact-form {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.pnycf__title,
.pnycf__description {
    color: #fff;
}

.pnycf__image {
    width: 250px;
    margin-top: 25px;
    margin-bottom: 25px;
}

@media screen and (min-width: 992px) {
    .vc_column_container > .vc_column-inner.pnycf__text {
        padding-right: 30px;
    }
}

.pnycf__form {
    width: 100%;
    margin-bottom: 20px;
}

.pnycf__form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a1a1a1;
    opacity: 1; /* Firefox */
}

.pnycf__form :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #a1a1a1;
}

.pnycf__form ::-ms-input-placeholder { /* Microsoft Edge */
    color: #a1a1a1;
}

.pnycf__form button[type="submit"].button.pnycf__submit {
    width: 100%;
    position: relative;
    border: 1px solid #fff;
    transition: color 0.25s ease;
    padding: 15px;
    text-transform: uppercase;
}

.pnycf__form button[type="submit"].button.pnycf__submit.disable {
    pointer-events: none;
}

.pnycf__form .woocommerce-input-wrapper {
    display: block;
    margin-bottom: 16px;
}

.pnycf__form .woocommerce-input-wrapper > input,
.pnycf__form .woocommerce-input-wrapper > select,
.pnycf__form .woocommerce-input-wrapper > textarea {
    margin-bottom: 0;
    border: none;
}

.pnycf__form .woocommerce-input-wrapper > input.validated-error,
.pnycf__form .woocommerce-input-wrapper > select.validated-error,
.pnycf__form .woocommerce-input-wrapper > textarea.validated-error {
    background-color: #fff3f2;
    -webkit-box-shadow: inset 0 0 1px 1px #f9423a;
    -moz-box-shadow: inset 0 0 1px 1px #f9423a;
    box-shadow: inset 0 0 1px 1px #f9423a;
}

.pnycf__form .woocommerce-input-wrapper > input.validated-success,
.pnycf__form .woocommerce-input-wrapper > select.validated-success,
.pnycf__form .woocommerce-input-wrapper > textarea.validated-success {
    background-color: #f1f9e9;
    -webkit-box-shadow: inset 0 0 1px 1px #7fb34d;
    -moz-box-shadow: inset 0 0 1px 1px #7fb34d;
    box-shadow: inset 0 0 1px 1px #7fb34d;
}

.pnycf__error {
    margin-top: 2px;
    margin-bottom: 0;
    font-size: 14px;
    color: #f9423a;
}

.pnycf__notification {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    margin-bottom: 20px;
}

.pnycf__notification.success {
    color: #7fb34d;
    border: 1px solid #7fb34d;
    background-color: #f1f9e9;
}

.pnycf__notification.error {
    color: #f9423a;
    border: 1px solid #f9423a;
    background-color: #fff3f2;
}