@font-face {
    font-family: 'Roboto Ligth';
    font-style: normal;
    font-weight: 300;
    src: url("fonts/roboto-v18-cyrillic_latin-300.woff") format("woff"); }

@font-face {
    font-family: 'Roboto Regular';
    font-style: normal;
    font-weight: 400;
    src: url("fonts/roboto-v18-cyrillic_latin-regular.woff") format("woff"); }

@font-face {
    font-family: 'Roboto Medium';
    font-style: normal;
    font-weight: 500;
    src: url("fonts/roboto-v18-cyrillic_latin-500.woff") format("woff"); }

@font-face {
    font-family: 'Roboto Bold';
    font-style: normal;
    font-weight: 700;
    src: url("fonts/roboto-v18-cyrillic_latin-700.woff") format("woff"); }

@font-face {
    font-family: 'Roboto Black';
    font-style: normal;
    font-weight: 900;
    src: url("fonts/roboto-v18-cyrillic_latin-900.woff") format("woff"); }

html {
    height: 100%; }

body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto Regular', sans-serif;
    font-size: 12px;
    background-color: #F8F8F8;
    margin: 0;
    padding: 0; }
body, div, ul, li, button, a, h1, h2, h3, section, input, select, textarea, p, form, div, img, table, tr, td, th {
    box-sizing: border-box; }

p, ul, li, a, button, h1, h2, label {
    margin: 0;
    padding: 0; }

ul {
    list-style: none; }

button, input, select {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent; }

select {
    -webkit-appearance: none;
    -moz-appearance: none; }

.h1 {
    width: 100%;
    font-family: 'Roboto Bold', sans-serif;
    font-size: 16px;
    color: #383838;
    text-align: left;
    padding: 12px 20px;
    background-color: #F4E0FF; }

a {
    text-decoration: none;
    cursor: pointer; }

.wrapper {
    display: flex;
    position: relative;
    max-width: 1280px;
    width: 100%;
    min-height: 100%;
    height: auto;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.ajax-animate{
    animation: animationFrames ease 1s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode:forwards; /*when the spec is finished*/
    -webkit-animation: animationFrames ease 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
    -moz-animation: animationFrames ease 1s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode:forwards; /*FF 5+*/
    -o-animation: animationFrames ease 1s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode:forwards; /*Not implemented yet*/
    -ms-animation: animationFrames ease 1s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animationFrames{
    0% {
        opacity:0;
        transform:  translate(0px,-25px)  ;
    }
    100% {
        opacity:1;
        transform:  translate(0px,0px)  ;
    }
}

@-moz-keyframes animationFrames{
    0% {
        opacity:0;
        -moz-transform:  translate(0px,-25px)  ;
    }
    100% {
        opacity:1;
        -moz-transform:  translate(0px,0px)  ;
    }
}

@-webkit-keyframes animationFrames {
    0% {
        opacity:0;
        -webkit-transform:  translate(0px,-25px)  ;
    }
    100% {
        opacity:1;
        -webkit-transform:  translate(0px,0px)  ;
    }
}

@-o-keyframes animationFrames {
    0% {
        opacity:0;
        -o-transform:  translate(0px,-25px)  ;
    }
    100% {
        opacity:1;
        -o-transform:  translate(0px,0px)  ;
    }
}

@-ms-keyframes animationFrames {
    0% {
        opacity:0;
        -ms-transform:  translate(0px,-25px)  ;
    }
    100% {
        opacity:1;
        -ms-transform:  translate(0px,0px)  ;
    }
}
