@import url(https://fonts.googleapis.com/css?family=Exo+2:400,700);
@font-face {
    font-family: CirceBold;
    src: url(../fonts/Circe-Bold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: CirceExtraBold;
    src: url(../fonts/Circe-ExtraBold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: CirceExtraLight;
    src: url(../fonts/Circe-ExtraLight.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: CirceLight;
    src: url(../fonts/Circe-Light.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: CirceRegular;
    src: url(../fonts/Circe-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: CirceThin;
    src: url(../fonts/Circe-Thin.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%
    }
    15% {
        opacity: 1;
        top: 50%
    }
    50% {
        opacity: 0;
        top: 50%
    }
    100% {
        opacity: 0;
        top: 29%
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%
    }
    15% {
        opacity: 1;
        top: 50%
    }
    50% {
        opacity: 0;
        top: 50%
    }
    100% {
        opacity: 0;
        top: 29%
    }
}

* {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: default;
    font-family: CirceRegular, sans-serif
}

@media only screen and (max-width:767px) {
    body,
    html {
        overflow-x: hidden
    }
}

body {
    margin: 0;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    overflow-x: hidden;
    background-color: #fdfdfd
}

body.active {
    position: fixed;
    overflow-y: hidden;
    height: 100%;
    width: 100%
}

a:focus,
button:focus {
    outline: 0
}

a:hover,
button:hover {
    cursor: pointer
}

button:hover {
    opacity: .8
}

button[disabled] {
    opacity: .6
}

button[disabled]:hover {
    cursor: default;
    opacity: .6
}

.container {
    width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px
}

@media only screen and (max-width:1299px) {
    .container {
        width: 970px
    }
}

@media only screen and (max-width:991px) {
    .container {
        width: 750px
    }
}

@media only screen and (max-width:767px) {
    .container {
        width: 100%
    }
}

.center {
    margin: 0 auto
}

.text-center {
    text-align: center
}

.text-default {
    color: #111;
    font-family: CirceRegular, sans-serif;
    font-size: 16px
}

@media only screen and (max-width:399px) {
    .text-default {
        padding: 0 20px
    }
}

.header_1 {
    color: #111;
    font-size: 36px;
    font-family: CirceExtraBold, sans-serif;
    font-weight: 700;
    margin-top: 10px
}

.header_1 span {
    font-family: CirceExtraBold, sans-serif;
    position: relative
}

.header_1 span:after {
    width: 100%;
    height: 30%;
    background-color: #00bf54;
    position: absolute;
    left: 0;
    top: 45%;
    z-index: -1;
    content: ""
}

@media only screen and (max-width:767px) {
    .header_1 {
        font-size: 24px;
        line-height: 28px;
        margin-top: 15px
    }
}

.header_span {
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #00bf54;
    margin-bottom: 5px
}

.text_bg {
    position: relative
}

.text_bg:after {
    width: 100%;
    height: 30%;
    background-color: #00bf54;
    position: absolute;
    left: 0;
    top: 45%;
    z-index: -1;
    content: ""
}

.text_bg1 {
    position: relative
}

.text_bg1:after {
    width: 100%;
    height: 30%;
    background-color: #b1eaca;
    position: absolute;
    left: 0;
    top: 45%;
    z-index: -1;
    content: ""
}

p {
    margin-top: 0;
    font-size: 18px
}

@media only screen and (max-width:767px) {
    p {
        font-size: 14px
    }
}

p a {
    color: #00bf54
}

.breadcrumbs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0
}

.breadcrumbs li {
    font-family: CirceLight, sans-serif;
    font-size: 16px;
    margin-right: 25px;
    position: relative
}

.breadcrumbs li:after {
    content: "\2192";
    position: absolute;
    right: -20px
}

.breadcrumbs li:last-child:after {
    content: ""
}

.breadcrumbs li a {
    font-family: CirceBold, sans-serif;
    font-size: 18px;
    color: #00bf54
}

.breadcrumbs li a:hover {
    cursor: pointer
}

.breadcrumbs__wrap {
    height: 26px;
    margin: 15px 0
}

.pagination {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.pagination__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.pagination li {
    list-style-type: none;
    cursor: pointer
}

.pagination li:last-child {
    margin-right: 0
}

.pagination li a {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    background-color: transparent;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    font-size: 14px;
    margin-right: 15px;
    color: #111
}

.pagination li a:hover {
    font-family: CirceBold, sans-serif;
    background-color: #00bf54;
    color: #fff
}

.pagination li.active a {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    background-color: #00bf54;
    color: #fff;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.pagination li.disabled {
    display: none
}

.attr {
    font-family: CirceLight, sans-serif;
    font-size: 12px !important;
    color: #969696
}

.header__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 20px
}

@media only screen and (max-width:767px) {
    .header__wrap {
        padding-top: 50px
    }
}

@media only screen and (max-width:991px) {
    .header__logo {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.header__logo a {
    font-family: "Exo 2", sans-serif;
    font-weight: 700;
    color: #111;
    font-size: 20px;
    text-decoration: none
}

@media only screen and (max-width:767px) {
    .header__logo a {
        font-size: 18px
    }
}

.header__logo .city {
    font-weight: 300;
    font-size: 16px;
    color: #212121;
    margin-left: 25px
}

@media only screen and (max-width:991px) {
    .header__logo .city {
        margin-left: 0
    }
}

@media only screen and (max-width:767px) {
    .header__logo .city {
        font-size: 12px;
        font-family: CirceLight, sans-serif
    }
}

.header__btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.header__btns .ad_efect {
    width: 300px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    border: 3px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-right: 15px;
    text-decoration: none
}

.header__btns .ad_efect:hover {
    background-color: #00bf54;
    color: #fff
}

@media only screen and (max-width:991px) {
    .header__btns .ad_efect {
        display: none
    }
}

.header__btns .ad {
    width: 180px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background-color: #00bf54;
    border: 3px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none
}

.header__btns .ad:hover {
    color: #111;
    background-color: #fff
}

@media only screen and (max-width:991px) {
    .header__btns .ad {
        display: none
    }
}

.header__btns .ad-phone {
    display: none
}

@media only screen and (max-width:991px) {
    .header__btns .ad-phone {
        display: block;
        width: 40px;
        height: 40px;
        background-image: url(../images/add_btn.png);
        background-repeat: no-repeat
    }
    .header__btns .ad-phone:hover {
        opacity: .7;
        cursor: pointer
    }
}

.header__btns-menu {
    display: none;
    width: 45px;
    height: 40px;
    background-image: url(../images/menu_btn.png);
    background-repeat: no-repeat;
    margin-right: 25px
}

@media only screen and (max-width:991px) {
    .header__btns-menu {
        display: block
    }
}

@media only screen and (max-width:767px) {
    .header__btns-menu {
        margin-right: 15px
    }
}

.phone__menu {
    display: none;
    width: -webkit-calc(100vw - 250px);
    width: calc(100vw - 250px);
    height: 100vh;
    position: absolute;
    top: 0;
    left: -1000px;
    z-index: 98
}

@media only screen and (max-width:991px) {
    .phone__menu {
        display: block
    }
}

@media only screen and (max-width:767px) {
    .phone__menu {
        width: -webkit-calc(100vw - 150px);
        width: calc(100vw - 150px)
    }
}

@media only screen and (max-width:500px) {
    .phone__menu {
        width: 100vw
    }
}

.phone__menu.active {
    left: 0
}

.phone__menu-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, .8)
}

.phone__menu-bg:hover {
    cursor: pointer
}

.phone__menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: -webkit-calc(100vh - 100px);
    height: calc(100vh - 100px);
    background-color: #fff;
    border: 2px solid #00bf54;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow-y: auto;
    position: absolute;
    top: 40px;
    left: 20px
}

@media only screen and (max-width:767px) {
    .phone__menu-list {
        width: 70%
    }
}

@media only screen and (max-width:399px) {
    .phone__menu-list {
        width: -webkit-calc(100% - 40px);
        width: calc(100% - 40px);
        top: 20px
    }
}

.phone__menu-list_item {
    min-width: 300px;
    padding-left: 20px;
    padding-right: 40px;
    border-bottom: 2px solid #00bf54
}

.phone__menu-list_item:last-child {
    border: none
}

@media only screen and (max-width:399px) {
    .phone__menu-list_item {
        width: 100%;
        min-width: auto
    }
}

.phone__menu-list_item.active a {
    color: #00bf54
}

.phone__menu-list_item a {
    font-size: 20px;
    text-decoration: none;
    color: #111;
    line-height: 18px
}

.phone__menu-list_item a:hover {
    color: #00bf54
}

@media only screen and (max-width:767px) {
    .phone__menu-list_item a {
        font-size: 16px;
        line-height: 14px
    }
}

@media only screen and (max-width:399px) {
    .phone__menu-list_item a {
        font-size: 14px
    }
}

.footer {
    background-color: #111;
    margin-top: 30px
}

.footer__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 45px 180px 20px 150px
}

@media only screen and (max-width:991px) {
    .footer__wrap {
        padding-left: 0;
        padding-right: 0;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.footer__left {
    width: 70%
}

@media only screen and (max-width:767px) {
    .footer__left {
        width: 65%
    }
}

.footer__left-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.footer__left-bottom {
    color: #cfcfcf;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-family: CirceLight, sans-serif;
    font-size: 12px;
    margin-top: 30px
}

@media only screen and (max-width:991px) {
    .footer__left-bottom {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 0;
        padding-right: 20px
    }
}

.footer__right {
    width: 30%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer__right div {
    font-family: CirceLight, sans-serif;
    font-size: 9px;
    color: silver;
    margin-top: 10px
}

.footer__menu {
    margin-right: 120px
}

@media only screen and (max-width:991px) {
    .footer__menu {
        margin-right: 0
    }
}

.footer__menu h5 {
    font-family: CirceLight, sans-serif;
    color: #7c7c7c;
    font-size: 14px;
    margin-top: 0
}

.footer__menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer__menu-list a {
    font-size: 14px;
    color: #cfcfcf
}

.footer__menu-list a:hover {
    text-decoration: none;
    color: #00bf54
}

@media only screen and (max-width:991px) {
    .footer__dop-menu {
        display: none
    }
}

.footer__dop-menu h5 {
    font-family: CirceLight, sans-serif;
    color: #7c7c7c;
    font-size: 14px;
    margin-top: 0
}

.footer__dop-menu_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer__dop-menu_list a {
    font-size: 14px;
    color: #9d9d9d
}

.footer__dop-menu_list a:hover {
    text-decoration: none;
    color: #00bf54
}

.footer__logo {
    display: block;
    width: 120px;
    height: 105px;
    background-image: url(../images/footer_logo.png);
    background-repeat: no-repeat;
    margin-bottom: 15px
}

.top-text__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.top-text__wrap .text {
    min-height: 230px
}

@media only screen and (max-width:991px) {
    .top-text__wrap .text {
        min-height: auto;
        margin-bottom: 0
    }
}

.top-text__wrap .text p {
    max-width: 740px;
    margin: 0
}

@media only screen and (max-width:991px) {
    .top-text__wrap .text p {
        display: none
    }
}

.top-text__wrap .text h1 {
    font-size: 1.5em
}

@media only screen and (max-width:767px) {
    .top-text__wrap .text h1 {
        text-align: center
    }
}

.top-text__wrap .text span {
    position: relative
}

.top-text__wrap .text span:after {
    width: 100%;
    height: 30%;
    background-color: #00bf54;
    position: absolute;
    left: 0;
    top: 45%;
    z-index: -1;
    content: ""
}

.top-text .img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 270px;
    height: 190px;
    background: url(../images/elephant.png);
    margin-right: 90px;
    margin-top: 25px;
    position: relative
}

@media only screen and (max-width:991px) {
    .top-text .img {
        display: none
    }
}

.top-text .img__text {
    font-family: "Exo 2", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 15px;
    position: absolute;
    bottom: -30px;
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg)
}

.top-text .img__text span {
    font-weight: 600;
    font-size: 12px
}

.aside {
    width: 20%;
    min-width: 210px
}

@media only screen and (max-width:991px) {
    .aside {
        display: none
    }
}

.aside__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.aside__list div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.aside__list div .aside__item {
    font-size: 14px
}

.aside__list div .aside__item.active {
    font-size: 16px
}

.aside__list h5 {
    font-size: 14px;
    font-family: CirceLight, sans-serif;
    color: #797979;
    margin: 15px 0
}

.aside__list.categorys input:checked+label {
    display: none
}

.aside__item {
    font-size: 16px;
    color: #111;
    text-decoration: underline;
    margin-bottom: 5px
}

.aside__item.active {
    font-family: CirceExtraBold, sans-serif;
    font-size: 18px;
    color: #00bf54;
    text-decoration: none
}

.aside__item:hover {
    font-family: CirceExtraBold, sans-serif;
    color: #00bf54;
    cursor: pointer
}

.aside__item-radio {
    font-size: 14px;
    text-decoration: underline;
    margin-bottom: 5px;
    position: relative
}

.aside__item-radio:hover {
    color: #00bf54;
    cursor: pointer
}

.aside__item-radio.active {
    font-size: 16px;
    color: #00bf54
}

.aside__item-radio.active:after {
    display: block;
    width: 15px;
    height: 12px;
    background-image: url(../images/loaders_check.png);
    position: absolute;
    top: -webkit-calc(50% - 8px);
    top: calc(50% - 8px);
    left: -25px;
    content: ""
}

.aside__item-radio input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.content__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.main {
    width: 80%;
    padding: 0 15px
}

@media only screen and (max-width:991px) {
    .main {
        width: 100%;
        padding: 0
    }
    .main h2 {
        margin-top: 0;
        margin-bottom: 0
    }
    .main h4 {
        margin-top: 5px
    }
}

@media only screen and (max-width:767px) {
    .main h2,
    .main h4 {
        text-align: center
    }
}

.main__btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (max-width:767px) {
    .main__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.main__btns .ad_efect {
    padding: 10px 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #111;
    border: 3px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-right: 15px;
    text-decoration: none
}

.main__btns .ad_efect:hover {
    background-color: #00bf54;
    color: #fff
}

.main__btns .ad_efect.active {
    background-color: #00bf54;
    color: #fff
}

@media only screen and (max-width:767px) {
    .main__btns .ad_efect {
        width: 100%;
        text-align: center;
        margin-right: 0
    }
    .main__btns .ad_efect:not(:last-child) {
        margin-bottom: 15px
    }
}

@media only screen and (max-width:399px) {
    .main__btns .ad_efect {
        font-size: 14px
    }
}

.main p a:hover {
    text-decoration: none;
    color: #00bf54
}

.main .filters {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 30px
}

@media only screen and (max-width:991px) {
    .main .filters {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.main .filters a {
    font-size: 16px;
    margin-right: 15px
}

.main .filters a:last-child {
    margin-right: 0
}

.main .filters a:hover {
    text-decoration: none;
    color: #00bf54
}

.main .filters a.active {
    font-family: CirceExtraBold, sans-serif;
    color: #00bf54;
    text-decoration: none
}

.content {
    min-height: -webkit-calc(100vh - 300px);
    min-height: calc(100vh - 300px)
}

.list__desc {
    padding-left: 50px
}

.list__desc li {
    list-style-type: none;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative
}

.list__desc li:last-child {
    margin-bottom: 0
}

@media only screen and (max-width:767px) {
    .list__desc li {
        font-size: 14px
    }
}

.list__desc li .green {
    font-family: CirceBold, sans-serif;
    color: #00bf54
}

.list__desc li .bold {
    font-family: CirceExtraBold, sans-serif;
    color: #00bf54
}

.list__desc li div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50px;
    bottom: -40px
}

@media only screen and (max-width:767px) {
    .list__desc li div {
        left: -50px;
        bottom: -45px
    }
}

.list__desc li div img {
    margin-right: 10px
}

@media only screen and (max-width:767px) {
    .list__desc li div img {
        margin-right: 5px
    }
}

.list__desc li div img:last-child {
    margin: 0
}

.list__desc li:before {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -50px;
    top: -webkit-calc(50% - 20px);
    top: calc(50% - 20px);
    content: ""
}

.list__desc li:nth-child(1):before {
    background-image: url(../images/list_star.png)
}

.list__desc li:nth-child(2):before {
    background-image: url(../images/list_rub.png)
}

.list__desc li:nth-child(3):before {
    background-image: url(../images/list_attr.png)
}

.list__desc li:nth-child(4):before {
    background-image: url(../images/list_time.png)
}

.list__desc li:nth-child(5):before {
    background-image: url(../images/list_card.png)
}

.ads__item {
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    padding: 15px 65px 15px 15px;
    margin-bottom: 50px;
    -webkit-box-shadow: 6px 6px 8px 0 rgba(50, 50, 50, .55);
    box-shadow: 6px 6px 8px 0 rgba(50, 50, 50, .55)
}

@media only screen and (max-width:991px) {
    .ads__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 15px
    }
}

.ads__item.gold {
    background-color: #fff9db;
    position: relative
}

.ads__item.gold:after {
    display: block;
    width: 48px;
    height: 47px;
    background-image: url(../images/gold_status.png);
    position: absolute;
    top: -5px;
    right: 30px;
    content: ""
}

.ads__item--img {
    min-width: 195px;
    max-width: 195px;
    height: 195px;
    background-color: #00bf54;
    position: relative
}

.ads__item--img img {
    width: 100%;
    height: 100%
}

.ads__item--img .id {
    min-width: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #00bf54;
    color: #fff;
    font-size: 11px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    left: 10px;
    top: 10px
}

.ads__item--img .id span {
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #fff;
    margin-left: 5px
}

.ads__item--body {
    width: 100%;
    margin-left: 25px;
    position: relative
}

@media only screen and (max-width:991px) {
    .ads__item--body {
        margin-left: 0
    }
}

.ads__item--body .title {
    margin-top: 0;
    margin-bottom: 20px
}

@media only screen and (max-width:991px) {
    .ads__item--body .title {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 5px 0
    }
}

.ads__item--body .title .text {
    font-family: CirceBold, sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin-right: 6px
}

@media only screen and (max-width:991px) {
    .ads__item--body .title .text {
        font-size: 18px;
        text-align: center;
        line-height: 20px
    }
}

.ads__item--body .title.rating-three {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.ads__item--body .title.rating-three i {
    position: relative;
    display: block;
    margin-top: -5px
}

@media only screen and (max-width:991px) {
    .ads__item--body .title.rating-three i {
        margin-top: 0
    }
}

.ads__item--body .title.rating-three i:after {
    display: block;
    width: 68px;
    height: 18px;
    background-image: url(../images/star.png);
    background-repeat: space;
    position: absolute;
    right: -75px;
    top: 6px;
    content: ""
}

.ads__item--body .title.rating-four {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.ads__item--body .title.rating-four i {
    position: relative;
    display: block;
    margin-top: -5px
}

@media only screen and (max-width:991px) {
    .ads__item--body .title.rating-four i {
        margin-top: 0
    }
}

.ads__item--body .title.rating-four i:after {
    display: block;
    width: 92px;
    height: 18px;
    background-image: url(../images/star.png);
    background-repeat: space;
    position: absolute;
    right: -99px;
    top: 6px;
    content: ""
}

.ads__item--body .title.rating-five {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.ads__item--body .title.rating-five i {
    position: relative;
    display: block;
    margin-top: -5px
}

@media only screen and (max-width:991px) {
    .ads__item--body .title.rating-five i {
        margin-top: 0
    }
}

.ads__item--body .title.rating-five i:after {
    display: block;
    width: 116px;
    height: 18px;
    background-image: url(../images/star.png);
    background-repeat: space;
    content: ""
}

.ads__item--body_desc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.ads__item--body_desc-left {
    width: 80%
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc-left {
        width: 100%
    }
}

.ads__item--body_desc-left .desc {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc-left .desc {
        font-size: 14px;
        text-align: center
    }
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc-left .status {
        text-align: center
    }
}

.ads__item--body_desc-left .status a {
    font-size: 13px;
    line-height: 20px;
    color: #00bf54
}

.ads__item--body_desc-left .status a:hover {
    text-decoration: none
}

.ads__item--body_desc-left .phone {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 15px 0
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc-left .phone {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .ads__item--body_desc-left .phone img {
        display: none
    }
}

.ads__item--body_desc-left .phone a {
    font-family: CirceBold, sans-serif;
    font-size: 24px;
    color: #00bf54;
    text-decoration: none;
    margin-left: 10px;
    position: relative
}

.ads__item--body_desc-left .phone a:hover {
    cursor: pointer;
    text-decoration: underline
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc-left .phone a {
        font-size: 18px
    }
    .ads__item--body_desc-left .phone a:after {
        display: block;
        width: 56px;
        height: 56px;
        background-image: url(../images/phone_small.png);
        position: absolute;
        left: -webkit-calc(50% - 31.5px);
        left: calc(50% - 31.5px);
        content: ""
    }
}

.ads__item--body_desc-right {
    margin-top: -10px
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc-right {
        margin-top: 45px;
        width: 100%
    }
}

.ads__item--body_desc-right .price_wrap {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    color: #dbd8c9
}

.ads__item--body_desc-right .price_wrap.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc-right .price_wrap {
        width: 100%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 15px
    }
    .ads__item--body_desc-right .price_wrap img {
        display: none
    }
}

.ads__item--body_desc-right .price_wrap .price {
    font-family: CirceBold, sans-serif;
    font-size: 24px;
    color: #00bf54;
    margin: 10px 0
}

.ads__item--body_desc-right .price_wrap .price span {
    font-size: 16px;
    color: #00bf54
}

.ads__item--body_desc-right .price_wrap .text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    position: relative
}

@media only screen and (max-width:991px) {
    .ads__item--body_desc-right .price_wrap .text {
        display: none
    }
}

.ads__item--body_desc-right .price_wrap .text span {
    font-family: CirceExtraBold, sans-serif;
    color: #111;
    text-transform: uppercase;
    font-size: 17px
}

.ads__item--body_desc-right .price_wrap .text:before {
    display: block;
    width: 38px;
    height: 38px;
    background: url(../images/chek_active.png);
    position: absolute;
    left: -48px;
    content: ""
}

.ads__item--body_prop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media only screen and (max-width:991px) {
    .ads__item--body_prop {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.ads__item--body_prop>div {
    margin-right: 10px
}

.ads__item--body_prop>div:last-child {
    margin-right: 0
}

.ads__item--body_prop>div span {
    font-family: CirceExtraBold, sans-serif;
    color: #00bf54
}

.ads__item--body_prop .loaders {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.ads__item--body_prop .loaders_minus {
    margin-left: 5px
}

.ads__item--body_prop .loaders_check {
    margin: 0 5px 3px 5px
}

.about h2 {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px
}

@media only screen and (max-width:991px) {
    .about h2 {
        font-size: 18px;
        font-weight: 400
    }
}

.about p {
    font-size: 14px;
    margin-bottom: 15px
}

.about p span {
    font-family: CirceExtraBold, sans-serif;
    color: #00bf54
}

.about a {
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #00bf54;
    margin-bottom: 5px
}

.about a:hover {
    text-decoration: none
}

.about__list-cars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media only screen and (max-width:991px) {
    .about__list-cars {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media only screen and (max-width:767px) {
    .about__list-cars {
        display: none
    }
}

.about__list-cars .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
    -webkit-box-shadow: 6px 6px 8px 0 #c2c2c2;
    box-shadow: 6px 6px 8px 0 #c2c2c2;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 30px
}

@media only screen and (max-width:991px) {
    .about__list-cars .item {
        padding: 5px
    }
}

.about__list-cars .item:nth-child(odd) {
    margin-right: 30px
}

@media only screen and (max-width:991px) {
    .about__list-cars .item:nth-child(odd) {
        margin-right: 10px
    }
}

.about__list-cars .item img {
    width: 180px;
    height: 180px;
    margin-right: 10px
}

.about__list-cars .item .prop .title {
    font-family: CirceBold, sans-serif;
    font-size: 20px;
    color: #00bf54
}

@media only screen and (max-width:991px) {
    .about__list-cars .item .prop .title {
        font-size: 16px
    }
}

.about__list-cars .item .prop span {
    font-family: CirceExtraBold, sans-serif;
    font-size: 18px;
    color: #00bf54
}

@media only screen and (max-width:991px) {
    .about__list-cars .item .prop span {
        font-size: 14px
    }
}

.about__adaptive {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.about__adaptive img {
    margin-right: 65px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-height: 580px
}

@media only screen and (max-width:991px) {
    .about__adaptive img {
        display: none
    }
}

.about__adaptive-text h3 {
    font-size: 20px;
    margin-bottom: 10px
}

.about__adaptive-text form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

@media only screen and (max-width:991px) {
    .about__adaptive-text form {
        margin-bottom: 15px
    }
}

.about__adaptive-text form label {
    font-size: 14px;
    margin-bottom: 10px
}

.about__adaptive-text form label:hover {
    cursor: pointer
}

.about__adaptive-text form input {
    width: 295px;
    height: 50px;
    outline: 0;
    border: 2px solid #00bf54;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    color: #a1a1a1;
    margin-bottom: 15px
}

.about__adaptive-text form input::-webkit-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.about__adaptive-text form input:-moz-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.about__adaptive-text form input:-ms-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.about__adaptive-text form input:hover {
    cursor: pointer
}

.about__adaptive-text form input:focus {
    cursor: text
}

@media only screen and (max-width:991px) {
    .about__adaptive-text form input {
        width: 100%
    }
}

.about__adaptive-text form .textarea {
    width: 295px;
    height: 120px;
    outline: 0;
    border: 2px solid #00bf54;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 15px;
    font-size: 14px;
    color: #a1a1a1;
    margin-bottom: 15px;
    overflow-y: auto;
    max-height: 120px;
    resize: none
}

.about__adaptive-text form .textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.about__adaptive-text form .textarea:-moz-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.about__adaptive-text form .textarea:-ms-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.about__adaptive-text form .textarea:hover {
    cursor: pointer
}

.about__adaptive-text form .textarea:focus {
    cursor: text
}

@media only screen and (max-width:991px) {
    .about__adaptive-text form .textarea {
        width: 100%
    }
}

.about__adaptive-text form button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 110px;
    height: 40px;
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #00bf54;
    border: 2px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

.about__adaptive-text form button:hover {
    background-color: #fff;
    color: #00bf54
}

.about__adaptive-text form button:disabled:hover {
    color: #fff;
    background-color: #00bf54
}

.about__necessary h4 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 2px
}

.about__necessary .light {
    font-family: CirceLight, sans-serif;
    color: #303030;
    margin-top: 20px
}

.about__necessary-list {
    margin: 0;
    padding: 0
}

.about__necessary-list li {
    list-style-type: none;
    font-size: 14px
}

.about__necessary-list_step .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
    height: 80px
}

.about__necessary-list_step .item img {
    width: 67px;
    height: 67px;
    margin-right: 20px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.about__rules h3 {
    margin-bottom: 0
}

.about__rules h4 {
    font-size: 14px;
    margin-top: 0
}

.about__rules-list {
    padding-left: 35px;
    margin: 0
}

.about__rules-list li {
    list-style-type: none;
    font-size: 14px;
    position: relative
}

.about__rules-list li:before {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #00bf54;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: -15px;
    top: -webkit-calc(50% - 5px);
    top: calc(50% - 5px);
    content: ""
}

.error-body {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #addbd0
}

.error-body a {
    width: 180px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background-color: #00bf54;
    border: 3px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 30px
}

.error-body a:hover {
    color: #fff;
    background-color: #fbb217;
    border-color: #fbb217
}

.form-oplata {
    margin-top: 60px
}

.form-oplata .required-attr {
    font-size: 12px;
    color: #111;
    margin-bottom: 15px
}

.form-oplata .required-attr2 {
    font-size: 14px;
    color: #111;
    margin-top: 10px
}

.form-oplata .required-attr2 a {
    font-family: CirceBold, sans-serif;
    color: #00bf54
}

.form-oplata .required-attr2 a:hover {
    text-decoration: none
}

.form-oplata__attr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: CirceBold, sans-serif;
    font-size: 18px;
    margin: 5px 0 10px 0
}

.form-oplata__attr img {
    margin-right: 10px
}

@media only screen and (max-width:767px) {
    .form-oplata__attr {
        font-size: 14px
    }
}

.form-oplata__attr2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px
}

@media only screen and (max-width:767px) {
    .form-oplata__attr2 {
        font-size: 14px
    }
}

.form-oplata__attr2 img {
    margin-right: 10px
}

.form-oplata__attr2 span {
    font-family: CirceBold, sans-serif
}

.form-oplata__btn {
    width: 245px;
    height: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background-color: #00bf54;
    border: 3px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none
}

.form-oplata__btn:hover {
    color: #111;
    background-color: #fff
}

.form-oplata__btn:disabled {
    color: #fff;
    background-color: #00bf54
}

@media only screen and (max-width:399px) {
    .form-oplata__btn {
        width: 100%
    }
}

.form-oplata__btn-wrap {
    height: 45px;
    margin-top: 15px
}

.form-oplata .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px
}

.form-oplata .item label {
    font-size: 14px;
    margin-bottom: 10px
}

.form-oplata .item label:hover {
    cursor: pointer
}

.form-oplata .item label span {
    font-family: CirceBold, sans-serif
}

.form-oplata .item input[type=number],
.form-oplata .item input[type=tel],
.form-oplata .item input[type=text] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 455px;
    height: 50px;
    outline: 0;
    border: 2px solid #00bf54;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    color: #a1a1a1
}

.form-oplata .item input[type=number]::-webkit-input-placeholder,
.form-oplata .item input[type=tel]::-webkit-input-placeholder,
.form-oplata .item input[type=text]::-webkit-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.form-oplata .item input[type=number]:-moz-placeholder,
.form-oplata .item input[type=tel]:-moz-placeholder,
.form-oplata .item input[type=text]:-moz-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.form-oplata .item input[type=number]:-ms-input-placeholder,
.form-oplata .item input[type=tel]:-ms-input-placeholder,
.form-oplata .item input[type=text]:-ms-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.form-oplata .item input[type=number]:hover,
.form-oplata .item input[type=tel]:hover,
.form-oplata .item input[type=text]:hover {
    cursor: pointer
}

.form-oplata .item input[type=number]:focus,
.form-oplata .item input[type=tel]:focus,
.form-oplata .item input[type=text]:focus {
    cursor: text
}

@media only screen and (max-width:767px) {
    .form-oplata .item input[type=number],
    .form-oplata .item input[type=tel],
    .form-oplata .item input[type=text] {
        width: 100%
    }
}

.form-oplata .item input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none
}

.form-oplata .item input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #00bf54;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    outline: 0;
    position: relative;
    margin: 0
}

.form-oplata .item input[type=radio]:hover {
    cursor: pointer
}

.form-oplata .item input[type=radio]:checked:after {
    display: block;
    width: 15px;
    height: 12px;
    background-image: url(../images/loaders_check.png);
    position: absolute;
    top: -webkit-calc(50% - 7px);
    top: calc(50% - 7px);
    left: -webkit-calc(50% - 5px);
    left: calc(50% - 5px);
    content: ""
}

.form-oplata .item .label_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0
}

.form-oplata .item .label_inner:not(:last-child) {
    margin-bottom: 7px
}

.form-oplata .item .label_inner input {
    margin-right: 7px
}

.form-oplata .item textarea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 455px;
    height: 165px;
    outline: 0;
    border: 2px solid #00bf54;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 15px;
    font-size: 14px;
    color: #a1a1a1;
    resize: none;
    margin-bottom: 15px
}

.form-oplata .item textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.form-oplata .item textarea:-moz-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.form-oplata .item textarea:-ms-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.form-oplata .item textarea:hover {
    cursor: pointer
}

.form-oplata .item textarea:focus {
    cursor: text
}

@media only screen and (max-width:767px) {
    .form-oplata .item textarea {
        width: 100%
    }
}

.form-oplata .small-input input[type=number],
.form-oplata .small-input input[type=tel] {
    width: 175px
}

.form-oplata .small-input input[type=number]:disabled,
.form-oplata .small-input input[type=tel]:disabled {
    background-color: #fff;
    opacity: .6;
    cursor: default
}

@media only screen and (max-width:767px) {
    .form-oplata .small-input input[type=number],
    .form-oplata .small-input input[type=tel] {
        width: 100%
    }
}

.form-oplata__captcha {
    cursor: pointer
}

.form-oplata__captcha .title {
    font-size: 14px;
    font-family: CirceBold, sans-serif;
    color: #444343
}

.form-oplata__captcha .captcha {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 175px;
    background-color: #53ae77;
    padding: 15px 10px;
    margin-top: 10px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

@media only screen and (max-width:399px) {
    .form-oplata__captcha .captcha {
        width: 100%
    }
}

.form-oplata__captcha .captcha div,
.form-oplata__captcha .captcha span {
    font-family: CirceBold, sans-serif;
    color: #fff;
    cursor: pointer
}

#list_cars {
    position: relative;
    font-family: CirceBold, sans-serif;
    text-decoration: underline
}

#list_cars:hover {
    cursor: pointer;
    text-decoration: none
}

#list_cars.check {
    color: #00bf54
}

#list_cars.check:after {
    display: block;
    width: 15px;
    height: 12px;
    background-image: url(../images/loaders_check.png);
    position: absolute;
    top: -webkit-calc(50% - 8px);
    top: calc(50% - 8px);
    right: -25px;
    content: ""
}

#list_cars.not_check {
    color: red
}

#list_cars.not_check:after {
    display: block;
    width: 15px;
    height: 14px;
    background-image: url(../images/loaders_not_check.png);
    position: absolute;
    top: -webkit-calc(50% - 7px);
    top: calc(50% - 7px);
    right: -25px;
    content: ""
}

.list-cars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: none;
    max-width: 770px
}

.list-cars__label {
    display: block;
    margin-bottom: 15px
}

.list-cars.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.list-cars__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: #fff;
    -webkit-box-shadow: 6px 6px 8px 0 #c2c2c2;
    box-shadow: 6px 6px 8px 0 #c2c2c2;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative
}

.list-cars__item img {
    width: 100%;
    height: 100%;
    cursor: pointer
}

.list-cars__item:first-child img {
    width: 57px;
    height: 57px
}

.list-cars__item:first-child.active {
    opacity: .7;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9)
}

.list-cars__item:first-child.active:after {
    display: none
}

.list-cars__item:hover {
    opacity: .7;
    cursor: pointer;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9)
}

.list-cars__item.active:after {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 191, 84, .5);
    position: absolute;
    top: 0;
    left: 0;
    content: ""
}

.money-back h1 {
    font-size: 24px;
    text-transform: uppercase
}

.money-back h2 {
    font-size: 18px;
    margin-bottom: 5px
}

.money-back p {
    font-size: 14px
}

.money-back .first {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.money-back .first span {
    font-family: CirceBold, sans-serif
}

#placeholder_form {
    width: 100%;
    height: 90vh;
    overflow-y: auto !important;
    padding-bottom: 100px
}

.admin__form-add {
    padding-top: 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto
}

.admin__form-add h1 {
    font-size: 24px
}

.admin__form-add__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 10px
}

.admin__form-add__item .prop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.admin__form-add__item .prop input {
    width: 100px
}

.admin__form-add__item .prop>div:not(:last-child) {
    margin-right: 15px
}

.admin__form-add__item label {
    font-size: 14px;
    margin-bottom: 5px
}

.admin__form-add__item label:hover {
    cursor: pointer
}

.admin__form-add__item label.label_input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.admin__form-add__item label.label_input input {
    margin-right: 5px
}

.admin__form-add__item label.for-image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 295px;
    height: 35px;
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #00bf54;
    border: 2px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

.admin__form-add__item label.for-image:hover {
    background-color: #fff;
    color: #00bf54
}

.admin__form-add__item input {
    width: 295px;
    height: 35px;
    outline: 0;
    border: 2px solid #00bf54;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    color: #a1a1a1;
    margin-bottom: 15px
}

.admin__form-add__item input::-webkit-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.admin__form-add__item input:-moz-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.admin__form-add__item input:-ms-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.admin__form-add__item input:hover {
    cursor: pointer
}

.admin__form-add__item input:focus {
    cursor: text
}

.admin__form-add__item input[type=checkbox],
.admin__form-add__item input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #00bf54;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    outline: 0;
    position: relative;
    margin: 0;
    padding: 0
}

.admin__form-add__item input[type=checkbox]:hover,
.admin__form-add__item input[type=radio]:hover {
    cursor: pointer
}

.admin__form-add__item input[type=checkbox]:checked,
.admin__form-add__item input[type=radio]:checked {
    background-color: #00bf54
}

.admin__form-add__item input[type=checkbox] {
    -webkit-border-radius: 0;
    border-radius: 0
}

.admin__form-add__item input[type=file] {
    display: none
}

.admin__form-add__item select {
    width: 295px;
    height: 35px;
    border: 2px solid #00bf54
}

.admin__form-add__item textarea {
    width: 295px;
    height: 120px;
    outline: 0;
    border: 2px solid #00bf54;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 15px;
    font-size: 14px;
    color: #a1a1a1;
    margin-bottom: 15px;
    overflow-y: auto;
    max-height: 120px
}

.admin__form-add__item textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.admin__form-add__item textarea:-moz-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.admin__form-add__item textarea:-ms-input-placeholder {
    font-size: 14px;
    color: #a1a1a1
}

.admin__form-add__item textarea:hover {
    cursor: pointer
}

.admin__form-add__item textarea:focus {
    cursor: text
}

@media only screen and (max-width:767px) {
    .admin__form-add__item textarea {
        width: 100%
    }
}

.admin__form-add__item button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 110px;
    height: 40px;
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #00bf54;
    border: 2px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

.admin__form-add__item button:hover {
    background-color: #fff;
    color: #00bf54
}

.admin__form-add__item button:disabled:hover {
    color: #fff;
    background-color: #00bf54
}

.admin__edit {
    max-width: 1000px;
    padding-top: 20px;
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #111
}

.admin__edit-headers {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px
}

.admin__edit-headers div {
    text-align: center
}

.admin__edit-headers div:nth-child(1) {
    width: 5%
}

.admin__edit-headers div:nth-child(2) {
    width: 30%
}

.admin__edit-headers div:nth-child(3) {
    width: 15%
}

.admin__edit-headers div:nth-child(4) {
    width: 20%
}

.admin__edit-headers div:nth-child(5) {
    width: 20%
}

.admin__edit-headers div:nth-child(6) {
    width: 10%
}

.admin__edit-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px
}

.admin__edit-body .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px
}

.admin__edit-body .item:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(17, 17, 17, .5)
}

.admin__edit-body .item div {
    text-align: center
}

.admin__edit-body .item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 90px;
    height: 25px;
    font-family: CirceBold, sans-serif;
    font-size: 16px;
    color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none
}

.admin__edit-body .item a.edit {
    background-color: #00bf54;
    border: 2px solid #00bf54
}

.admin__edit-body .item a.edit:hover {
    background-color: #fff;
    color: #00bf54
}

.admin__edit-body .item a.delete {
    background-color: red;
    border: 2px solid red;
    margin-top: 15px
}

.admin__edit-body .item a.delete:hover {
    background-color: #fff;
    color: red
}

.admin__edit-body .item img {
    width: 100px;
    height: 100px
}

.select {
    width: 100%;
    position: relative
}

.select.active .select__head:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.select.active .select__body {
    display: block;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px
}

.select.disabled .select__head {
    opacity: .7;
    border-color: #fff
}

.select.disabled .select__head:hover {
    cursor: default
}

.select.disabled .select__head:after {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important
}

.select.disabled .select__body {
    display: none
}

.select__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 455px;
    height: 50px;
    outline: 0;
    border: 2px solid #00bf54;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    color: #a1a1a1;
    padding: 0 20px 0 15px;
    position: relative;
    z-index: 2
}

.select__head:hover {
    cursor: pointer
}

.select__head:after {
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow_down.png);
    position: absolute;
    top: -webkit-calc(50% - 12px);
    top: calc(50% - 12px);
    right: 5px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    content: ""
}

@media only screen and (max-width:767px) {
    .select__head {
        width: 100%
    }
}

.select__body {
    display: none;
    width: 455px;
    background-color: #fff;
    border: 2px solid #00bf54;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 25px;
    position: absolute;
    top: -webkit-calc(100% - 3px);
    top: calc(100% - 3px);
    z-index: 3
}

@media only screen and (max-width:767px) {
    .select__body {
        width: 100%
    }
}

.select__body .item {
    color: #111;
    margin-bottom: 10px
}

.select__body .item:last-child {
    margin-bottom: 0
}

.select__body .item:hover {
    cursor: pointer;
    font-weight: 700
}

.error__404 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #addbd0
}

@media only screen and (max-width:500px) {
    .error__404 img {
        width: -webkit-calc(100% - 40px);
        width: calc(100% - 40px)
    }
}

.error__404 a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 290px;
    height: 70px;
    background-color: #00bf54;
    border: 4px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-family: CirceBold, sans-serif;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    margin-top: 25px;
    cursor: pointer
}

.error__404 a:hover {
    background-color: #e9b131;
    border-color: #dd8b37
}

@media only screen and (max-width:399px) {
    .error__404 a {
        width: 250px;
        height: 50px;
        font-size: 20px
    }
}

.pay-type {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.pay-type .imgs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.pay-type .imgs img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px
}

.pay-type .imgs img:last-child {
    margin-right: 0;
    margin-bottom: 3px;
    position: relative;
    top: -4px
}

.pay-type input[type=submit] {
    width: 120px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background-color: #00bf54;
    border: 3px solid #00bf54;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 20px
}

.pay-type input[type=submit]:hover {
    color: #111;
    background-color: #fff;
    cursor: pointer
}