body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

h2 {
    color: #111111;
    font-size: 60px;
    font-family: 'Montserrat', sans-serif;
}

h3 {
    font-weight: 700;
    font-size: 28px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tablet-show,
.phone-show,
.hide {
    display: none;
}

header {
    height: 108px;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}

header .top-header-section {
    width: 100%;
}

header .row > div {
    height: 108px;
    display: flex;
    align-items: center;
}

header .row > div:first-child {
    display: none;
}

header .row > div:last-child {
    padding-left: 0;
}

header .row .col-lg-6 {
    justify-content: center;
    border-right: 1px solid #eee;
}

header nav {
    position: relative;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline-block;
    margin-right: 35px;
    position: relative;
}

header nav ul li:last-child {
    margin-right: 0;
}

header nav ul li a {
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    font-size: 15px;
}

header nav ul li a:hover {
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

header nav ul li a:hover:after {
    width: calc(100% + 30px);
}

header nav ul li a:after {
    content: "";
    display: inline-block;
    height: 10px;
    width: 0;
    background-color: #c2e1fe;
    position: absolute;
    left: -10px;
    bottom: 0;
    z-index: -1;
    transition: .5s;
}

header nav ul .active a:after {
    width: calc(100% + 30px);
}

header nav ul .dropdown .submenu {
    position: absolute;
    top: 65px;
    border-top: 2px solid #b3dafe;
    width: 240px;
    padding-top: 18px;
    box-shadow: 0px 4px 15px #cecece;
    margin-left: -45px;
    display: none;
    background-color: #fff;
}

header nav ul .dropdown .submenu li {
    display: inline-block;
    margin: 0 0 12px 50px;
}

header nav ul .dropdown .submenu li a {
    font-size: 16px;
    text-transform: none;
    font-weight: 400;
}

header nav ul .dropdown .submenu li a:hover {
    font-weight: 600;
    width: calc(100% + 30px);
}

header nav ul .dropdown .submenu li a:hover:after {
    width: calc(100% + 30px);
}

header nav ul .dropdown .submenu li a:after {
    width: 0;
}

header nav ul .dropdown .submenu .active-sub a {
    font-weight: 600;
}

header nav ul .dropdown .submenu .active-sub a:after {
    width: calc(100% + 30px);
}

header nav ul .dropdown > a img {
    transform: rotate(0deg);
    transition: .5s;
}

header nav ul .dropdown.active > a img {
    transform: rotate(-180deg);
}

header nav ul .blue-link a {
    color: #4d7ae2;
}

header .right-section {
    position: relative;
    width: 100%;
    text-align: right;
    height: 100%;
}

header .right-section .language-block {
    display: inline-flex;
    width: 24%;
    border-right: 1px solid #eee;
    height: 100%;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    position: relative;
}

header .right-section .language-block .choose-lang {
    cursor: pointer;
}

header .right-section .language-block .choose-lang .lang-arrow {
    margin-left: 5px;
    transition: .5s;
}

header .right-section .language-block .choose-lang .lang-arrow.rotate {
    transform: rotate(-180deg);
}

header .right-section .language-block .list-lang {
    position: absolute;
    width: 100%;
    border-top: 2px solid #b3dafe;
    box-shadow: 0px 4px 15px #cecece;
    top: 107px;
    background-color: #fff;
    padding: 20px 0 0 0;
    text-align: center;
    display: none;
}

header .right-section .language-block .list-lang ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header .right-section .language-block .list-lang ul img {
    margin-bottom: 20px;
}

header .right-section .sign-section {
    display: inline-flex;
    height: 100%;
    width: 75%;
    vertical-align: middle;
    align-items: center;
    justify-content: flex-end;
}

header .right-section .sign-section a {
    display: inline-block;
    border-radius: 5px;
    width: 150px;
    height: 50px;
    box-shadow: 0 2px 5px #ebebeb;
    font-size: 16px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
    background-position: 30px 50%;
}

header .right-section .sign-section a:hover {
    text-decoration: none;
}

header .right-section .sign-section a:hover:last-child {
    background-image: url(../images/icons-add-user_action.png);
    color: #4992f2;
}

header .right-section .sign-section a:hover:first-child {
    color: #222;
}

header .right-section .sign-section a:first-child {
    border: 1px solid #d7d7d7;
    color: #666666;
    background-image: url(../images/icon_signin.png);
    margin-right: 18px;
}

header .right-section .sign-section a:last-child {
    border: 1px solid #4992f2;
    font-weight: 600;
    background-image: url(../images/icons-add-user.png);
    color: #297be6;
    background-position: 25px 50%;
    padding-left: 30px;
}

main {
    padding-top: 108px;
}

main .custom-container {
    max-width: 1215px;
    margin: 0 auto;
}

main #excange-form {
    margin-top: 80px;
    z-index: 2;
    position: relative;
}

main #excange-form .row {
    margin-bottom: 70px;
}

main #excange-form .row:last-child {
    margin-bottom: 0;
}

main #excange-form .form-group {
    margin-bottom: 0;
}

main #excange-form .exchange-btn {
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
    max-width: 130px;
}

main #excange-form label {
    width: 100%;
    font-size: 18px;
    color: #666666;
}

main #excange-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #c4c3c3;
    height: 58px;
    outline: none;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

main #excange-form input[type=checkbox] {
    width: 30px;
    height: 10px;
}

main #excange-form .blue-form-btn {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    background-color: #297be6;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 3px 7px #c2c2c2;
    transition: .5s;
}

main #excange-form .blue-form-btn:hover {
    background-color: #4992f2;
    text-decoration: none;
}

main #excange-form .left-sect {
    padding-right: 65px;
}

main #excange-form .right-sect {
    padding-left: 65px;
}

main #excange-form .right-sect .form-group {
    position: relative;
}

main #excange-form .right-sect .choose-sel {
    border-bottom: 1px solid #c4c3c3;
    width: 100%;
    height: 58px;
    padding-top: 4px;
    cursor: pointer;
}

main #excange-form .right-sect .choose-sel .content-sel {
    padding: 0 30px;
    font-size: 18px;
    color: #333333;
    text-transform: uppercase;
}

main #excange-form .right-sect .choose-sel .content-sel .icon-block {
    width: 42px;
    text-align: center;
    margin-right: 6px;
    display: inline-block;
}

main #excange-form .right-sect .choose-sel .content-sel img {
    margin-right: 6px;
}

main #excange-form .right-sect .choose-sel .content-sel:after {
    content: '';
    background-image: url(../images/caret-down.png);
    width: 13px;
    height: 7px;
    display: inline-block;
    background-size: 100% 100%;
    position: absolute;
    right: 55px;
    top: 20px;
}

main #excange-form .right-sect .variant-chose {
    border-top: 2px solid #b3dafe;
    box-shadow: 0px 4px 15px #cecece;
    background-color: #fff;
    width: 100%;
    position: absolute;
    left: 0;
    padding: 25px 30px 0 30px;
    display: none;
    z-index: 2;
    top: 57px;
}

main #excange-form .right-sect .variant-chose .content-sel {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333333;
    text-transform: uppercase;
    cursor: pointer;
}

main #excange-form .right-sect .variant-chose .content-sel .icon-block {
    width: 42px;
    text-align: center;
    margin-right: 6px;
    display: inline-block;
}

main #excange-form .right-sect .check-box-gen {
    margin-top: 20px;
}

main #excange-form .right-sect .check-box-gen .jq-checkbox {
    margin-right: 10px;
}

main #excange-form .right-sect .check-box-gen label {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    width: inherit;
}

main #excange-form .right-sect .check-box-gen .info-icon {
    width: 13px;
    height: 14px;
    display: inline-block;
    background-image: url(../images/info-icon-grey.png);
    background-size: 100% 100%;
    margin-left: 5px;
    margin-bottom: -2px;
    cursor: pointer;
}

main #excange-form .right-sect .check-box-gen .info-icon.active {
    background-image: url(../images/info-icon.png);
}

main #excange-form .right-sect .check-box-gen .info-explanations {
    background-color: #fff;
    border-radius: 0 5px 5px 5px;
    box-shadow: 0px 4px 15px #cecece;
    border: 1px solid #e5e5e5;
    padding: 12px 20px;
    min-height: 90px;
    margin-top: 3px;
    max-width: 340px;
    margin-left: 28px;
    position: absolute;
    width: 100%;
    font-size: 14px;
    display: none;
}

main #excange-form .right-sect .more-info {
    color: #666666;
    font-size: 14px;
    margin-top: 15px;
    padding-left: 84px;
}

main #excange-form .right-sect .more-info a {
    text-decoration: underline;
    color: #4992f2;
    float: right;
    margin-right: 55px;
}

main #excange-form .right-sect .more-info a:hover {
    text-decoration: none;
    color: #297be6;
}

main #excange-form .exchange-btn {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    text-align: center;
    top: 36%;
}

.main-sec-section {
    margin-top: 80px;
}

.just-exchanged {
    position: relative;
    border-right: 1px solid #eeeeee;
}

.just-exchanged h3 {
    margin-bottom: 50px;
}

.just-exchanged ul li {
    margin-bottom: 30px;
    font-size: 13px;
    color: #999999;
}

.just-exchanged ul li i {
    margin-right: 5px;
}

.just-exchanged ul li .title {
    width: 142px;
    display: inline-block;
    vertical-align: middle;
}

.just-exchanged ul li .currency-1 {
    width: 85px;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}

.just-exchanged ul li .arrow {
    width: 35px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.just-exchanged ul li .currency-2 {
    width: 117px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.just-exchanged ul .green {
    color: #71c69f;
    font-weight: 700;
}

.connect-to-chat {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}

.connect-to-chat h3 {
    margin-bottom: 25px;
}

.connect-to-chat .chat-section {
    position: relative;
}

.connect-to-chat .chat-section .chat-header {
    height: 60px;
    background-color: #a9caf5;
    border-radius: 5px 5px 0 0;
    padding: 0 18px;
}

.connect-to-chat .chat-section .chat-header .number-of-users {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    float: right;
    padding: 18px 0;
}

.connect-to-chat .chat-section .chat-header .number-of-users img {
    margin-top: -3px;
}

.connect-to-chat .chat-section .chat-header > img {
    padding: 13px 0;
}

.connect-to-chat .chat-section .chat-content {
    border-right: 2px solid #dddddd;
    border-left: 2px solid #dddddd;
}

.connect-to-chat .chat-section .chat-content .chat-messages {
    height: 1000px;
}

.connect-to-chat .chat-section .chat-content .user-message {
    padding: 12px 15px 0 15px;
    position: relative;
}

.connect-to-chat .chat-section .chat-content .user-message .date-chat {
    color: #999999;
    font-size: 12px;
    position: absolute;
    right: 20px;
}

.connect-to-chat .chat-section .chat-content .user-message .user-pic {
    width: 40px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
}

.connect-to-chat .chat-section .chat-content .user-message .user-cont {
    display: inline-block;
    width: calc(100% - 55px);
    padding-bottom: 12px;
    border-bottom: 1px solid #dddddd;
}

.connect-to-chat .chat-section .chat-content .user-message .user-cont .user-mane {
    font-weight: 700;
    color: #666666;
    font-size: 15px;
    margin-bottom: 10px;
}

.connect-to-chat .chat-section .chat-content .user-message .user-cont .user-mess {
    font-size: 13px;
    color: #333;
}

.connect-to-chat .chat-section .chat-footer {
    height: 55px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    border: 2px solid #dddddd;
    border-top: 2px solid #a9caf5;
    text-align: center;
    padding: 12px 0;
}

.connect-to-chat .chat-section .chat-footer p {
    font-size: 16px;
    color: #333;
}

.connect-to-chat .chat-section .chat-footer p a {
    color: #297be6;
    text-decoration: underline;
}

.connect-to-chat .chat-section .chat-footer p a:hover {
    color: #4992f2;
}

.the-container {
    width: 100%;
}

.the-container .the-content {
    height: 615px;
}

.custom-scrollbar {
    position: relative;
}

.custom-scrollbar .custom-scrollbar-handle {
    display: none;
    width: 10px;
    height: 40px;
    background-color: #a9caf5;
    display: block;
    top: 0;
    right: 0;
    position: absolute;
}

.custom-scrollbar .custom-scrollbar-container {
    overflow-x: hidden;
}

.custom-scrollbar .custom-scrollbar-container .custom-scrollbar-scrolling-content {
    overflow-y: scroll;
    width: calc(100% + 20px);
}

.login-user {
    display: none;
}

.jq-checkbox {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #d7d7d7;
    margin: 0;
}

.jq-checkbox.focused {
    border: 1px solid #d7d7d7;
}

.jq-checkbox.checked .jq-checkbox__div {
    border: none;
    transform: rotate(0deg);
    width: 100%;
    height: 100%;
    margin: 0;
    background-image: url("../images/icon_check-symbol.png");
    background-size: 14px 12px;
    background-position: center center;
    background-repeat: no-repeat;
}

.exchange-steps {
    margin-top: 190px;
    padding-bottom: 220px;
}

.exchange-steps h2 {
    text-align: center;
    margin-bottom: 100px;
}

.exchange-steps .custom-container {
    max-width: 1080px;
}

.exchange-steps .step-block {
    position: relative;
}

.exchange-steps .step-block img {
    max-width: 100%;
}

.exchange-steps .step-block img:hover + .instruction {
    display: block;
}

.exchange-steps .step-block .instruction {
    border-radius: 5px;
    box-shadow: 0px 3px 13.5px 1.5px rgba(0, 0, 0, 0.25);
    padding: 55px 30px;
    width: 820px;
    position: absolute;
    display: none;
    background-color: #fff;
    z-index: 2;
}

.exchange-steps .step-block .instruction:hover {
    display: block;
}

.exchange-steps .step-block .instruction .blue-title {
    font-weight: 300;
    text-transform: uppercase;
    color: #297be6;
    font-size: 26px;
    margin-bottom: 5px;
}

.exchange-steps .step-block .instruction .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
}

.exchange-steps .step-block .instruction .description p {
    font-size: 14px;
}

.exchange-steps .row .col-sm-3:first-child .instruction {
    left: -120px;
}

.exchange-steps .row .col-sm-3:nth-child(2) .instruction {
    left: -250px;
}

.exchange-steps .row .col-sm-3:nth-child(3) .instruction {
    left: -250px;
}

.our-benefits {
    background-image: url("../images/logo_benefits.png");
    background-repeat: no-repeat;
    background-position: center 70%;
}

.our-benefits h2 {
    text-align: center;
    margin-bottom: 100px;
}

.our-benefits .benefits-block {
    height: 200px;
    border-radius: 5px;
    border: 1px solid #c3f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.our-benefits .benefits-block .pic-block {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.our-benefits .benefits-block .pic-block img {
    max-height: 100%;
}

.our-benefits .benefits-block .title {
    font-weight: 700;
    color: #666666;
    font-size: 18px;
    margin-bottom: 0;
}

.our-benefits .benefits-block:hover + .benefits-hover-block {
    display: block;
}

.our-benefits .pic-block {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.our-benefits .pic-block img {
    max-height: 100%;
}

.our-benefits .benefits-hover-block {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 10px #ccc;
    position: absolute;
    z-index: 3;
    width: calc(200% - 30px);
    height: calc(200% - 30px);
    top: 0;
    text-align: center;
    display: none;
}

.our-benefits .benefits-hover-block:hover {
    display: block;
}

.our-benefits .benefits-hover-block .title {
    font-weight: 700;
    color: #212121;
    font-size: 22px;
    margin-bottom: 20px;
}

.our-benefits .benefits-hover-block .descr p {
    font-size: 16px;
    color: #212121;
}

.our-benefits .row .col-lg-3:nth-child(2) .benefits-hover-block, .our-benefits .row .col-lg-3:nth-child(3) .benefits-hover-block, .our-benefits .row .col-lg-3:nth-child(6) .benefits-hover-block, .our-benefits .row .col-lg-3:nth-child(7) .benefits-hover-block {
    left: -50%;
}

.our-benefits .row .col-lg-3:nth-child(4) .benefits-hover-block, .our-benefits .row .col-lg-3:nth-child(8) .benefits-hover-block {
    right: 15px;
}

.our-benefits .row .col-lg-3:nth-child(5) .benefits-hover-block, .our-benefits .row .col-lg-3:nth-child(6) .benefits-hover-block, .our-benefits .row .col-lg-3:nth-child(7) .benefits-hover-block, .our-benefits .row .col-lg-3:nth-child(8) .benefits-hover-block {
    top: -100%;
}

.our-reserves {
    margin-top: 180px;
    padding-bottom: 180px;
}

.our-reserves .custom-container {
    max-width: 1080px;
}

.our-reserves .row .col-md-6{
    padding-right: 95px;
}

.our-reserves .row .col-md-6{
    padding-left: 95px;
}

.our-reserves h2 {
    text-align: center;
    margin-bottom: 100px;
}

.our-reserves .our-reserves-list ul li {
    font-size: 14px;
    color: #999999;
    margin-bottom: 35px;
}

.our-reserves .our-reserves-list ul li .pic-block {
    display: inline-block;
    width: 42px;
    text-align: center;
    margin-right: 15px;
}

.our-reserves .our-reserves-list ul li span.right-curr {
    font-weight: 600;
    font-size: 20px;
    color: #333;
    margin-top: 5px;
    float: right;
}

.our-reserves .our-reserves-btn {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #3784e8;
    color: #297be6;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin: 80px auto 0;
    box-shadow: 0 4px 10px #e5e5e5;
}

.our-reserves .our-reserves-btn:hover {
    text-decoration: none;
    color: #4992f2;
    border-color: #4992f2;
}

.our-reserves .our-reserves-btn:hover {
    text-decoration: none;
    color: #4992f2;
    border: 1px solid #5498f2;
}

.main-tab-section {
    position: relative;
}

.main-tab-section .tab-btns {
    height: 100%;
    width: 69px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.main-tab-section .tab-btns .tab-btn {
    height: 33.3333333%;
    width: 100%;
    border: 1px solid #767776;
    border-left: none;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    position: relative;
    transition: .5s;
}

.main-tab-section .tab-btns .tab-btn span {
    transform: rotate(-90deg);
    display: inline-block;
    width: 323px;
    position: absolute;
    left: -130px;
    font-weight: 600;
    text-align: center;
    top: 46%;
}

.main-tab-section .tab-btns .tab-btn:hover {
    background-color: white;
    background-image: none;
    color: #4992f2;
}

.main-tab-section .tab-btns .tab-btn.active {
    background-color: white;
    background-image: none;
    color: #4992f2;
}

.main-tab-section .tab-content {
    background-image: url("../images/about_us_image.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 970px;
    position: relative;
}

.main-tab-section .tab-content .tab {
    padding: 125px 0 0 0;
    padding-right: 12.5%;
    display: none;
    position: initial;
}

.main-tab-section .tab-content .tab .blue-title {
    font-weight: 700;
    font-size: 28px;
    color: #297be6;
    margin-bottom: 40px;
}

.main-tab-section .tab-content .tab .title {
    font-weight: 700;
    margin-bottom: 0;
}

.main-tab-section .tab-content .tab .description {
    padding-left: 35px;
    margin-bottom: 25px;
}

.main-tab-section .tab-content .tab ul {
    list-style-type: disc;
    padding-left: 75px;
    margin-bottom: 60px;
}

.main-tab-section .tab-content .tab a.bottom-link {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #3784e8;
    color: #297be6;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 3px 10px #e9e9e9;
    position: absolute;
    bottom: 125px;
}

.main-tab-section .tab-content .tab a.bottom-link:hover {
    text-decoration: none;
    color: #4992f2;
    border-color: #4992f2;
}

.main-tab-section .tab-content .tab a.bottom-link:hover {
    color: #4992f2;
}

.main-tab-section .tab-content .tab.active {
    display: block;
}

.main-tab-section .tab-content .tab3 {
    padding-top: 40px;
}

.main-tab-section .tab-content .tab3 .blue-title {
    margin-bottom: 15px;
}

.main-tab-section .tab-content .tab3 a.bottom-link {
    bottom: 50px;
    left: 54.5%;
}

.main-tab-section .tab-content.tabbg2 {
    background-image: url("../images/referal_image.png");
}

.main-tab-section .tab-content.tabbg3 {
    background-image: url("../images/crypto_image.png");
    background-position: top left;
    background-size: contain;
    background-color: #f8f8f9;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block {
    position: relative;
    margin-bottom: 10px;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-4 {
    -ms-flex: 0 0 37%;
    flex: 0 0 37%;
    max-width: 37%;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-4 img {
    max-width: 100%;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-8 {
    -ms-flex: 0 0 63%;
    flex: 0 0 63%;
    max-width: 63%;
    padding-left: 25px;
    padding-right: 10%;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-8 .title {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 5px;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-8 .date {
    font-size: 12px;
    color: #999999;
    margin-bottom: 20px;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-8 .description {
    color: #212121;
    font-size: 14px;
    padding-left: 0;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-8 a {
    font-weight: 700;
    font-size: 12px;
    color: #297be6;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    bottom: 15px;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-8 a:hover {
    color: #4992f2;
}

.main-tab-section .tab-content.tabbg3 .tab-news .new-block .col-md-8 a img {
    margin-left: 5px;
    margin-top: -3px;
}

.get-bonuses {
    padding-top: 180px;
    padding-bottom: 235px;
}

.get-bonuses h2 {
    text-align: center;
    margin-bottom: 60px;
}

.get-bonuses #get-bonuses {
    padding: 35px 75px 45px 75px;
    box-shadow: 0 3px 10px #cac7c7;
}

.get-bonuses #get-bonuses .title {
    font-weight: 600;
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
}

.get-bonuses #get-bonuses .input-field {
    margin-bottom: 45px;
    position: relative;
}

.get-bonuses #get-bonuses .input-field:nth-child(5) {
    margin-bottom: 35px;
}

.get-bonuses #get-bonuses label {
    display: block;
    color: #999999;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: middle;
}

.get-bonuses #get-bonuses input[type='text'],
.get-bonuses #get-bonuses input[type='email'],
.get-bonuses #get-bonuses input[type='password'] {
    border: none;
    border-bottom: 1px solid #c4c3c3;
    width: 100%;
    outline: none;
    height: 32px;
    color: #333;
    font-weight: 700;
}

.get-bonuses #get-bonuses .show-pass {
    display: inline-block;
    width: 18px;
    height: 12px;
    background-image: url(../images/icon_view.png);
    position: absolute;
    top: 50%;
    right: 0;
    cursor: pointer;
    background-size: 100% 100%;
}

.get-bonuses #get-bonuses .show-pass.active {
    background-image: url(../images/icon_view_action.png);
}

.get-bonuses #get-bonuses .input-field-radio {
    margin-bottom: 20px;
}

.get-bonuses #get-bonuses .input-field-radio input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    display: block;
}

.get-bonuses #get-bonuses .input-field-radio label.switch-btn {
    cursor: pointer;
    text-indent: -9999px;
    width: 28px;
    height: 13px;
    background: #d7d7d7;
    display: block;
    border-radius: 100px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.get-bonuses #get-bonuses .input-field-radio label.switch-btn:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.get-bonuses #get-bonuses .input-field-radio input:checked + label {
    background: #7fb0f0;
}

.get-bonuses #get-bonuses .input-field-radio input:checked + label:after {
    left: calc(100% - 1px);
    transform: translateX(-100%);
}

.get-bonuses #get-bonuses .input-field-radio label:active:after {
    width: 11px;
}

.get-bonuses #get-bonuses .input-field-radio .text-label {
    display: inline-block;
    color: #333333;
    font-size: 14px;
}

.get-bonuses #get-bonuses .bottom-btns {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.get-bonuses #get-bonuses .bottom-btns input {
    display: inline-flex;
    height: 50px;
    width: 150px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
}

.get-bonuses #get-bonuses .bottom-btns .signup {
    color: #fff;
    background-color: #297be6;
    border: 1px solid #297be6;
    font-weight: 700;
    box-shadow: 0 3px 7px #d5d5d5;
    transition: .5s;
}

.get-bonuses #get-bonuses .bottom-btns .signup:hover {
    background-color: #4992f2;
    border: 1px solid #4992f2;
}

.get-bonuses #get-bonuses .bottom-btns .signin {
    color: #777777;
    background-color: #fff;
    border: 1px solid #d7d7d7;
}

.get-bonuses #get-bonuses .bottom-btns .signin:hover {
    color: #666666;
}

.get-bonuses .gb-information {
    padding-left: 70px;
}

.get-bonuses .gb-information .title {
    font-weight: 700;
    color: #297be6;
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 35px;
}

.get-bonuses .gb-information .descr {
    margin-bottom: 20px;
}

.get-bonuses .gb-information ul li {
    margin-bottom: 25px;
    padding-left: 55px;
    background-image: url("../images/icon_check-symbol.png");
    background-repeat: no-repeat;
    background-position: 20px 0;
}

.input-field-radio {
    margin-bottom: 20px;
}

.input-field-radio input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    display: block;
}

.input-field-radio label.switch-btn {
    cursor: pointer;
    text-indent: -9999px;
    width: 28px;
    height: 13px;
    background: #d7d7d7;
    display: block;
    border-radius: 100px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.input-field-radio label.switch-btn:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.input-field-radio input:checked + label {
    background: #7fb0f0;
}

.input-field-radio input:checked + label:after {
    left: calc(100% - 1px);
    transform: translateX(-100%);
}

.input-field-radio label:active:after {
    width: 11px;
}

.input-field-radio .text-label {
    display: inline-block;
    color: #333333;
    font-size: 14px;
}

footer {
    position: relative;
    padding: 60px 0 60px 0;
    background-image: url("../images/background_footer.png");
}

footer .row > div {
    padding: 0 15px;
}

footer .foot-logo {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

footer .foot-logo a:first-child {
    display: block;
    margin-bottom: 23px;
}

footer .foot-logo a:nth-child(2) {
    font-weight: 600;
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    margin-left: 74px;
}

footer .foot-list-left {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

footer .foot-list-left ul li {
    margin-bottom: 12px;
}

footer .foot-list-left ul li:first-child a {
    font-weight: 700;
    color: #4d7ae2;
}

footer .foot-list-left ul li:first-child a:hover {
    font-weight: 700;
}

footer .row > div.foot-list-right {
    padding-left: 50px;
}

footer .foot-list-right {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

footer .foot-list-right ul li {
    margin-bottom: 12px;
}

footer .foot-list-left ul li a,
footer .foot-list-right ul li a {
    font-size: 14px;
    color: #666666;
}

footer .foot-list-left ul li a:hover,
footer .foot-list-right ul li a:hover {
    font-weight: 600;
    text-decoration: none;
}

footer .foot-card > div {
    width: 200px;
    margin: 0 auto;
}

footer .foot-card {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    text-align: center;
}

footer .foot-card a {
    margin-right: 65px;
    display: inline-flex;
    height: 48px;
    align-items: center;
    vertical-align: middle;
    margin-bottom: 20px;
}

footer .foot-card a:nth-child(even) {
    margin-right: 0;
}

footer .foot-card ul {
    display: flex;
    justify-content: space-between;
}

footer .foot-card ul li {
    display: inline-block;
    vertical-align: middle;
}

footer .foot-card ul li:first-child a {
    background-image: url(../images/icon_facebook.png);
}

footer .foot-card ul li:first-child a:hover {
    background-image: url(../images/icon_facebook-action.png);
}

footer .foot-card ul li:nth-child(2) a {
    background-image: url(../images/icon_tweeter.png);
}

footer .foot-card ul li:nth-child(2) a:hover {
    background-image: url(../images/icon_tweeter_action.png);
}

footer .foot-card ul li:nth-child(3) a {
    background-image: url(../images/icon_vk.png);
}

footer .foot-card ul li:nth-child(3) a:hover {
    background-image: url(../images/icon_vk_action.png);
}

footer .foot-card ul li:nth-child(4) a {
    background-image: url(../images/icon_insta.png);
}

footer .foot-card ul li:nth-child(4) a:hover {
    background-image: url(../images/icon_insta-act.png);
}

footer .foot-card ul li a {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0;
    transition: .5s;
}

footer .foot-tweet {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

footer .foot-tweet img {
    max-width: 100%;
}

.news-section {
    padding-top: 100px;
}

.news-section h2 {
    margin-bottom: 100px;
}

.news-section .row .col-md-3:nth-last-child(-n+5) .news-block {
    margin-bottom: 0;
}

.news-section .news-block {
    position: relative;
    margin-bottom: 90px;
}

.news-section .news-block .pic-block {
    overflow: hidden;
    height: 300px;
}

.news-section .news-block .pic-block img {
    width: 100%;
    transition: all 1s;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    font-family: 'object-fit: cover; object-position: 50% 50%;';
}

.news-section .news-block .descr-news-block {
    padding: 23px 24px 20px 24px;
    border: 1px solid #eeeeee;
    border-top: none;
}

.news-section .news-block .descr-news-block .date {
    color: #999999;
    font-size: 12px;
    margin-bottom: 10px;
}

.news-section .news-block .descr-news-block .pr-title {
    font-weight: 700;
    color: #297be6;
    font-size: 18px;
    margin-bottom: 24px;
}

.news-section .news-block .descr-news-block .pr-descr {
    color: #212121;
    font-size: 15px;
    margin-bottom: 10px;
    height: 134px;
    overflow: hidden;
}

.news-section .news-block .descr-news-block .read-more {
    text-decoration: none;
    text-transform: uppercase;
    color: #297be6;
    font-size: 12px;
    font-weight: 700;
}

.news-section .news-block .descr-news-block .read-more:hover {
    color: #4992f2;
}

.news-section .news-block:hover .pic-block img {
    transform: scale(1.1);
}

.news-section .pagination {
    margin-top: 20px;
}

.news-section .pagination ul li {
    display: inline-block;
    margin-right: 3px;
}

.news-section .pagination ul li a {
    font-size: 13px;
    color: #666666;
    border: 1px solid #d7d7d7;
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.news-section .pagination ul li a:hover {
    text-decoration: none;
}

.news-section .pagination ul li:hover a {
    border-color: #297be6;
    color: #212121;
}

.news-section .pagination ul li span {
    margin: 0 8px;
    display: inline-block;
}

.news-section .pagination ul li.active a {
    border-color: #297be6;
    color: #212121;
}

.news-section .news-block .descr-news-block .read-more img {
    margin-top: -2px;
}

header nav ul .dropdown > a img.show-phone {
    display: none;
}

.read-blog-link {
    display: none;
}

.exchange-steps.exrates {
    padding-bottom: 40px;
}

.excahge-rates {
    padding-top: 100px;
}

.excahge-rates h2 {
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 90px;
}

.excahge-rates #excange-form {
    margin-top: 0;
    margin-bottom: 170px;
}

.excahge-rates #excange-form label {
    font-size: 20px;
    margin-bottom: 55px;
}

.excahge-rates #excange-form .right-sect.linp {
    padding-left: 0;
    padding-right: 85px;
}

.excahge-rates #excange-form .right-sect.linp .choose-sel {
    padding-top: 18px;
}

.excahge-rates #excange-form .right-sect.linp .choose-sel .content-sel {
    text-align: center;
    margin-left: -30px;
}

.excahge-rates #excange-form .right-sect.linp .choose-sel .content-sel:after {
    top: 28px;
    right: 30px;
}

.excahge-rates #excange-form .right-sect.rinp {
    padding-right: 0;
    padding-left: 85px;
}

.excahge-rates #excange-form .right-sect.rinp .choose-sel {
    padding-top: 18px;
}

.excahge-rates #excange-form .right-sect.rinp .choose-sel .content-sel {
    text-align: center;
    margin-left: -30px;
}

.excahge-rates #excange-form .right-sect.rinp .choose-sel .content-sel:after {
    top: 28px;
    right: 30px;
}

.excahge-rates #excange-form .exchange-btn {
    top: 90px;
}

.excahge-rates #excange-form .variant-chose {
    height: 345px;
    overflow-y: hidden;
}

.excahge-rates .custom-container {
    max-width: 885px;
}

.excahge-rates .exchange-rates-section:last-child {
    margin-bottom: 230px;
}

.excahge-rates .exchange-rates-section .top-block {
    width: 360px;
    border-bottom: 1px solid #236bee;
    padding-bottom: 13px;
}

.excahge-rates .exchange-rates-section .top-block span {
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    color: #333333;
    font-size: 18px;
    margin-left: 5px;
}

.excahge-rates .exchange-rates-section .content-block {
    margin-bottom: 130px;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row {
    height: 97px;
    border-bottom: 1px solid #d7d7d7;
    display: flex;
    align-items: center;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .l-check,
.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .r-check {
    -ms-flex: 0 0 38.5%;
    flex: 0 0 38.5%;
    max-width: 38.5%;
    padding-left: 50px;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .l-check img,
.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .r-check img {
    width: 20px;
    vertical-align: middle;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .l-check span,
.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .r-check span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    color: #666666;
    font-size: 16px;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .arrow {
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .r-check {
    padding-left: 60px;
    -ms-flex: 0 0 29%;
    flex: 0 0 29%;
    max-width: 29%;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .course {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
    text-align: right;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .course span {
    display: inline-block;
    vertical-align: middle;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .course .blue-text {
    font-size: 16px;
    color: #236bee;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .course .slash {
    font-size: 16px;
    color: #666666;
}

.excahge-rates .exchange-rates-section .content-block .exchange-rates-row .course .grey-text {
    color: #333333;
    font-size: 16px;
}

.reserves-section .our-reserves {
    margin-top: 115px;
    padding-bottom: 30px;
}

.reserves-section .blue-form-btn {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    background-color: #297be6;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 3px 7px #c2c2c2;
    transition: .5s;
    margin-top: 70px;
}

.reserves-section .blue-form-btn:hover {
    background-color: #4992f2;
    text-decoration: none;
}

.get-bonuses.reserves {
    padding-top: 0;
}

.jq-selectbox.focused .jq-selectbox__select {
    border: none;
    border-bottom: 1px solid #c4c3c3;
}

.jq-selectbox.opened .jq-selectbox__trigger-arrow {
    transform: rotate(-180deg);
}

.jq-selectbox {
    width: 100%;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
    border-top-color: #666;
}

.jq-selectbox .jq-selectbox__select {
    padding: 0 45px 0 6px;
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    text-shadow: none;
    border-bottom: 1px solid #c4c3c3;
}

.jq-selectbox .jq-selectbox__trigger {
    border-left: none;
}

.jq-selectbox .jq-selectbox__select-text {
    text-transform: uppercase;
    font-size: 18px;
    color: #333;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.jq-selectbox .jq-selectbox__trigger-arrow {
    transition: .5s;
    border-top: 7px solid #666666;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}

.jq-selectbox ul {
    padding: 23px 50px;
    border-top: 2px solid #b3dafe;
    box-shadow: 0px 4px 15px #cecece;
}

.jq-selectbox li {
    background-color: transparent;
    color: #333333;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #333333;
    padding: 0;
    margin-bottom: 30px;
}

.jq-selectbox li:hover {
    background-color: #fff;
    color: #333333;
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.jq-selectbox li.selected {
    background-color: #fff;
    color: #333333;
    font-weight: 700;
    font-size: 18px;
}

.jq-selectbox .jq-selectbox__dropdown {
    margin-top: 0;
}

.contacts-section {
    padding: 120px 0 270px 0;
}

.contacts-section #contact-form {
    max-width: 650px;
    margin: 0 auto;
}

.contacts-section #contact-form p.title {
    font-weight: 700;
    color: #333333;
    font-size: 28px;
    margin-bottom: 20px;
}

.contacts-section #contact-form p.subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 90px;
}

.contacts-section #contact-form .cont-input-field {
    margin-bottom: 55px;
}

.contacts-section #contact-form .cont-input-field label {
    font-size: 16px;
    color: #666666;
    display: block;
    margin-bottom: 0;
    padding-left: 6px;
    cursor: pointer;
}

.contacts-section #contact-form .cont-input-field input[type="text"],
.contacts-section #contact-form .cont-input-field input[type="email"] {
    border: none;
    width: 100%;
    border-bottom: 1px solid #c4c3c3;
    outline: none;
    padding-left: 6px;
    color: #333333;
    font-size: 14px;
    height: 34px;
}

.contacts-section #contact-form .cont-input-field textarea {
    resize: none;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
    margin-top: 30px;
    padding: 15px 24px;
    outline: none;
    height: 335px;
    color: #333333;
    font-size: 14px;
    margin-bottom: 30px;
}

.contacts-section #contact-form .cont-input-field input[type="submit"] {
    height: 50px;
    width: 150px;
    outline: none;
    display: inline-block;
}

.contacts-section #contact-form .cont-input-field .cont-blue-btn {
    border-radius: 5px;
    background-color: #297be6;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 3px 7px #c2c2c2;
    transition: .5s;
    margin-right: 27px;
}

.contacts-section #contact-form .cont-input-field .cont-blue-btn:hover {
    background-color: #4992f2;
    text-decoration: none;
}

.contacts-section #contact-form .cont-input-field .cont-white-btn {
    border-radius: 5px;
    border: 1px solid #d7d7d7;
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-left: 27px;
    color: #777777;
}

.contacts-section #contact-form .cont-input-field .cont-white-btn:hover {
    text-decoration: none;
    color: #666666;
    border-color: #cccccc;
}

.feedback-section {
    padding-top: 110px;
}

.feedback-section h2 {
    margin-bottom: 90px;
}

.feedback-section .col-md-9 {
    padding-bottom: 40px;
    border-right: 1px solid #d7d7d7;
}

.feedback-section .feedback-cont {
    padding-left: 120px;
    padding-bottom: 100px;
    border-bottom: 1px solid #d7d7d7;
}

.feedback-section .feedback-cont .aft-wrfeed {
    padding-left: 10px;
    font-size: 16px;
    color: #333333;
    margin-bottom: 65px;
}

.feedback-section .feedback-cont .aft-wrfeed a {
    color: #297be6;
    text-decoration: underline;
}

.feedback-section .feedback-cont .aft-wrfeed a:hover {
    text-decoration: none;
}

.feedback-section .feedback-cont .top-feed-sect .write-feedback {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    background-color: #297be6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    margin-bottom: 20px;
    box-shadow: 0 3px 7px #c2c2c2;
}

.feedback-section .feedback-cont .top-feed-sect .write-feedback:hover {
    text-decoration: none;
    background-color: #4992f2;
}

.feedback-section .feedback-cont .top-feed-sect .filter-block {
    width: 200px;
    display: inline-block;
}

.feedback-section .feedback-cont .top-feed-sect .filter-block .jq-selectbox {
    width: 200px;
    text-align: center;
}

.feedback-section .feedback-cont .top-feed-sect .filter-block .jq-selectbox .jq-selectbox__select-text {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
}

.feedback-section .feedback-cont .top-feed-sect .filter-block .jq-selectbox .jq-selectbox__dropdown {
    border-radius: 0;
}

.feedback-section .feedback-cont .top-feed-sect .filter-block .jq-selectbox li {
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    margin-bottom: 20px;
}

.feedback-section .feedback-cont .top-feed-sect .filter-block label {
    font-size: 14px;
    color: #666666;
    display: block;
}

.feedback-section .feedback-cont .comments-section {
    position: relative;
}

.feedback-section .feedback-cont .comments-section .main-sect {
    margin-bottom: 50px;
}

.feedback-section .feedback-cont .comments-section .top-block-mainsect {
    margin-bottom: 10px;
}

.feedback-section .feedback-cont .comments-section .top-block-mainsect .name {
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.feedback-section .feedback-cont .comments-section .top-block-mainsect .star-rating {
    display: inline-block;
    vertical-align: middle;
}

.feedback-section .feedback-cont .comments-section .top-block-mainsect .star-rating i.yellow {
    color: #faba0e;
}

.feedback-section .feedback-cont .comments-section .top-block-mainsect .star-rating i.grey {
    color: #d7d7d7;
}

.feedback-section .feedback-cont .comments-section .top-block-mainsect .date {
    color: #666666;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    top: 6px;
    right: 0;
}

.feedback-section .feedback-cont .comments-section .cont-mainsect .comment {
    margin-bottom: 10px;
}

.feedback-section .feedback-cont .comments-section .cont-mainsect .reply {
    font-size: 16px;
    color: #297be6;
    padding-left: 30px;
    background-image: url(../images/icons-reply-arrow.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-position: 6px 3px;
}

.feedback-section .feedback-cont .comments-section .cont-mainsect .reply:hover {
    text-decoration: none;
    color: #4992f2;
    background-image: url(../images/icons-reply-arrow_action.png);
}

.feedback-section .feedback-cont .comments-section .fcomment {
    margin-bottom: 20px;
    position: relative;
}

.feedback-section .feedback-cont .comments-section .scomment {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px;
}

.feedback-section .btn-with-arrow {
    font-weight: 700;
    font-size: 14px;
    color: #297be6;
    padding-right: 22px;
    text-transform: uppercase;
    background-image: url(../images/icons-right-blue.png);
    background-repeat: no-repeat;
    background-position: center right;
}

.feedback-section .btn-with-arrow:hover {
    background-image: url(../images/icons-right-blu_action.png);
    text-decoration: none;
    color: #4992f2;
}

.feedback-section .news-section.feedback {
    padding-top: 60px;
}

.feedback-section .write-feedback-sect {
    padding: 100px 0 0 120px;
}

.feedback-section .write-feedback-sect .title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 50px;
}

.feedback-section .write-feedback-sect .aft-wrfeed {
    margin-bottom: 60px;
}

.feedback-section .rating-star-sect {
    /* Rating Star Widgets Style */
    margin-bottom: 65px;
    /* Idle State of the stars */
    /* Hover state of the stars */
    /* Selected state of the stars */
}

.feedback-section .rating-star-sect .rating-stars ul {
    list-style-type: none;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.feedback-section .rating-star-sect .rating-stars ul > li.star {
    display: inline-block;
}

.feedback-section .rating-star-sect .rating-stars ul > li.star > i.fa {
    font-size: 26px;
    margin-right: 35px;
    color: #ccc;
    cursor: pointer;
}

.feedback-section .rating-star-sect .rating-stars ul > li.star.hover > i.fa {
    color: #FFCC36;
}

.feedback-section .rating-star-sect .rating-stars ul > li.star.selected > i.fa {
    color: #FFCC36;
}

.bottom-form-fb {
    position: relative;
    max-width: 1040px;
}

.bottom-form-fb textarea {
    resize: none;
    padding: 20px 75px 20px 20px;
    width: 100%;
    height: 270px;
    border: 2px solid #d7d7d7;
    resize: none;
    outline: none;
}

.bottom-form-fb input[type="submit"] {
    border: none;
    outline: none;
    position: absolute;
    top: 20px;
    right: 40px;
    background-color: transparent;
    background-image: url(../images/icons-send_chat.png);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-position: center center;
}

.bottom-form-fb input[type="submit"]:hover {
    background-image: url(../images/icons-send_chat_action.png);
}

.right-news-section {
    padding-left: 20px;
    padding-top: 20px;
}

.right-news-section .news-section .news-block {
    margin-bottom: 0;
}

.right-news-section .title {
    font-weight: 700;
    font-size: 28px;
    color: #297be6;
    margin-bottom: 45px;
}

.right-news-section .news-section {
    padding-top: 0;
    margin-bottom: 50px;
}

.right-news-section .comment-news-link {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #3784e8;
    color: #297be6;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    display: inline-flex;
    max-width: 100%;
}

.right-news-section .comment-news-link:hover {
    text-decoration: none;
    color: #4992f2;
    border-color: #4992f2;
}

.blue-general-btn {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    background-color: #297be6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    margin-bottom: 20px;
    box-shadow: 0 3px 7px #c2c2c2;
}

.blue-general-btn:hover {
    text-decoration: none;
    background-color: #4992f2;
    color: #fff;
}

.account-section .account-tabs-section {
    padding: 125px 0 210px 0px;
}

.account-section .account-tabs-section .tab {
    padding-left: 290px;
    padding-right: 240px;
}

.account-section .account-tabs-section .tab.tab-operations {
    padding-left: 0;
    padding-right: 70px;
}

.account-section .account-tabs-section .tab.active {
    display: block;
}

.account-section .left-acc-sect {
    -ms-flex: 0 0 81.3%;
    flex: 0 0 81.3%;
    max-width: 81.3%;
}

.account-section .right-acc-sect {
    -ms-flex: 0 0 18.7%;
    flex: 0 0 18.7%;
    max-width: 18.7%;
}

.account-section .tab-ticket a {
    margin-bottom: 60px;
}

.account-section .tab-ticket .ticket-sect .ticket {
    border-top: 1px solid #d7d7d7;
    height: 174px;
    display: flex;
    align-items: center;
}

.account-section .tab-ticket .ticket-sect .ticket:last-child {
    border-bottom: 1px solid #d7d7d7;
}

.account-section .tab-ticket .ticket-sect .ticket .first-block {
    -ms-flex: 0 0 34.3%;
    flex: 0 0 34.3%;
    max-width: 34.3%;
}

.account-section .tab-ticket .ticket-sect .ticket .first-block .date {
    margin-bottom: 8px;
    font-size: 16px;
    color: #777777;
}

.account-section .tab-ticket .ticket-sect .ticket .first-block .numb {
    margin-bottom: 0;
    font-size: 16px;
    color: #297be6;
}

.account-section .tab-ticket .ticket-sect .ticket .sec-block {
    -ms-flex: 0 0 51.7%;
    flex: 0 0 51.7%;
    max-width: 51.7%;
}

.account-section .tab-ticket .ticket-sect .ticket .sec-block p:first-child {
    font-size: 18px;
    color: #297be6;
    margin-bottom: 8px;
}

.account-section .tab-ticket .ticket-sect .ticket .sec-block p:nth-child(2) {
    font-size: 16px;
    color: #333333;
    margin-bottom: 0;
}

.account-section .tab-ticket .ticket-sect .ticket .thr-block {
    -ms-flex: 0 0 14%;
    flex: 0 0 14%;
    max-width: 14%;
}

.account-section .tab-ticket .ticket-sect .ticket .thr-block a {
    color: #297be6;
    font-size: 16px;
    padding-left: 26px;
    background-image: url(../images/icons-speech-bubble.png);
    background-repeat: no-repeat;
    background-position: left center;
}

.account-section .tab-ticket .ticket-sect .ticket .thr-block a span {
    display: inline-block;
    margin-top: -7px;
    vertical-align: middle;
}

.account-section .tab-ticket .ticket-sect .ticket .thr-block a:hover {
    text-decoration: none;
    color: #4992f2;
    background-image: url(../images/icons-speech-bubble_action.png);
}

.account-section .tab-ticket .news-section.acc-tick {
    padding-top: 40px;
}

.account-section .tab-ticket .news-section.acc-tick a {
    margin-bottom: 0;
}

.account-section .tab-ticket .tick-comment {
    display: none;
}

.account-section .tab-ticket .tick-comment .title {
    font-size: 28px;
    font-weight: 700;
}

.account-section .tab-ticket .tick-comment .toptick-comm {
    margin-bottom: 35px;
}

.account-section .tab-ticket .tick-comment .toptick-comm label {
    font-size: 16px;
    display: block;
}

.account-section .tab-ticket .tick-comment .toptick-comm input[type="text"] {
    outline: none;
    border: none;
    border-bottom: 1px solid #dadada;
    max-width: 355px;
    width: 100%;
}

.account-section .tab-ticket .tick-comment .toptick-comm span {
    color: #297be6;
    font-size: 20px;
    cursor: pointer;
}

.account-section .tab-ticket .tick-comment .middletick-comm .user-comm {
    padding-left: 75px;
    margin-bottom: 30px;
}

.account-section .tab-ticket .tick-comment .middletick-comm .user-comm .top-block {
    margin-bottom: 20px;
}

.account-section .tab-ticket .tick-comment .middletick-comm .user-comm .top-block .title {
    font-weight: 700;
    font-size: 20px;
    color: #e8bd74;
    margin-bottom: 0;
}

.account-section .tab-ticket .tick-comment .middletick-comm .user-comm .top-block .date {
    font-size: 14px;
    padding-right: 90px;
    margin-top: 5px;
    display: inline-block;
}

.account-section .tab-ticket .tick-comment .middletick-comm .user-comm .midd-block p {
    font-size: 14px;
}

.account-section .tab-ticket .tick-comment .middletick-comm .my-comm {
    background-color: #f1f1f1;
    padding: 20px 50px 25px 50px;
    box-shadow: 0 1px 10px #e3e3e3;
    margin-bottom: 30px;
}

.account-section .tab-ticket .tick-comment .middletick-comm .my-comm .top-block {
    margin-bottom: 20px;
}

.account-section .tab-ticket .tick-comment .middletick-comm .my-comm .top-block p {
    margin-bottom: 0;
}

.account-section .tab-ticket .tick-comment .middletick-comm .my-comm .top-block .date {
    font-size: 14px;
    margin-top: 5px;
    display: inline-block;
}

.account-section .tab-ticket .tick-comment .middletick-comm .my-comm .midd-block p {
    margin-bottom: 0;
    font-size: 14px;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm {
    margin-top: 80px;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm form {
    position: relative;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm textarea {
    resize: none;
    width: 100%;
    height: 155px;
    border: 1px solid #c7c7c7;
    outline: none;
    padding: 20px 60px 20px 20px;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm input[type="submit"] {
    background-color: transparent;
    border: none;
    width: 23px;
    height: 23px;
    background-image: url(../images/icons-send_chat.png);
    position: absolute;
    top: 20px;
    right: 20px;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm input[type="submit"]:hover {
    background-image: url(../images/icons-send_chat_action.png);
}

.account-section .tab-ticket .tick-comment .bottomtick-comm .back {
    text-transform: uppercase;
    color: #666666;
    font-size: 16px;
    display: inline-block;
    padding-left: 25px;
    background-image: url(../images/arrow_left.png);
    background-repeat: no-repeat;
    background-position: left center;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm .back:hover {
    background-image: url(../images/arrow_left_action.png);
    color: #333333;
    text-decoration: none;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm input[type="file"] {
    display: none;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm label {
    margin-bottom: 0;
    font-size: 14px;
    color: #666666;
    padding: 3px 0 3px 30px;
    background-image: url(../images/icons-attach.png);
    background-repeat: no-repeat;
    background-position: left center;
    cursor: pointer;
}

.account-section .tab-ticket .tick-comment .bottomtick-comm label:hover {
    background-image: url(../images/icons-attach-action.png);
    color: #4992f2;
}

.account-section .acc-tab-btns-sect {
    background-color: #a9caf5;
    height: 100%;
    width: calc(100% + 15px);
    padding: 115px 0 0 0;
    position: relative;
}

.account-section .acc-tab-btns-sect ul li {
    padding-left: 32%;
    margin-bottom: 55px;
    position: relative;
    cursor: pointer;
}

.account-section .acc-tab-btns-sect ul li:before {
    content: "";
    display: inline-block;
    height: 2px;
    width: 28px;
    background-color: #eef4fd;
    position: absolute;
    left: 0;
    top: 50%;
    transition: .5s;
}

.account-section .acc-tab-btns-sect ul li:after {
    content: "";
    width: 0;
}

.account-section .acc-tab-btns-sect ul li img {
    margin-bottom: 15px;
}

.account-section .acc-tab-btns-sect ul li p {
    margin-bottom: 0;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.account-section .acc-tab-btns-sect ul li.active:before {
    width: 30%;
}

.account-section .acc-tab-btns-sect ul li.active:after {
    content: "";
    width: 28px;
    display: inline-block;
    height: 2px;
    width: 28px;
    background-color: #c6dcf8;
    position: absolute;
    left: -28px;
    top: 50%;
    transition: .5s;
}

.account-section .details-sect .title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 70px;
}

.account-section .details-sect .my-acc-sect {
    padding-bottom: 70px;
    position: relative;
    margin-bottom: 90px;
}

.account-section .details-sect .my-acc-sect:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #dadada;
    display: block;
    width: 360px;
}

.account-section .details-sect .my-acc-sect .mas-row {
    margin-bottom: 25px;
}

.account-section .details-sect .my-acc-sect .mas-row:first-child span:nth-child(2) {
    text-transform: uppercase;
}

.account-section .details-sect .my-acc-sect .mas-row span {
    display: inline-block;
    vertical-align: middle;
}

.account-section .details-sect .my-acc-sect .mas-row span:first-child {
    font-size: 16px;
    width: 104px;
}

.account-section .details-sect .my-acc-sect .mas-row span:nth-child(2) {
    font-size: 20px;
    font-weight: 600;
    width: 205px;
}

.account-section .details-sect .my-acc-sect .mas-row span:nth-child(3) {
    font-size: 15px;
    color: #297be6;
    background-image: url(../images/icons-pencil.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding: 2px 0 2px 25px;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 150px;
}

.account-section .details-sect .my-acc-sect .mas-row span:nth-child(3):hover {
    text-decoration: none;
}

.account-section .details-sect .my-acc-sect .mas-row span:nth-child(3).pass-pic {
    background-image: url(../images/icons-lock.png);
}

.account-section .details-sect .identification {
    position: relative;
    padding-bottom: 70px;
    margin-bottom: 90px;
}

.account-section .details-sect .identification:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #dadada;
    display: block;
    width: 360px;
}

.account-section .details-sect .identification .ident-row {
    margin-bottom: 25px;
}

.account-section .details-sect .identification .ident-row .ident-fblock {
    display: inline-block;
    vertical-align: middle;
    width: 360px;
}

.account-section .details-sect .identification .ident-row .ident-fblock p {
    font-size: 16px;
    margin-bottom: 0;
}

.account-section .details-sect .identification .ident-row .ident-fblock p span {
    color: #b40303;
    font-weight: 600;
    float: right;
}

.account-section .details-sect .identification .ident-row .ident-sblock {
    display: inline-block;
    vertical-align: middle;
    width: 240px;
    padding-left: 80px;
}

.account-section .details-sect .identification .ident-row .ident-sblock #down-file {
    display: none;

}
.account-section .details-sect .identification .ident-row .ident-sblock .down-file {
    display: none;
}

.account-section .details-sect .identification .ident-row .ident-sblock label {
    margin-bottom: 0;
    font-size: 15px;
    color: #297be6;
    text-decoration: underline;
    padding-left: 28px;
    background-image: url(../images/icons-installing-updates.png);
    background-repeat: no-repeat;
    background-position: left center;
    cursor: pointer;
}

.account-section .details-sect .identification .ident-row .ident-sblock label:hover {
    text-decoration: none;
    color: #4992f2;
}

.account-section .details-sect .identification .ident-row .ident-tblock {
    display: inline-block;
    vertical-align: middle;
}

.account-section .details-sect .identification .ident-row .ident-tblock p {
    margin-bottom: 0;
    color: #666666;
    font-size: 14px;
}

.account-section .details-sect .acc-social .soc-row {
    margin-bottom: 20px;
}

.account-section .details-sect .acc-social .soc-row a {
    font-size: 15px;
    color: #297be6;
    text-decoration: underline;
}

.account-section .details-sect .acc-social .soc-row a:hover {
    color: #4992f2;
}

.account-section .details-sect .acc-social .soc-row img {
    margin-right: 20px;
}

.account-section .details-sect .acc-social .soc-row:last-child {
    margin-bottom: 0;
}

.account-section .operat-sect .search-block {
    width: 355px;
    display: inline-block;
    float: right;
    position: relative;
}

.account-section .operat-sect .search-block input[type="text"] {
    height: 38px;
    border: none;
    border-bottom: 1px solid #dadada;
    width: 100%;
    outline: none;
}

.account-section .operat-sect .search-block input[type="submit"] {
    position: absolute;
    width: 22px;
    height: 22px;
    background-image: url(../images/icons-search.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    background-color: transparent;
    outline: none;
    padding: 0;
    position: absolute;
    right: 11px;
    top: 8px;
}

.account-section .operat-sect .search-block input[type="text"]:focus + input[type="submit"] {
    background-image: url(../images/icons-search_action.png);
}

.account-section .operat-sect .title {
    display: inline-block;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 24px;
}

.account-section .operat-sect .table-section {
    position: relative;
}

.account-section .operat-sect .table-section .table-bordered {
    border: 1px solid #cccccc;
}

.account-section .operat-sect .table-section .table-bordered td,
.account-section .operat-sect .table-section .table-bordered th {
    border: none;
}

.account-section .operat-sect .table-section thead {
    border-bottom: 1px solid #cccccc;
}

.account-section .operat-sect .table-section thead tr th {
    font-size: 16px;
    color: #297be6;
    font-weight: 400;
    height: 55px;
    padding: 15px 22px;
    text-align: center;
}

.account-section .operat-sect .table-section thead tr th img {
    margin-left: 8px;
}

.account-section .operat-sect .table-section tbody tr:hover {
    background-color: #f5f6f7;
    cursor: pointer;
    box-shadow: 0 3px 10px #e3e3e3;
}

.account-section .operat-sect .table-section tbody tr td {
    height: 75px;
    padding: 15px 22px;
    vertical-align: middle;
    color: #333333;
    font-size: 14px;
    text-align: center;
}

.account-section .operat-sect .table-section tbody tr td:nth-child(5), .account-section .operat-sect .table-section tbody tr td:nth-child(6) {
    font-size: 16px;
}

.account-section .operat-sect .table-section tbody tr td:nth-child(5) span, .account-section .operat-sect .table-section tbody tr td:nth-child(6) span {
    display: block;
    font-weight: 600;
    font-size: 20px;
}

.account-section .operat-sect .news-section.acc {
    padding-top: 45px;
}

.account-section .wallet-sect .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 65px;
}

.account-section .wallet-sect .wallet-row {
    margin-bottom: 40px;
}

.account-section .wallet-sect .wallet-row .f-block {
    font-size: 14px;
    color: #999999;
    display: inline-block;
    width: 255px;
    vertical-align: middle;
}

.account-section .wallet-sect .wallet-row .f-block .pic-block {
    display: inline-block;
    width: 42px;
    text-align: center;
    margin-right: 12px;
}

.account-section .wallet-sect .wallet-row .s-block {
    width: 470px;
    display: inline-block;
    vertical-align: middle;
}

.account-section .wallet-sect .wallet-row .s-block p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 16px;
}

.account-section .wallet-sect .wallet-row .t-block {
    display: inline-block;
    vertical-align: middle;
}

.account-section .wallet-sect .wallet-row .t-block a {
    font-size: 16px;
    color: #c7c5c5;
    text-decoration: underline;
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left center;
}

.account-section .wallet-sect .wallet-row .t-block a:nth-child(1) {
    background-image: url(../images/icon-pencil_account.png);
}

.account-section .wallet-sect .wallet-row .t-block a:nth-child(1):hover {
    background-image: url(../images/icon-pencil_account_action.png);
    color: #666666;
}

.account-section .wallet-sect .wallet-row .t-block a:nth-child(2) {
    margin-left: 40px;
    background-image: url(../images/icons-trash.png);
}

.account-section .wallet-sect .wallet-row .t-block a:nth-child(2):hover {
    background-image: url(../images/icons-trash_action.png);
    color: #666666;
}

.account-section .wallet-sect .wallet-btn {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    background-color: #297be6;
    box-shadow: 0 3px 7px #c2c2c2;
    text-transform: uppercase;
    width: 300px;
    height: 50px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-top: 130px;
}

.account-section .wallet-sect .wallet-btn img {
    margin-right: 8px;
}

.account-section .wallet-sect .wallet-btn:hover {
    text-decoration: none;
    background-color: #4992f2;
}

header .right-section .sign-section.account {
    justify-content: space-between;
    padding-left: 40px;
}

header .right-section .sign-section.account a.accound-drop {
    background-image: none;
    border: none;
    box-shadow: none;
    color: #297be6;
    font-size: 16px;
    font-weight: 700;
    padding-left: 0;
    position: relative;
    justify-content: flex-start;
    width: 115px;
}

header .right-section .sign-section.account a.accound-drop:hover {
    color: #297be6;
}

header .right-section .sign-section.account a.accound-drop:after {
    content: "";
    display: inline-block;
    background-image: url(../images/blue-arr-bott.png);
    height: 5px;
    width: 8px;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    transition: .5s;
}

header .right-section .sign-section.account a.sigoff {
    border: 1px solid #d7d7d7;
    font-size: 16px;
    font-weight: 600;
    background-image: url(../images/icon_signoff.png);
    color: #666666;
    background-position: 25px 50%;
    padding-left: 30px;
}

header .right-section .sign-section.account a.sigoff:hover {
    color: #222;
}

header .right-section .sign-section.account a.accound-drop.active:after {
    transform: rotate(180deg);
}

.accdrop-list {
    display: none;
    position: absolute;
    top: 108px;
    background-color: #fff;
    left: 24%;
    width: 230px;
    border-top: 2px solid #b3dafe;
    padding: 15px 15px 40px 30px;
    text-align: left;
    box-shadow: 0 3px 10px #d9d9d9;
}

.accdrop-list li {
    margin-bottom: 15px;
    height: 25px !important;
}

.accdrop-list li a {
    border: none !important;
    box-shadow: none !important;
    background-image: none !important;
    text-align: left !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    padding-left: 10px !important;
    font-size: 16px !important;
    color: #333333 !important;
    font-weight: 400 !important;
    position: relative;
    z-index: 2;
}

.accdrop-list li a:hover {
    font-weight: 700 !important;
}

.accdrop-list li a:hover:after {
    width: 100%;
}

.accdrop-list li a:after {
    content: '';
    display: inline-block;
    height: 10px;
    background-color: #c2e1fe;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: .5s;
}

.change-container .change-tabs {
    margin-bottom: 230px;
}

.change-container .change-tabs .change-tab-content {
    -ms-flex: 0 0 66%;
    flex: 0 0 66%;
    max-width: 66%;
}

.change-container .change-tabs .change-tab-nav {
    -ms-flex: 0 0 34%;
    flex: 0 0 34%;
    max-width: 34%;
}

.change-container .change-tabs .change-tab-nav ul {
    position: relative;
    width: calc(100% + 15px);
    background-color: #a9caf5;
    padding: 130px 0 130px 125px;
}

.change-container .change-tabs .change-tab-nav ul li {
    margin-bottom: 180px;
    color: #fff;
    position: relative;
    cursor: pointer;
}

.change-container .change-tabs .change-tab-nav ul li:last-child {
    margin-bottom: 0;
}

.change-container .change-tabs .change-tab-nav ul li:before {
    content: '';
    height: 2px;
    width: 28px;
    background-color: #fff;
    position: absolute;
    left: -125px;
    top: 50%;
    transition: .5s;
}

.change-container .change-tabs .change-tab-nav ul li:after {
    width: 0;
    transition: .5s;
    content: '';
    display: block;
}

.change-container .change-tabs .change-tab-nav ul li span {
    font-size: 26px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
}

.change-container .change-tabs .change-tab-nav ul li p {
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.change-container .change-tabs .change-tab-nav ul li.active:before {
    width: 120px;
}

.change-container .change-tabs .change-tab-nav ul li.active:after {
    width: 28px;
    height: 2px;
    background-color: #c6dcf8;
    position: absolute;
    left: -153px;
    top: 50%;
}

.change-container .change-tabs .change-tab-nav ul.st2 {
    background-image: url(../images/imagestep2.png);
    background-repeat: no-repeat;
    background-position: center right;
}

.change-container .change-tabs .change-tab-nav ul.st3 {
    background-image: url(../images/imagestep3.png);
    background-repeat: no-repeat;
    background-position: center right;
}

.change-container .change-tabs .change-tab-content {
    padding-left: 160px;
    padding-top: 60px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .right-block p {
    font-size: 15px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .right-block p:first-child {
    color: #df9331;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block {
    padding-left: 14%;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block {
    margin-bottom: 65px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .leftbl {
    display: inline-block;
    vertical-align: top;
    width: 175px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .leftbl p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .leftbl .curr-block img {
    margin: 0 4px 0 10px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .leftbl .curr-block span {
    display: inline-block;
    vertical-align: middle;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .leftbl .curr-block span:first-child {
    font-weight: 700;
    font-size: 22px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .leftbl .curr-block span:nth-child(3) {
    font-size: 18px;
    text-transform: uppercase;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .centerbl {
    display: inline-block;
    vertical-align: top;
    vertical-align: bottom;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .centerbl img {
    margin-bottom: -7px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .rightbl {
    display: inline-block;
    vertical-align: top;
    padding-left: 35px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .rightbl p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .rightbl .curr-block img {
    margin: 0 4px 0 10px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .rightbl .curr-block span {
    display: inline-block;
    vertical-align: middle;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .rightbl .curr-block span:first-child {
    font-weight: 700;
    font-size: 22px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .rightbl .curr-block span:nth-child(3) {
    font-size: 18px;
    text-transform: uppercase;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block {
    padding-right: 20px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block .change-row {
    margin-bottom: 40px;
    border-bottom: 1px solid #c4c3c3;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block .change-row p {
    font-size: 22px;
    color: #333333;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block .change-row p span {
    color: #666666;
    font-size: 18px;
    display: inline-block;
    min-width: 198px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block .input-field-radio label {
    margin-bottom: 0;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block .input-field-radio label a {
    color: #297be6;
    text-decoration: underline;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block .input-field-radio label a:hover {
    color: #1771e7;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block textarea {
    resize: none;
    width: 100%;
    height: 310px;
    border: 1px solid #c4c3c3;
    margin-top: 30px;
    outline: none;
    padding: 20px;
    margin-bottom: 60px;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block input[type="submit"] {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    background-color: #297be6;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 3px 7px #c2c2c2;
    transition: .5s;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block input[type="submit"]:hover {
    background-color: #4992f2;
    text-decoration: none;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block a.submlink {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    background-color: #297be6;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 3px 7px #c2c2c2;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block a.submlink:hover {
    background-color: #4992f2;
    text-decoration: none;
}

.change-container .vidget-block img {
    width: 100%;
}

.tablet-header {
    display: none;
}

.change-container .change-tabs.step-two .id-text {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.change-container .change-tabs.step-two .red-text {
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 20px;
    color: #b41403;
    font-weight: 700;
}

.change-container .change-tabs.step-two .top-text {
    margin-bottom: 55px;
    padding-right: 60px;
    padding-left: 14%;
}

.change-container .change-tabs.step-two .change-tab-content .addinf-tab .right-block p {
    margin-top: 66px;
}

.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .top-block .leftbl p,
.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .top-block .rightbl p {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .top-block .leftbl p:after,
.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .top-block .rightbl p:after {
    display: inline-block;
    content: "";
    width: 14px;
    height: 14px;
    background-image: url(../images/info-icon-grey.png);
    background-repeat: no-repeat;
    cursor: pointer;
    vertical-align: middle;
}

.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .top-block .leftbl p:hover:after,
.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .top-block .rightbl p:hover:after {
    background-image: url(../images/info-icon.png);
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .leftbl .hover-info,
.change-container .change-tabs .change-tab-content .addinf-tab .left-block .top-block .rightbl .hover-info {
    position: absolute;
    top: -110px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 340px;
    box-shadow: 0 3px 10px #d7d7d7;
    padding: 20px 13px;
    font-size: 14px;
    color: #666666;
    display: none;
}

.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .top-block .leftbl p:hover + div,
.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .top-block .rightbl p:hover + div {
    display: block;
}

.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .middle-block .change-row {
    border-bottom: none;
    position: relative;
    padding-bottom: 1px;
}

.change-container .change-tabs.step-two .change-tab-content .addinf-tab .left-block .middle-block .change-row:after {
    content: "";
    display: block;
    width: 560px;
    height: 1px;
    background-color: #c4c3c3;
    position: absolute;
    left: 0;
    bottom: 0;
}

.st3-textblock {
    margin-bottom: 60px;
}

.st3-textblock p:first-child {
    font-size: 18px;
    margin-bottom: 30px;
}

.st3-textblock p:nth-child(2) {
    background-image: url(../images/icons-exclamation-mark.png);
    background-repeat: no-repeat;
    background-position: 20px center;
    font-size: 18px;
    padding-left: 55px;
}

.st3-textblock p a {
    color: #297be6;
    text-decoration: underline;
}

.st3-textblock p a:hover {
    color: #4992f2;
}

.changenews {
    margin-top: 215px;
}

.changenews .changenews-newblock {
    margin-bottom: 23px;
}

.changenews p.title {
    font-size: 28px;
    color: #297be6;
    font-weight: 700;
    margin-bottom: 40px;
}

.changenews .col-4 {
    -ms-flex: 0 0 39%;
    flex: 0 0 39%;
    max-width: 39%;
}

.changenews .col-4 .changenews-pic {
    overflow: hidden;
    box-shadow: 0 0 15px #e3e3e3;
}

.changenews .col-4 .changenews-pic img {
    transition: .5s;
    width: 100%;
}

.changenews .col-4 .changenews-pic img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.changenews .col-8 {
    -ms-flex: 0 0 61%;
    flex: 0 0 61%;
    max-width: 61%;
}

.changenews .col-8 .changenews-secr {
    padding-right: 30px;
}

.changenews .col-8 .changenews-secr .new-tit {
    color: #212121;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 7px;
}

.changenews .col-8 .changenews-secr .date {
    font-size: 12px;
    color: #999999;
    margin-bottom: 20px;
}

.changenews .col-8 .changenews-secr .descr {
    overflow: hidden;
    font-size: 14px;
    color: #212121;
    height: 80px;
    margin-bottom: 30px;
}

.changenews .col-8 .changenews-secr a {
    text-transform: uppercase;
    color: #297be6;
    font-size: 12px;
    display: inline-block;
    padding-right: 25px;
    background-image: url(../images/icons-right-blue.png);
    background-repeat: no-repeat;
    background-position: center right;
    font-weight: 700;
}

.changenews .col-8 .changenews-secr a:hover {
    background-image: url(../images/icons-right-blu_action.png);
    color: #4992f2;
    text-decoration: none;
}

.changenews .changenews-link {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #3784e8;
    color: #297be6;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-top: 50px;
    margin-left: 37%;
    box-shadow: 0 3px 10px #f4f4f4;
}

.changenews .changenews-link:hover {
    text-decoration: none;
    color: #4992f2;
    border-color: #4992f2;
}

.step-null #excange-form .right-sect .more-info a {
    margin-right: 0;
}

.step-null #excange-form .right-sect .more-info {
    padding-left: 0;
}

.tabletshow-block, .tablet-yellowtext, .tablet-rate {
    display: none;
}

.step-null #excange-form .blue-form-btn {
    height: 50px;
    width: 300px;
    border-radius: 5px;
    background-color: #297be6;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 3px 7px #c2c2c2;
    transition: .5s;
    margin-top: 50px;
    margin-left: 37%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 3px 10px #f4f4f4;
}

.step-null #excange-form .blue-form-btn:hover {
    background-color: #4992f2;
    text-decoration: none;
}

.modal-backdrop {
    background-image: url(../images/modal-bg.png);
    background-color: transparent;
}

.modal-backdrop.show {
    opacity: 1;
}

.general-modal .modal-dialog {
    max-width: 510px;
}

.general-modal .modal-dialog .jq-selectbox .jq-selectbox__select-text {
    text-transform: none;
    font-size: 16px;
    color: #333333;
}

.general-modal .modal-dialog .jq-selectbox li {
    text-transform: none;
}

.general-modal .modal-dialog .jq-selectbox .jq-selectbox__dropdown {
    top: 30px !important;
}

.general-modal .modal-dialog .jq-selectbox ul {
    padding: 25px 30px;
}

.general-modal .modal-dialog .modal-content {
    position: relative;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 10px #405e7e;
    width: 510px;
    padding: 90px 75px 100px 75px;
}

.general-modal .modal-dialog .modal-header {
    padding: 0;
    border: none;
}

.general-modal .modal-dialog .modal-header .close {
    position: absolute;
    top: 32px;
    right: 35px;
    display: inline-block;
    width: 17px;
    height: 17px;
    outline: none;
    background-image: url("../images/cross-symbol.png");
    padding: 0;
}

.general-modal .modal-dialog .modal-header .close:hover {
    background-image: url("../images/cross-symbol_action.png");
}

.general-modal .modal-dialog .modal-body {
    padding: 0;
}

.general-modal .modal-dialog .modal-body p.title {
    font-weight: 700;
    font-size: 28px;
    color: #333333;
    margin-bottom: 50px;
    text-align: center;
}

.general-modal .modal-dialog .modal-body .modalbott-btns {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.general-modal .modal-dialog .modal-body .modalbott-btns input, .general-modal .modal-dialog .modal-body .modalbott-btns span {
    max-width: 150px;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: none;
    outline: none;
    text-transform: uppercase;
    cursor: pointer;
}

.general-modal .modal-dialog .modal-body .modalbott-btns .success {
    color: #fff;
    background-color: #297be6;
    box-shadow: 0 3px 7px #c2c2c2;
    transition: .5s;
    font-weight: 700;
}

.general-modal .modal-dialog .modal-body .modalbott-btns .success:hover {
    background-color: #4992f2;
}

.general-modal .modal-dialog .modal-body .modalbott-btns .transparent-btn {
    background-color: #fff;
    border: 1px solid #d7d7d7;
    color: #777777;
}

.general-modal .modal-dialog .modal-body .modalbott-btns .transparent-btn:hover {
    color: #666666;
}

.general-modal .modal-dialog .modal-body .switch-btn {
    margin-bottom: 0;
}

.general-modal .modal-dialog .modal-body .input-field-radio {
    margin-bottom: 10px;
}

.modal-inprow {
    margin-bottom: 55px;
    position: relative;
}

.modal-inprow label {
    display: block;
    margin-bottom: 0;
    width: 100%;
    font-size: 16px;
    color: #999999;
    padding-left: 5px;
}

.modal-inprow input[type="text"],
.modal-inprow input[type="email"],
.modal-inprow input[type="password"] {
    width: 100%;
    height: 34px;
    outline: none;
    border: none;
    border-bottom: 1px solid #c4c3c3;
    padding-left: 5px;
    font-weight: 700;
}

.modal-inprow textarea {
    border-radius: 5px;
    height: 335px;
    border: 1px solid #d7d7d7;
    resize: none;
    width: 100%;
    outline: none;
    margin-top: 30px;
    padding: 15px;
}

.modal-inprow .show-pass {
    display: inline-block;
    width: 18px;
    height: 12px;
    background-image: url(../images/icon_view.png);
    position: absolute;
    top: 50%;
    right: 0;
    cursor: pointer;
    background-size: 100% 100%;
}

.modal-inprow .show-pass.active {
    background-image: url(../images/icon_view_action.png);
}

#registration p.title {
    margin-bottom: 25px;
}

#registration .modal-inprow {
    margin-bottom: 45px;
}

.forgotpasssect {
    display: none;
}

.forgotpasssect .title-fp {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.forgotpasssect .descr {
    color: #666666;
    font-size: 16px;
    margin-bottom: 40px;
}

.forgotpasssect .modal-inprow {
    margin-bottom: 45px !important;
}

.forgotpass-mod {
    font-size: 14px;
    color: #333333;
    text-align: center;
    margin-bottom: 0;
    margin-top: 80px;
}

.forgotpass-mod span {
    color: #297be6;
    cursor: pointer;
}

.forgotpass-mod span:hover {
    color: #4992f2;
}

.text-mess-chat {
    position: relative;
}

.text-mess-chat textarea {
    resize: none;
    border: none;
    width: 100%;
    outline: none;
    height: 54px;
    padding: 5px 70px 5px 15px;
}

.text-mess-chat input {
    outline: none;
    position: absolute;
    right: 25px;
    top: 10px;
    width: 25px;
    height: 25px;
    background-image: url(../images/icons-send_chat.png);
    background-position: center;
    background-size: 100%;
    border: none;
    background-color: transparent;
}

.text-mess-chat input:hover {
    background-image: url(../images/icons-send_chat_action.png);
}

.connect-to-chat .chat-section .chat-footer.login {
    height: auto;
    padding: 0;
}

.close-reserves {
    display: none;
}

.modal-inprow input[type="text"].normtex {
    font-weight: 400;
    color: #333333;
}

.currency-lock {
    margin-bottom: 40px;
}

.currency-lock img {
    display: inline-block;
    max-width: 42px;
    vertical-align: middle;
    max-height: 42px;
    margin-right: 13px;
}

.currency-lock span {
    font-size: 16px;
    color: #333333;
    display: inline-block;
    vertical-align: middle;
}

#choosetype .modal-dialog .modal-content {
    width: 100%;
}

#choosetype .modal-dialog {
    max-width: 1010px;
}

#choosetype .modal-dialog .text-center {
    width: 100%;
    margin-top: 40px;
}

#choosetype .modal-dialog .next-btn {
    font-size: 16px;
    color: #666666;
    text-transform: uppercase;
    background-image: url(../images/next-account.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 25px;
    display: inline-block;
    cursor: pointer;
}

.btn-span{
    background-color: rgba(255, 246, 239, 0);
    border: none;
    color: grey;
    outline: none;
}

#choosetype .modal-dialog .next-btn:hover {
    background-image: url(../images/next-account_action.png);
    color: #333333;
}

#choosetype .modal-dialog label {
    margin-bottom: 35px;
}

#choosetype .modal-dialog input[type="checkbox"]{
    display: none;
}

#choosetype .modal-dialog input[type="checkbox"]:checked + .checkblock .check-text {
    color: #333;
}

#choosetype .modal-dialog input[type="checkbox"]:checked + .checkblock .check-text {
    color: #333;
}

#choosetype .modal-dialog .checkblock {
    cursor: pointer;
}

#choosetype .modal-dialog .checkblock .checkpic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 14px;
    vertical-align: middle;
}

#choosetype .modal-dialog .checkblock .check-text {
    font-size: 14px;
    color: #999999;
    vertical-align: middle;
    display: inline-block;
}

#newwall .modal-dialog .modal-content {
    padding-bottom: 50px;
}

#newwall .back {
    font-size: 16px;
    color: #666666;
    text-transform: uppercase;
    background-image: url(../images/arrow_left.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
    display: inline-block;
    cursor: pointer;
    margin-top: 25px;
}

#newwall .back:hover {
    background-image: url(../images/arrow_left_action.png);
    color: #333333;
}

#transact-details.general-modal .modal-dialog .modal-body .modalbott-btns {
    justify-content: center;
}

#transact-details.general-modal .modal-dialog .modal-content {
    padding: 90px 30px 100px 30px;
}

#transact-details .details-transaction .curr {
    text-align: center;
    margin-bottom: 25px;
}

#transact-details .details-transaction .curr .lblock {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    display: inline-block;
    width: 150px;
    text-align: right;
    padding-right: 5px;
}

#transact-details .details-transaction .curr .cblock {
    width: 42px;
    text-align: center;
    display: inline-block;
}

#transact-details .details-transaction .curr .cblock img {
    max-width: 100%;
}

#transact-details .details-transaction .curr .rblock {
    font-size: 18px;
    color: #333333;
    text-transform: uppercase;
    display: inline-block;
    width: 150px;
    text-align: left;
    padding-left: 5px;
}

#transact-details .details-transaction .text-center img {
    width: 46px;
    margin-bottom: 25px;
}

#transact-details .details-transaction .status {
    font-size: 20px;
    color: #333333;
    text-align: center;
    margin-top: 60px;
}

#transact-details .details-transaction .status span {
    font-weight: 700;
    color: #297be6;
    display: inline-block;
    margin-left: 25px;
}

.aft-wrfeed a, .text-label a {
    color: #297be6;
}

.aft-wrfeed a:hover, .text-label a:hover,
.feedback-section .feedback-cont .aft-wrfeed a:hover,
.account-section .details-sect .my-acc-sect .mas-row span:nth-child(3):hover,
.account-section .tab-ticket .tick-comment .toptick-comm span:hover {
    color: #4992f2;
    text-decoration: none;
}

.feedback-section .feedback-cont .aft-wrfeed a:hover,
.account-section .details-sect .my-acc-sect .mas-row span:nth-child(3):hover,
.account-section .details-sect .identification .ident-row .ident-sblock label:hover {
    text-decoration: underline;
}

.input-field-radio label {
    cursor: pointer;
}

.change-container .change-tabs .change-tab-nav ul.st1 {
    background-image: url(../images/picnum1.png);
    background-repeat: no-repeat;
    background-position: center right;
}

#back-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
}

#back-top a {
    outline: none;
}

#back-top a:hover {
    opacity: .8;
}

.change-container .change-tabs .change-tab-content .addinf-tab .left-block .middle-block textarea {
    background-color: #fff;
}

.overhidd {
    overflow: hidden;
}

.tablet-orange-text {
    display: none;
}

.change-container .change-tabs.step-two .red-text {
    display: block;
    text-align: right;
}

.change-tabs.row.step-two .addinf-tab {
    padding-right: 60px;
}

.change-container .change-tabs.step-two .change-tab-content .addinf-tab .right-block p {
    text-align: right;
}

.er-form .choose-sel .content-sel span.icon-block {
    width: 35px !important;
}

.er-form .choose-sel .content-sel span.icon-block img {
    /*width: 100% !important;*/
}

.accound-drop:before {
    content: "";
    display: inline-block;
    height: 10px;
    width: 0;
    background-color: #c2e1fe;
    position: absolute;
    left: -10px;
    bottom: 14px;
    z-index: -1;
    transition: .5s;
}

.accound-drop.active:before {
    width: calc(100% + 10px);
}

.account-section .acc-tab-btns-sect ul li p a {
    color: #fff;
    text-decoration: none;
}

.er-form .exchange-btn a {
    display: inline-block;
}

.our-reserves .our-reserves-list ul li {
    position: relative;
    z-index: 3;
}

.our-reserves .our-reserves-list ul li.reserves-choose {
    color: #000;
}

.our-reserves .our-reserves-list ul li.reserves-choose:after {
    content: "";
    display: inline-block;
    height: 10px;
    position: absolute;
    bottom: 10px;
    width: calc(100% - 50px);
    background-color: #c2e1fe;
    left: 50px;
    z-index: -1;
}

.account-section .wallet-sect .wallet-row .s-block p {
    word-break: break-all;
}

main #excange-form .right-sect .variant-chose {
    max-height: 200px;
    overflow-y: scroll;
}

/*# sourceMappingURL=common.css.map */
