.t-input {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    border: 0 none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
}

.t-submit {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    height: 60px;
    border: 0 none;
    font-size: 16px;
    padding-left: 60px;
    padding-right: 60px;
    -webkit-appearance: none;
    font-weight: 700;
    white-space: nowrap;
    background-image: none;
    cursor: pointer;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    background: transparent;
}

.t-name_xl {
    font-size: 24px;
    line-height: 1.35;
}

.t-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #000;
}

.t-submit:hover {
    background-color: #d63742 !important;
}

.t-submit {
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.tcb {
    position: relative;
    z-index: 1000
}

.tcb__btn {
    bottom: 50px;
    right: 100px;
    cursor: pointer;
    position: fixed
}

.tcb__btn_wrapper {
    background: #199c68;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.tcb__btn-text {
    position: absolute;
    right: 80px;
    white-space: nowrap;
    padding: 9px 13px;
    font-size: 15px;
    border-radius: 3px;
    -webkit-transform: translateX(0%) translateY(-50%);
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: .85;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.tcb__btn-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #292929
}

.tcb__btn:not(.tcb__btn_active):hover .tcb__btn_wrapper {
    -webkit-animation: none !important;
    animation: none !important
}

.tcb__btn:not(.tcb__btn_active):hover .tcb__animated-circle {
    -webkit-animation: none !important;
    animation: none !important
}

.tcb__btn_active .tcb__btn_wrapper {
    background: #fff !important
}

.tcb__btn_active .tcb__btn-text {
    visibility: hidden;
    opacity: 0
}

.tcb__btn_animate {
    animation: tcb__btn-animate 2s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation: tcb__btn-animate 2s ease-out;
    -webkit-animation-iteration-count: infinite
}

@-webkit-keyframes tcb__btn-animate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    25% {
        -webkit-transform: rotate(10deg) scale(1.1);
        transform: rotate(10deg) scale(1.1)
    }
    50% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    70% {
        -webkit-transform: rotate(-10deg) scale(1.1);
        transform: rotate(-10deg) scale(1.1)
    }
    100% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
}

@keyframes tcb__btn-animate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    25% {
        -webkit-transform: rotate(10deg) scale(1.1);
        transform: rotate(10deg) scale(1.1)
    }
    50% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    70% {
        -webkit-transform: rotate(-10deg) scale(1.1);
        transform: rotate(-10deg) scale(1.1)
    }
    100% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
}

.tcb__icon, .tcb__icon-close {
    fill: white;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.tcb__icon-close, .tcb__btn_active .tcb__icon {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(.1);
    transform: scale(.1)
}

.tcb__btn_active .tcb__icon-close {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1)
}

@media screen and (max-width: 960px) {
    .tcb__btn {
        bottom: 10px !important;
        right: 10px !important
    }

    .tcb__btn-text {
        font-size: 12px
    }

    .tcb__btn-text::after {
        border-width: 8px;
        right: -16px
    }

    .tcb__popup-container {
        bottom: 75px !important;
        right: 8px !important;
    }

}

.tcb__popup {
    display: none;
    opacity: 0;
    -webkit-transition: opacity ease-in-out .2s;
    transition: opacity ease-in-out .2s
}

.tcb__popup_show {
    opacity: 1
}

.tcb__popup-container {
    margin: 0;
    top: initial;
    left: initial;
    bottom: 125px;
    right: 100px;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
    background: #fff;
    position: fixed;
    z-index: 1;
    cursor: default;
    text-align: center;
    max-width: 360px
}

.tcb__wrapper {
    padding: 30px 35px 40px;
    border-radius: 5px;
    overflow-y: auto;
    max-height: 65vh
}

.tcb__title {
    margin-bottom: 25px
}

.tcb__descr {
    margin-bottom: 25px
}

.tcb__text {
    margin-top: 10px;
    margin-bottom: 4px
}

.tcb__bottom-text {
    margin-top: 20px
}

.tcb__additional-info {
    margin-top: 30px
}

.tcb__input-container {
    margin: 0 auto
}

.tcb__blockinput {
    vertical-align: middle;
    width: 100%;
    padding-bottom: 10px;
    position: relative
}

.tcb__input {
    outline: none;
    height: 50px
}

.tcb .t-input__vis-ph {
    top: 17px
}

.tcb .t-input_pvis {
    padding: 22px 20px 10px 20px
}

.tcb__blockbutton {
    vertical-align: middle;
    width: 100%
}

.tcb__submit {
    height: 50px;
    padding: 0;
    width: 100%;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    background-color: #fa8669;
    color: #fff;
    border-width: 0
}

.tcb__blockinput-errors {
    background: #f66 none repeat scroll 0 0
}

.js-error-control-box .tcb__input {
    border: 1px solid red !important
}

.tcb__blockinput-errors-text {
    color: #fff;
    box-sizing: border-box;
    padding: 0 10px 10px 10px;
    font-family: 'FuturaPT', serif
}

.tcb__blockinput-errors-item {
    padding-top: 10px;
    display: none;
    font-family: 'FuturaPT', serif
}

.tcb__blockinput-errorbox {
    background: #F95D51;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'FuturaPT', serif
}

.tcb__blockinput-success {
    text-align: center;
    padding: 20px;
    font-family: 'FuturaPT', serif
}

.tcb .js-send-form-success .tcb__input-wrapper {
    display: none
}

.tcb__input-wrapper {
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s
}