
.main {
    padding: 15px 0;
}

a, a:focus {
    outline: 0 none;
}

a {
    color: #54BBAF;
    text-decoration: none;
}
a:hover, a:focus {
    color: #54BBAF;
    text-decoration: underline;
}

b, strong {
    font-family: "elektra_medium_proregular";
    font-weight: normal;
}

.fs-big {
    font-size: 18px;
}

.fs-small {
    font-size: 12px;
}

.relative {
    position: relative;
}

.inline-block {
    display: inline-block;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
/*=================================================
  Шрифты
=================================================*/

html, body {
  font-family: 'istok_webregular';
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: 'elektra_medium_proregular';
}


/*=================================================
  Шаги
=================================================*/

.form__steps__wrap {
    position: relative;
}

.steps__five .steps__step {
    width: 20%;
    float: left;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    text-align: center;
}

.steps__step {
    position: relative;
    display: inline-block;
    text-align: center;
}

/*=================================================
  Линия
=================================================*/
.steps__step:after {
    position: absolute;
    content: " ";
    display: inline-block;
    background: #54BBAF;
    min-height: 7px;
    border-radius: 3px;
    float: left;
    width: 54%;
    margin: 24px 7px;
    left: -30%;
    top: 10px;
}

.steps__step.steps__step--first:after {
    display: none;
}

/*=================================================
  Номер шага
=================================================*/

.steps__step__number {
    text-decoration: none;
    display: inline-block;
    padding: 11px;
    font-size: 20px;
    min-width: 55px;
    min-height: 55px;
    margin: 11px 11px 7px;
    border: 2px solid #54BBAF;
    background: #54BBAF;
    transform: rotate(45deg);
}

.steps__step:hover,
.steps__step:focus {
    text-decoration: none;
    outline: 0;
}

.steps__step__title {
    width: 100%;
    clear: both;
    padding: 9px 20px;
    color: #54BBAF;
    font-size: 16px;
    display: inline-block;
    font-size: 16px;

}

.steps__step__number span {
    display: block;
    transform: rotate(-45deg);
    text-align: center;
    color: #fff;
}

/*=================================================
  Неактивные шаги
=================================================*/

.steps__step--disabled .steps__step__number,
.steps__step--disabled:after {
    background: #c8c8c8;
    border-color: #c8c8c8;
}

.steps__step--disabled .steps__step__title {
    color: #c8c8c8;
}

.steps__step.steps__step--passed:after {
    background-color: #54BBAF;
}

.steps__step--passed > .steps__step__number span  {
    color: #fff;
}

/*=================================================
  Активные шаги
=================================================*/

.steps__step--active .steps__step__number {
    background: #fff;
    border-color: #54BBAF;
}

.steps__step--active > .steps__step__number span  {
    color: #54BBAF;
    font-weight: bold;
}

.steps__step--active .steps__step__title {
    font-weight: bold;
}

@media (max-width: 978px) {
    .steps__step::after {
        left: -22%;
        width: 35%;
    }
}

@media (max-width: 768px) {
    .steps__step::after {
        left: -14%;
        width: 15%;
    }

    .steps__step__title {
        font-size: 14px;
        padding: 5px 2px;
    }
}

@media (max-width: 500px) {
    .steps__step::after {
        display: none;
    }

    .steps__five .steps__step,
    .steps__step {
        width: 100%;
        display: block;
        clear: both;
    }

    .steps__step__title {
        float: left;
        padding: 20px 0;
    }
}

/*=================================================
  Форма
=================================================*/
.payments,
.form__footer,
.form {
    margin-bottom: 38px;
}

.form.form__login .title {
    margin: 0;
}

.form.form__login .btn {
    margin-top: 24px;
}

.form__footer,
.form {
    clear: both;
    width: 100%;
    padding: 35px 30px;
    border-radius: 9px;
}
.form-sign-in, .form-sign-up {
    border-radius: 9px;
    margin-bottom: 18px;
    padding: 15px 30px 10px;
}

.form.form--signature {
    padding: 0 40px;
}

.form__footer a {
    color: #fff;
    text-decoration: underline;
}

.form__footer a:hover {
    text-decoration: none;
}

.form hr {
    margin-bottom: 14px;
    margin-top: 6px;
}

.btn.btn-white-inverted:hover,
.btn.btn-white {
    background: #fff;
    color: #54BBAF;
}

.btn.btn-white:hover,
.btn.btn-white-inverted {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

.btn:active,
.btn:focus {
    outline:0;
    outline:none;
}

.btn.btn-green-brd {
    border-color: #54BBAF;
    color: #54BBAF;
}

.btn.btn-green-brd:hover,
.btn.btn-green {
    background: #54BBAF;
    color: #fff;
}

.btn.btn-green:hover {
    background-color: #21ac9d;
}

.btn {

    -moz-user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    font-family: "elektra_medium_proregular";
    font-size: 18px;
    font-weight: normal;
    line-height: 1.42857;
    margin-bottom: 0;
    padding: 10px 47px 8px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    background: transparent;
}

@media (max-width: 768px) {
    .btn {
        padding: 6px 25px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .btn {
        padding: 6px 25px;
        font-size: 16px;
    }
}

.btn.btn-small {
    padding: 6px 35px;
    font-size: 16px;
}

.form--grey {
    background: #f1f3f4;
}

.form--grey-bordered {
    background: transparent;
    border: 1px solid #f1f3f4;
}

.form__footer--green {
    background: #54BBAF;
    color: #fff;
    padding: 26px 40px;
}


.form__footer .inner-text {
    padding: 11px 0;
    font-size: 18px;
}


.form--grey.form-sign-up .control-label,
.form--grey.form-sign-in .control-label,
.form.form--grey .control-label {
    color: #008080;
    font-size: 17px;
    font-weight: normal;
    font-style: italic;
    position: relative;
}

.form.form--grey .smaller-label-text,
.smaller-label-text {
    font-size: 14px;
}

.form .control-label--icon {
    min-height: 32px;
    margin-bottom: 1px;
}

.form .control-label__two-rows .two-rows {
    max-width: 140px;
    line-height: 16px;
    display: inline-block;
    float: left;
    position: relative;
}


.form .control-label .one-row {
    display: block; padding:  4px 0 4px 40px;  word-break: break-all;
    display: inline-block;
}

.table .icon-row {
    display: inline-block;
    padding: 4px 0 4px 40px;
    color: #4593a5;
    font-size: 16px;
    font-weight: normal;
}

.table .heading {
    color: #4593a5;
    font-size: 16px;
    font-weight: normal;
}

.form .radio--inline label {
    margin-right: 15px;
}

.form textarea.form-control {
    max-width: 100%;
    min-width: 100%;
    min-height: 70px;
    max-height: 500px;
}

.form .control-label__two-rows .form__icon {
    float: left;
}

.form.form--grey hr {
    border-color:  #d4dce3;
    background: #d4dce3;
    color: #d4dce3;
}

.form .title {
    margin: 0 0 10px 0;
}

.form .title.title--grey {
    margin: 0 0 12px 0;
}

.form--grey.form-sign-up .title,
.form--grey.form-sign-in .title,
.form.form--grey .title {
    color: #92a8bd;
}

.form .form-control {
    background-color: #fff;
    background-image: none;
    border: 1px solid #cad2d8;
    border-radius: 3px;
    box-shadow: none;
    color: #6a6a6a;
    display: block;
    font-size: 14px;
    height: 32px;
    line-height: 1.42857;
    padding: 6px 6px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.form .form-control:focus {
    border-color: #54BBAF;
}

.w276 {
    max-width: 276px;
}

.form.form--grey ::-webkit-input-placeholder { /* WebKit browsers */
    color:    #b7b7b7;
}
.form.form--grey :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #b7b7b7;
   opacity:  1;
}
.form.form--grey ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #b7b7b7;
   opacity:  1;
}
.form.form--grey :-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #b7b7b7;
}

/*=================================================
  Иконки
=================================================*/

.form__icon {
    background: url(../img/forms/form_icons.png) no-repeat;
    display: inline-block;
    position: absolute;
    margin: 0 10px -10px 0;
}

.title .form__icon {
    position: relative;
}

.title .form__icon {
    margin: 0 10px -8px 0;
}

.form__icon--arrow-left {
    background-position: -48px -280px;
    width: 26px;
    height: 26px;
}

.form__icon--arrow-right {
    background-position: -49px -250px;
    width: 26px;
    height: 26px;
}

.form__icon--bike {
    background-position: -93px -217px;
    width: 28px;
    height: 29px;
}

.form__icon--calendar {
    background-position: -8px -290px;
    width: 30px;
    height: 30px;
}

.form__icon--car{
    background-position: -8px -131px;
    width: 146px;
    height: 70px;
    margin: 0 0 29px 0;
    position: relative;
}

.form__icon--car-small{
    background-position: -127px -290px;
    width: 27px;
    height: 25px;
}

.form__icon--clock{
    background-position: -127px -217px;
    width: 31px;
    height: 31px;
}

.form__icon--defender{
    background-position: -128px -256px;
    width: 25px;
    height: 29px;
}

.form__icon--exchange{
    background-position: -127px -324px;
    width: 30px;
    height: 28px;
}

.form__icon--gear{
    background-position: -93px -288px;
    width: 28px;
    height: 30px;
}

.form__icon--gift{
    background-position: -94px -322px;
    width: 26px;
    height: 27px;
}

.form__icon--map{
    background-position: -219px -3px;
    width: 144px;
    height: 99px;
    margin: 0 0 0 39px;
    position: relative;
}

.form__icon--map-world{
    background-position: -3px -5px;
    width: 195px;
    height: 98px;
    position: relative;
}

.form__icon--pass{
    background-position: -8px -252px;
    width: 24px;
    height: 30px;
}

.form__icon--people{
    background-position: -49px -312px;
    width: 28px;
    height: 28px;
}

.form__icon--person{
    background-position: -7px -325px;
    width: 28px;
    height: 28px;
}

.form__icon--point{
    background-position: -97px -254px;
    width: 20px;
    height: 30px;
}

.form__icon--taxi{
    background-position: -52px -219px;
    width: 29px;
    height: 18px;
}

.form__icon--wallet{
    background-position: -7px -215px;
    width: 28px;
    height: 22px;
}

.form__icon--wheel{
    background-position: -50px -348px;
    width: 31px;
    height: 31px;
}

.form__icon--privat{
    background-position: -200px -120px ;
    width: 155px;
    height: 130px;
    margin: 0 auto;
    position: relative;
}

.form__icon--downloads{
    background-position: -227px -258px ;
    width: 106px;
    height: 130px;
    margin: 0 auto;
    position: relative;
}

.form__icon--cards{
    background-position: -357px -133px ;
    width: 103px;
    height: 130px;
    margin: 0 auto;
    position: relative;
}

.form__icon--case{
    background-position: -92px -358px ;
    width: 28px;
    height: 26px;
}

.form__icon--tick{
    background-position: -129px -360px ;
    width: 28px;
    height: 28px;
}

.form__icon--docs{
    background-position: -161px -257px ;
    width: 24px;
    height: 29px;
}

.form__icon--calendar-small{
    background-position: -161px -219px ;
    width: 24px;
    height: 23px;
}

.form__icon--house {
    background-position: -6px -358px;
    height: 30px;
    width: 30px;
}

.form__icon--painting {
    background-position: -8px -391px;
    height: 24px;
    width: 30px;
}


.form__icon--help {
    background: none repeat scroll 0 0 #54BBAF;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-style: normal;
    font-weight: bold;
    height: 20px;
    line-height: 22px;
    padding: 0 7px 0 6px;
    text-align: center;
    margin-left: 7px;
    font-family: 'istok_webregular';
    position: absolute;
    right: -27px;
    top: 0;
}

.title .form__icon--help,
.radio .form__icon--help,
.checkbox .form__icon--help {
    position: relative;
    right: 0;
}


/*=================================================
  Form Styler
=================================================*/
.jq-checkbox {
    top: -1px;
    width: 13px;
    height: 13px;
    border: 1px solid #cad2d8;
    border-radius: 2px;
    vertical-align: middle;
    cursor: pointer;
    background: #ffffff;
    margin-left: -20px;
}
.jq-checkbox.checked .jq-checkbox__div {
    width: 9px;
    height: 6px;
     margin: 2px 0 0 1px;
    border-radius: 2px;
    background: url(../img/forms/checkbox.png) no-repeat

}
.jq-checkbox.focused {
    border: 1px solid #08C;
}
.jq-checkbox.disabled {
    opacity: 0.55;
    filter: alpha(opacity=55);
}


.jq-radio {
    width: 13px;
    height: 13px;
    border: 1px solid #cad2d8;
    margin-left: -20px;
    border-radius: 50%;
    vertical-align: middle;
    background: #fff;
    cursor: pointer;
}
.jq-radio.checked .jq-radio__div {
    width: 5px;
    height: 5px;
    margin: 3px 0 0 3px;
    border-radius: 50%;
    background: #54BBAF;
}
.jq-radio.focused {
    border: 1px solid #08C;
}
.jq-radio.disabled {
    opacity: 0.55;
    filter: alpha(opacity=55);
}


.jq-file {
    width: 270px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    border-radius: 4px;
}
.jq-file input {
    cursor: pointer;
    height: auto;
    line-height: 1em;
}
.jq-file__name {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 32px;
    padding: 0 80px 0 10px;
    color: #333;
    font: 14px/30px Arial, sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    border: 1px solid #CCC;
    border-bottom-color: #B3B3B3;
    border-radius: 4px;
    box-shadow: inset 1px 1px #F1F1F1;
    background: #FFF;
}
.focused .jq-file__name {
    border: 1px solid #5794BF;
}
.jq-file__browse {
    position: absolute;
    top: 1px;
    right: 1px;
    padding: 0 10px;
    border-left: 1px solid #CCC;
    border-radius: 0 4px 4px 0;
    background: #F1F1F1 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAIAAABi9+OQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpi+v//PxM2zMDAQEtxgAADAF2uTe9L4getAAAAAElFTkSuQmCC) repeat-x;
    box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,0.1);
    color: #333;
    text-shadow: 1px 1px #FFF;
    font: 14px/30px Arial, sans-serif;
}
.jq-file:hover .jq-file__browse {
    background-color: #E6E6E6;
    background-position: 0 -10px;
}
.jq-file:active .jq-file__browse {
    background: #F5F5F5;
    box-shadow: inset 1px 1px 3px #DDD;
}
.jq-file.disabled .jq-file__name {
    color: #888;
}
.jq-file.disabled,
.jq-file.disabled .jq-file__browse {
    border-color: #CCC;
    background: #F5F5F5;
    box-shadow: none;
    color: #888;
}

.jq-selectbox {
    vertical-align: middle;
    cursor: pointer;
    width: 100%;
}

.jq-selectbox__select {
    height: 32px;
    padding: 0 20px 0 6px;
    border: 1px solid #cad2d8;
    border-radius: 3px;
    color: #333;

    background: #fff;
}
.jq-selectbox__select:hover {
    background-color: #fff;
    cursor: pointer;
}
.jq-selectbox__select:active {
    background: #fff;
    box-shadow: inset 1px 1px 3px #DDD;
}
.jq-selectbox.focused .jq-selectbox__select {
    border: 1px solid #54BBAF;
}
.jq-selectbox.disabled .jq-selectbox__select {
    border-color: #CCC;
    background: #F5F5F5;
    box-shadow: none;
    color: #888;
}
.jq-selectbox__select-text {
    display: block;
    width: 100% !important;
    padding: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.jq-selectbox .placeholder {
    color: #888;
}
.jq-selectbox__trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
}
.jq-selectbox__trigger-arrow {
    position: absolute;
    top: 14px;
    right: 6px;
    width: 10px;
    height: 8px;
    background: url(../img/forms/select_arrow.png) 0 -6px no-repeat;
    opacity: 1;
    filter: alpha(opacity=100);
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow {
    opacity: .6;
    filter: alpha(opacity=60);
}
.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
    opacity: 0.3;
    filter: alpha(opacity=30);
}
.jq-selectbox__dropdown {
    top: 33px;
    width: 100% !important;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 1px solid #CCC;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font: 16px/18px Arial, sans-serif;
}
.jq-selectbox__search {
    margin: 5px;
}
.jq-selectbox__search input {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 5px 27px 6px 8px;
    outline: none;
    border: 1px solid #CCC;
    border-radius: 3px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
    box-shadow: inset 1px 1px #F1F1F1;
    color: #333;
    -webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
    -webkit-appearance: none;
}
.jq-selectbox__not-found {
    margin: 5px;
    padding: 5px 8px 6px;
    background: #F0F0F0;
    font-size: 13px;
}
.jq-selectbox ul {
    margin: 0;
    padding: 0;
}
.jq-selectbox li {
    min-height: 18px;
    padding: 5px 10px 6px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
         -o-user-select: none;
    white-space: nowrap;
    color: #231F20;
}
.jq-selectbox li.selected {
    background-color: #A3ABB1;
    color: #FFF;
}
.jq-selectbox li:hover {
    background-color: #54BBAF;
    color: #FFF;
}
.jq-selectbox li.disabled {
    color: #AAA;
}
.jq-selectbox li.disabled:hover {
    background: none;
}
.jq-selectbox li.optgroup {
    font-weight: bold;
}
.jq-selectbox li.optgroup:hover {
    background: none;
    color: #231F20;
    cursor: default;
}
.jq-selectbox li.option {
    padding-left: 25px;
}


.jq-select-multiple {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1px;
    border: 1px solid #CCC;
    border-bottom-color: #B3B3B3;
    border-radius: 4px;
    box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,0.1);
    background: #FFF;
    color: #333;
    font: 16px/18px Arial, sans-serif;
    cursor: default;
}
.jq-select-multiple.focused {
    border: 1px solid #5794BF;
}
.jq-select-multiple.disabled {
    border-color: #CCC;
    background: #F5F5F5;
    box-shadow: none;
    color: #888;
}
.jq-select-multiple ul {
    margin: 0;
    padding: 0;
}
.jq-select-multiple li {
    padding: 3px 9px 4px;
    list-style: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
         -o-user-select: none;
            user-select: none;
    white-space: nowrap;
}
.jq-select-multiple li:first-child {
    border-radius: 3px 3px 0 0;
}
.jq-select-multiple li:last-child {
    border-radius: 0 0 3px 3px;
}
.jq-select-multiple li.selected {
    background: #08C;
    color: #FFF;
}
.jq-select-multiple li.disabled {
    color: #AAA;
}
.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
    background: #CCC;
    color: #FFF;
}
.jq-select-multiple li.optgroup {
    font-weight: bold;
}
.jq-select-multiple li.option {
    padding-left: 25px;
}

.overview .form-group {
    margin-bottom: 0px;
}

h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
    color: inherit
}
.form-group__date-selector .col-year,
.form-group__date-selector .col-month,
.form-group__date-selector .col-date {
    width: 33.3333%;
    float: left;
}

.form-group__date-selector .col-date {
    padding-right: 19px;
}

.form-group__date-selector .col-year {
    padding-left: 19px;
}

.form-group__date-selector .col-month {

}

.form-group__date-selector.form-group__date-selector--calendar .col-year,
.form-group__date-selector.form-group__date-selector--calendar .col-date {
    width: 29%;
    max-width: 83px;
    float: left;
}

.form-group__date-selector.form-group__date-selector--calendar .col-month {
    width: 30%;
    max-width: 85px;
    position: relative;
}

.form-group__date-selector.form-group__date-selector--calendar .col-year {
    padding-left: 5px;
    position: relative;
}

.form-group__date-selector.form-group__date-selector--calendar  .col-date {
    padding-right: 5px;
    position: relative;
}

.form-group__date-selector.form-group__date-selector--calendar  .col-calendar {
    padding: 0;
    float: left;
    position: absolute;
    right: 0;
    top: 0;
}

.form-group__date-selector.form-group__date-selector--calendar  .col-calendar .form__icon {
    margin: 5px 0 0 7px;
    border: 0;
}

/*Response*/
.response .table > thead > tr > th,
.response .table > tbody > tr > th,
.response .table > tfoot > tr > th,
.response .table > thead > tr > td,
.response .table > tbody > tr > td,
.response .table > tfoot > tr > td {
    vertical-align: middle;
}

.bg-white {
    background: #fff
}

.bg-green td {
    background: #54BBAF;
    color: #fff;
    border-color: #54BBAF;
}

.table > tbody > tr > td.valign-middle,
.table > thead > tr > th.valign-middle,
.table > tfoot > tr > td.valign-middle {
    vertical-align:middle;
}

.table.table--widetr > thead > tr > th,
.table.table--widetr > tbody > tr > th,
.table.table--widetr > tfoot > tr > th,
.table.table--widetr > thead > tr > td,
.table.table--widetr > tbody > tr > td,
.table.table--widetr > tfoot > tr > td {
  padding: 8px 10px;
}

.priceOld {
    font-family: "elektra_medium_proregular";
    font-size: 17px;
    margin-left: 15px;
    text-decoration: line-through;
    cursor: default;
}
.priceOld.top {
  color: #999;
  font-size: 15px;
  margin-left: 0;
  position: relative;
  bottom: -5px;
}
.panel-title .priceOld{
  color: #8F8F8F;
  position: absolute;
  top: -19px;
  left: 0;
  cursor: default;
}
.price {
    font-family: "elektra_medium_proregular";
    font-size: 16px;
}

/*Продпись*/
.signature__name {
    padding-top: 20px;
}

.signature__name span {
  display: inline-block;
  vertical-align: middle;

  padding-right: 55px;
}

.signature__name span span {
    clear: both;

}
/*Платежи*/
.payments .fs20.green{
    min-height: 44px;
    margin-bottom: 33px;
}


/*Panels*/

.panel-default > .panel-heading {
    background: #f1f3f4;
    color: #6a6a6a;
}

.panel {
    box-shadow: none;
    background: #f1f3f4;
}

.panel-default {
    border-color: #fff;
}

.panel-default > .panel-heading {
    border-color: #f1f3f4;
}

.panel-title {
    padding: 10px 0;
    position: relative;
}
.no_kredit{
  
}
.no_kredit .discountP{
  
}
.no_kredit .discountP span{
  
}
.kredit{
  
}
.kredit .left{
  
}
.kredit .right{
  
}
.kredit .priceOld{
  top: -19px;
}
.kredit .discountP{

}
.kredit .discountP span{

}
.kredit big{
  font-weight: bold;
}
.kredit p{
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
}
.kredit p.or{
  text-align: center;
  padding-top: 3px;
}

.panel-title a span {
    color: #4593a5;
     text-decoration: none
}

.panel-title a span.underline {
    text-decoration: underline;
    color: #6a6a6a;
}


.panel-title a:hover span.underline,
.panel-title a:hover {
    text-decoration: none;
    color: #4593a5
}

.panel-title a:hover,
.panel-title a:hover span.underline,
.panel-title a:focus,
.panel-title a:active {
    text-decoration: none;
}

.panel-title .price {
    padding: 0 15px;
    font-size: 21px;
    font-weight: bold;
}

.list-group-item {
    border-color: #f1f3f4
}

.list--green {
    list-style-image: url(../img/forms/bullet.gif);
    margin-bottom: 0;
}

.list--smallpadding {
    padding-left: 14px;
    margin: 0;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.green {
    color: #307c90;
}

.nopadding {
    margin:0!important;
    padding:0!important;
}

.error {
    color: #e20b0b;
    font-weight: normal;
    padding: 5px 1px;
}

/*Tooltips*/
.form .tooltip {
    font-size: 14px;
}
.form__footer--green .tooltip.top .tooltip-arrow,
.form .tooltip.top .tooltip-arrow {
  border-top-color: #fff;
  opacity: 1!important;
}
.form__footer--green .tooltip-inner,
.form .tooltip-inner {
  background: #fff;
  color: #6a6a6a;
  font-style: normal;
  -webkit-box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.2);
   box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.2);
   opacity: 1!important;
}
.form .tooltip.in .form__footer--green,
.form .tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.form__footer--green  .popover-title,
.form .popover-title {
    color: #6a6a6a;
    background: #f1f3f4;

}
.form__footer--green .popover-content,
.form .popover-content {
    color: #6a6a6a;
}
.form .popover,
.form__footer--green .popover {
    -webkit-box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.2);
}

/*Alerts*/
.alert {
    margin-bottom: 0;
}

.alert-success {
    background: #def5f2;
    color: #21a698;
    border-color: #21a698;
}

.alert-info {
    background: #d9e3f5;
    color: #3d547e;
    border-color: #3d547e;
}

.alert-warning {
    background: #fff9d9;
    color: #ba9037;
    border-color: #ba9037;
}

.alert-danger {
    background: #fee4e4;
    color: #f64b4b;
    border-color: #f64b4b
}
.jq-selectbox__dropdown ul {
    max-height: 203px;
}
.jq-selectbox__dropdown li.disabled {
    display: none;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

.t-green {
    background: #54BBAF;
    color: #fff;
    font-weight: bold;
}
.form .form-control {
  color: #000;
  font-size: 16px;
}
body {
    font-size: 16px;
}
.form__footer, .form {
    padding: 30px 25px;
}
.frame-header .top__phone {
    color: #144c70;
    font-family: "elektra_medium_proregular";
    font-size: 16px;
    margin: 0;
    padding: 5px 0 0;
    position: relative;
}
.frame-header .top__phone span {
    line-height: 20px;
}
.frame-header .top__phone img {
    margin-right: 14px;
    float: left;
    margin-top: 8px;
}
.frame-header .top__phone-scope {
    width: 152px;
}

.datepicker td.day,
.datepicker th.prev,
.datepicker th.next,
.datepicker th.today {
    cursor: pointer;
}
.loader {
    text-align: center;
    font-size: 2em;
    color: #ccc;
    display: none;
}

#user-sign-up .jq-checkbox {
    top: -2px;
    width: 16px;
    height: 16px;
}
#user-sign-up .jq-checkbox.checked .jq-checkbox__div {
    margin: 4px 0 0 3px;
}
.form-group__date-selector label.error {
    padding-right: 15px;
    padding-left: 15px;
}

.faq-panel .panel-heading {
    padding: 2px 15px;
}
.faq-panel .nav-pills > li > a {
    border-radius: 0;
}
.faq-panel .nav > li > a {
    padding: 8px 15px;
}
.faq-panel .nav-pills > li.active > a,
.faq-panel .nav-pills > li.active > a:hover,
.faq-panel .nav-pills > li.active > a:focus {
    background: #54BBAF;
}

.faq-panel .panel-default {
    border-color: #f1f3f4;
}

.faq-panel .media-left,
.faq-panel .media > .pull-left {
    padding-right: 0;
}



.radio label, .checkbox label{
  width: 100%;
}

.in_ukraine{
  position: relative;
  top: -11px;
}
.in_ukraine .form__icon--help{
  background-color: #fff;
  color: #54BBAF;
}
.in_ukraine .jq-checkbox{
  height: 24px;
  width: 24px;
}
.in_ukraine .jq-checkbox.checked .jq-checkbox__div{
  height: 20px;
  width: 20px;
  margin-top: 3px;
  -webkit-background-size: contain;
  background-size: contain;
}








