.pys-form{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.pys-row{
    display: flex;
    width: 100%;
    margin-top: 16px;
}
.pys-col{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.pys-form input{
    width: 100%;
}
.pys-form input, .pys-form textarea, .pys-form select {
    padding: 10px 15px;
    color: #666666;
    background-color: #fafafa;
    border: 1px solid #cccccc;
    border-radius: 0;
    outline: none;
    line-height: 1em;
}

.pys-form input:focus, .pys-form textarea:focus, .pys-form select:focus {
    background-color: #ffffff;
    border-color: #bfbfbf;
}
.required{
    color: red;
}
.pys-form button[type="submit"]{
    font-size: 1em;
    width: auto;
    margin: 0 16px 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 14px 22px;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    color: #ffffff;
    background-color: #bc2121;
}
.pys-preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #e0e0e09c;
    z-index: 1001;
}

.pys-preloader__image {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}


.pys-preloader {
    display: none;
}