@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

html,
body {
    height: 100%;
}

body .full-width {
    display: flex;
    padding: 15px 0;
    margin-top: 10px;
}

.full-width * {
    width: 100%;
}
b, strong, th,.label{
    font-weight: 600;
}

body .full-width .btn-secondary {
    margin-left: 5px;
}

.wrap {
    min-height: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.container {
    max-width: 100%;
}

.company-block h3 {
    margin-top: 0;
}

.footer {
    height: 60px;
    background-color: #222;
    border-top: 1px solid #080808;
    padding-top: 20px;
    color: #9d9d9d;
}

.contacts-form form {
    display: flex;
    flex-wrap: wrap;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.drop-zone-desc {
    font-size: 12px;
}

a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

.grid-view th {
    white-space: nowrap;
}
#scrollButton {
    position: fixed;
    z-index: 1000;
    bottom: 150px;
    right: 15px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: .4s;
    transform: rotate(1turn);
    line-height: 0;
    padding: 0;
    display: none;

}

#scrollButton svg {
    padding: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    transition: all .3s ease;
}

#scrollButton svg:hover{
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, .4));
}

.label {
    font-size: 16px !important;
    padding: 1px 4px !important;
    vertical-align: baseline !important;
}

.data-label {
    font-weight: 600;
}

.data-value {
    font-family: Courier, sans-serif;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-title {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    padding: 10px;
    margin: 0;
    width: 100%;
    box-shadow: 0 0 10px #000;
}

.popup-data {
    max-width: 1000px;
    width: 90%;
    max-height: 100%;
    overflow: auto;
    display: block;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 20px 20px 20px;
    vertical-align: middle;
    top: 10%;
}

.admin-logs-diff {
    width: 100%;
    font-family: Courier, sans-serif;
}

.admin-logs-diff .diff-row:nth-of-type(even) {
    background-color: #fafafa;
}

.admin-logs-diff .diff-row:hover {
    opacity: 0.8;
    box-shadow: inset 0 0 40px rgba(200, 200, 255, 0.5);
}

.admin-logs-diff .diff-cell {
    word-wrap: break-word;
}

.admin-logs-diff .key {
    font-weight: 600;
}

.admin-logs-diff .diff-row.changed .original-data {
    background-color: rgba(255, 0, 0, 0.1);
}

.admin-logs-diff .diff-row.changed .data {
    background-color: rgba(0, 255, 0, 0.1);
}

.modal-dialog {
    z-index: 999;
}
.flex-item-center{
    height: 72px;
    display: flex;
    align-items: center;
}
.flex-item-center > div{
    margin-bottom: 0;
}

/* Filters transactions */
.close-filter{
    display: none;
}
.add-filter{
    padding-left: 30px;
    padding-top: 29px;
}
.add-filter__btn{
    color: #1A577A;
    font-size: 15px;
    text-decoration: none;
}
.add-filter__btn:focus{
    text-decoration: none;
}
.select-template{
    display: none;
}
.remove-field{
    position: absolute;
    right: 0;
    top: 30px;
    cursor: pointer;
}
.remove-field svg circle{
    transition: all .3s ease;
}
.remove-field:hover svg circle,
.edit-title-show:hover .edit-title-icon{
    fill: #0DA1D7;
}
.template-field,.select-template{
    width: 50%;
    position: relative;
    padding: 0 30px;
}
.template-field_flex{
    display: flex;
    justify-content: space-between;
}
.filters-modal .modal-header{
    padding: 20px 80px 0;
    background: transparent;
    color: #333333;
    display: flex;
    align-items: center;
    border: 0;
    position: relative;
}
.filters-modal .modal-header.edit{
    padding-bottom: 15px;
}
.filters-modal .modal-header.edit:after{
    content: '';
    position: absolute;
    left: 80px;
    bottom: 0;
    height: 1px;
    width: calc(100% - 160px);
    background: #DDDDDD;
}
.filters-modal__title{
    display: flex;
    margin-right: 50px;
}
.filters-modal .modal-header.edit .filters-modal__title{
    width: 50%;
    margin-right: 0;
    padding-right: 10px;
}
.filters-modal__title span{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    margin-right: 10px;
}
.filters-modal-edit-title{
    margin-left: 10px;
    position: relative;
}
.filters-modal-edit-title .template-form{
    width: 155px;
}
.filters-modal-edit-title #template-form-title{
    width: 216px;
    right: -61px;
}
.filters-modal-edit-title #template-form-title:before,
.filters-modal-edit-title #template-form-title:after{
    right: 100px;
}
.totals-filter{
    font-size: 14px;
    font-weight: 400;
    text-transform: initial;
}
.filters-modal .modal-body{
    padding: 15px 0 15px 50px;
    background: #ffffff;
}
.filters-modal .modal-footer{
    justify-content: space-between;
    padding: 50px 80px 0 30px;
    text-align: inherit;
    background: white;
}
.filters-modal .modal-footer > div{
    width: 50%;
}
.filters-modal .modal-footer .btn-wrap .btn-secondary{
    border: 1px solid #1A577A;
    padding: 7px 20px;
}
.filters-modal .modal-footer .btn-wrap .btn-secondary:after,
.filters-modal .modal-footer .btn-wrap .btn-secondary:before{
    display: none;
}
.filters-modal .modal-footer .btn-wrap .btn-secondary:hover{
    border-color: #0CA1D7;
    color: #0CA1D7;
}
.save-template{
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
.save-template .save-template__text{
    color: #1A577A;
    font-size: 16px;
    cursor: pointer;
}
.save-template__btn{
    font-size: 0;
    top: 10px;
}
.save-template-tooltip{
    margin-left: 10px;
    font-size: 0;
    cursor: pointer;
}
.save-template-tooltip svg .a,
.save-template-tooltip svg .b {
    transition: all .3s ease;
}
.save-template-tooltip:hover svg .a {
    stroke: #cdcdcd;
}
.save-template-tooltip:hover svg .b{
    fill: #cdcdcd;
}
.save-template .a,
.save-template .d{
    fill:none;
}
.save-template .a{
    stroke:#1a577a;
}
.save-template .b{
    fill:#1a577a;
    font-size:14px;
}
.save-template .c{
    stroke:none;
}
.template-field .a,
.select-template .a{
    fill:#cdcdcd;
}
.close-filter .a{
    fill: #000000;
}
.template-field .b,
.select-template .b,
.close-filter .b{
    fill:none;
    stroke:#fff;
    stroke-linecap:round;
    stroke-width:2.5px;
}
.filters-modal .modal-content{
    border: 1px solid #1A577A;
    box-shadow: none;
    padding: 10px 0;
}
.template-modal-fixed{
    position: absolute;
    z-index: 123;
    right: -100%;
    top: 110px;
    transition: all .3s ease;
}
.template-modal-fixed.active{
    right: 9px;
}
.template-modal-fixed .template-modal-wrap:after,
.template-modal-fixed .template-modal-wrap:before{
    right: 11px;
}
.template-modal-wrap{
    background: white;
    border-radius: 6px;
    width: 600px;
    position: relative;
    border: 1px solid #1A577A;
    padding: 20px 0 20px 60px;
}
.template-modal-header{
    padding-right: 60px;
    position: relative;
    z-index: 1;
    background: white;
}
.template-modal-header__title{
    text-transform: uppercase;
    color: #333333;
    font-weight: bold;
    font-size: 18px;
}
.template-modal-header__subtitle{
    color: #333333;
    font-size: 14px;
}
.template-modal-content{
    padding: 10px 0 0 0;
    max-height: 277px;
    overflow: auto;
    margin-top: -55px;
    position: relative;
    width: 540px;
}
.template-modal-content.active{
    z-index: 1;
}
.template-modal-content .mCustomScrollBox{
    padding-right: 50px;
}
.template-modal-content .mCustomScrollBox .mCSB_container{
    padding-right: 10px;
}
.template-modal-footer .btn-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #DDDDDD;
    padding-top: 20px;
}
.template-modal-header .line{
    border-bottom: 1px solid #DDDDDD;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
.template-modal-content .line{
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 10px;
}
.template-modal-footer{
    padding-top: 0;
    padding-right: 60px;
    margin-top: 5px;
}
.template-list{
    list-style: none;
    width: 100%;
    padding-left: 0;
    padding-top: 56px;
}
.template-list .template-item{
    margin-bottom: 12px;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    background: white;
    padding: 8px 15px;
    transition: all .3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.template-list .template-item.active{
    background: #F2F2F2;
    border-color: #F2F2F2;
}
.template-item-icons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease;
}
.template-item-icon{
    position: relative;
}
.template-item-icon{
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(100% - 17px));
}
.template-item-icon:nth-child(even){
    transform: translateY(calc(-100% + 17px));
}
.template-list .template-item:hover .template-item-icon{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.template-item-icon__link > svg .a{
    font-size: 0;
    transition: all .3s ease;
}
.template-item-icon__link:hover > svg .a{
    fill: #0CA1D7;
}
.template-item-icon:not(:last-of-type){
    margin-right: 15px;
}
.template-item .copy-icon .a,
.edit-title-icon .a,
.template-item .edit-icon .a,
.template-item .default-icon .a,
.template-item .remove-icon .a{
    fill: #1a577a;
}
.template-item-icon.disabled-icon .a{
    fill: grey;
    opacity: .5;
}
.template-item .disabled__icon .default-icon .a{
    fill: #CDCDCD;
}
.template-item .disabled__icon{
    position: absolute;
    right: 15px;
    top: 8px;
}
.template-text{
    margin: 20px 0 0 0;
    color: #CDCDCD;
    font-size: 15px;
}
.arrow-template .a{
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.3px;
}
.template-item .remove-icon .b{
    fill: none;
    stroke: #f2f2f2;
    stroke-linecap: round;
    stroke-width: 2.5px;
}
.template-list .template-item:hover{
    background: #F2F2F2;
    border-color: #F2F2F2;
}
.template-item__title{
    color: #333333;
    font-size: 14px;
    max-width: 68%;
    text-overflow: ellipsis;
    overflow: hidden;
}
.filters-modal .modal-dialog:before,
.filters-modal .modal-dialog:after,
.template-modal-wrap:after,
.template-modal-wrap:before {
    content: "";
    position:absolute;
    top: -13px;
    right: 60px;
    border-bottom: 15px solid #ffffff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.filters-modal .modal-dialog:before,
.template-modal-wrap:before{
    top: -15px;
    border-bottom-color: #1A577A;
}
.tooltip-template{
    color: #333333;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #BEBCBC;
    border-radius: 5px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    white-space: nowrap;
    right: -25px;
    bottom: calc(100% + 20px);
    background: white;
}
.save-template-tooltip:hover .tooltip-template{
    visibility: visible;
    opacity: 1;
}
.tooltip-template:before,
.tooltip-template:after{
    content: "";
    position:absolute;
    bottom: -14px;
    right: 25px;
    border-bottom: 15px solid #ffffff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transform: scale(-1);
}
.tooltip-template:before{
    bottom: -16px;
    border-bottom-color: #BEBCBC;
}
.save-template .template-form .template-form-field label{
    margin-top: 0;
}
.template-form{
    display: flex;
    align-items: center;
    border: 1px solid #0DA1D7;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    width: 300px;
    bottom: calc(100% + 14px);
    right: -21px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    background: white;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
}
.template-form:before,
.template-form:after{
    content: "";
    position:absolute;
    bottom: -14px;
    right: 105px;
    border-bottom: 15px solid #ffffff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transform: scale(-1);
}
.template-form:before{
    bottom: -16px;
    border-bottom-color: #0DA1D7;
}
.save-template-block{
    padding-top: 17px;
    margin-top: -17px;
}
.save-template-block .template-form{
    flex-wrap: wrap;
}
.save-template-block .template-form .template-form-field{
    width: calc(100% - 32px);
}
.template-form-check{
    width: 100%;
    margin-top: 10px;
}
.template-form.active{
    opacity: 1;
    visibility: visible;
}

.template-form-field{
    margin-right: 14px;
    width: 100%;
    margin-bottom: 0;
}
.template-form svg .a{
    fill:#1a577a;
    transition: all .3s ease;
}
.template-form .save-template__btn:hover .a{
    fill: #0CA1D7;
    stroke: #0CA1D7;
}
.template-item-icon .template-form{
    width: auto;
    right: -23px;
    bottom: calc(100% + 9px);
    white-space: nowrap;
}
.template-item-icon .template-form.disabled{
    pointer-events: none;
    opacity: 0.5;
}
.template-item-icon .template-form .template-form__text,
.template-item-icon .template-form-btn{
    white-space: nowrap;
}
.template-form:before, .template-form:after{
    right: 20px;
}
.save-template-block .template-form:before,
.save-template-block .template-form:after{
    right: 100px;
}
.add-template-wrap{
    position: relative;
}
.disabled-add{
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: 0.65;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.disabled-add:hover + .template-form{
    opacity: 1;
    visibility: visible;
}
.template-modal .add-template-wrap .disabled-add:hover{
    border: 1px solid #1a577a!important;
    background: #fff!important;
    color: #1a577a!important;
    box-shadow: none!important;
}
.add-template-wrap .template-form{
    width: auto;
}
.success-template,
.error-template{
    padding: 10px;
    border-radius: 5px;
    background: white;
    width: 100%;
    text-align: center;
}
.success-template{
    color: green;
    border: 1px solid green;
}
.error-template{
    color: crimson;
    border: 1px solid crimson;
}
.template-form__text{
    margin-right: 15px;
}
.template-form-btn .template-form-btn_item{
    color: #1A577A;
    text-decoration: none;
    transition: all .3s ease;
}
.template-form-btn .template-form-btn_item:hover{
    text-decoration: none;
    color: #0CA1D7;
}
.template-form-btn .template-form-btn_item:first-of-type{
    margin-right: 10px;
}
.transaction-page{
    position: relative;
    overflow: hidden;
    min-height: 700px;
}
#show-transactions-filter-modal{
    border-radius: 5px 0 0 5px;
}
#show-template-modal{
    width: 40px;
    padding: 0;
    border-radius: 0 5px 5px 0;
    margin-left: 2px;
}

#saved-templates{
    margin-left: 0px;
}

.edit-btn{
    padding: 0 7px;
}

.btn-filters-wrap{
    display: flex;
    align-items: center;
    justify-content: end;
}
.psp-modal-btn .full-text{
    display: none;
}
.filters-modal{
    position: absolute;
    right: -100%;
    opacity: 0;
    top: 110px;
    z-index: 1111;
    transition: all .3s ease;
    visibility: hidden;
}
#transactions-filter-modal.filters-modal{
    z-index: 111;
}
#transactions-filter-modal .template-form-field .help-block{
    font-size: 10px;
}
.filters-modal.active{
    right: 10px;
    opacity: 1;
    visibility: visible;
}
.filters-modal .close-filter-modal{
    position: absolute;
    right: 17px;
    top: 10px;
    color: #cdcdcd;
    cursor: pointer;
    font-size: 20px;
    transition: color .3s ease;
}
.filters-modal .close-filter-modal:hover{
    color: #0da1d7;
}
.filters-modal .modal-dialog{
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 100%;
    width: 1000px;
}
.filter-bg-overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
}
.filter-bg{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1111;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
}
.filter-bg.active{
   opacity: 1;
    visibility: visible;
}
.no-result{
    display: none;
    padding-left: 40px;
    color: #333333;
}
.close-filter-modal{
    display: none;
}
.no-result-header{
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}
.no-result-header:after{
    content: '';
    height: 1px;
    background: #BEBCBC;
    width: 201px;
    left: 0;
    bottom: 0;
    display: block;
    position: absolute;
}
.no-result__title{
    font-size: 22px;
    font-weight: 400;
}
.no-result__subtitle{
    font-size: 22px;
    font-weight: 600;
}
.no-result__text{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}
.no-result-list{
    font-size: 14px;
    padding-left: 18px;
}
.template-field__value{
    width: 66%;
}
.template-field__operator{
    width: 31%;
}
@media only screen and (max-width: 780px) {
    .admin-logs-details .col-sm-4 {
        display: block;
        width: 100%;
        border-top: 1px solid #ddd;
    }
    .admin-logs-diff .row {
        border-top: 1px solid #ddd;
    }
    .admin-logs-diff .col-sm-4 {
        display: block;
        width: 100%;
    }
}

.nav li > form > button.logout {
    padding: 15px;
    border: none;
    color: black;
}

.logout:hover {
    text-decoration: none !important;
    color: black !important;
}

.logout:focus {
    outline: none !important;
    text-decoration: none !important;
}

.grid-view table td {
    max-width: 500px;
    word-wrap: break-word;
    overflow: hidden;
}
.grid-view table td.cardnumber{
    overflow: visible;
}
.frontend-view table td {
    max-width: 750px;
    word-wrap: break-word;
    overflow: hidden;
}

.default-server {
    font-weight: 600;
}

.inactive-server {
    color: #a29c9c;
}

.maintenance {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-right: 15px;
}

.maintenance span {
    padding-left: 3px;
}

.account-info-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.maintenance .icon {
    margin-right: 5px;
    font-size: 16px;
}

.maintenance .icon:before {
    color: #1a577a;
}

.frontend-rules .table > thead:first-child > tr:first-child > th {
    background-color: #59798a;
    color: #fff;
    border-bottom: 0;
}

.frontend-rules .table > tbody > tr > td, .frontend-rules .table > tbody > tr > th, .frontend-rules .table > tfoot > tr > td, .frontend-rules .table > tfoot > tr > th, .frontend-rules .table > thead > tr > td, .frontend-rules .table > thead > tr > th {
    padding: 15px;
    border: 1px solid #aab;
}

.frontend-rules tbody.table-body .input-group {
    margin-bottom: 8px;
}

.frontend-rules tbody.table-body tr {
    background-color: #edf9ff;
    border-bottom: #999999;
}

.account-details-btn-generate {
    padding-top: 4.6%;
}

.account-details-background {
    margin-top: 2%;
}

.account-details-background > button {
    margin-left: 22%;
}

td > pre {
    margin-bottom: 0;
}

.platform_pref__field {
    margin-bottom: 5px;
}

.platform-view hr {
    margin-top: 5px;
    margin-bottom: 10px;
}

.account-password-field {
    position: relative;
}

.account-password-field.input-group {
    display: block;
}

.account-password-field .field-account-password input {
    border-radius: 5px !important;
    float: none;
}

.account-password-field .field-account-api_secret_hash input {
    border-radius: 5px !important;
}

.account-password-field .account-details-btn-generate {
    padding-top: 0;
    position: absolute;
    right: 33px;
    bottom: 0;
    z-index: 20;
}

#header-logo {
    height: 36px;
    margin-top: -7px;
}

#footer-logo {
    height: 36px;
    margin-top: -5px;
    margin-right: 4px;
}

.account-tab-group {
    padding: 15px 10px;
    background: #fff;
}

.form-group.field-accountsettings-mfa_enabled label {
    display: none;
}

.nameExists {
    font-size: 12px;
    color: red;
}
/*release notes start*/
#release-notes-content {
    display: none;
}

#release-notes-content.loaded {
    display: block;
    padding-top: 10px;
    font-size: 13px;
}

#release-notes-content hr {
    margin: 10px 0;
    border-top: 1px solid #edf3f9;
}

#release-notes-content h4 {
    text-align: center;
    background-color: #ffe64254;
}

#release-notes-content h4 a {
    color: #0ca1d7;
}

#release-notes-content blockquote:hover,
.instruction-panel-heading:hover {
    cursor: pointer;
    background-color: #0ca1d74a;
}

#release-notes-content * {
    line-height: inherit;
    /*transition: all .3s;*/
    opacity: 1;
}

#release-notes-content .collapsed {
    line-height: 0;
    opacity: 0;
    margin: 0;
    height: 0;
}

#release-notes-content blockquote {
    transition: all .3s;
}

#release-notes-content blockquote.closed {
    margin: 0;
}

#release-notes-content #notes {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    bottom: 20px;
    background-color: #1a577a;
    color: #fff;
}

#release-notes-content #blockquote {
    background: #eee;
    margin-top: 10px !important;
}
#release-notes-content p .release-img-wrapper {
    width: 50%;
}

#release-notes-content p .release-img {
    width: 100%;
    height: 150px;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}
.increase-img-note{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    border-left: 5px solid #0ca1d7;
    padding-left: 4px;
    opacity: 0!important;
    z-index: -1;
}
#release-notes-content p .release-img:hover .increase-img-note{
    opacity: 1!important;
    z-index: 1;
}
#release-notes-content .collapsed .release-img {
    width: 0;
    height: 0;
}
#release-notes-content p {
    display: flex;
    align-items: center;
}

#release-notes-content .sub-title.collapsed {
    opacity: 1;
}

.release-text {
    width: 50%;
    margin-right: 10px;
    align-self: flex-start;
}
.release-text a{
    word-break: break-all;
}
.release-text .code-text{
    font-variant: petite-caps;
    word-break: break-word;
}
.colored-release-text{
    display: inline-block;
    padding: 0 2px;
}
.colored-release-text.green{
    background-color: #48db12;
}
.colored-release-text.red{
    background-color: #f31212;
}
.release-underline-text{
    text-decoration: underline;
}
#increased-popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: auto;
    z-index: 9999;
    padding: 30px 30px 0;
}
#increased-popup img {
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

#overlay {
    display: none;
    background: #0000006b;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9990;
    overflow: auto;
}

#close-popup {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

#close-popup i {
    width: 30px;
    height: 30px;
    background: url(../img/close.svg) no-repeat center center;
    display: block;
}
/*release notes end*/

/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: "\e151";
}

a.desc:after {
    content: "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

.btn.server-all-btn {
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 5px;
    width: 100%;
}

#details-view-modal {
    z-index: 10499;
}

#details-view-modal .modal-content.message {
    width: auto;
}

.modal-content .render-content {
    min-height: 400px;
    padding: 10px;
    border: 1px solid #cecece;
    border-radius: 5px;
}

.modal-content .render-content .cron-answer {
    background-color: #e6e4e4;
    padding: 4px 10px;
    border-radius: 5px;
}

@keyframes switch-width {
    0% {
        width: 0;
    }
    33% {
        width: 10px;
    }
    66% {
        width: 20px;
    }
    100% {
        width: 30px;
    }
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.critical-ping,
.high-load-cpu,
.high-load-ram,
.high-load-disk{
    color: rgba(254, 0, 0, 0.8);
    font-weight: 600;
}

.custom-criteria {
    margin-top: 10px;
}

td.country-rules-criteria {
    width: 300px;
}

.comments {
    margin-top: 40px;
}

.comment-content {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.comment-author-avatar {
    display: none !important;
}

.comment-details {
    padding-left: 0 !important;
}

.control-btn {
    margin-right: 5px;
}

/* bootstrap 3 modal vertical position center*/
.modal {
    text-align: center;
    z-index: 10500;
}

.modal-backdrop {
    z-index: 10400;
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.brands-pref hr {
    margin: 3px 0;
}

.brands-pref hr:last-child {
    display: none;
}

.brand-frontend {
    display: flex;
    align-items: center;
    position: relative;
}

.remove-frontend {
    position: absolute;
    right: 10px;
    top: 6px;
    color: red;
}

#add-frontend:hover,
.remove-frontend:hover {
    font-weight: 600;
    cursor: pointer;
}

#add-frontend {
    font-weight: 600;
}

.brand-frontend {
    margin-bottom: 5px;
}

.brand-frontend-href,
.brand-frontend-currency {
    padding: 7px;
    display: block;
    white-space: nowrap;
}

.form-submit {
    margin-bottom: 30px;
}

.add-bridger {
    font-weight: 600 !important;
    text-transform: uppercase;
    display: block;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 18px !important;
    width: 100%;
}
.frontend-rules-index .add-bridger{
    margin-top: 0;
}
.bridger-header-row th,
.bridger-header-row th a {
    font-weight: 400;
    color: #777777 !important;
    font-size: 12px;
}

.bridger-index-table .text-green,
.bridger-index-table .text-red {
    font-weight: 600;
}

.text-green {
    color: #00C14B;
}

.text-red {
    color: red;
}

.checkbox-not {
    padding-top: 5px;
}

.runtime-logs-index td > pre {
    max-width: 600px;
    width: 100%;
}

.rules-state > input[type=checkbox]:after:hover {
    cursor: pointer;
}

.remove-frontend-criterion i {
    color: #ff0000;
    right: 70px;
    position: absolute;
    top: 8px;
}

.remove-frontend-criterion i:hover {
    cursor: pointer;
}

.flex-center {
    display: flex;
    align-items: center;
}

.rules-footer > label > input {
    position: relative;
    top: 0;
}

.custom-criterion-body .add-row-field {
    margin-top: 5px;
}

.custom-criterion-body > .row {
    margin-bottom: 3px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.action-buttons a {
    width: 40px;
    height: 41px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin-top: 3px;
}

.action-buttons a:hover {
    text-decoration: none;
    opacity: .9;
    box-shadow: 0 0 0 2px #0ba2d621;
}

.active-button:hover i,
.active-button:focus i {
    color: #fff;
}

.active-button.view {
    color: #1b577b;
    background-color: #fff;
    border: 1px solid #1b577b;
}

.active-button.view:hover i {
    color: #1b577b;
}

.active-button.update {
    background-color: #1b577b;
    border: 1px solid #1b577b;
}

.active-button.clone {
    background-color: #0ba2d6;
    border: 1px solid #0ba2d6;
}

.active-button.delete {
    background-color: #ff0000;
    border: 1px solid #ff0000;
}

@media (max-width: 1360px) {
    .btn-filters-wrap{
        margin: 0 -5px;
    }
    .wide-container {
        width: 100% !important;
    }
}

@media (min-width: 1360px) {
    .wide-container {
        width: 1360px !important;
    }
}

.frontend-rules-index td > pre {
    max-width: 600px;
    width: 100%;
}
.disabled-scroll{
    overflow: hidden;
}
.no-scroll .modal{
    overflow-y: hidden;
}
@media (max-width: 1200px) {
    .filters-modal .modal-dialog{
        width: 100%;
    }
    .frontend-rules-index td > pre {
        max-width: 400px;
    }
}

.runtime-logs-index td > pre {
    max-width: 600px;
    width: 100%;
}

.hash-request {
    position: relative;
}

.hash-request > span.glyphicon {
    position: absolute;
    left: 120px;
    cursor: pointer;
    top: 3px;
}

.field-account-api_secret_hash .hash-request > span.glyphicon {
    left: 10px;
}

.platform-form .rules-body {
    padding: 15px;
}

.nav.nav-tabs li:hover {
    cursor: pointer;
}

.brand-settings-row {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.brand-settings-row .pl-0 {
    display: flex;
    align-items: center;
}

.brand-settings-row.no-chbx .pl-0.pair {
    overflow: hidden;
}

.brand-settings-row label {
    margin-bottom: 0;
}
.regulation-company-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    padding: 0 15px;
}
.form-group.field-account-password_input .hash-request > span.glyphicon {
    position: relative;
    left: 0;
}

.nav-tab-head {
    background: #1A577A;
    border-radius: 2px 2px 0 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 5px;
}

.tab-pane .rules-head {
    padding: 2px 10px;
}

.brand-form .tab-pane#processing .row {
    display: flex;
    flex-wrap: wrap;
}

.brand-form .tab-pane#processing .row > .col-md-6 {
    width: 100%;
    padding-bottom: 10px;
}

@media(min-width: 992px) {
    .brand-form .tab-pane#processing .row > .col-md-6 {
        width: 50%;
    }
}

.rules-head h4 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 17px;
}

.possible-option:hover {
    cursor: pointer;
}

.hash-request > span.glyphicon + span {
    color: red;
    position: absolute;
    top: 0;
    right: 0;
}

/*smaller*/
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 5px 10px !important;
}

body .btn-group-xs > .btn,
body .btn-xs {
    font-size: 10px;
}

body .field-heliosprocessor-description textarea.form-control,
body #platform-notes {
    height: auto;
}

body .select2-container--krajee .select2-selection--single {
    height: 41px;
    font-size: 13px;
    border: 1px solid #d9e1e8;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

body .select2-container--krajee .select2-selection--single .select2-selection__arrow {
    right: 20px;
    width: 11px;
}

body .field-globalbridgefilter-currency .select2-container--krajee .select2-selection--single .select2-selection__arrow {
    right: 14px;
}

body .field-globalbridgefilter-currency .select2-container--krajee .select2-selection--single .select2-selection__clear {
    right: 3px;
}

body .select2-container--krajee .select2-selection--single .select2-selection__arrow {
    top: 0;
    height: 41px;
}

body .field-globalbridgefilter-currency .select2-container--krajee .select2-selection--single .select2-selection__arrow {
    top: 1px;
}

body .select2-container--krajee .select2-selection--single .select2-selection__clear {
    right: 2.1rem;
}

body .select2-container--krajee .select2-selection__clear {
    font-size: 18px;
    height: 30px;
}

.select2-container--krajee .select2-selection--multiple .select2-selection__clear {
    right: 1px;
}

.select2-selection__clear {
    margin-right: -9px;
    padding: 0 5px 0 4px;
}

.brand-form .nav-tab-head {
    padding: 5px;
}

body .input-group-btn:last-child > .btn,
body .input-group-btn:last-child > .btn-group {
    margin-left: 8px;
    margin-bottom: 1px;
}

body .add-field,
body .remove-item,
body #add-frontend,
body .remove_frontend {
    padding: 0 3px;
    font-size: 12px !important;
}

/*end smaller*/

.account-login-details-field b {
    width: 46%;
    display: inline-block;
}

body .forgot-pass {
    float: right;
    padding: 5px;
    color: #1a577a;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-types span.badge {
    margin-left: 5px;
    position: relative;
    top: -2px;
    padding: 2px 5px;
    font-size: 11px;
}

.bg-danger {
    background-color: #f2dede !important;
}

.list-gateway-item [id *= 'card_type-'] {
    display: none;
}

.bin-rules-results .gateway .gateway-filter-list .filters-list {
    max-width: 100%;
}

body .exp-date-badge {
    font-size: 14px;
}

[name="bin-form"] select {
    border-radius: 10px;
    padding: 5px;
    margin-left: 10px;
    color: #808080;
}

#rules-wrap {
    padding: 10px;
}

.rule-engine .rules-container {
    background-color: #fafafa;
}

.rules-configuration {
    display: flex;
    justify-content: space-between;
}

.rules-configuration > div {
    flex: auto;
    margin: 0 5px;
}

.field-label-with-info {
    vertical-align: middle;
    margin-left: 7px;
}

.field-label-with-info:hover {
    cursor: pointer;
}

#conversion-rate {
    display: flex;
}

.rules-configuration-restricted {
    margin: 20px 0;
    display: flex;
    padding-left: 15px;
}

.rules-configuration-restricted .switch-field label {
    margin-left: 0;
}

.rules-configuration-restricted__title {
    text-transform: uppercase;
    display: inline-block;
    color: #777777;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
}

.rules-container.rules-container-edited {
    border-left: none;
}

.rules-container.rules-container-edited.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.rule-engine .rules-container-block {
    border-radius: 2px;
    box-shadow: 2px 2px 5px #aaa;
    background: #fff;
    padding: 5px 10px 0 10px;
    display: inline-flex;
    flex-wrap: wrap;
    line-height: 1em;
}

.rule-engine .rules-container-info {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-right: 10px;
    margin-bottom: 5px;
}

.rules-container-card_type-items {
    margin-bottom: 5px;
}

.rule-engine .rules-container-info > span {
    margin-right: 4px;
}

.rule-engine .rules-container-block.deposit {
    display: flex;
    align-items: center;
    width: 20%;
}

.rules-items-dropped {
    display: inline-block;
}

.rules-container-edited .rules-items .rules-items-dropped {
    display: block;
    border: 1px solid #D9E1E8;
    background-color: #FFFFFF;
    padding: 5px;
    min-height: 60px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.rule-engine .rules-container-block.deposit label {
    width: 50%;
}

.rule-engine .rules-container-block.deposit .rules-items {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.rule-engine .rules-container-block.deposit .gateway-image-url span {
    margin-left: 40px;
}

.rule-engine .gateway-image-url .remove-gateway-item {
    display: none;
}

.available-gateways .badge.gateway-item {
    border-color: #777777;
    background-color: #ffffff;
    transition: all .3s ease;
}

.rules-items > label {
    display: none;
}

.rules-container-edited .rules-items > label {
    display: block;
}

.badge.gateway-item {
    line-height: 16px;
    background-color: #eee;
    border: 1px solid #D9E1E8;
    color: #000;
    font-weight: normal;
    border-radius: 2px;
    margin: 3px 2px 3px 2px;
    position: relative;
}

.badge.gateway-item[data-active="1"],
.badge.gateway-item[data-active="1"]:hover {
    background-color: #72dd72;
    border: 1px solid #D9E1E8;
}

.badge.gateway-item.filter-not-passed[data-active="1"],
.badge.gateway-item.filter-not-passed[data-active="1"]:hover {
    background-color: transparent;
    border: 1px solid red;
}

.badge.gateway-item[data-active="0"],
.available-gateways .badge.gateway-item[data-active="0"]:hover {
    color: white;
    background: crimson;
    border-color: transparent;
    font-size: 10px;
}

.badge.gateway-item.filter-not-passed[data-active="0"] .filter-not-passed-warning {
    color: #fff !important;
}

.badge.gateway-item[data-active="0"] .remove-gateway-item {
    color: #ffffff;
}

[scenario="deposit_order"] .rules-container-global .badge.gateway-item {
    margin: 0;
    border-radius: 5px;
}

.badge.gateway-item .gateway-index {
    position: absolute;
    background: white;
    border-radius: 30px;
    border: 1px solid rgb(255, 152, 152);
    color: red;
    z-index: 2;
    box-shadow: 0 0 3px #aaa;
    left: -6px;
    top: -4px;
    padding: 0 3px;
    width: 16px;
    display: flex;
    align-items: center;
    height: 16px;
    justify-content: center;
}
.modal-body .badge.gateway-item .gateway-index{
    display: none;
}

.cascading-icon.badge.gateway-item .gateway-index{
    border: 1px solid #1A577A;
    color: #1A577A;
}

.available-gateways .badge.gateway-item:hover {
    cursor: pointer;
}

#rule-engine-filter-form {
    display: flex;
    align-items: flex-end;
}

#rule-engine-filter-form > div:first-of-type {
    margin-right: 20px;
    width: 350px;
}

.rule-engine .navbar {
    margin-bottom: 0;
    min-height: inherit;
}

.rule-engine .navbar .nav li a {
    padding: 8px 10px;
}

.rule-engine .navbar li a {
    transition: all .3s ease;
}

.rule-engine .navbar li a:hover {
    color: #0CA1D7;
    background-color: transparent;
}

.rule-engine .navbar li.active a:hover {
    color: #fff;
    background-color: #337ab7;
}

.rule-engine-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.rule-engine .available-gateways .badge.gateway-item {
    background-color: #fff;
    border: 1px solid #555;
    color: #555;
}

.rule-engine .available-gateways .gateway-item {
    cursor: pointer;
}

.rule-engine .gateway-item > a, .available-gateways .gateway-item > a,
.available-gateways .gateway-image-url .remove-gateway-item,
.available-gateways .gateway-image-title .remove-gateway-item{
    display: none !important;
}

.rule-engine .rules-items-dropped > .gateway-item > .remove-gateway-item {
    display: inline-block;
    font-size: 13px;
    margin-left: 4px;
    color: #333333;
}

.rule-engine .rules-items-dropped > .gateway-item-restricted-processing.gateway-item > .remove-gateway-item {
    display: none;
}

.rule-engine .gateway-item.badge.gateway-item-restricted-processing {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    background-color: #FF0000;
    border-radius: 2px;
    padding: 5px 10px;
    border: 0;
}

.rule-engine .rules-container-edited .rules-items-dropped {
    min-height: 60px;
    border: 1px solid #ccc;
    background-color: #fff;
    display: block;
}

.rule-engine .rules-container-edited .rules-items-dropped > .gateway-item > .remove-gateway-item {
    display: inline;
    font-weight: 600;
    color: #000;
}

.rule-engine .rules-container-edited .rules-items-dropped > .gateway-item > .remove-gateway-item:hover {
    display: inline;
    color: red;
}

.rules-items label {
    font-weight: 400;
}

.rule-engine .add-rule {
    cursor: pointer;
    display: inline-block;
    width: auto;
    position: relative;
    margin-bottom: 15px;
}

.rule-engine .add-rule .glyphicon-plus {
    box-shadow: 0 0 5px #aaa;
    padding: 6px 6px 7px 7px;
    border-radius: 50%;
    background-color: green;
    color: #fff;
}

.rule-engine .add-rule:hover {
    text-decoration: none;
    font-weight: 600
}

.rule-engine .add-rule:hover .glyphicon-plus {
    color: green;
    background-color: #fff;
}

.rule-engine .bin-rule-btn {
    border-radius: 2px;
    color: #fff;
    padding: 3px 4px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    border: 1px solid transparent;
    transition: all .3s ease;
}

.rule-engine .edit-rule {
    background-color: #1A577A;
    border: 1px solid #1A577A;
}

.rule-engine .edit-rule:hover {
    text-decoration: none;
}

.rule-engine .edit-rule .icon:before {
    transition: all .3s ease;
}

.rule-engine .edit-rule:hover .icon:before {
    color: #0CA1D7;
}

.rule-engine .remove-rule {
    background-color: red;
    border: 1px solid red;
}

.rule-engine .edit-rule:hover {
    background-color: transparent;
    color: dodgerblue;
}

.rule-engine .remove-rule:hover {
    background-color: transparent;
    color: red;
}

.gateway-image-url {
    position: relative;
    width: 30px;
    height: 16px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0;
}
.gateway-image-title {
    position: relative;
}
.cascade__support{
    margin-bottom: 10px;
}
.cascade__title{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}
.cascade__support-name{
    font-weight: bold;
}
.cascade__sort{
    margin-bottom: 5px;
    font-size: 12px;
}
[scenario="deposit_order"] .gateway-image-url {
    width: 60px;
    height: 40px;
}
[scenario="deposit_order"] .rules-container .cascading-icon,
.cascading-icon .gateway-image-url {
    background-color: #DDEEF8;
}
.available-gateways-cascade{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.available-gateways-cascade .cascade-status-block{
    width: 50%;
}
.cascade-status-block__title{
    font-weight: bold;
}
.available-gateways-cascade .cascade-status-block .gateway-item{
    white-space: normal;
    text-align: left;
    border-radius: 5px;
}
.available-gateways-cascade .cascade-status-block.active .gateway-item{
    border-color: green;
}
.cascading-icon{
    cursor: pointer;
    transition: border-color .3s ease;
}
[scenario="deposit_order"] .rules-container-global .cascading-icon:hover{
    border-color: #1A577A;
}
.rule-engine .gateway-image-url span {
    display: none;
}

.rule-engine .rules-container {
    position: relative;
    margin-bottom: 20px;
}

.rules-container-subcontainers {
    display: block;
}

.rule-engine .rules-container-currency:last-child {
    margin-bottom: 0;
}

.modal-title > span {
    color: #dadada !important;
}

#brand-for-print {
    display: none;
    text-align: center;
}

.not-supported {
    text-align: left;
    display: block;
    padding: 7px 10px;
    margin: 1px;
    border: 1px solid #D9E1E8;
    border-radius: 4px;
    color: #CACACA;
    height: 41px;
    white-space: nowrap;
}

tr td .additional-field-remove {
    line-height: 25px;
    font-size: 13px;
}

.additional_fields [type='checkbox'] {
    margin-left: 20px;
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #ccc;
    margin-right: 10px;
}

.indicator-red {
    background-color: red;
}

.indicator-green {
    background-color: green;
}

.d-none {
    display: none !important;
}

#details-view-modal .modal-dialog .modal-footer .btn-secondary {
    display: none;
}

#company-filter-form .select2-container--krajee .select2-selection--multiple .select2-selection__clear {
    right: 0.5rem;
}

/*#brandsetupwizard-owner_account_action {*/
/*    margin-bottom: 10.5%;*/
/*}*/

.custom-criterion-body .remove-row-field {
    margin: 0;
}

.zodiac-log,
.helios-log {
    overflow-x: auto;
}

.file-caption-main {
    z-index: 1;
    height: 41px;
}

.translation-row.changed {
    background: #0bb1005c !important;
}

.translation-row.unsupported {
    background: #f734348c !important;
}

.brand-index > h1 {
    margin-left: 2.3%;
}

.pl-0 {
    padding-left: 0 !important;
}

.mr-50 {
    margin-right: 50% !important;
}

.mr-10 {
    margin-right: 10px;
    margin-bottom: 10px;
}

.font-btn {
    font-size: 12px !important;
    padding: 5px 7px !important;
}

#chart_by {
    padding: 5px 0 10px 0;
}

.wrap .report_calendar .btn {
    display: inline-block;
}

#chart_transaction_type {
    padding-bottom: 20px;
}

.gateway-view {
    margin-left: 7px;
}

#transaction-view > .alert-danger {
    display: block;
    margin-top: 30px;
}
#transaction-view .tab-pane#logs .table-wrapper{
    overflow: auto;

}
#transaction-view .tab-pane .grid-view{
    min-height: 50px;
}
#transaction-view .tab-pane .grid-view table{
    margin-bottom: 20px!important;
}
.chart-item-update sup {
    position: absolute;
    right: 0;
}

.field-brandsetupwizard-company_image_url .file-caption-main {
    display: flex;
}

.loader, .loader-small {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
}

.loader{
    width: 70px;
    height: 47px;
}
.loader-small{
    width: 59px;
    height: 39px;
}
@media (max-width: 767px) {
    .mb-10 {
        margin-bottom: 10px !important;
    }
    .p-0 {
        padding: 0;
    }
    /*.pl-0 {*/
    /*    padding-left: 0 !important;*/
    /*}*/
    /*.pr-0 {*/
    /*    padding-right: 0 !important;*/
    /*}*/
    .no-chbx .pr-0 {
        margin-bottom: 10px;
    }
    .one-third {
        width: 33%;
    }
    [env-name="dev"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    [env-name="dev"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    [env-name="dev"] .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        background-color: rgba(8, 8, 8, 0.5);
    }
    .environments-index .btn-success,
    .runtime-logs-index .btn-danger,
    .payment-method-index .btn-success,
    .processing-status-index .btn-success {
        float: none !important;
        line-height: 25px !important;
    }
    .no-flex {
        display: block !important;
    }
}

.transaction-index .action-btn > .btn-primary:hover {
    background-color: #fff;
    color: #1a577a;
}

.transaction-index .action-btn .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-index .sub-title h1 {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 20px;
    white-space: nowrap;
}

.transaction-index .badge {
    width: 100%;
    text-transform: capitalize;
}

.transaction_type.badge {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff !important;
    text-transform: capitalize;
}
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777777;
    border-radius: 10px;
}
.badge-success {
    color: #fff!important;
    background-color: #28a745!important;
}

.badge-danger {
    color: #fff!important;
    background-color: #dc3545!important;
}
.badge-warning {
    color: #212529!important;
    background-color: #ffc107!important;
}
.transaction_type.badge-success {
    background: #0ca1d7 !important;
}

.transaction_type.badge-danger {
    background: #f05a28 !important;
}

.transaction_type.badge-warning {
    background: #ffc107 !important;
}

.transaction_type.badge-info {
    background: #777 !important;
}

.transaction_status.badge {
    text-transform: capitalize;
}

.transaction_status.badge-warning {
    color: #ffff !important;
}

.transaction-index .progress-line {
    height: 27px;
    width: 100%;
    max-width: 160px;
    position: relative;
}

.progress-block.with-sign .progress-data:after,
.mobile-totals-amount .progress-data .progress-line:before,
.mobile-totals-cascading-count .progress-data .progress-line:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 27px;
}

.progress-block.with-sign .progress-data:after {
    right: 0;
}

.transaction-index .progress-line .value {
    display: flex;
    height: 100%;
    position: relative;
    width: 160px;
    justify-content: center;
    align-items: center;
    padding-right: 7px;
    font-size: 14px;
    font-weight: 600;
}

.transaction-index .progress-line.progress-line-total .value.width160 {
    width: 160px;
}

.transaction-index .progress-line.progress-line-total .value.width120 {
    width: 120px;
}

.transaction-index .progress-line.progress-line-total .value.width80 {
    width: 80px;
}

.transaction-index .progress-line.progress-line-total .value.width40 {
    width: 40px;
}

.transaction-index .progress-line .value:before {
    content: attr(data-label);
    position: relative;
    display: block;
    text-align: center;
    top: 0;
    right: 0;
    font-size: 14px;
    font-weight: 600;
}

.transaction-index .progress-line .value.total-value {
    justify-content: flex-end;
}

.transaction-index .progress-line .value.total-value:before {
    position: absolute;
    top: 3px;
    right: 7%;
}

.progress-line.badge-success {
    background-color: rgba(12, 161, 215, .1) !important;
}

.progress-line.badge-danger {
    background-color: rgba(240, 90, 40, .1) !important;
}

.progress-line.badge-warning {
    background-color: rgba(255, 193, 7, .1) !important;
}

.progress-line.badge-success .value {
    color: #0ca1d7;
}

.progress-line.badge-danger .value {
    color: #f05a28;
}

.progress-line.badge-warning .value {
    color: #ffc107;
}

.transaction-index .progress-block.main .progress-line .value {
    color: #fff;
}

.progress-line.progress-line-total.badge-success .value,
.progress-block.with-sign .progress-data.success:after,
.mobile-totals-amount .progress-line.badge-success:before,
.mobile-totals-cascading-count .progress-line.badge-success:before {
    background-color: #0ca1d7 !important;
    color: #fff;
}

.progress-line.progress-line-total.badge-danger .value,
.progress-block.with-sign .progress-data.danger:after,
.mobile-totals-amount .progress-line.badge-danger:before,
.mobile-totals-cascading-count .progress-line.badge-danger:before {
    background-color: #f05a28 !important;
    color: #fff;
}

.progress-line.progress-line-total.badge-warning .value,
.progress-block.with-sign .progress-data.warning:after,
.mobile-totals-amount .progress-line.badge-warning:before,
.mobile-totals-cascading-count .progress-line.badge-warning:before {
    background-color: #ffc107 !important;
    color: #fff;
}

.desktop-transactions {
    display: flex;
}

.transaction-index .progress-title {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    width: 75px;
    text-align: end;
    padding-right: 10px;
    min-height: 27px;
}

.transaction-index .progress-title.main,
.transaction-cascading-index .progress-title.main{
    text-align: center;
    width: 100%;
    padding-right: 0;
}

.progress-block {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.transaction-index .totals-count .progress-title.main {
    padding-left: 75px;
}

.transaction-index .progress-data {
    display: flex;
    align-items: center;
    padding-top: 20px;
    position: relative;
}

.transaction-cascading-index .transactions-total-wrap,
.transaction-cascading-index .transactions-cascading-total-wrap {
    display: inline-block;
    min-width: 45%;
}
.transaction-index .progress-block.with-sign .progress-data {
    width: 90px;
}

.transaction-index .transactions-cascading-total .progress-block.with-sign .progress-data {
    width: 110px;
}

.btn-primary.bordered-btn:focus,
.btn-primary.bordered-btn:active,
.btn-primary.bordered-btn:active:hover,
.btn-primary.bordered-btn {
    border: 1px solid #1a577a !important;
    background: #fff;
    color: #1a577a;
}

.btn-primary.bordered-btn:hover {
    background: #fff;
    color: #1a577a;
}

.download-csv.btn-primary:active:hover {
    background-color: #fff;
}

#download-csv-modal > .modal-dialog > .modal-content > .modal-body {
    min-height: auto;
}

.bordered-btn svg {
    overflow: visible;
    position: relative;
    top: -6px;
    left: 3px;
}

.transaction-page .bordered-btn svg {
    top: -10px;
    left: -1px;
}
.tabs-wrapper {
    margin-top: -35px;
}

.nav-tabs > li > a.nav-tab-head {
    border: 3px solid transparent !important;
    color: #1a577a;
    font-size: 14px;
    font-weight: 400;
    background-color: transparent;
}

.nav-tabs.shadow-on-hover > li > a.nav-tab-head {
    text-decoration: none;
    text-shadow: 0 0 0 transparent;
}

.nav-tabs.shadow-on-hover > li > a.nav-tab-head:hover {
    font-weight: 400;
    text-shadow: 0 0 1px black;
}

.nav-tabs > li.active,.nav-tabs > li.active a, .nav-tabs > li.active:focus, .nav-tabs > li.active:hover, .nav-tabs > li:hover {
    background-color: #fff;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li > a:hover {
    color: #1A577A !important;
    font-weight: 400;
    background-color: #fff;
    border-top: 3px solid #1A577A;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    text-shadow: 0 0 1px black;
}

.nav-tabs > li.active > a ,.nav-tabs > li.active > a:hover {
    font-weight: 400;
    text-shadow: 0 0 1px black !important;
}

.brand-form .nav-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.brand-form .nav-tabs > li.active {
    border-top: 3px solid #1A577A;
}

.tab-content > .tab-pane {
    background-color: #fff;
    padding: 10px;
}

.mobile-totals-amount .tab-content > .active,
.mobile-totals-cascading-count .tab-content > .active {
    background-color: transparent;
}

.nav-tabs {
    border-bottom: 1px solid #fff;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    margin-top: 30px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
}

#rule-edit-modal .modal-title {
    font-size: 15px;
}

.modal-body h4,
#transaction-view h4 {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 25px;
}

#transaction-view .transaction-details-row,
#transaction-view .transaction-details-row .badge,
#transaction-view .transaction-details-row a {
    font-size: 14px;
    font-weight: 600;
}

#transaction-view .transaction-details-row a {
    color: #1a577a;
}

#transaction-view .transaction-details-row b {
    color: #333333;
    font-size: 13px;
    font-weight: 400;
}

#transaction-view .transaction-details-row p {
    white-space: normal;
    margin-left: -20px;
    overflow-wrap: break-word;
}

.customer-view .grid-view table.table {
    white-space: nowrap;
    margin-bottom: 0 !important;
}

.customer-view .grid-view {
    min-height: auto;
}

.transactions-total,
.transactions-cascading-total {
    padding-top: 30px;
}

.progress-block-wrapper {
    width: 100%;
    overflow-x: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    height: 200px;
    position: relative;
}

.progress-block-wrapper .mCSB_container {
    display: -webkit-flex;
    display: flex;
}

.totals-amount,
.totals-cascading-count {
    overflow-x: auto;
    width: 100%;
}

.modal-view {
    width: 100%;
    text-align: center;
    display: inline-block;
}

.dropdown-menu > li > a.modal-view {
    text-align: left;
}

#transaction-view .transaction-type .badge.badge-success {
    background-color: #0ca1d7 !important;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 12px;
}

.modal-body .tab-pane .table > tbody > tr > th,
.txt-status-manage-tabs .tab-pane .table > tbody > tr > th,
.txt-status-manage-tabs .tab-pane .table > tbody > tr > td,
.modal-body .tab-pane .table > tbody > tr > td {
    border-top-color: transparent;
    font-size: 12px;
    color: #333333;
}

.txt-status-manage-tabs .tab-pane .table > tbody > tr:nth-child(2n+1),
.modal-body .tab-pane .table > tbody > tr:nth-child(2n+1) {
    background-color: #F7FBFF;
}
.txt-status-manage-tabs .tab-pane .table > tbody > tr > th,
.modal-body .tab-pane .table > tbody > tr > th {
    font-weight: 400;
    width: 30%;
}

.txt-status-manage-tabs .tab-pane .table > tbody > tr > td,
.modal-body .tab-pane .table > tbody > tr > td {
    font-weight: 600;
}
.txt-status-manage-tabs .tab-pane .table > tbody > tr > td{
    word-break: break-all;
}

.modal-body .tab-pane#cascade_info .table > tbody > tr > td,
.modal-body .tab-pane#partial-processing .table > tbody > tr > td,
.modal-body .tab-pane#logs .table > tbody > tr > td {
    white-space: nowrap;
}

.btn-modal-group {
    margin-top: 20px;
}

.modal-body .btn-modal-group .btn-default[data-dismiss=modal] {
    padding: 8px 3px !important;
}

.modal-body thead th > a {
    display: flex;
    align-items: center;
    color: #777777;
}

.mobile-detail-btn,
.table-mobile-label {
    display: none;
}

.tabs-transaction {
    position: relative
}
#transaction-view #transaction table tr td{
    word-break: break-word;
}
.mobile-chart-tabs.nav-tabs {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    margin-top: 0;
}

.mobile-totals-amount .nav-tabs .mCSB_container,
.mobile-totals-cascading-count .nav-tabs .mCSB_container {
    display: -webkit-flex;
    display: flex;
}

.mobile-totals-amount .nav-tabs li > a,
.mobile-totals-cascading-count .nav-tabs li > a {
    white-space: nowrap;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom: 2px solid transparent !important;
    text-align: center !important;
    color: #979797;
    font-size: 14px;
    font-weight: 600;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.mobile-totals-amount .nav-tabs li.active > a,
.mobile-totals-cascading-count .nav-tabs li.active > a,
.mobile-totals-amount .nav-tabs li.active > a:hover,
.mobile-totals-cascading-count .nav-tabs li.active > a:hover,
.mobile-totals-amount .nav-tabs li > a:hover,
.mobile-totals-cascading-count .nav-tabs li > a:hover,
.mobile-totals-amount .nav-tabs li.active > a:focus,
.mobile-totals-cascading-count .nav-tabs li.active > a:focus,
.mobile-totals-amount .nav-tabs li > a:focus,
.mobile-totals-cascading-count .nav-tabs li > a:focus {
    color: #0ca1d7;
    border-bottom: 2px solid #0ca1d7 !important;
    border-top-color: transparent !important;
    border-left-color: transparent;
    border-right-color: transparent;
    background-color: #fff;
}

.transaction-index .mobile-totals-amount .nav-tabs li.active > a.progress-title.main,
.transaction-index .mobile-totals-cascading-count .nav-tabs li.active > a.progress-title.main,
.transaction-index .mobile-totals-amount .nav-tabs li > a.progress-title.main,
.transaction-index .mobile-totals-cascading-count .nav-tabs li > a.progress-title.main {
    padding: 10px 15px;
}

.legend-block {
    margin-top: 20px;
}

.legend-block p {
    margin-bottom: 3px;
}

.legend-square {
    display: inline-block;
    margin-right: 5px;
    height: 15px;
    width: 20px;
    position: relative;
    top: 3px;
}

.mobile-totals-amount .tab-content,
.mobile-totals-cascading-count .tab-content {
    border: solid 1px #d9e1e8;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    padding: 0 10px;
}

.mobile-totals-amount .tab-pane .progress-data:last-child,
.mobile-totals-cascading-count .tab-pane .progress-data:last-child {
    padding-bottom: 20px;
}

.mobile-totals-amount,
.mobile-totals-cascading-count {
    display: none;
}

.checkbox-wrap,
.hidden-columns,
.hidden-columns > *,
.checkbox-wrap > * {
    z-index: 1;
}

.modal-body .sortable-item input[type=checkbox], .wizard-body .sortable-item input[type=checkbox] {
    display: none;
}

.modal-body .sortable-item::before, .wizard-body .sortable-item::before {
    top: 0;
    left: 0;
    font-size: 16px;
    background-color: #0ca1d7;
    color: #fff;
    width: 36px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-body .sortable-item label, .wizard-body .sortable-item label {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    margin-left: 0;
    padding: 0 5px;
    word-break: break-word;
    text-align: center;
}

.modal-body .sortable-item, .wizard-body .sortable-item {
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    height: 41px;
    max-width: 180px;
    border-color: #d9e1e8;
    border-bottom: none;
    background-color: #fff;
    padding: 0 0 0 36px;
    overflow: hidden;
    text-align: center;
}

.hidden-columns.ui-state-default {
    border: solid 1px #d9e1e8;
    border-radius: 3px;
    background: #ffffff;
    margin-top: 45px;
    position: relative;
    padding: 20px;
}

.hidden-columns.ui-state-default:before {
    content: 'Hidden Columns:';
    position: absolute;
    top: -20px;
    left: 0;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.active-columns.ui-helper-clearfix:before {
    content: 'Active Columns:';
    margin-left: 7px;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.hint-block-info{
    color: #FF0000;
}

.hint-text{
    font-size: 12px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    margin-left: 3px;
    position: fixed;
    margin-top: 1px
}

.modal-body .hidden-columns .sortable-item::before, .wizard-body .hidden-columns .sortable-item::before {
    background-color: #FF0000;
    content: '-';
}

.transaction-index .search-field {
    color: #1a577a;
    font-size: 13px;
}

.block-search .control-label {
    color: #777;
    font-size: 12px;
    font-weight: 400;
}
.block-search .control-label.active{
    color: #0CA1D7;
}
.block-search input[type=text] {
    height: 41px;
}

.modal-footer .btn {
    min-width: 138px;
}

/*.modal-footer .btn:first-child {*/
/*    margin-right: 35px;*/
/*}*/

.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 20px !important;
}

.block-search form,
.block-search .form {
    position: relative;
}

.block-search .search-btn,
.block-search .form .search-btn {
    position: absolute;
    right: 0;
    top: 7px;
    height: 26px;
    width: 18px;
    border: none;
    background-color: transparent;
    padding: 0;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.gateway-search .block-search .form .search-btn,
.block-search .search-btn{
    right: 10px;
}
.mobile-search-btn{
    height: 27px;
    width: 19px;
    border: none;
    background-color: transparent;
    padding: 0;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 3px;
    z-index: 2;
    display: none;
}
input[type=search] {
    padding-right: 30px;
}
.transaction-search-group{
    display: flex;
}
.transaction-page #tid_form {
    padding-left: 10px;
    width: 50%;
}
.transaction-cascading-index #tid_form {
    padding-left: 10px;
    width: 30%;
}
.transaction-select-search,
.transaction-index .block-search{
    position: relative;
    width: 100%;
}
.transaction-select-search{
    width: 75%;
}

.transaction-index .block-search .search-btn{
    right: 3px;
}
.transaction-index input[type=search]{
    padding-right: 20px;
}
.page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    word-break: break-word;
    margin-right: 10px;
}

@-webkit-keyframes fadeInRight {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

button:focus {
    outline: none;
}
.translation-wrap{
    display: flex;
    justify-content: flex-end;
}
.translation-btn-group{
    display: flex;
}
@media only screen and (max-width: 1241px) {
    .filters-modal{
        top: 126px;
    }
}
@media only screen and (max-width: 1024px) {
    .filters-modal.active{
        right: 0;
    }
    .filters-modal .modal-dialog{
        width: 100%;
    }
    .rule-engine .rules-container-block.deposit {
        width: 30%;
    }
    .action-btn {
        width: 100%;
    }
    .transaction-index .block-search {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    #helios-logs-container .scroll-container,
    #zodiac-logs-container .scroll-container{
        overflow-x: auto;
    }

    .close-filter-modal{
        display: block;
    }
    .translation-wrap{
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 10px;
    }
    .translation-btn-group{
        display: flex;
        justify-content: flex-start;
        margin-right: 10px;
    }
    .translation-wrap .btn:not(:last-of-type){
        margin-right: 0!important;
        margin-left: 0!important;
        margin-bottom: 5px;
    }
    .frontend-view .pull-right > .dropdown-menu{
        right: -24px;
    }
    #increased-popup {
        width: 500px;
    }

    .regulation-company-list{
        display: block;
        padding: 0;
    }
    .step-three .regulation-company-list{
        padding: 0 15px;
    }
    body .transaction-index .dropdown-menu-right {
        right: auto;
        left: 0;
    }

    .table .empty.dropup{
        font-size: 12px;
    }
    .additional-field-remove-btn{
        position: absolute;
        top: -20px;
        left: -10px;
    }
    .website-index .statistic-wrap{
        margin-top: 10px;
    }
    .gateway-limits-view .mobile-btns .btn{
        width: 100%;
    }
    .comments {
        margin-top: 20px;
    }
    .btn-modal-group .btn{
        margin-bottom: 10px;
    }
    .frontend-rules.frontend-rules-create{
        margin-bottom: 20px;
    }
    .add-bridger {
        font-size: 12px !important;
        width: auto;
    }
    .navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li .dropdown-menu li a > .title {
        left: 0;
    }
    .brand-settings-row.no-chbx,
    .brand-settings-row.chbx {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0;
    }
    .brand-settings-row {
        padding: 0;
    }
    #verification .brand-settings-row,
    .brand-config-chkbx .brand-settings-row {
        padding: 10px 0;
    }
    .brand-settings-row.chbx {
        flex-direction: row;
    }
    .brand-settings-row.chbx .pair {
        display: flex;
    }
    .brand-settings-row.chbx input[type=checkbox] {
        top: 0;
        margin: 0;
    }
    .brand-settings-row .glyphicon-tag {
        top: 0;
    }
    .rule-engine .rules-container-block.deposit {
        width: 100%;
    }
    .transaction-index .block-search {
        width: 100%;
    }
    .modal {
        top: 5%;
    }
    .action-btn .btn.download-csv {
        border: 1px solid #1a577a;
    }
    .block-search label {
        display: none;
    }

    .frontend-view h1 {
        word-break: break-all;
    }
    .search-open h1 {
        display: none;
    }
    #tid_form{
        width: 100%;
    }
    #tid_form >div.transaction-search-group{
        position: relative; ;
    }
    .full-block {
        z-index: 1;;
        height: 41px;
        animation: fadeInRight 1s ease forwards;
    }
    .transaction-select-search,
    .block-search input[type=search] {
        opacity: 0;
        z-index: -1;
        width: 0;
    }
    .full-block .transaction-select-search,
    .full-block input[type=search] {
        opacity: 1;
        z-index: 1;
        width: 100%;
    }
    .transaction-index .block-search .search-btn{
        display: none;
    }
    .transaction-index .full-block .block-search .search-btn,
    .transaction-index .full-block.block-search .search-btn{
        display: block;
    }
    .mobile-search-btn{
        display: block;
    }
    .block-search form .search-btn {
        height: 35px;
    }
    #transaction-page .scroll-bar,
    #details-view-modal .modal-body .scroll-bar-customer,
    #details-view-modal .modal-body .scroll-bar-cascade{
        display: none;
    }
    .overflow-x .transaction-index .grid-view .table{
        min-width: auto;
    }
    .transaction-index #transactions-table,
    .transaction-index #transactions-table tbody,
    .transaction-index #transactions-table th,
    .transaction-index #transactions-table tr,
    .transaction-index #transactions-table td {
        display: block;
    }
    .transaction-index #transactions-table.table-striped > tbody > tr:nth-of-type(even):hover,
    .transaction-index #transactions-table.table-striped > tbody > tr:nth-of-type(even),
    .transaction-index #transactions-table.table-striped > tbody > tr:nth-of-type(odd):hover,
    .transaction-index #transactions-table.table-striped > tbody > tr:nth-of-type(odd) {
        background-color: #fff !important;
    }
    .table-mobile-label {
        display: block;
    }
    .transaction-index #transactions-table thead {
        display: none;
    }
    table tr {
        position: relative;
    }
    .transaction-index #transactions-table .transaction_type_row {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 81px;
        display: flex !important;
    }
    .transaction-index #transactions-table tr td {
        word-break: break-all;
        padding: 5px 0 !important;
    }
    .transaction-index #transactions-table tr td:not(:nth-child(1)) {
        display: grid;
        grid-template-columns: 35% 1fr;
    }
    .transaction-index #transactions-table tr td .badge,
    .transaction-index #transactions-table .modal-view {
        text-align: center;
        padding-left: 0;
    }
    .transaction-index #transactions-table .card-numbers .modal-view {
        text-align: left;
        padding-left: 20px;
    }
    .transaction-index #transactions-table tr td.transaction_type_row .badge {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    .transaction-index #transactions-table tr td.none_data_row,
    .transaction-index #transactions-table tr td.accepted_by_crm_row,
    .transaction-index #transactions-table tr td.charge_amount_row {
        opacity: 0;
        height: 0;
    }
    .transaction-index #transactions-table .card-numbers .dropdown-menu li a.modal-view{
        padding-left: 10px;
    }
    .transaction-index #transactions-table tr td:nth-child(1) {
        border-bottom: 1px solid #d9e1e8;
        margin-bottom: 10px;
    }
    .transaction-index #transactions-table tr {
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
        padding: 15px 10px;
        margin-bottom: 25px;
        /*overflow-x: hidden;*/
        /*overflow-y: scroll;*/
        -webkit-overflow-scrolling: touch;
    }
    .transaction-index .scroll-bar{
        display: none!important;
    }
    .sub-title .action-btn {
        position: fixed;
        z-index: 10;
        bottom: 15px;
        left: 0;
        justify-content: center;
        flex-direction: row-reverse;
        width: 100%;
        align-items: center;
    }
    .transaction-index .sub-title h1 {
        white-space: nowrap;
    }
    .mobile-detail-btn.btn.bordered-btn {
        color: #1a577a;
        background-color: transparent;
        display: flex;
        justify-content: center;
        margin: 12px;
    }
    .am-report .mobile-detail-btn.btn.bordered-btn {
        display: none;
    }
    .page-content{
        margin-bottom: 20px;
    }
    .modal-title {
        font-size: 16px;
    }
    .txt-status-manage-tabs .nav-tabs > li > a.nav-tab-head,
    .modal-body .nav-tabs > li > a.nav-tab-head {
        font-size: 12px;
        white-space: nowrap;
    }
    .modal-body #transaction-view p, .modal-body #transaction-view p .badge, .modal-body #transaction-view p a {
        font-size: 12px;
    }
    .txt-status-manage-tabs .nav-tabs,
    .modal-body .nav-tabs {
        display: flex;
        overflow-x: scroll;
        overflow-y: hidden;
        position: relative;
    }
    .transactions-total .desktop-transactions,
    .transactions-cascading-total .desktop-transactions {
        display: none;
    }
    .mobile-totals-amount,
    .mobile-totals-cascading-count {
        display: block;
    }
    .transaction-index .transactions-total,
    .transaction-index .transactions-cascading-total {
        border-top: none !important;
        display: block;
        margin: 0;
    }
    .modal-body .modal-view {
        text-align: left;
    }
    h3 {
        font-size: 14px;
    }
    .pagination li a {
        font-size: 11px
    }
    .payout-wid,
    .deposit-wid {
        height: 100% !important;
    }
    .ch-main-item {
        margin-bottom: 10px;
    }
    #calendar_search,
    #chart_by > .font-btn {
        margin-bottom: 10px;
    }
}

.select2-results__option span {
    color: #999;
    font-size: 10px;
    line-height: normal;
    display: block;
}

.select2-results__option--highlighted span,
.select2-results__option[aria-selected="true"] span {
    color: white;
}

.select2 .select2-selection__rendered > span:not(.select2-selection__placeholder) {
    font-size: 10px;
    color: #999;
}

.select2 .select2-selection__rendered > span:not(.select2-selection__placeholder):before {
    content: ' - ';
}

.select2-selection__choice:not([title]) .select2-selection__choice__remove {
    display: none !important;
}

.select2-selection__choice:not([title]) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none;
}

body .select2-container--krajee .select2-selection--single .select2-selection__rendered .select2-selection__clear {
    font-size: 0 !important;
}

.transaction_status.text-success {
    color: #009F3E;
}

.transaction_status.text-info {
    color: #777777;
}

.transaction_status.text-warning {
    color: #F7B100;
}

.transaction_status.text-danger {
    color: #F05A28;
}

.marker {
    padding-left: 20px;
    display: block;
}

.marker::before {
    content: '\2022';
    position: relative;
    left: -4px;
    top: 1px;
    font-size: 14px;
    font-weight: 600;
}

@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot');
    src: url('fonts/icomoon.eot') format('embedded-opentype'),
    url('fonts/icomoon.ttf') format('truetype'),
    url('fonts/icomoon.woff') format('woff'),
    url('fonts/icomoon.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-blacklisted_cards_icon:before {
    content: "\e92d";
    color: #1a577a;
}

.icon-trusted_cards_icon:before {
    content: "\e900";
    color: #1a577a;
}

.icon-clone_application_icon:before {
    content: "\e92e";
    color: #1a577a;
}

.icon-displace_application_icon:before {
    content: "\e92f";
    color: #1a577a;
}

.icon-runtime_errors_icon:before {
    content: "\e930";
    color: #1a577a;
}

.icon-account_icon:before {
    content: "\e92c";
}

.icon-limits_icon:before {
    content: "\e92a";
    color: #1a577a;
}

.icon-payment_settings_icon:before {
    content: "\e927";
    color: #1a577a;
}

.icon-company_settings_icon:before {
    content: "\e928";
    color: #1a577a;
}

.icon-deposit_order_icon:before {
    content: "\e929";
    color: #1a577a;
}

.icon-crons_icon:before {
    content: "\e92b";
    color: #1a577a;
}

.icon-cpu:before {
    content: "\e923";
}

.icon-edit:before {
    content: "\e926";
    color: #f7fbff;
}

.icon-hard-drive-disk-svgrepo-com:before {
    content: "\e925";
}

.icon-ram-memory:before {
    content: "\e924";
}

.icon-additional_icon:before {
    content: "\e921";
    color: #1a577a;
}

.icon-admin_logs_icon:before {
    content: "\e922";
    color: #1a577a;
}

.icon-charts_icon:before {
    content: "\e91f";
    color: #1a577a;
}

.icon-accounts_icon1:before {
    content: "\e920";
    color: #1a577a;
}

.icon-contact:before {
    content: "\e91d";
    color: #1a577a;
}

.icon-accounts_icon:before {
    content: "\e91e";
    color: #1a577a;
}

.icon-companies_icon:before {
    content: "\e903";
    color: #1a577a;
}

.icon-customer_data_review_logs_icon:before {
    content: "\e904";
    color: #1a577a;
}

.icon-customers_icon:before {
    content: "\e905";
    color: #1a577a;
}

.icon-default_translations_icon:before {
    content: "\e906";
    color: #1a577a;
}

.icon-docs_icon:before {
    content: "\e907";
    color: #1a577a;
}

.icon-Environments_icon:before {
    content: "\e908";
    color: #1a577a;
}

.icon-gateways_icon:before {
    content: "\e909";
    color: #1a577a;
}

.icon-general_report_icon:before {
    content: "\e90a";
    color: #1a577a;
}

.icon-identity_icon:before {
    content: "\e90b";
    color: #1a577a;
}

.icon-locations_icon:before {
    content: "\e90c";
    color: #1a577a;
}

.icon-notifications_icon:before {
    content: "\e90d";
    color: #1a577a;
}

.icon-payment_methods_icon:before {
    content: "\e90e";
    color: #1a577a;
}

.icon-payment_processors_icon:before {
    content: "\e90f";
    color: #1a577a;
}

.icon-platforms_icon:before {
    content: "\e910";
    color: #1a577a;
}

.icon-procession_statuses_icon:before {
    content: "\e911";
    color: #1a577a;
}

.icon-release_notes_icon:before {
    content: "\e912";
    color: #1a577a;
}

.icon-reports_icon:before {
    content: "\e913";
    color: #1a577a;
}

.icon-requests_for_merchant_account_icon:before {
    content: "\e914";
    color: #1a577a;
}

.icon-requests_for_payment_processor_icon:before {
    content: "\e915";
    color: #1a577a;
}

.icon-rule_engine_icon:before {
    content: "\e916";
    color: #1a577a;
}

.icon-rule_exceptions_icon:before {
    content: "\e917";
    color: #1a577a;
}

.icon-runtime_logs_icon:before {
    content: "\e918";
    color: #1a577a;
}

.icon-servers_icon:before {
    content: "\e919";
    color: #1a577a;
}

.icon-home__icon:before {
    content: "\e931";
    color: #1a577a;
}

.icon-tools_icon:before {
    content: "\e91a";
    color: #1a577a;
}

.icon-transactions_icon:before {
    content: "\e91b";
    color: #1a577a;
}

.icon-websites_icon:before {
    content: "\e91c";
    color: #1a577a;
}

.icon-admin_icon:before {
    content: "\e901";
    color: #1a577a;
}

.icon-monitor:before {
    content: "\e902";
    color: #1a577a;
}

.icon-blacklisted_cards_icon:before {
    content: "\e92d";
    color: #1a577a;
}

.icon-displace_application_icon:before {
    content: "\e92f";
    color: #1a577a;
}

.icon-clone_application_icon:before {
    content: "\e92e";
    color: #1a577a;
}

.icon-runtime_errors_icon:before {
    content: "\e930";
    color: #1a577a;
}

.icon-tag:before {
    content: "\e925";
    color: #1a577a;
}

.input-group-addon,
.report_calendar .form-control.krajee-datepicker {
    padding: 6px;
}

.default-font {
    font-family: initial;
}

body .ui-progressbar .ui-progressbar-value {
    margin: 0;
}

body .ui-widget-header {
    border: none;
}

body .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    border-bottom-right-radius: 0;
}

body .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
    border-bottom-left-radius: 0;
}

body .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
    border-top-right-radius: 0;
}

body .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
    border-top-left-radius: 0;
}

.psp-totals .white-shadow-block {
    display: flex;
    flex-wrap: wrap;
}

.psp-totals .white-shadow-block table.table {
    background: transparent;
    font-size: 13px;
}

table.table td xmp {
    white-space: normal;
}

.grid-view td.has-error .help-block {
    position: absolute;
    top: 90%;
    background-color: #fff;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#brand-for-print h2 {
    font-size: 30px;
}

#brand-for-print h1 {
    font-size: 34px;
}

.print-logo img {
    max-width: 240px;
    width: 240px;
}

.no-wrap {
    white-space: nowrap;
}

.empty-logs {
    font-weight: 600;
    font-size: 15px;
}

.select2-container .select2-results.dropdown-open > .select2-results__options {
    max-height: 130px !important;
}

.filters td {
    position: relative;
    overflow: initial !important;
}

/*.overflow-x .grid-view .table {*/
/*    min-width: 1200px;*/
/*}*/
.overflow-x #logs .grid-view .table,
.overflow-x #cascade_info .grid-view .table,
.overflow-x #charts_body .grid-view .table {
    min-width: auto;
}

/*#charts_body .grid-view .table.table-bordered > thead > tr > th {*/
/*    white-space: normal*/
/*}*/
#charts_body .grid-view .table.table-bordered td{
    white-space: nowrap;
}
.list-root-account,
.bin-route-exception-index .edited-black-list {
    white-space: nowrap;
}

.black_card_number span {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.list-status:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    top: 1px;
}

.list-status.active-status:before {
    background-color: #00AD43;
}

.list-status.inactive-status:before {
    background-color: #CC0000;
}
.list-status.requested-status:before {
    background-color: #f19408;
}

.list-root-account:before {
    content: "\e92b";
    display: inline-block;
    font-family: 'icomoon' !important;
    margin-right: 5px;
    position: relative;
    top: 1px;
    width: 10px;
    height: 10px;
}

/*Blacklist card start*/
.black_api_account:before {
    content: "\e91b";
    display: inline-block;
    font-family: 'icomoon' !important;
    margin-right: 5px;
    position: relative;
    top: 1px;
}

.black_card_number span:before,
span.card-type:before{
    content: '';
    display: inline-block;
    margin-right: 5px;
    width: 32px;
    height: 32px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.black_card_number span.visa:before,
.card-type.visa:before{
    background-image: url(../img/card_types/visa.svg);
}

.black_card_number span.amex:before,
.card-type.amex:before{
    background-image: url(../img/card_types/amex.svg);
}

.black_card_number span.dankort:before,
.card-type.dankort:before{
    background-image: url(../img/card_types/dankort.svg);
}

.black_card_number span.dinersclub:before,
.card-type.dinersclub:before{
    background-image: url(../img/card_types/dinersclub.svg);
}

.black_card_number span.discover:before,
.card-type.discover:before{
    background-image: url(../img/card_types/discover.svg);
}

.black_card_number span.electron:before,
.card-type.electron:before {
    background-image: url(../img/card_types/electron.svg);
    background-size: 190px;
}

.black_card_number span.forbrugsforeningen:before,
.card-type.forbrugsforeningen:before{
    background-image: url(../img/card_types/forbrugsforeningen.svg);
}

.black_card_number span.jcb:before,
.card-type.jcb:before{
    background-image: url(../img/card_types/jcb.svg);
}

.black_card_number span.maestro:before,
.card-type.maestro:before{
    background-image: url(../img/card_types/maestro.svg);
}

.black_card_number span.mastercard:before,
.card-type.masterCard:before{
    background-image: url(../img/card_types/mastercard.svg);
}

.black_card_number span.mir:before,
.card-type.mir:before{
    background-image: url(../img/card_types/mir.svg);
}

.black_card_number span.unionpay:before,
.card-type.unionpay:before{
    background-image: url(../img/card_types/unionpay.svg);
}

.psp-totals .black_card_number {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
}

.psp-totals .black_card_number > span:before {
    width: 20px;
    height: 20px;
}

.psp-totals .black_card_number > span {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}
/*Blacklist card end*/

.CodeMirror {
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow;
}

.CodeMirror.CodeMirror-focused {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    border-color: #66afe9;
}

#transaction-view {
    min-height: 120px;
    position: relative;
}

#transaction-view .loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav > li > a:hover, .nav > li > a:focus {
    background-color: transparent;
}

.select2-dropdown {
    z-index: 997;
}

.modal-open .select2-dropdown {
    z-index: 10511;
}

.has-success .form-control,
.empty_input.has-success .form-control {
    border-color: #ccc;
}

.has-success .form-control:focus {
    border-color: #66afe9;
}

.has-success label.control-label,
.empty_input.has-success label {
    color: #333333;
}

.white-shadow-block.diagram-block {
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    min-height: 67px;
}

.table-wrapper {
    position: relative;
    padding: 20px 0;
}

.table-wrapper .ps-scrollbar-x-rail {
    top: 0;
}

.table-wrapper table.table {
    margin: 0;
    position: relative;
}

.transaction-page .table-wrapper table.table {
    margin-bottom: 52px;
}
.transaction-page .table-wrapper .clone-table-wrapper table.table{
    margin-bottom: 0;
}
.clone-table,
.clone-table-label {
    position: fixed;
    top: 50px;
    padding-top: 20px;
    background-color: #fff;
    overflow: hidden;
    -webkit-transform: perspective(900px) rotate3d(1, 0, 0, -90deg);
    transform: perspective(900px) rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%;
    animation: menuSlide 0.2s linear forwards;
}

.clone-table-label {
    width: 100%;
    z-index: 900;
    height: 50px;
    border-bottom: 1px solid #D9E1E8;
    background-color: #f9f9f9;
    display: none;
}

.clone-table-wrapper {
    position: fixed;
    width: 100%;
    top: 50px;
    z-index: 990;
    height: 80px;
    left: 0;
    display: none;
}
#gateway .clone-table-label{
    padding-top: 0;
}
.table-wrapper .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.table-wrapper .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    background-color: #f9f9f9;
    height: 16px;
}

.table-wrapper .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    top: -21px;
}

.table-wrapper #customer-grid table {
    margin-top: 20px;
}

.table-wrapper #customer-grid .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    top: 0;
}

.table-wrapper .mCSB_scrollTools .mCSB_draggerRail {
    display: none;
}

table thead {
    background-color: #ffffff;
}

.word-break {
    word-break: break-word;
    min-width: 150px;
}

table td.word-break[data="Order"] {
    word-break: break-word;
    min-width: 100px;
}

#transactions-filter-modal.am-report .modal-dialog {
    max-width: 95%;
    width: 545px;
}

#filter-modal .two-blocks .form-group {
    width: 100%;
}

.helios-processor-form .table-body .table-row,
.helios-processor-form .table-body .table-row .input-block {
    display: flex;
    align-items: center;
    width: 100%;
}

.rules-block .table-body .table-row {
    display: table-row;
}

.rules-block .table-body .table-row .add-delete-items {
    position: relative;
}

.rules-block .table-body .table-row .brand-remove-item {
    position: absolute;
    top: 16px;
    right: 16px;
}

#processing .rules-body {
    display: flex;
    align-items: center;
}

.table-body .table-row .input-block.check {
    width: 20%;
}

.table-body .table-row {
    position: relative;
}

.data-rows-item {
    margin: 10px 0 35px 0;
    display: flex;
    align-items: center;
}

.data-rows-item label {
    display: flex;
    align-items: center;
}

.data-rows-item label .data-item-key {
    margin-right: 5px;
    margin-top: 0;
}

.select2-container--krajee .select2-selection--single .select2-selection__rendered[title='Low'] {
    color: #00AD43;
}

.select2-container--krajee .select2-selection--single .select2-selection__rendered[title='Medium'] {
    color: #F7B100;
}

.select2-container--krajee .select2-selection--single .select2-selection__rendered[title='High'] {
    color: #FF0000;
}

.select2-container--krajee .select2-selection--single .select2-selection__rendered[title='Critical'] {
    color: #CC0000;
}

html > body {
    background-color: #f9f9f9;
    font-family: "Open Sans";
    font-weight: 400;
}

.nav-tabs > li > a {
    margin-right: 0;
    border-radius: 0;
    text-transform: uppercase;
}

.breadcrumb {
    background-color: transparent;
    padding-left: 0;
    padding: 0;
    margin-bottom: 10px;
}

.breadcrumb > li {
    word-break: break-word;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
}

.breadcrumb > li:first-of-type > a {
    color: #8A94A8;
    font-weight: 400;
}
.breadcrumb > li:first-of-type:hover > a {
    color: #6C7993;
}

.breadcrumb > li > a {
    color: #576175;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.breadcrumb > li + li:before {
    content: '/';
    color: #576175;
    font-weight: 600;
}

.navbar-inverse.navbar-inverse {
    background-color: #f9f9f9;
    border: none;
    box-shadow: 0 0 3px #999;
}

.navbar-inverse.navbar .navbar-nav li a,
[env-name="dev"] .navbar-inverse.navbar .navbar-nav li a {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: transparent;
}
.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a{
    color: #333333;
}
.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li.active a {
    color: #2CABE2;
}

.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a:hover,
.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a:active{
    background-color: #ffff;
    color: #2CABE2;
    position: relative;
}
.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li.current a .title_main,
.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li.open.current a .title_main{
    color: #2CABE2;
}

.navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li.open.current a .title_main,
.navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li.current a .title_main,
.navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li.mouseenter a .title_main{
    overflow: visible;
    color: #2CABE2;
}
.navbar-inverse.navbar .navbar-nav li.mouseenter a .title_main:before,
.navbar-inverse.navbar .navbar-nav li.current a .title_main:before,
.navbar-inverse.navbar .navbar-nav li.open.current a .title_main:before{
    content: '';
    width: 100%;
    height: 1px;
    background-color: #DDDDDD;
    position: absolute;
    bottom: -6px;
}
.navbar-inverse.navbar .navbar-nav li a:focus {
    background-color: #ffff;
}
.navbar-fixed-left.navbar .navbar-nav li a span[class*='icon-'] {
    display: inline-block;
    position: relative;
    left: 20px;
    transition: all .3s ease;
}

.menu-icons{
    display: inline-block;
    position: relative;
    left: 20px;
    transition: all .3s ease;
    padding: 7px 0;
}

.menu-icon{
    width: 25px;
    height: 24px;
}

.dropdown-toggle:hover .menu-icons, .dropdown.open.current>a>.menu-icons{
    filter: invert(62%) sepia(11%) saturate(5124%) hue-rotate(166deg) brightness(94%) contrast(88%) !important;
}

.navbar-fixed-left.navbar .navbar-nav li a span[class*='icon-'] svg{
    width: 24px;
    height: 25px;
}

.navbar-fixed-left .dropdown .caret {
    animation: slide-in-left .2s linear forwards;
    right: -100%;
    width: 15px;
    height: 11px;
    background-image: url(../img/menu-icons/icon-caret_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    top: 40%;
    display: none;
}

.navbar-fixed-left.active .dropdown .caret{
    display: inline-block;
}
.modal-header {
    padding: 10px 45px 15px 11px;
    background-color: #0ca1d7;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 18px;
    word-break: break-word;
}

.modal .modal-header {
    position: relative;
}

.modal .modal-dialog {
    max-width: 95%;
    width: 545px;
}
.general-report-index #transactions-filter-modal .modal-dialog,
#transactions-filter-modal.decline-recovery-filter .modal-dialog,
#transactions-filter-modal.cascading-filter .modal-dialog {
    width: 90%;
    max-width: 1200px;
}
#filter-customer-modal .modal-dialog,
#search-modal .modal-dialog,
#filter-psp-modal .modal-dialog {
    max-width: 1024px;
    width: 90%;
}

.modal .modal-content {
    border: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.modal .modal-body {
    background-color: #f9f9f9;
    padding: 15px 30px;
}

body .modal-body select.form-control,
.table-body select.form-control {
    padding-left: 10px;
    border: 1px solid #d9e1e8;
    background-image: url(../img/arrow_select.svg);
    background-repeat: no-repeat;
    background-position: 96% 50%;
    -webkit-appearance: none;
}

.modal-body form .row > label {
    padding-left: 5px;
}

.modal-content .modal-header .close {
    opacity: 1;
    background-image: url(../img/close.svg);
    width: 20px;
    height: 20px;
    font-size: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -10px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.hint-block {
    font-size: 12px;
    word-break: break-word;
    margin-bottom: 10px;
}
.api-permissions-block label{
    margin-top: 5px;
    margin-bottom: 0;
}
.api-permissions-block .checkbox-block input[type=checkbox]{
    top: 2px;
}
.modal-body .form-horizontal .control-label {
    text-align: left;
}

.gateway-form .form-group .btn-success {
    width: auto;
    padding: 0 10px;
}

.modal-body .form-horizontal .form-group {
    margin: 0 0 5px 0;
}

.modal-body form .btn.btn-success {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    width: 120px;
    max-width: 100%;
    transition: all .3s ease;
}
.modal-body #customer-virtual-terminal form .btn.btn-success{
    width: 100%;
}
#customer-virtual-terminal .btn-modal-group{
    display: flex;
    justify-content: center;
}
form[name=transaction-manual-update-form] .btn-default[data-dismiss="modal"],
form[name=transaction-refund-form] .btn-default[data-dismiss="modal"],
.modal-body form .btn-default[data-dismiss="modal"] {
    color: #1a577a;
}

form[name=transaction-manual-update-form] .btn-default[data-dismiss="modal"],
form[name=transaction-refund-form] .btn-default[data-dismiss="modal"],
.modal-body form .btn-default[data-dismiss="modal"]:hover {
    background-color: white;
}

.select2-container--krajee .select2-selection--multiple .select2-search--inline .select2-search__field {
    font-size: 14px;
    width: 100% !important;
}

.select2-container--krajee .select2-selection--multiple .select2-selection__choice {
    margin: 5px 10px;
    line-height: normal;
    border: 1px solid #d9e1e8;
    border-radius: 2px;
    background-color: #efefef;
    color: #333333;
    font-size: 12px;
    text-transform: uppercase;
}

#direct_payment_methods_container .select2-container--krajee .select2-selection--multiple .select2-selection__choice {
    height: 27px;
}

.transaction-index .select2-container--krajee .select2-selection--multiple .select2-selection__choice {
    max-width: calc(100% - 30px);
    white-space: initial;
    overflow: hidden;
    word-break: break-all;
}

.transaction-index .select2-container--krajee .select2-selection--multiple .select2-selection__choice span:not(.select2-selection__choice__remove) {
    font-size: 10px;
    display: block;
}

.select2-container--krajee .select2-selection--multiple .select2-selection__choice__remove {
    width: 10px;
    height: 10px;
    font-size: 0;
    margin-top: 5px;
    background-image: url('../img/black-close.svg');
    opacity: 1;
    margin-left: 5px;
}

.pagination {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin: 20px 0 80px;
}

.pagination li {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 5px;
}

.pagination li a {
    color: #1a577a;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #1a577a;
    border-radius: 5px !important;
    background-color: #f9f9f9;
    transition: all .3s ease;
    padding: 8px 2px;
    display: inline-block;
    min-width: 40px;
    text-align: center;
    white-space: nowrap;
}

.pagination .disabled {
    color: #777777;
}

.pagination .disabled span {
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    height: 100%;
    align-items: center;
}

.prev.disabled span,
.next.disabled span {
    padding: 0;
    background: transparent;
    border: 0;
}

.first.disabled span,
.last.disabled span {
    padding: 8px 2px;
    width: 40px;
    text-align: center;
    font-size: 14px;
}

.first span,
.last span {
    text-transform: capitalize;
}

.pagination li a:hover {
    text-decoration: none;
}

.pagination li:not(.active) a:hover {
    background: #0CA1D7;
    color: white;
    border-color: #0CA1D7;
}

.pagination li.next a:hover,
.pagination li.prev a:hover {
    background: transparent;
    color: #0CA1D7;
    border-color: transparent;
}

.pagination li.prev,
.pagination li.next {
    display: flex;
    align-items: center;
    width: 35px;
    justify-content: center;
    background: transparent;
}

.pagination li.prev a,
.pagination li.next a,
.pagination li.prev span,
.pagination li.next span{
    border: 0;
    width: 35px;
    display: flex;
    justify-content: center;

}

.pagination li.last a,
.pagination li.first a {
    font-size: 14px;
    width: auto;
    min-width: 40px;
}
body .pagination > li:first-child > a,
body .pagination > li:first-child > span,
body .pagination > li:last-child > a,
body .pagination > li:last-child > span{
    width: 60px;
    font-size: 16px;
    display: flex;
    justify-content: center;
}
body .form-control,
body .select2-container--krajee .select2-selection--single {
    box-shadow: none;
}

.form-control {
    height: 41px;
    font-size: 14px;
}

.select2-container--krajee .select2-selection--single .select2-selection__placeholder {
    color: #cacaca;
    font-size: 14px;
    font-weight: 400;
}

body .select2-container--krajee .select2-selection--multiple {
    min-height: 41px !important;
    line-height: 20px !important;
}

.input-remove {
    position: relative;
}

.input-remove .btn-danger {
    background: transparent;
    border: transparent;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -11px;
}

form .gateway-form .control-label,
.second-step .form-group .control-label,
.gateway-tab-group .table-row td > p {
    font-size: 12px;
    color: #333333;
    margin-bottom: 3px;
    font-weight: 400;
}

.gateway-tab-group .table-row td:last-of-type {
    padding-left: 0;
}

#globalbridgegateway-description {
    resize: none;
    height: 280px;
}

.second-step .btn.btn-success.add-field {
    margin-left: 10px;
    border-radius: 3px;
    border: 1px solid #1a577a;
    background-color: #ffffff;
    font-size: 14px !important;
    font-weight: 600;
    color: #1a577a;
    padding: 7.5px 10px;
    height: auto !important;
    text-transform: uppercase;
    transition: all .3s ease;
}

.field-globalbridgegateway-description .form-control {
    padding: 10px 5px 0 10px;
}

.gateway-form .has-success .form-control {
    border: 1px solid #d9e1e8;
    border-radius: 3px;
    box-shadow: none;
}

.pagination li.active a {
    color: #ffffff;
    background-color: #1a577a;
}

.gateway-index .col-md-4 > span:first-of-type {
    margin-right: 25px;
}

.gateway-index .gateway-search .row {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0;
}

.gateway-index .gateway-search .row .hide_top {
    display: none;
}

.gateway-search .btn-filter {
    padding: 6px;
    width: 100%;
    display: inline-block;
    transition: all .3s ease;
}

#search-modal #search .row-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.modal-search {
    opacity: 0;
    visibility: hidden;
}

#search-modal #search .row > div select.form-control {
    display: block !important;
}

#search-modal .filter-wrap-btn {
    display: none;
}

.btn-filter span {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
}

.btn-filter img,
.btn-filter svg {
    display: inline-block;
    vertical-align: middle;
}

.gateway-index .gateway-search .row > div {
    float: none;
}

.btn:not(.btn-xs), a.btn:not(.btn-xs) {
    font-size: 13px;
    text-transform: uppercase;
    line-height: 22px;
}

.btn:not(.btn-xs),
a.btn:not(.btn-xs) {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    text-transform: uppercase;
    line-height: normal;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all .3s ease;
    border: 0;
    height: 41px;
}

.btn:not(.btn-xs):hover,
a.btn:not(.btn-xs):hover {
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
.action-btn a.btn:not(.btn-xs),
.action-btn .btn:not(.btn-xs){
    height: 41px;
}
.transaction-index .action-btn a.btn:not(.btn-xs){
    height: 41px;
}
.gateway-update .page-title a.bordered-btn.btn:not(.btn-xs){
    padding: 8px;
}
.helios-processor-index .action-btn .btn.btn-success{
    margin-left: 15px;
}
.diagram-btn {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn.btn-secondary {
    background-color: transparent;
}

.btn.btn-secondary:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn.btn-primary,
.btn.btn-success,
.comment-box .comment-box-partial .comment-submit {
    background-color: #1A577A;
    border-color: #1a577a;
    font-weight: 600;
}

.add-items-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-row.add-delete-items td {
    position: relative;
}

.add-delete-items .form-control {
    padding-right: 26px;
}
.add-delete-items [type='checkbox'].form-control{
    padding-right: 0px;
    margin-right: 10px;
}
.additional-field-add-delete-items {
    width: 26px;
    height: 36px;
    margin-left: 5px;
}
.additional-field-add-delete-manual{
    height: 41px;
    align-self: flex-end;
}
.additional-field-add-delete-manual .additional-field-remove{
    height: 100%;
    width: 100%;
}
.add-field.btn.btn-success {
    background-color: transparent;
    border-color: transparent;
    color: #1A577A;
}

.remove-item.btn.btn-danger {
    width: 26px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    position: absolute;
    z-index: 1;
    color: #c9302c;
    top: 0;
    right: 0;
    background-color: transparent;
    border-color: transparent;
}
.modal-data-html-editor .remove-item.btn.btn-danger{
    width: 36px;
}
.modal-data-html-editor .remove-item.btn.btn-danger,
.remove-item.btn.btn-danger.home-run-create{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}
.modal-data-html-editor .help-block{
    position: absolute;
    top: 100%;
}
.remove_frontend.btn.btn-danger {
    color: #c9302c;
    background-color: transparent;
    border-color: transparent;
    width: 26px;
    height: 26px;
}

.remove_frontend.btn.btn-danger:hover,
.remove-item.btn.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #c9302c;
}

.modal-data-html-editor a.btn:not(.btn-xs).additional-field-option-remove {
    width: 36px;
    height: 36px;
    text-align: center;
    color: #c9302c;
    background-color: transparent;
    border-color: transparent;
    padding: 8px 3px;
}
.modal-data-html-editor a.btn:not(.btn-xs).additional-field-option-remove:hover{
    color: #fff;
    background-color: #c9302c;
    border-color: #c9302c;
}
.input-remove.add-delete-items .remove-item.btn.btn-danger {
    top: 11px;
}

.additional-field .remove-item.btn.btn-danger {
    top: 5px;
    right: 5px;
}

.additional-field-add-delete-items .remove-item.btn.btn-danger {
    position: relative;
}

.additional-item .additional-field-add-delete-items .remove-item.btn.btn-danger {
    top: 7px;
}
.additional-item .additional-field-add-delete-items.additional-field-add-delete-manual .remove-item.btn.btn-danger {
    top: -2px;
}
.contacts-form .glyphicon-send {
    margin-right: 10px;
    transform: rotate(15deg);
}

.contacts-form .desktop-update-btns .btn {
    width: 100%;
}

.btn.btn-primary.mr-10,
.btn.btn-warning.mr-10 {
    height: 27px;
}

.btn.btn-success.btn-filter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-primary:hover,
.btn.btn-success:hover,
.comment-box .comment-box-partial .comment-submit:hover {
    background-color: #0CA1D7 !important;
    border-color: #0CA1D7 !important;
    color: #fff;
}
.file-caption-main .btn.btn-secondary:hover{
    border-color: #0CA1D7 !important;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.btn.bordered-btn:hover svg {
    fill: #fff;
}

.btn.bordered-btn,
.btn.btn-primary.btn.download-csv {
    background-color: #f9f9f9;
    color: #1a577a;
}

.btn-modal-group .btn.btn-success {
    border: 1px solid transparent !important;
}

.btn-modal-group .btn.bordered-btn {
    border: 1px solid #1a577a !important;
}

.btn.bordered-btn {
    border: 1px solid #1a577a;
}

.gateway-index__title {
    margin-right: 20px;
}

table.table {
    border: none;
    margin-top: 10px;
    background-color: #f9f9f9;
}

table.table.table-striped tr:hover {
    background-color: #fff;
    color: #000;
}

table {
    font-size: 12px;
}

.table a {
    position: relative;
    font-weight: 600;
    font-size: 12px;
}

#accounts .table a,
#applications-grid .table a {
    white-space: nowrap;
}

.table a:before {
    text-decoration: none;
}
#accounts .table td.account-login p{
    margin: 0;
}
#accounts .table td.account-login a {
    white-space: nowrap;
}
#accounts .table td.account-login a:first-of-type{
    margin-top: 10px;
}
#accounts .table .account-login .dropdown-menu {
    top: auto;
}

#accounts .table .account-login .caret {
    bottom: 5px;
    top: auto;
}

#accounts .table td .dropdown-menu li span {
    padding: 3px 20px;
}

table.detail-view tr th {
    width: 20%;
}
.brand-view table.detail-view tr th {
    width: 25%;
}

table.detail-view tr td {
    width: 80%;
    word-break: break-word;
}
.brand-view table.detail-view tr td {
    width: 75%;
    word-break: break-word;
}
.brand-view .table.detail-view > tbody > tr > th{
    word-break: break-word;
}
.brand-view .table.detail-view > tbody > tr > td{
    padding-left: 20px!important;
}
.hover-effect__center, a {
    position: relative;
}

.hover-effect__center:before {
    content: '';
    width: 0;
    height: 1px;
    background: #0ca1d7;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease;
    position: absolute;
}

.hover-effect__center:hover {
    color: #0ca1d7;
    transition: 0.7s ease;
    text-decoration: none;
}

.hover-effect__center:hover:before {
    width: 100%;
}

table.table thead + tbody {
    border-bottom: 1px solid #0ca1d7;
}

.table.table-bordered > tbody > tr > td,
.table.table-bordered > tbody > tr > th,
.table.table-bordered > tfoot > tr > td,
.table.table-bordered > tfoot > tr > th,
.table.table-bordered > thead > tr > td,
.table.table-bordered > thead > tr > th {
    border: none;
    vertical-align: middle;
}

.table.table-bordered > thead > tr > th,
.table.table-bordered > thead > tr > td {
    border: none;
    border-bottom: 1px solid #d9e1e8;
    color: #777777;
}

.table.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #edf3f9;
}

.table.table-striped > tbody > tr:nth-of-type(even):hover,
.table.table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(12, 161, 215, .1);
}

select.form-control {
    border-radius: 5px;
    border: 1px solid #1a577a;
    background-color: #ffffff;
    font-size: 13px;
}

select.form-control option:hover {
    background-color: #0ca1d7;
    color: #fff;
}

body a {
    color: #1a577a;
}

body h1 {
    color: #333333;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: .2px;
    white-space: nowrap;
    min-height: 39px;
    text-transform: capitalize;
    cursor: pointer;
    position: relative;
    transition: all .3s ease;
}
body .manage_payment_details h1,
body .frontend-rules h1,
body .frontend-view h1,
body .frontend-rules-index h1,
body .frontend-rules-view-head h1 {
    white-space: normal;
}
body .company-update h1{
    white-space: normal;
    word-break:break-word;
}

h2 {
    position: relative;
    transition: all .3s ease;
    cursor: pointer;
}

body .page-title h1 {
    margin: 0;
}

h1[tooltip]:after,
h2[tooltip]:after {
    content: "\e086";
    position: absolute;
    font-size: 16px;
    font-family: 'Glyphicons Halflings';
    top: 0;
}

h1[tooltip]:after {
    right: -18px;
}

.frontend-view .page-title h1,
.frontend-update .page-title h1 {
    text-overflow: ellipsis;
    overflow: hidden;
}

h1[tooltip].focused,
h2[tooltip]:hover {
    color: #0CA1D7;
}

h1.gateway-header__title[tooltip]:after {
    right: -10px;
    top: -10px;
}

body .login-wrapper h1 {
    white-space: normal;
}

body .summary,
.summary-info {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

body .footer {
    top: var(--header-height);
    margin: 0;
    padding: 14px 0;
    background-color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 1;
    position: relative;
}

body .footer.rd_footer {
    background-color: #5447b8;
}

body #footer-logo {
    margin: 0;
}

#footer-logo {
    height: auto;
    max-height: 25px;
    max-width: 100%;
}

body .copyright {
    text-align: center;
    font-size: 14px;
    color: #1a577a;
    width: 100%;
    margin-bottom: 0;
}

body .footer.rd_footer .copyright {
    color: #cccccc;
}

body .btn-danger {
    background-color: #ff0000;
    border-color: #ff0000;
    transition: all .3s ease;
}

.dropdown-menu > li > a.btn-danger {
    color: #ffffff;
}

.dropdown-menu > li > a.btn-danger:hover {
    color: #000000;
}

body .alert-warning {
    background-color: #fff;
    border-color: #0ca1d7;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

body .modal-body #transaction-refund .alert-warning {
    display: block;
}

body .modal-body .alert-warning .modal-view {
    width: auto;
    overflow: initial;
}

body .alert-warning:before {
    content: "\e086";
    font-family: 'Glyphicons Halflings';
    color: #0ca1d7;
    font-size: 20px;
    margin-right: 10px;
}

body .label-success {
    background-color: #0ca1d7;
    display: inline-block;
    padding: .3em .6em .3em;
}

body .label-danger {
    display: inline-block;
}

body pre {
    background-color: #fff;
    border-color: #0ca1d7;
}

body pre::-webkit-scrollbar {
    height: 8px;
}

body pre::-webkit-scrollbar-thumb {
    background-color: #d8d8d8;
    height: 8px;
    border-radius: 4px;
}

html > body::-webkit-scrollbar {
    width: 10px;
}

html > body::-webkit-scrollbar-thumb {
    background-color: #1a577a;
    border-radius: 20px;
}

html > body::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 20px;
}

.mCSB_dragger_bar {
    background-color: #0CA1D7 !important;
    width: 3px;
}

#forgot-password-form,
#login-form {
    max-width: 360px;
    margin: 20px auto 0;
}

#login-btn {
    width: 100%;
}

#login-form .control-label {
    text-align: left;
}

#login-form .btn-primary {
    margin: 0 auto;
    display: block;
}

.form-group .help-block {
    margin-bottom: 7px;
}

#login-form .help-block-error {
    color: #ff0000;
}

input[type=checkbox] {
    position: relative;
    /*top: 3px; if uncomment it checkboxes will jump down at brands form*/
    height: 18px;
    width: 18px;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    margin: 0;
    font-size: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: 0;
    -webkit-appearance: none;
    cursor: pointer;
}

input[type=checkbox]:checked {
    font-size: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

input[type=checkbox]:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 1px solid #1a577a;
    border-radius: 2px;
    top: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .5), inset 0 0 1px rgba(0, 0, 0, .29);
}

input[type=checkbox]:checked:before {
    background-color: #1a577a;
}

input[type=checkbox]:checked:after {
    background: url(../img/checkbox-label.svg);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    width: 13px;
    height: 10px;
    top: 5px;
    left: 3px;
}
input[disabled="disabled"],
input[readonly=readonly],
input[type=checkbox][readonly=readonly]:before {
    background-color: #eee;
    pointer-events: none;
}
input[disabled="disabled"],
input[readonly="readonly"],
.select2-container--krajee .select2-selection--single[aria-disabled=true] .select2-selection__rendered[aria-readonly=true] {
    color: #8a8181;
}
input[type=checkbox] + label {
    position: relative;
    top: -3px;
}

.checkbox-block input[type=checkbox] {
    top: 3px;
}
body .checkbox input[type=checkbox] {
    top: -4px;
}
#globalbridgelimits-is_crm_base_currency{
top: 2px;
}
.frontend-rules .table.table-bordered > tbody > tr > td,
.frontend-rules .table.table-bordered > tbody > tr > th,
.frontend-rules .table.table-bordered > tfoot > tr > td,
.frontend-rules .table.table-bordered > tfoot > tr > th,
.frontend-rules .table.table-bordered > thead > tr > td,
.frontend-rules .table.table-bordered > thead > tr > th {
    vertical-align: top;
}

.frontend-rules a.remove-item {
    margin-top: 10px;
    display: inline-block;
}

.sub-nav {
    background: #ffffff;
    margin-top: 0;
    height: 50px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transform: perspective(900px) rotate3d(1, 0, 0, -90deg);
    transform: perspective(900px) rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%;
}

.sub-nav.active {
    animation: menuSlide 0.6s linear forwards;
}

@keyframes menuSlide {
    to {
        -webkit-transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
        transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
    }
}

.sub-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.server-time, .server-branch, .server-branch-unlaunched-migrations {
    color: #201e1e;
    font-size: 14px;
    font-weight: 400;
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    transition: all .3s ease;
    margin-right: 15px;
}

body .wrap > .container,
body .wrap > .container-fluid {
    margin-top: 50px;
    height: calc(100% - 50px);
    min-height: 100vh;
}

.navbar-brand img#header-logo {
    margin: 0;
}

.navbar-header .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 36px;
    margin: 0 5px 0 0;
}

body [env-name="dev"] .navbar-inverse {
    background-image: none;
}

body blockquote,
.instruction-panel-heading {
    border-left: 5px solid #0ca1d7;
    color: #333333;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all .3s;
}

body .navbar-inverse .navbar-toggle {
    border-color: #1a577a;
}

body .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #1a577a;
}

body .navbar-inverse .navbar-toggle:hover,
body .navbar-inverse .navbar-toggle:focus {
    background-color: #f9f9f9;
}

.select2-selection__clear {
    color: #555555 !important;
    background-color: #fff;
    opacity: 1 !important;
    margin-right: 0;
    padding: 0 5px 0 5px;
}

body .select2-container--krajee .select2-selection--single .select2-selection__clear {
    background-image: url(../img/black-close.svg);
    font-size: 0;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    right: 6px;
}

.modal-body .select2-container--krajee .select2-selection--multiple .select2-selection__clear,
.select2-container--krajee .select2-selection--multiple .select2-selection__clear {
    right: 6px;
    top: 45%;
    margin-top: -3px;
    line-height: 1;
    background-image: url('../img/black-close.svg');
    width: 10px;
    height: 10px;
    padding: 0;
    font-size: 0 !important;
    cursor: pointer;
}

.account-details-background .account-details-field {
    display: inline-block;
    background-color: #f5f5f5;
}

.field-globalbridgefilter-time_start,
.field-globalbridgefilter-time_end {
    padding: 0 !important;
    border: 0 !important;
}

.confirm-block {
    max-width: 200px;
    margin: 30px auto;
}

.confirm-block label {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
}

.confirm-block .submit {
    margin-top: 10px;
}

.pwd-error {
    color: red;
    margin-bottom: 5px;
}

/* Frontend Rules */
.frontend-rules-view-head label {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #777777;
}

.frontend-rules-view-head select,
.frontend-rules-view-head input {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #777777;
}

.before-rules-block-title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    color: #1A577A;
    margin-bottom: 30px;
    margin-top: 10px;
}

.before-rules-block-title span {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 33px;
    color: #777777;
}

.frontend-rules-view-head .flex-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.before-rules-block-title h2 {
    margin-top: 12px;
}

.frontend-rules-view-head .small-col {
    max-width: 140px;
    display: block;
    width: 100%;
}

.rules-block {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 10px;
}

.rules-head {
    background: #1A577A;
    border-radius: 3px 3px 0 0;
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 27px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 2px 10px;
}
.frontend-rules-create .rules-head{
    text-transform: capitalize;
}
.rules-head p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rules-state {
    margin: 0;
    width: 44px;
    height: 26px;
    padding: 2px;
    position: relative;
}

.rules-body {
    padding: 20px;
    height: 100%;
    min-height: 150px;
}

.rules-body .top-text {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    margin-bottom: 20px;
}

.rules-state > input[type=checkbox] {
    width: 0;
    height: 0;
    margin: 0;
    transition: all 0.5s ease;
    position: static;
}

.rules-state > input[type=checkbox]:before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
    background-image: none;
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rules-state > input[type=checkbox]:checked:before {
    left: 20px;
}

.rules-state > input[type=checkbox]:after {
    content: "";
    width: 40px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 12px;
    background: #777777;
    transition: all 0.3s ease;
}

.rules-state > input[type=checkbox]:checked:after {
    background: #00C14B;
}

.preferences-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.check-box-area {
    display: flex;
    justify-content: space-between;
}

.check-box-area > label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.check-box-area > label > input {
    margin: 0 0 10px;
}

.check-box-area input[type=checkbox]:before {
    box-sizing: border-box;
    border-radius: 3px;
}

.check-box-area > label > input + p {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #888888;
    text-transform: uppercase;
    margin: 0;
}

.check-box-area > label > input:checked + p {
    color: #1A577A;
}

.rules-line {
    margin: 10px 20px 15px;
    border-top: 1px solid #CACACA;
}

.rules-footer {
    padding: 0 20px 20px;
}

.rules-footer > label {
    margin: 0;
    display: flex;
}

.rules-footer > label > input {
    margin: 0 10px 0 0;
}

.rules-footer > label > input + span {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #888888;
}

.rules-footer > label > input:checked + span {
    color: #1A577A;
}

.rules-wrapper > div[class*="col-"] {
    margin-bottom: 30px;
}

textarea {
    border-color: #ccc;
    border-radius: 4px;
    max-width: 100%;
}

textarea:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px rgba(102, 175, 233, .6);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border-color: #66afe9;
    outline: none;
}

.time-area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.time-area > label {
    display: flex;
    align-items: center;
    width: 50%;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}

.time-area > label > input {
    max-width: 70px;
    height: 36px;
    padding: 5px 10px;
    width: auto;
    text-align: center;
    border: 1px solid #979797;
    box-sizing: border-box;
    border-radius: 3px;
    font-weight: 600;
}

.time-area > label > span {
    margin-right: 10px;
    min-width: 50px;
}

.deposit-area > label {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #777777;
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    cursor: pointer;
}

.deposit-area > label:last-child {
    margin: 0;
}

.deposit-area input[type="radio"] {
    display: none;
}

.deposit-area input[type="radio"] + span.radio {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #979797;
    border-radius: 50%;
    margin: 0 10px 0 0;
}

.deposit-area input[type="radio"]:checked + span.radio {
    border: 1px solid #1A577A;
}

.deposit-area input[type="radio"]:checked + span.radio:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    background: #1A577A;
    border-radius: 50%;
}

.deposit-area input[type="radio"] + span.radio + span {
    width: calc(100% - 30px);
}

.deposit-area input[type="radio"]:checked + span.radio + span {
    color: #1A577A;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.flex-limit-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.checkbox-center .checkbox-block{
   margin-top: 27px;
}
/* select2 */
.select2-container--krajee .select2-results__option {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #888888;
    padding: 6px 25px 6px 10px;
    word-wrap: break-word;
}
.select2-container{
    background-color: #fff;
}
.select2-container--krajee .select2-results__option--highlighted[aria-selected] {
    background: #0CA1D7;
    color: white;
    position: relative;
    font-weight: 400;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.select2-container--krajee .select2-results__option--highlighted[aria-selected]:before {
    content: "\2713";
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.modal-open .select2-container--krajee .select2-dropdown {
    border-color: #0CA1D7;
    box-shadow: none;
}
.freeze-scroll .select2-container--krajee .select2-dropdown{
    margin-top: -10px;
}

.modal-open .select2-container--krajee .select2-dropdown.select2-dropdown--above{
    margin-top: 1px;
}
.select2-container--below,
.select2-container--open,
.select2-container--focus {
    border-color: #0CA1D7;
}

.select2-container--krajee.select2-container--open.select2-container .select2-selection {
    /*border-color: #0CA1D7;*/
    box-shadow: none;
}

.select2-container--krajee .select2-results__option[aria-selected=true] {
    color: #FFFFFF;
    background-color: #0ca1d785;
}

input::-webkit-color-swatch {
    background-color: #fff !important;
}

.select2-container--krajee .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 10px;
}

.select2-container--krajee .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #0CA1D7;
    border-radius: 20px;
}

.select2-container--krajee .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 20px;
}

.select2-container--krajee .select2-selection--single .select2-selection__arrow {
    border-left: none;
}

.select2-container--krajee .select2-selection--single .select2-selection__arrow b,
.select2-container--krajee.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #0CA1D7 transparent transparent transparent;
}

.select2-container--krajee .select2-selection {
    border: 1px solid #d9e1e8;
    box-shadow: none;
}

.select2-container--krajee .select2-selection--multiple .select2-selection__rendered {
    padding-top: 2px;
    white-space: normal;
    padding-right: 26px;
}

.custom-area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    max-width: 210px;
    margin: 0 auto;
    padding: 20px 0;
}

.custom-area .custom-header {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: #1A577A;
    max-width: 210px;
    margin: 0 auto;
}

.btn-rules {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: #1A577A;
    border-radius: 5px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    border: none;
    padding: 9px 10px;
}

.btn-rules:hover,
.btn-rules:focus,
.btn-rules:active {
    border-color: #123448;
    color: #fff;
    text-decoration: none;
}

/*
 end frontends rules
 */

.account-details {
    margin-bottom: 15px;
}

.truncate > p {
    max-width: 250px !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

.truncate > p:hover {
    overflow: visible;
    white-space: normal;
    width: auto;
}

.truncate > p:hover > a {
    color: #000;
    font-weight: 600;
}

.truncate_hash > p {
    max-width: 100px !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
}

.truncate_hash > p:hover {
    overflow: visible;
    white-space: normal;
    width: auto;
}

.truncate_hash > p:hover > a {
    color: #000;
    font-weight: 600;
}

.bordered-deposit,
.bordered-payout {
    margin-right: 5px;
    cursor: pointer;
}

.bordered-deposit img,
.bordered-payout img {
    width: 15px;
    opacity: 1;
    transition: all .3s ease;
}

.bordered-deposit:hover img,
.bordered-payout:hover img {
    opacity: 0.5;
    transform: rotate(90deg) scale(0.8);
}

.switch-field {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
    margin-bottom: 0;
    border: 0;
    transform: translateY(0);
    top: 0;
}

.switch-field input:not(:checked) + label + input:not(:checked) + label {
    box-shadow: none;
    border: 0;
    width: 24px;
    max-width: 24px;
    z-index: 0;
    height: 12px;
    background-color: #cacaca;
    border-radius: 0 12px 12px 0;
    margin-left: -10px;
    margin-right: 0;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
    background-color: #00c14b;
    box-shadow: none;
    border: 0;
    width: 24px;
    max-width: 24px;
    z-index: 0;
    height: 12px;
    margin-right: -10px;
    border-radius: 12px 0 0 12px;
}

.isActive__title {
    font-size: 14px;
    transition: all .3s ease;
    font-weight: 600;
    color: #00ad43;
    display: inline-block;
    margin-right: 8px;
}

.active_disable .isActive__title {
    color: #ff0000;
}

.list-gateway-item__isActive {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-gateway-item.disable .gateway-content {
    opacity: 0.5;
}

.list-gateway-item.disable .list-gateway-item__header {
    background-color: #fcfdff;
}

.switch-field label:first-of-type {
    border-radius: 50%;
}

.switch-field label:last-of-type {
    border-radius: 50%;
}

.switch-field input:checked + label:last-of-type {
    background-color: #ff0000;
    border-radius: 0 12px 12px 0;
    margin-left: -10px;
    margin-right: 0;
}

.switch-field input:disabled + label:first-of-type {
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
    margin-bottom: 0;
    border: 0;
    transform: translateY(0);
    top: 0;
}

.switch-field input:disabled + label:last-of-type {
    background-color: #CACACA;
    box-shadow: none;
    border: 0;
    width: 24px;
    max-width: 24px;
    z-index: 0;
    height: 12px;
    border-radius: 0 12px 12px 0;
}

.switch-field.index label {
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
    margin-bottom: 0;
    border: 0;
}

.checkbox-area label {
    display: flex;
    align-items: center;
}

.checkbox-area label > input {
    margin-right: 10px;
    margin-top: -5px;
}

.remove-row-field {
    margin-top: 35%;
}

.filters_row {
    max-width: 100% !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-end;
    width: 420px;
}

.filters_row > .bordered-filters {
    box-sizing: border-box
}

.ellipsis_hash {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 50px;
}

td:hover .ellipsis_hash {
    text-overflow: clip;
    max-width: 100%;
    position: absolute;
    margin: 10px 0 0 0;
}

.bordered-filters {
    border: 1px solid #d9e1e8;
    background-color: white;
    border-radius: 5px;
    min-width: 200px;
    min-height: 80px;
    height: 90px;
    padding: 5px;
    margin: 1px;
}

.bordered-filters p {
    margin-bottom: 6px;
}

.bordered-filters span {
    padding: 1px 3px;
    display: inline-block;
}

.bordered-filters .currency {
    border: 1px solid #0ca1d7;
    background-color: #0ca1d7;
    color: white;
    font-weight: 600;
    border-radius: 2px;
    margin-right: 5px;
}

.bordered-filters .profile {
    border: 1px solid #f4c917;
    background-color: #f4c917;
    color: white;
    font-weight: 600;
    border-radius: 2px;
}

.bordered-filters .days {
    color: #1a577a;
    font-weight: 600;
    display: inline-table;
    padding: 0;
}

.bordered-filters .time {
    display: inline-table;
    color: #777777;
    padding: 0;
    margin-left: 4px;
}

.bordered-filters .stage {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: flex-end;
    font-size: 10px;
}

.bordered-filters .flag {
    width: 20px;
    height: 14px;
    margin-right: 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.bordered-filters.add.btn-container {
    min-width: 80px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-content: space-between;
    align-items: center;
    flex-direction: column;
    border: 1px solid #d9e1e8;
}

.filters_row .btn-container {
    display: flex;
    justify-content: center;
    align-content: space-between;
    align-items: center;
    flex-direction: column;
}

.filters_row .btn-container.btn-create {
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    font-weight: 600;
    font-size: 20px;
    color: #cacaca;
    line-height: 1;
}

.limits_row {
    min-width: 120px;
}
.limits-show-more,
.limits_row .bordered-limits {
    border: 1px solid #d9dde0;
    background-color: #efeff1;
    padding: 1px 2px;
    width: 34px;
    margin: 0 3px 4px;
    text-align: center;
    float: left;
    color: #333333;
    font-size: 10px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s ease;
}
.limits-show-more{
    background: #1a577a;
    color: #fff!important;
    text-decoration: none!important;
}
.limits_row .bordered-limits .currency {
    transition: all .3s ease;
}

.limits_row .bordered-limits:hover {
    background: transparent;
    border-color: #0CA1D7;
    text-decoration: none;
}
.limits-show-more:hover{
    background-color: #0CA1D7;
    color: #fff;
    text-decoration: none;
}
.limits_row .bordered-limits:hover .currency {
    color: #0CA1D7;
}
#limits-tab span[tooltip]{
    display: block;
    cursor: pointer;
    margin-bottom: 20px;
}
#limits-tab .limits_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.gateway-content-filters {
    display: flex;
}

.filters-list {
    width: 100%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.filters-list .bordered-filters .currency,
.filters-list .bordered-filters .profile {
    font-size: 10px;
    font-weight: 600;
    padding: 0 3px;
}

.filters-list .bordered-filters {
    margin: 0 0 5px 0;
    background-color: #edf3f9;
    border-radius: 3px;
    padding: 1px 5px 1px 1px;
    width: 100%;
    display: flex;
    height: auto;
    min-height: inherit;
    align-items: baseline;
    border: 0;
    font-size: 0;
    cursor: pointer;
}

.filters-list .bordered-filters p {
    margin-bottom: 0;
}

.filters-list .bordered-filters.add.btn-container {
    background-color: #15b251;
    color: white;
    width: auto;
    min-width: inherit;
    display: inline-block;
    border: 0;
    padding: 0;
    height: auto;
    line-height: inherit;
    font-size: 0;
    margin-left: 4px;
    max-width: 36px;
    cursor: pointer;
}

.filters-list .bordered-filters.add.btn-container .btn-create span {
    font-size: 10px;
    font-weight: 600;
    padding: 0;
}

.filters-list .bordered-filters.add.btn-container .btn-create {
    padding: 2px 4px;
}

.filters-list .bordered-filters.add.btn-container .btn-create br {
    display: none;
}

.filters-list .currency_profile {
    margin-right: 4px;
}

.filters-list .country .country__item {
    border: 1px solid #333333;
    background-color: #ffffff;
    color: #181818;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 4px;
    padding: 0 4px;
    border-radius: 50%;
}

.bordered-limits .currency {
    text-transform: uppercase;
    font-size: 10px;
}

.bordered-limits.add {
    background-color: #15b251;
    color: white;
    border-color: transparent;
}
.list-gateway {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list-gateway .empty {
    padding: 5px 10px;
    border-bottom: 1px solid #0ca1d7;
    width: 100%;
}

.list-gateway > div[data-key] {
    width: calc(33% - 20px);
    margin-bottom: 30px;
    display: inline-flex;
}

.list-gateway > div[data-key]:last-of-type {
    border-bottom: 1px solid #0ca1d7;
}
.brand-index .list-gateway > div[data-key]:last-of-type{
    border-bottom: none;
}
.list-gateway-item {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background-color: #ffffff;
    width: 100%;
    position: relative;
}
.gateway-content-buttons__title {
    margin-right: 5px;
    color: #1a577a;
    font-size: 14px;
}

.gateway-content-buttons__item {
    display: flex;
}

.gateway-content-buttons__item .switch-field input:checked + label {
    background-color: #00c14b;
}

.gateway-content-buttons__item .switch-field input:checked + label:last-of-type {
    background-color: #ff0000;
}

.list-gateway-item__logo {
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.list-gateway-item__logo img {
    max-width: 100%;
}

.list-gateway .summary {
    display: none;
}

.list-gateway .pagination {
    width: 100%;
    align-items: baseline;
}

.list-gateway-item__header {
    background-color: #f7fbff;
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 84px;
}

.list-gateway-item__info {
    display: flex;
}

.list-gateway-item__processor {
    text-align: left;
    padding-left: 10px;
}

.list-gateway-item__title {
    display: block;
    color: #1a577a;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.list-gateway-item__subtitle {
    font-size: 14px;
    color: #777777;
}

.list-gateway-item__val {
    color: #1a577a;
}

.gateway-content {
    padding: 20px 15px 20px 15px;
}

.gateway-content-buttons {
    margin-bottom: 12px;
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    align-items: center;
    justify-content: space-between;
}

.gateway-content-limits {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.gateway-content__title {
    padding-right: 5px;
    color: #333333;
    font-size: 14px;
    white-space: nowrap;
}

.gateway-content-limits .limits_row {
    padding-left: 0;
    margin-bottom: 0;
}

.list-gateway-item__title .list-gateway-item__name:hover,
.list-gateway-item__val a:hover {
    color: #0ca1d7;
    text-decoration: none;
}

.website-body .panel-body {
    padding: 0;
}

.website-body .panel-body table {
    margin: 0;
}

.website-body .panel-body table th {
    padding: 6px !important;
    position: relative;
}

.website-body .panel-body table tr:first-child th,
.website-body .panel-body table tr:first-child td {
    border-top: none;
}
.website-body .panel-info .table tbody td.mobile-version{
    display: none;
}
table .text-success{
    color: #00AD43;
}

table .text-danger {
    color: #ff0000;
}

.deposit-amount:before, .payout-amount:before {
    content: url("../img/deposit.svg");
    position: absolute;
    top: 9px;
    left: 15px;
}

.payout-amount:before {
    content: url("../img/payout.svg");
}

.gb-hidden {
    display: none;
}

.gateway-form .page-title h1 {
    word-break: break-all;
    white-space: normal;
}

.account-settings-tab-group,
.gateway-tab-group {
    background: #ffffff;
    padding: 20px;
}

.gateway-tab-group-menu {
    display: flex;
    align-items: flex-end;
    overflow: auto;
    margin-top: 30px;
}

.gateway-tab-group-menu li a {
    color: #777777;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
    padding: 10px 30px;
    border-top: 3px solid transparent;
    border-radius: 2px 2px 0 0;
}

.gateway-tab-group-menu .nav-item.active a {
    border-top-color: #1A577A;
    color: #1A577A;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
}

.gateway-tab-group .help-block {
    display: block;
    margin: 0;
    white-space: pre-line;
}
#modal-hash .modal-body {
    padding: 0;
}

#modal-hash .alert {
    margin: 0;
}

.text-popup {
    padding: 20px;
    word-break: break-word;
    white-space: pre-line;
}

.text-popup p {
    margin-bottom: 10px;
}

.text-popup label {
    font-weight: 400;
    font-size: 12px;
}

.text-popup textarea {
    border: 1px solid #D9E1E8;
    background: #ffffff;
    padding: 9px 10px;
    border-radius: 5px
}

.span-description {
    border: 1px solid #D9E1E8;
    background: #ffffff;
    padding: 9px 10px;
    border-radius: 5px;
    height: auto;
    white-space: break-spaces;
    position: relative;
    word-break: break-all;
}

#modal-gateway-description .modal-body {
    padding: 0;
}

#modal-gateway-description .alert {
    margin: 0;
}

#reset-password-form button[type="submit"] {
    width: 100%;
}

#reset-password-form .control-label {
    text-align: left;
}

/* GUIDE TOOLTIPS AND BLOCKS */
.top-page-info-block {
    margin-top: 2em;
    clear: both;
}

.page-info-block {
    display: flex;
    flex-direction: row;
}

.server-index .page-info-block,
.environments-index .page-info-block,
.account-index .page-info-block,
.platform-index .page-info-block,
.brand-index .page-info-block,
.request-for-payment-processor-index .page-info-block,
.helios-processor-index .page-info-block,
.payment-method-index .page-info-block,
.processing-status-index .page-info-block,
.bin-route-exception-index .page-info-block,
.runtime-logs-index .page-info-block,
.locations-index .page-info-block {
    display: none;
}

.gallery-arrow-left {
    position: absolute;
    border: 1px solid;
    height: 65px;
    display: flex;
    width: 65px;
    border-radius: 100%;
    left: 0;
    top: 35px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gallery-arrow-right {
    position: absolute;
    right: 0;
    top: 35px;
    border: 1px solid;
    height: 65px;
    display: flex;
    width: 65px;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gallery-page-arrow-left {
    position: relative;
    left: -26px;
    top: 265px;
    border: 1px solid;
    height: 30px;
    display: flex;
    width: 30px;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.gallery-page-arrow-right {
    position: relative;
    right: -100%;
    bottom: 265px;
    border: 1px solid;
    height: 30px;
    display: flex;
    width: 30px;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.scroll-images {
    width: 98%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.scroll-images::-webkit-scrollbar {
    width: 0;
    height: 0;
}
@container (min-width: 912px) {
    .homepage-menu-container > .gallery-arrow-left {
        display: none;
    }

    .homepage-menu-container > .gallery-arrow-right {
        display: none;
    }
}

.scroll-page {
    width: 100%;
    /*display: inline-grid;*/
    /*grid-template-columns: repeat(5, 20%);*/
    /*grid-template-rows: repeat(2, 1fr);*/
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    height: auto;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.scroll-page::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.scroll-page-arrow-left, .scroll-page-arrow-right {
    display: flex;
    align-items: center;
    padding: 30px;
}

.homepage-sub-menus-container {
    border: 1px solid #787878;
    padding: 70px 0;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    align-items: stretch;
    border-radius: 40px;
    background: white;
    min-height: 601px;
}

.homepage-recently-visited-container {
    border: 1px solid #787878;
    display: flex;
    padding: 55px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 40px;
    background: white;
    height: 518px;
}

.homepage-recently-visited-container-title {
    text-align: left;
    font: normal normal normal 22px/27px Helvetica Neue, sans-serif;
    letter-spacing: 0;
    color: #333333;
    padding: 0 30px 30px 0;
    opacity: 1;
}

.last-visit-details {
    display: flex;
    flex: 4;
    flex-direction: column;
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
}

.last-visit-img {
    flex: 1;
    margin: 0 10px 10px 10px;
}

.homepage-recently-visited-container-body {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
}

.homepage-recently-visited-container-body::-webkit-scrollbar {
    width: 25px;
    height: 11px;
}

.homepage-recently-visited-container-body::-webkit-scrollbar-button {
    display: block;
    background-repeat: no-repeat;
}

.homepage-recently-visited-container-body::-webkit-scrollbar-button:vertical:start:decrement {
    background-image: url(../img/arrow-up.svg);
    background-position: top;
    background-repeat: no-repeat;
}

.homepage-recently-visited-container-body::-webkit-scrollbar-button:vertical:end:increment {
    background-image: url(../img/arrow-down.svg);
    background-position: bottom;
    background-repeat: no-repeat;
}

.last-visit-details-date {
    text-align: left;
    font: normal normal normal 16px/22px Roboto, sans-serif;
    letter-spacing: 0;
    color: #787878;
}

.last-visit-details-title {
    text-align: left;
    font: normal normal bold 16px/22px Roboto, sans-serif;
    letter-spacing: 0;
    color: #333333;
}

.arrow-top {
    position: absolute;
    height: 40px;
    width: 40px;
    top: 96%;
    background: white;
    border: 1px #787878 solid;
    transform: rotate(225deg);
    left: 37px;
}

.homepage-menu-container {
    position: relative;
    overflow-x: auto;
    padding: 0 75px;
    margin-bottom: -1.5px;
    font-size: 16px;
    overflow-y: hidden;
    container-type: inline-size;
    width: 100%;
}

.homepage-menu-container .scroll-images {
    height: var(--ai-banner-height-desktop);

    @media (max-width: 1400px) {
        height: var(--ai-banner-height-tablet);
    }
    @media (max-width: 1200px) {
        height: var(--ai-banner-height-mobile);
    }
    @media (max-width: 991px) {
        height: auto;
    }
}

.homepage-menu-block{
    flex: 1;
    margin: 10px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.homepage-menu-block-icon{
    position: relative;
}

.homepage-menu-block-item{
    margin: 0 0 31px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homepage-menu-block-item > .menu-icons > img, .last-visit-details-date > .menu-icons > img {
    display: none;
}

.homepage-menu-block-item>img{
    width: 114px;
    height: 114px;
}

.homepage-menu-block-item >.title_main {
    padding: 5px 0;
    text-align: center;
    font-weight: 600;
    width: min-content;
}

.homepage-sub-menu-block {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    display: flex;
    width: min-content;
    flex-direction: column;
    margin: 30px 10px 0 10px;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.homepage-sub-menu-block > img {
    width: 140px;
    height: 140px;
}

.homepage-sub-menu-block > span {
    margin: 20px 0 0 0;
    padding: 0 5px 0 5px;
}

.homepage-sub-menu-block > span > .badge-custom,
.last-visit-details-title > span > .badge-custom {
    display: none;
}

.homepage-recently-visited-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: 100px;
    cursor: pointer;
}

.homepage-recently-visited-block > img {
    width: 69px;
    height: 69px;
}

.homepage-recently-visited-block > span > .badge-custom {
    display: none;
}

.page-info-block > .glyphicon-info-sign {
    font-size: 40px;
    padding-right: 10px;
}

.home-index-body {
    padding-top: 30px;
}

/* END: GUIDE TOOLTIPS AND BLOCKS */

.add-field + .form-group {
    float: right;
}

.list-gateway-item__header .address-item {
    padding: 10px 0 0;
}

.brand-block {
    border: 1px solid #cecece;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 20px;
}

.brand-title {
    text-align: center;
    border-bottom: 1px solid #cecece;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-currency {
    padding: 10px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-status {
    padding: 10px;
    text-align: center;
}

.brand-link {
    padding: 10px;
    text-align: center;
}

.brand-link a {
    width: 120px;
}

.brand-info > [class*="col-sm"] {
    margin-bottom: 30px;
}

.company-account .badge {
    float: right;
}

.company-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand .brand-name {
    margin-left: 10px;
    color: black;
}

.disabled-event {
    pointer-events: none;
}

.brand-index > div > .grid-view > .table-bordered > tbody > tr > td {
    max-width: 250px !important;
}

.hidden-btn {
    display: none !important;
}

.current-ip {
    font-size: 16px;
    display: flex;
    width: 100%;
    align-items: center;
    padding-left: 20px;
    color: #1a577a;
}
.current-ip span{
    word-break: break-all;
}
.current-ip[data-verify='false'] span {
    color: red;
}

.country-flags {
    display: flex;
    align-items: center;
}

.country-flags .flag {
    margin-right: 8px;
}

.custom-search-block,
.transaction-search-block {
    float: right;
    width: 100%;
    display: inline-flex;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
}

.custom-search-block > *,
.transaction-search-block > * {
    margin-left: 10px;
}

.wrap .custom-search-block .filter-modal-btn,
.wrap .transaction-search-block .search-modal-btn {
    line-height: normal;
}

.custom-search-block select,
.transaction-search-block select {
    height: auto;
}

.grid-view .summary {
    margin-bottom: 20px;
}

.brand-index > div > .grid-view > .table-bordered > tbody > tr > td {
    max-width: 250px !important;
}

.hidden-btn {
    display: none !important;
}

.current-ip[data-verify='false'] {
    color: red;
}

/*.locations-create .locations-form .btn-success {*/
/*    margin-bottom: 0;*/
/*}*/

.welcome-sub-title {
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#set-password-form button[type="submit"] {
    width: 100%;
}

#set-password-form .control-label {
    text-align: left;
}

.set-password-page {
    margin-top: 100px;
}

.select2-container--krajee .select2-results__option[role=group] {
    position: relative;
}

.select2-container--krajee li.select2-results__option,
.select2-container--krajee li.select2-results__option .select2-results__group,
.select2-container--krajee li.select2-results__option span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.select2-container--krajee li.select2-results__option:hover,
.select2-container--krajee li.select2-results__option .select2-results__group:hover,
.select2-container--krajee li.select2-results__option:hover span,
li.select2-results__option.active {
    white-space: normal;
    overflow: auto;
}

.select2-container--krajee li.select2-results__option[role="group"] > strong {
    cursor: pointer;
    pointer-events: all;
}

.select2-container--krajee li.select2-results__option[role="group"] > strong:hover {
    background-color: #eee!important;
    border-top: 1px solid #eeeeee38;
    border-bottom: 1px solid #eeeeee38;
}

.select2-container--krajee .select2-results__option[role=group] ul:before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    color: black;
    font-size: 20px;
    font-weight: 600;
    width: 20px;
    pointer-events: all;
    text-align: center;
    cursor: pointer;
}

.select2-container--krajee .select2-results__option[role=group] ul[data-visible="false"]:before {
    content: '+';
}

.select2-container--krajee .select2-results__option[role=group] > ul[data-visible="false"] {
    height: 0;
    overflow: hidden;
}

.select2-container--krajee .select2-results__option[role=group] > ul[data-visible="true"] {
    height: auto;
    overflow: auto;
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: grey;
    margin-right: 10px;
}

.indicator-red {
    background: red;
}

.indicator-green {
    background: green;
}

.modal-body:after {
    position: absolute;
    left: 0;
    font-family: 'Glyphicons Halflings';
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.preloader-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.pre-loader {
    height: 50px;
}

.pre-loader > div {
    background-color: #000000;
    margin-right: 5px;
    height: 100%;
    width: 10px;
    display: inline-block;
    -webkit-animation: heightChange 1s infinite ease-in-out;
    animation: heightChange 1s infinite ease-in-out;
}

.pre-loader .box2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.pre-loader .box3 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.pre-loader .box4 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.pre-loader .box5 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

@-webkit-keyframes heightChange {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes heightChange {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
    }
}

@keyframes myMove {
    0% {
        top: 0;
    }
    25% {
        top: 200px;
    }
    50% {
        top: 100px;
    }
    75% {
        top: 200px;
    }
    100% {
        top: 0;
    }
}

table th > a,
table th > span {
    display: flex;
    align-items: center;
    color: #777777;
    font-size: 12px;
    font-weight: 400 !important;
}

.grid-view table th {
    height: 50px;
}

table th > a:hover,
table th > a:active,
table th > a:focus {
    text-decoration: none;
    outline: none;
}

table th > a:hover:after {
    width: auto;
}
.company-view h1{
    margin-bottom: 20px;
}
.sub-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.action-btn {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.account-permissions .action-btn .btn-success:nth-child(1) {
    margin-right: 10px;
}
.account-index .action-btn > div:not(:last-of-type){
    margin-right: 15px;
}

.action-btn > .filter-style {
    margin-left: 10px;
    height: 28px;
    font-size: 12px !important;
    line-height: normal !important;
    display: inline-block;
}

.action-btn > .filter-style {
    padding: 4px 7px;
}

.checkbox-wrap input[type=checkbox],
.checkbox-wrap input[type=radio] {
    margin-right: 5px;
}
.modal-body .sortable-item input[type=checkbox] + label,
.wizard-body .sortable-item input[type=checkbox] + label,
.checkbox-wrap input[type=checkbox] + label,
.checkbox-wrap input[type=radio] + label {
    top: 0;
}

.transactions-total,
.transactions-cascading-total {
    padding: 15px;
}

.transactions-total table tr th,
.transactions-cascading-total table tr th {
    color: #333333;
    text-align: center;
}

.transactions-total table tr td,
.transactions-cascading-total table tr td,
.transactions-total table tr th,
.transactions-cascading-total table tr th {
    padding: 5px 10px;
}

.transactions-total .inline-span,
.transactions-cascading-total .inline-span {
    width: 200px;
    display: inline-block;
}

.transactions-total .inline-span .label,
.transactions-cascading-total .inline-span .label {
    font-size: 75% !important;
    padding: .3em .6em .3em !important;
    vertical-align: baseline !important;
    display: inline-block;
    min-width: 37px;
    margin-right: 5px;
}

.transactions-total sup,
.transactions-cascading-total sup {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
    line-height: normal;
    padding: 0 10px;
}

/*switch styles*/

.toggle_switcher {
    display: flex;
    align-items: center;
}

.toggle_switcher span {
    padding-right: 20px;
    color: #999;
}

.btn-color-mode-switch label {
    font-size: 13px;
    color: #424242;
    font-weight: 500;
}

.btn-color-mode-switch {
    display: inline-block;
    margin: 0;
    position: relative;
    height: 45px;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner{
    margin: 0;
    height: 100%;
    width: 240px;
    background: #f9f9f9;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before{
    content: attr(data-on);
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    top: 0;
    right: 20px;
    color: #1A577A;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after{
    content: attr(data-off);
    width: 120px;
    height: 100%;
    background: #fff;
    border-radius: 26px;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px -4px #111;
    color: #1A577A;
    text-transform: capitalize;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-color-mode-switch input[type="checkbox"]{
    cursor: pointer;
    width: 120px;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after{
    content: attr(data-on);
    left: calc(100% - 120px);
    background: #fff;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before{
    content: attr(data-off);
    right: auto;
    left: 20px;
    max-width: 96px;
    text-align: center;
}

.btn-color-mode-switch input[type="checkbox"]:checked ~ .alert{
    display: block;
}
#show-totals{
    position: relative;
}
#show-totals:after,
#hide-totals:after{
    font-family: 'Glyphicons Halflings';
    content: "\e259";
    position: relative;
    font-size: 16px;
    color: #1a577a;
    top: 2px;
    right: -8px;
    transition: all .3s ease;
}
#hide-totals:after{
    content: "\e260";
}
#show-totals:hover:after,
#hide-totals:hover:after{
    color: #FFFFFF;
}
.diagram-sub-menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    min-height: 50px;
}
.summary-info {
    font-weight: 600;
}

.sortable-item {
    margin: 5px;
    border: 1px solid black;
    border-radius: 4px;
    max-width: calc(25% - 10px);
    min-width: 180px;
    display: inline-block;
    padding: 0 15px;
    position: relative;
}

.sortable-item::before {
    content: attr(data-index-visible);
    position: absolute;
    top: -10px;
    left: 5px;
    font-size: 12px;
    background-color: #f9f9f9;
    color: black;
    padding: 1px;
}

.disabled-csv {
    pointer-events: none;
    opacity: .4;
}

.modal-footer {
    padding: 20px 40px 15px 40px;
    text-align: right;
    border-top: none;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
#dynamicModal .modal-footer{
    background-color: #f9f9f9;
}
.pd-0 {
    padding: 0 !important;
}

.g-recaptcha, .g-recaptcha > div {
    margin: 0 auto;
}

#forgot-password-form .col-md-12 + button[type="submit"] {
    margin-top: 10px;
}

.tr-break-word {
    word-break: break-word;
}

#company-filter-form span.select2-container {
    display: inline-block !important;
}

#company-filter-form .select2-container--krajee .select2-selection--multiple .select2-search--inline .select2-search__field {
    min-width: 300px;
}

#company-filter-form .select2-container--krajee .select2-selection--multiple .select2-selection__choice {
    white-space: initial;
    overflow: hidden;
    word-break: break-all;
    max-width: 90%;
}
.add-tag{
    display: flex;
    justify-content: flex-end;
}
/* redesign of charts*/
.website-item-name span {
    height: 33px;
    font-size: 24px;
    font-weight: 600;
}

.chart-item-trans,
.chart-item-update {
    color: #1a577a;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
}

.main-chart-item-new {
    background-color: #ffffff;
    padding: 3%;
    margin-bottom: 2%;
    margin-top: 1%;
}
.main-chart-item-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-chart-item-new .chart-item-update,
.main-chart-item-new .chart-item-trans{
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.all-tab {
    width: 28px;
    height: 22px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

.all-tab.active {
    color: #0ca1d7;
}

.unique-tab {
    display: inline-block;
    padding-right: 10px;
}

.chart-item-statistic,
.chart-item-deposit,
.chart-item-payout {
    padding-top: 10px;
}

.chart-wrap {
    margin-top: 10%;
}

#charts_body .payout-wid,
#charts_body .deposit-wid {
    height: auto;
    padding-bottom: 20px;
}

.empty-stat-data {
    padding: 15px 0;
    font-weight: 600;
}

.title-total {
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    text-transform: uppercase;
}

.total-deposit,
.total-payout {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    padding: 2px 5px 2px 5px;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
}

.total-deposit {
    background: #00ad43;
}

.total-payout {
    background: #ff0000;
}

.hint-chart {
    font-size: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* end of redesign of charts*/

.gateway-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 1px solid #D9E1E8;
    margin-bottom: 15px;
}

.gateway-header-info {
    display: flex;
    align-items: center;
}

.gateway-header__title {
    margin: -10px 0 0 0;
}

.gateway-header-info .btn {
    margin-left: 7px;
}

.gateway-search {
    display: flex;
}

.gateway-search .btn-filter {
    margin-right: 5px;
}

.gateway-header-filters {
    padding-left: 20px;
    display: flex;
}

.gateway-btn-wrapper {
    display: flex;
    align-items: flex-end;
}

.gateway-btn-wrapper .download-csv {
    margin-left: 5px;
}

.gateway-quick-filter .group-field {
    min-width: 180px;
    max-width: 180px;
    margin-right: 4px;
}

.gateway-index .select2-container--krajee .select2-selection--single {
    padding: 9px 28px 9px 10px;
}

.form-control::-webkit-input-placeholder, /* Chrome/Opera/Safari */
.select2-search__field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #CACACA;
}

.form-control::-moz-placeholder, /* Firefox 19+ */
.select2-search__field::-moz-placeholder { /* Firefox 19+ */
    color: #CACACA;
}

.form-control:-ms-input-placeholder, /* IE 10+ */
.select2-search__field:-ms-input-placeholder { /* IE 10+ */
    color: #CACACA;
}

.form-control:-moz-placeholder, /* Firefox 18- */
.select2-search__field:-moz-placeholder { /* Firefox 18- */
    color: #CACACA;
}

.remove-filter {
    padding: 0 0 15px 0;
    border-bottom: 1px solid #D9E1E8;
    margin-bottom: 15px;
}

.remove-filter-list {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.remove-filter-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    width: 25%;
}

.remove-filter-item:last-of-type {
    margin-right: 0;
}

.remove-filter-item__title {
    color: #181818;
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
    width: 60%;
}
.remove-filter-item .remove-list{
    width: 100%;
}

/*.remove-list .select2-search--inline {*/
/*    padding: 4px;*/
/*}*/

.list-reset {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

#info-box,
.gateway-modal-btn svg path,
.gateway-index a {
    transition: all .3s ease;
}

#info-box.hidden {
    display: block !important;
    transform: translateY(100%);
    opacity: 0;
}

#info-box.visible {
    transform: translateY(0);
    opacity: 1;
}

.gateway-modal-btn:hover svg path {
    fill: #1a577a;
}

.table-label {
    display: none;
}

.country__img {
    display: none;
}

body .alert-info {
    background-color: #ffffff;
    border: 1px solid #0CA1D7;
    padding: 15px;
    margin-bottom: 20px;
}

.wizard-info-block-text {
    color: #333333;
    font-size: 14px;
    padding-left: 10px;
}

.wizard-subtitle{
    font-weight: 700;
    margin-left: 52px;
    color: #3A6381;
}

.step-form{
    background: white;
    border: solid 1px #d9e1e8;
    flex: 3;
    padding: 0 32px;
    border-radius: 15px;
    height: 805px;
    overflow-y: scroll;
}

.wizard-buttons-group > *{
    margin: 2px;
}

.step-title:not(.step-title-current) {
    opacity: 0.3;
}

.wizard-header {
    position: relative;
    padding: 30px 0 30px 30px;
    text-align: left;
    font: normal normal 600 22px/30px Open Sans;
    color: #0C4E6D;
}

.wizard-body {
    position: relative;
    height: 100%;
    width: 100%;
}

.report-input-errors {
    width: 100%;
    text-align: left;
    font: italic normal normal 11px/14px PT Sans;
    letter-spacing: 0px;
    color: #FF0000;
    opacity: 1;
    margin: 3px 20px;
}

.show-errors{
    border-bottom-color: #FF0000 !important;
}

.settings_body {
    display: inline-flex;
    width: 100%;
}

.transaction-filters-settings-body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: auto;
    max-height: 300px;
}

.wizard-body > form {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    padding: 50px;
}

.wizard-body > form > *{
   flex: 1;
}

.btn-cancel{
    color: #1A577A !important;
    border: 1px solid #1A577A !important;
    padding: 8px;
}

.btn-cancel:hover, .btn-back:hover {
    background: #0CA1D7 0% 0% no-repeat padding-box !important;
    border: 1px solid #0CA1D7 !important;
    color: #fff !important;
}

form[name=columns-form] > div{
    display: flex;
    flex-direction: column;
}

form[name=columns-form] > div > *{
    flex:1;
}

form[name=columns-form]>.toggle-checkbox>#gallery{
    z-index: auto;
}
/* preview table layout*/
.transactions-preview-table>thead{
    background: #1A577A 0% 0% no-repeat padding-box;
    height: 39px;
}

.transactions-preview-table.table-bordered > thead > tr > th, .transactions-preview-table.table-bordered > thead > tr > td{
    border: 1px solid #fff;
}

.transactions-preview-table th > a, .transactions-preview-table th > span{
    color: #FFFFFF;
}

.transactions-preview-table>tbody{
    background: #EFEFEF 0% 0% no-repeat padding-box;
    border: 1px solid #00000000;
    opacity: 0.8;
}

.transactions-preview-table> tbody > tr:nth-of-type(even):hover, .transactions-preview-table > tbody > tr:nth-of-type(even){
    background-color: #fff !important;
    border: 1px solid #00000000;
    opacity: 0.7;
}

.transactions-preview-table> tbody > tr > td, .transactions-preview-table > tbody > tr > td{
    border: 1px solid #00000000 !important;
}

.transactions-preview-table> tbody > tr:nth-of-type(odd){
    background-color: #EFEFEF !important;
    border: 1px solid #00000000;
    opacity: 0.8;
}

.transactions-preview-table>tbody>tr{
    height: 39px;
}

.transactions-preview-table>thead>tr:hover, .transactions-preview-table>tbody>tr:hover{
    background-color: transparent !important;
}

/*end of preview table layout*/

.wizard-button{
    width: 121px;
}

.column-settings-item{
    display: flex;
}

.settings_body > * {
    flex: 1;
    border: 1px solid #CBD5DC;
    overflow-wrap: anywhere;
    border-radius: 5px;
    padding: 30px;
    margin: 10px;
}

.schedule-settings-body, .template-settings-body, .email_settings_body, .transaction-filters-settings-body, .report-settings-body {
    display: flex;
    flex-direction: column;
}

.schedule-settings-body > label {
    display: flex;
}

.schedule-for-later{
    margin: 0 2rem;
}

input[name=schedule_report_date]{
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.column-settings {
    display: flex;
}

.email-settings-body{
    display: flex;
    flex-wrap: wrap;
}

.email-settings-body > label{
    height: 41px;
}

.emails-to-send-report-content{
    flex: 2;
    flex-direction: column;
    margin: 0;
}

.emails-to-send-report{
    margin: 0 !important;
    background: #608096 0% 0% no-repeat padding-box;
    border: 1px solid #608096;
    border-radius: 5px;
    text-align: left;
    font: normal normal normal 16px/22px Open Sans;
    color: #FFFFFF;
    height: 33px;
    margin-bottom: 1px !important;
    flex: 1;
    display: inline-flex !important;
    justify-content: space-between;
    padding-right: 0;
}

.emails-to-send-report>span{
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.emails-to-send-report-box{
    overflow-x: hidden;
    padding: 0 0 10px 0;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    width: 100%;
    max-height: 300px;
}

.filter-form{
    display: flex;
    flex-wrap: wrap;
}
.wizard-body.filter-form{
    height: auto;
}
.filter-form > .template-field,.filter-form .select-template{
    width: 33%;
    margin-bottom: 15px;
}

.remove-email-icon{
    overflow: hidden;
}

.remove-email-icon:hover{
    filter: invert(61%) sepia(26%) saturate(6574%) hue-rotate(169deg) brightness(104%) contrast(76%);
    transition-timing-function: ease;
    transition: 0.3s;
    cursor: pointer;
}

.remove-btn, .save-btn{
    width: 20px;
}

.saved-templates-dropdown{
    width: 100%;
}

.saved-templates-dropdown>li:hover{
    background-color: #7ACAE5 !important;
    color: white !important;
}

.get-saved-template, .edit-saved-template{
    font: 16px Open Sans;
    flex: 1.5;
    margin: 4px;
    padding: 6px 6px;
    display: flex;
    word-break: break-word;
}

.quick-action-buttons{
    flex: 1;
    display: flex;
    justify-content: center;
}

.quick-action-buttons>*{
    filter: opacity(0.5);
}

.quick-action-buttons>*:hover{
    filter: opacity(1);
}

.saved-templates-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
}

.selected_filter_value{
    font-weight: 700;
    display: inline-block;
    margin-left: 5px;
}

#emails-to-send-report-input{
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #D9E1E8;
}

#emails-to-send-report-input:focus{
    box-shadow: none;
}

.column-settings-label {
    flex: 1;
}

.column-settings-value {
    flex: 4;
}

.edit-button{
    display: flex;
    justify-content: space-between;
}

.edit-img:hover{
    cursor: pointer;
}

.box-context > * {
    margin: 10px 10px 10px 0;
    align-items: center;
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
}

.box-context > label {
    align-items: center;
}

.box-context > * > input {
    margin: 0 20px;
}

.email-settings, .report-settings {
    border: 1px solid #CBD5DC;
    border-radius: 5px;
    padding: 30px;
    margin: 10px;
}

.template_name_input{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.template_name_input > * {
    margin: 10px 10px 10px 0;
}


.step-title {
    display: flex;
}

.step-text{
    display: flex;
    flex-direction: column;
    margin: 11px 25px;
}

.step-title-text {
    flex: 3;
    font: normal normal 600 28px Open Sans;
}

.step-title-txt{
    flex: 1;
    font: normal normal 600 16px Open Sans;
    color: #3A6381;
}

.step-img{
    margin: 10px;
}

.new-modal .select2-container--krajee .select2-selection--single .select2-selection__arrow {
    height: 41px;
}

.new-modal .modal-header {
    text-transform: none;
}

.new-modal .modal-body {
    background: #ffffff;
}

.new-modal .modal-header {
    font-size: 16px;
    font-weight: 600;
}

.new-modal .form-control {
    height: 41px;
    color: #333333;
    padding-left: 10px;
}

.new-modal .control-label {
    font-size: 12px;
}

.new-modal .select2-container--krajee .select2-selection--single {
    height: 41px;
    padding-top: 8px;
}

.gateway-popup label {
    font-weight: 400;
    line-height: normal;
}
label[for="globalbridgefilter-max_withdrawal_amount"]{
    white-space: nowrap;
}
.gateway-popup .big-label {
    color: #333333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.new-modal form .btn.btn-success,
.new-modal form .btn-danger[data-dismiss="modal"],
.new-modal form .btn-default[data-dismiss="modal"] {
    padding: 8px 5px;
    max-width: 100%;
    width: 138px;
}

.new-modal form .btn-default[data-dismiss="modal"] {
    transition: all .3s ease;
    box-shadow: none;
}

.new-modal form .btn-default[data-dismiss="modal"]:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.new-modal .form-horizontal .form-group .btn:not(:last-of-type) {
    margin-right: 10px;
}

.gateway-index .full-title {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.gateway-index .full-title .caret {
    position: relative;
    right: inherit;
    top: inherit;
    margin-left: 3px;
}

.list-gateway-item__system_name {
    font-size: 12px;
    color: #777777;
    font-weight: 400;
}

.limits-wrap {
    padding-bottom: 10px;
}

.limit-fields {
    display: flex;
}

.limit-fields.limits-two {
    padding: 0 10px 0 5px !important;
}

.limit-fields .form-control {
    font-size: 14px;
}

.limit-fields.limits-two .form-group:first-of-type {
    width: 60%;
}

.limit-fields.limits-two .form-group:last-of-type {
    width: 40%;
}

.limit-fields.limits-two .form-group:first-of-type .form-control {
    border-radius: 4px 0 0 4px;
}

.limit-fields.limits-two .form-group:last-of-type .form-control {
    border-radius: 0 4px 4px 0;
    border-left: 0;
}

.limit-fields .arrow-wrap {
    position: relative;
}

.limit-fields .arrow-wrap:after,
.limit-fields .arrow-wrap:before {
    content: '';
    background-image: url(../img/arrow_select.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    width: 16px;
    height: 11px;
    pointer-events: none;
    right: 12px;
    display: block;
    position: absolute;
    z-index: 1;
}

.limit-fields .arrow-wrap:after {
    top: 16px;
}

.limit-fields .arrow-wrap:before {
    top: 8px;
    transform: rotate(180deg);
}

.no-label .form-group .control-label {
    display: none;
}

.gateway-modal-btn {
    font-size: 0;
    margin-left: 5px;
}

.gateway-index .list-gateway .switch-field {
    display: flex;
}

.btn-blue {
    background: #0CA1D7;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 10px;
    transition: all .3s ease;
    text-align: center;
    border: 1px solid #0CA1D7;
}

.btn-blue:hover {
    text-decoration: none;
    background: #ffffff;
    color: #0CA1D7;
}

.gateway-hash .btn-blue {
    display: none;
}

.buttons-wrap .gateway-content__title {
    display: none;
}

.form-control {
    border-color: #D9E1E8;
}

.gateway-form .form-control {
    height: 41px;
}

.gateway-form .form-control.btn-danger {
    line-height: normal;
}

.translation-table {
    width: 100%;
    margin: 10px 0 20px 0;
}

.translation-table td:first-of-type {
    padding-right: 5px;
}

.translation-table td:last-of-type {
    padding-left: 5px;
}

.no-margin .form-group {
    margin-bottom: 0;
}

.api-role-block {
    margin-bottom: 0;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

#gateway-processing-configuration {
    padding: 0 5px;
}

#gateway li[data-label="limits"] > span,
#gateway li[data-label="filters"] > span,
#gateway #filters,
#gateway .list-gateway-item__label {
    position: relative;
    cursor: pointer;
}

#gateway li[data-label="limits"] > span:hover svg path,
#gateway li[data-label="filters"] > span:hover svg path,
#gateway #filters:hover svg path,
#gateway .list-gateway-item__label:hover svg path {
    fill: #1a577a;
}

#gateway li[data-label="limits"] > span svg path,
#gateway li[data-label="filters"] > span svg path,
#gateway #filters svg path,
#gateway .list-gateway-item__label svg path {
    transition: all .3s ease;
}

#gateway li[data-label="limits"] svg,
#gateway li[data-label="filters"] svg {
    position: relative;
    top: -4px;
    right: 0;
    margin-left: -18px;
}
#gateway .clone-table-label li[data-label="limits"] svg{
    top: 2px;
}
.gateway-filter-select{
    padding-top: 3px;
}
.gateway-filter-select__text{
    color: #999;
    font-size: 12px;
    padding-top: 5px;
}
@media (max-width: 1800px) {
    #gateway li[data-label="filters"] > span svg {
        top: -14px;
    }
    #gateway .clone-table-label li[data-label="filters"] svg{
        top: -8px;
    }
    .legend-block{
        word-break: break-all;
    }
    .main-chart-item-new .grid-view{
        padding-bottom: 0!important;
    }
}

.gateway-btn-submits {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gateway-btn-submits .btn {
    margin-right: 25px;
}

.brand-setup-wizard .gateway-btn-submits .btn {
    max-width: 100%;
}

.wizard-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin: 30px 0;
}

.step-guide {
    flex: 1;
}

.wizard-buttons-group {
    display: flex;
    justify-content: center;
}

.gateway-btn-submits .btn:last-child {
    margin-right: 0;
}

.gateway-index {
    padding-bottom: 20px;
}

/* Menu */
.wrap {
    /*padding-left: 65px;*/
}

.navbar-fixed-left.navbar {
    left: 0;
    top: 0;
    position: fixed;
    width: 70px;
    height: 100%;
    padding: 50px 0 0;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 4px 0 8px rgba(0, 0, 0, .12);
    z-index: 998;
    transition: width .02s ease;
}

@keyframes slideRight {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}

.navbar-fixed-left.navbar.active {
    width: 350px;
    z-index: 998;
}

.navbar-fixed-left .container {
    padding: 0;
}

.navbar-fixed-left .navbar-nav {
    margin-right: 0;
    width: 100%;
}

.navbar-fixed-left .navbar-nav > li > .dropdown-menu {
    position: relative;
    width: 100%;
    top: inherit;
    left: inherit;
    border: 0;
    box-shadow: none;
    min-width: auto;
    padding: 0;
    z-index: 0;
}

.navbar-collapse {
    padding: 0;
}

.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a {
    padding: 15px 0 18px 0;
    font-size: 9px;
    text-transform: none;
    font-weight: normal;
    transition: all .2s linear;
    word-break: break-all;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li.hover a:after,
.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a:hover:after {
    background: #F7FBFF;
}

.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li.active .title {
    color: #2CABE2;
}



.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li .dropdown-menu a:focus {
    outline: none;
}

.navbar-fixed-left.navbar .navbar-nav li {
    width: 100%;
}
.navbar-fixed-left.navbar.active .navbar-nav li{
    padding-right: 20px;
}
.navbar-fixed-left.navbar .navbar-nav li.current .caret {
    transform: rotate(180deg);
}


@keyframes slide-in-right {
    from {
        opacity: 0;
        left: -100%;
        transform: scale(0);
    }
    to {
        opacity: 1;
        left: 20px;
        transform: scale(1);
    }
}

.navbar-fixed-left.navbar.active .navbar-nav li a svg {
    left: 20px;
}

.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a > .title {
    text-align: center;
    font-size: 12px;
    line-height: normal;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translatex(-50%);
    white-space: nowrap;
}
.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a > .title_sub{
    max-width: 55%;
}
.navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li a > .title_sub{
    max-width: 100%;
}

@keyframes slide-in-left {
    from {
        right: -100%;
    }
    to {
        right: 5px;
    }
}

@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li a > .title {
    font-size: 20px;
    bottom: calc(50% + 3px);
    transform: translate(0%, 50%);
    left: 60px;
}
.navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li a > .title_main{
    padding-right: 25px;
}
.navbar-fixed-left.navbar-inverse.navbar .navbar-nav li .dropdown-menu li a > .title {
    font-size: 11px;
    bottom: 13px;
    transform: translate(0, 50%);
    left: 25px;
}

.navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li .dropdown-menu li a > .title {
    font-size: 14px;
    bottom: 50%;
    opacity: 1;
    left: 68px;
}

.navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li.resize_block .dropdown-menu li a > .title {
    left: 0;
}

.header-logo {
    display: block;
    width: auto;
}

.header-logo a {
    display: inline-block;
}

.header-logo img {
    max-height: 25px;
    max-width: 100%;
}

.navbar-header {
    display: none;
}

.footer {
    height: auto;
}

.footer-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 75px;
}

.caret {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: rotate(0deg);
    transition: all .3s ease;
}

.dropdown.dropup .caret {
    transform: rotate(180deg);
}

.account-bar > li > a {
    color: #333333;
    font-size: 16px;
    padding-right: 25px;
    transition: all .3s ease;
}

.account-bar > li > a:hover,
.sub-nav .account-bar > li.open > a {
    color: #0e4764;
    background-color: transparent;
}

.account-bar li .dropdown-menu a {
    font-size: 16px;
    transition: all .3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.account-bar li .dropdown-menu a:hover {
    color: white;
    background: #0CA1D7;
}

.account-bar > li > a.caret {
    color: #1A577A;
}

.account-bar .dropdown-menu {
    width: 100%;
    border: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    padding: 5px;
}

.account-bar .dropdown-menu form {
    padding: 3px 0;
}

.account-bar .dropdown-menu form .logout {
    box-shadow: none !important;
    font-weight: 400;
    width: 100%;
    text-align: left;
    padding: 0 0 0 20px;
    border-radius: 0;
    height: auto;
}

.account-bar .dropdown-menu form .logout:hover {
    color: white !important;
    background: #0CA1D7;
}

/* Mobile menu */
.toggle_menu {
    display: none;
    position: absolute;
    width: 28px;
    vertical-align: middle;
    z-index: 1;
    cursor: pointer;
    height: 18px;
    border: none;
    background: transparent;
    outline: none;
    left: 20px;
    top: 50%;
    margin-top: -9px;
}

.toggle_menu .sandwich {
    width: 28px;
    height: 18px;
    z-index: 200;
    display: block;
}

.toggle_menu .sandwich .sw-topper {
    position: relative;
    top: 0;
    width: 28px;
    height: 3px;
    background: #1A577A;
    border: none;
    -webkit-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    transition: transform 0.5s, top 0.2s;
    -webkit-transition: transform 0.5s, top 0.2s;
    display: block;
}

.toggle_menu .sandwich .sw-bottom {
    position: relative;
    width: 28px;
    height: 3px;
    top: 4.2px;
    background: #1A577A;
    border: none;
    -webkit-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    transition: transform 0.5s, top 0.2s;
    -webkit-transition: transform 0.5s, top 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
    transition-delay: 0.2s, 0s;
    display: block;
}

.toggle_menu .sandwich .sw-footer {
    position: relative;
    width: 28px;
    height: 3px;
    top: 8px;
    background: #1A577A;
    border: none;
    -webkit-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    display: block;
}

.toggle_menu .active .sw-topper {
    top: 9px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.toggle_menu .active .sw-bottom {
    top: 6px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.toggle_menu .active .sw-footer {
    opacity: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.navbar-fixed-left .open > .dropdown-menu {
    display: none;
}

.open > .dropdown-menu {
    z-index: 990;
}

.account-info {
    display: flex;
    align-items: center;
    min-width: 300px;
}

.account-info .account-bar {
    width: 100%;
}

.account-info-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.account-info-logo img {
    max-width: 100%;
    max-height: 100%;
}

.gateway-form-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #D9E1E8;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.copy-filters-form .gateway-form-header{
    border-bottom: none;
}
.copy-filters-form .gateway-form-header.sub-title h1{
    white-space:nowrap;
}
.gateway-form-info {
    display: flex;
    width: 80%;
    align-items: center;
    padding-right: 15px;
}

.gateway-form .gateway-form-info a {
    line-height: 18px;
}

.gateway-form-info__title {
    font-size: 34px;
    font-weight: 600;
    margin: 0 15px 0 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.gateway-form-info__title:hover {
    text-overflow: clip;
    white-space: normal;
    word-break: break-all;
}

.gateway-form .desktop-update-btns {
    display: flex;
}

.gateway-form .desktop-update-btns .btn-submit {
    margin-right: 20px;
}

.gateway-form-info .bordered-btn:hover,
.second-step .btn.btn-success.add-field:hover {
    background: #0CA1D7;
    border: 1px solid #0CA1D7 !important;
    color: #fff;
}

.brand-view {
    word-break: break-all;
}

.creds-item:not(:last-of-type) {
    margin-bottom: 20px;
}

.creds-item__label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.creds-info {
    border-bottom: 1px solid #D9E1E8;
    width: 100%;
}

.creds-info tr td {
    padding: 5px 8px;
    font-size: 14px;
    word-break: break-all;
}

.creds-info tr:nth-child(odd) {
    background: #F7FBFF;
}

.creds-info tr td:nth-child(even) {
    font-weight: 600;
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.credentials-list__item {
    flex-basis: calc(50% - 12px);
    margin-bottom: 10px;
}
.credentials-list__item.checkbox_field{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
.credentials-list__item.checkbox_field .help-block{
    position: absolute;
    bottom: 0;
}
.credentials-list__label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 2px;
}

.example-setting__label {
    font-size: 12px;
    font-weight: 400;
}

.example-setting__text {
    border-color: #D9E1E8;
    font-size: 14px;
    padding: 10px;
}

.processing-item__title {
    color: #333333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.processing-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: -15px;
    margin-left: -15px;
}

.processing-item {
    flex-basis: 49%;
}

.processing-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.processing-list.filter-gateway {
    width: 100%;
    flex-wrap: nowrap;
}

.processing-list__item {
    border: 1px solid #D9E1E8;
    border-radius: 2px;
    background: #F0F8FF;
    margin-bottom: 15px;
    padding: 10px 10px 10px 55px;
    position: relative;
    width: 100%;
}

.processing-list.filter-gateway .processing-list__item {
    width: calc(100% / 5);
    margin: 15px 15px 15px 0;
    min-height: 55px;
    display: flex;
    align-items: center;
}

.processing-list.filter-gateway .processing-list__item:last-child {
    margin-right: 0;
}

.processing-list__item.w-50 {
    flex-basis: 48%;
}

.processing-list__item.select-wrap {
    padding-left: 150px;
}
.processing-list__item.input-wrap{
    padding-left: 15px;
}
.processing-list__item.input-wrap .gateway-label{
    margin-bottom: 5px;
}
.processing-list__item.select-wrap .select2-selection__placeholder{
    font-size: 12px;
}

.processing-list__item.select-wrap .select2.select2-container.select2-container--krajee {
    width: 120px !important;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.processing-list__item .form-group {
    margin-bottom: 0;
}

.processing-list__item .switch-field {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.processing-list .processing-list__select{
    padding-left: 10px;
}
.processing-list .processing-list__select .form-group > label{
    margin-bottom: 10px;
}
.size-block{
    width: 100%;
}
.size-block .size-block-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gateway-label{
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 2px;
}

.processing-item .gateway-label,
.processing-list.filter-gateway .processing-list__item label {
    font-size: 16px;
    font-weight: 600;
    color: #1A577A;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 0;
}

.processing-item .gateway-label.disabled {
    color: #777777;
}

.processing-list__item .hint-block {
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    margin-top: 0;
}

.history-block {
    border: 1px solid #D9E1E8;
    border-radius: 3px;
    padding: 5px;
    height: 100%;
}

.history-block table {
    width: 100%;
}

.history-block ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.history-block ul li {
    padding: 4px 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.history-block ul li a:first-of-type {
    margin-right: 10px;
}
.history-block .history-created ul li a:first-of-type {
    margin-right: 0;
}

.history-block ul li:nth-child(even) {
    background-color: #F7FBFF;
}

.history-block ul li a {
    display: inline-block;
}

.history-block tr:first-of-type {
    background-color: #F7FBFF;
}

.history-block tr td {
    vertical-align: middle;
}

.history-block tr td:first-of-type {
    color: #777777;
    font-size: 14px;
    padding: 0px 5px;
}

.history-modified li > *,
.history-created {
    font-size: 14px;
    font-weight: 600;
}

.general-wrap {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}

.general-item {
    width: 28%;
}

.general-item:not(:last-of-type) {
    margin-right: 4%;
}

.general-item .second-step:last-of-type .form-group {
    margin-bottom: 0;
}

.history-wrap {
    display: inline-flex;
    flex-direction: column;
    width: 36%;
}

.gateway-additional-fields-group {
    margin-bottom: 30px;
}

.gateway-additional-fields-group__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.notification-link {
    display: inline-flex;
    margin-left: 20px;
}

.notification-link:hover {
    text-decoration: none;
}

.notification-link:hover .icon:before {
    color: #0CA1D7;
}

.notification-link .icon {
    margin-right: 5px;
    font-size: 24px;
}

.notification-link .icon:before {
    transition: all .3s ease;
}

.additional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -10px 30px -10px;
}
.gateway-additional-fields-group .additional-item{
    margin: 0 0 30px 0;
}
.additional-item__block {
    flex: 1 1 0;
    padding: 0 10px;
    position: relative;
}

.small-field {
    max-width: 70px;
}

.additional-item__label {
    font-size: 12px;
    color: #333333;
    padding-left: 5px;
}

.additional-item__label.disabled {
    color: #CACACA;
}

.gateway-additional-fields-group .reset_default {
    margin-bottom: 10px;
}

.hash-request .glyphicon.hash-request__icon {
    position: relative;
    left: initial;
    top: initial;
    font-size: 14px;
    transition: all .3s ease;
}

.hash-request .glyphicon.hash-request__icon:hover {
    color: #0CA1D7;
}

.center {
    text-align: center;
}

.header__icon {
    font-size: 32px;
    margin-right: 5px;
    cursor: pointer;
}

h1[tooltip].focused .header__icon:before {
    color: #0CA1D7;
}

.gateway-drop-list {
    list-style: none;
    position: absolute;
    left: 15px;
    top: 20px;
    margin-bottom: 0;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    z-index: 11;
    margin-top: 5px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
    text-align: left;
}

.gateway-drop-list.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.gateway-drop-list__link {
    display: block;
    color: #060808;
    font-size: 16px;
    transition: all .3s ease;
    padding: 3px 5px;
    background-color: transparent;
    font-weight: 400;
    white-space: nowrap;
}

.gateway-drop-list__link:hover {
    background-color: #0CA1D7;
    color: #FFFFFF;
    text-decoration: none;
}

label[for="account-api_secret_hash"] {
    display: flex;
    align-items: center;
}

label[for="account-api_secret_hash"] .hash-request {
    margin-left: 5px;
}

label[for="account-api_secret_hash"] .hash-request > span.glyphicon {
    position: relative;
    left: 0;
    top: 2px;
}

.select2-container--krajee .select2-selection--multiple .select2-selection__choice {
    word-break: break-word;
}

.brand-setup-wizard div[role="radiogroup"] label {
    display: flex !important;
    align-items: center;
}

.brand-setup-wizard div[role="radiogroup"] label input {
    margin-right: 5px;
    margin-top: 0;
}
.brand-setup-wizard .mobile-version{
    display: none;
}
.table .dropdown .dropdown-menu li > span {
    padding: 3px 20px;
    display: block;
    font-size: 12px;
}

.table .dropdown .dropdown-menu li > a {
    transition: all .3s ease;
    text-align: left;
    padding: 3px 20px 3px 10px;
}

.table .dropdown .dropdown-menu li > a:hover {
    color: white;
    background: #0CA1D7;
}

.dropdown.custom_alight .caret {
    right: 2px;
    bottom: 6px;
}

.dropdown.custom_alight .dropdown-menu-right {
    left: -10%;
    right: auto;
}

.transaction-page #transactions-filter-modal form {
    display: flex;
    flex-wrap: wrap;
    max-height: 391px;
    overflow: auto;
    width: 100%;
}
.transaction-page #transactions-filter-modal form .mCustomScrollBox{
    width: 100%;
    padding-right: 80px;
}
.transaction-page #transactions-filter-modal .mCSB_container{
    display: flex;
    flex-wrap: wrap;
}
.account-index .btn-change.disabled {
    pointer-events: auto;
}

.payment-processor-grid .table #payment-processor-grid-filters td:nth-child(2) {
    width: 200px;
}

#gallery {
    background: #F9F9F9;
}

.disabled {
    pointer-events: none;
}

#forgot-password .alert-info {
    padding: 10px;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-wrap .border-block {
    height: 100%;
}

.fee-form .fee-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 35px;
}
.message-substitution-form .fee-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 35px;
}

.fee-form .fee-row .fee-item {
    flex: 1 1 0;
    padding: 0 10px;
    max-width: 25%;
}
.rate-spread-form .fee-row .fee-item{
    max-width: 20%;
}

.message-substitution-form .fee-row .fee-item {
    flex: 1 1 0;
    padding: 0 10px;
    max-width: 25%;
}
.fee-form .fee-row .fee-item label {
    white-space: nowrap;
}
.message-substitution-form .fee-row .fee-item label {
    white-space: nowrap;
}

.fee-form input[type=checkbox] {
    margin-right: 5px;
}

.slideDown table.table {
    word-break: break-all;
}

.gateways-logs-block {
    overflow: auto;
}

.gateways-logs-block .title {
    font-weight: 600;
    font-size: 18px;
}
.gateways-logs-block .subtitle{
    margin-top: 5px;
    font-size: 14px;
}
.gateways-logs-block table tr td {
    word-break: initial;
}

.cents {
    font-size: 80%;
}

.cascade-nothing {
    font-weight: 600;
    padding: 10px;
    font-size: 16px;
}

.cascade-log-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.cascade-log-block p {
    width: 100%;
}

.cascade-log-block span:not(:last-of-type) {
    margin-right: 5px;
}

.cascade-log-block p span {
    margin-right: 0 !important;
}

.cascade-log-block .country img {
    width: 17px;
    height: 12px;
}

.open-btn-wrap {
    text-align: center;
    padding-top: 5px;
    position: absolute;
    width: 100%;
}

.open-btn {
    color: #1a577a;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.brand-settings {
    display: flex;
    flex-wrap: wrap;
}

.brand-settings .brand-settings-row {
    width: 50%;
}

.dropdown-menu > li > a.delete {
    color: crimson;
}

.delete-btn {
    display: inline-block;
    padding: 6px 25px;
    border: 1px solid crimson;
    background-color: white;
    border-radius: 3px;
    color: crimson;
    transition: all .3s ease;
}

.modal .delete-btn {
    color: #fff;
}

.gateway-popup .delete-btn {
    color: white;
}

.delete-btn:hover {
    background-color: crimson;
    color: white;
    text-decoration: none;
}

.delete-btn:hover i {
    color: white;
}

.delete-btn i {
    color: crimson;
    margin-right: 8px;
    transition: all .3s ease;
}

.details-logo {
    max-width: 40px;
    padding: 10px 0;
}

#manage-payment-grid th,
#manage-payment-grid td {
    text-align: center;
    position: relative;
}

#manage-payment-grid .switch-field {
    justify-content: center;
}

.helios-processor-form #processing-tab .form-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
    padding-bottom: 5px;
    margin-bottom: 0;
    height: 40px;
}

.helios-processor-form #processing-tab .form-group .control-label {
    white-space: normal;
    margin-bottom: 0;
    line-height: 1;
    margin-left: 0;
}

.helios-processor-form #processing-tab .nav-tabs {
    margin-top: 20px;
}
.processing-tab-subtabs{
    justify-content: space-between;
}
.helios-processor-form .switch-field {
    display: inline-flex;
    margin-left: 5px;
}

.payment-method-info {
    white-space: nowrap;
}

.payment-method-info a {
    display: inline-block;
    vertical-align: middle;
}

.payment-method-logo {
    width: 25px;
    height: 25px;
    overflow: hidden;
    background: white;
    padding: 2px;
    border-radius: 5px;
    border: 1px solid #cacaca;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
}

.payment-method-logo img {
    max-width: 100%;
}

.grid-view .select2-container--open {
    z-index: 1;
}

.block-warning .glyphicon {
    color: #9b870c;
    margin-right: 5px;
    font-size: 18px;
}

.block-warning .modal-view {
    width: auto;
    text-decoration: underline;
}

.verify_status {
    display: inline-flex;
    align-items: center;
}

.verify_status .glyphicon {
    margin-right: 5px;
}

.daterange-wrap {
    position: relative;
}

.clear-data {
    background-image: url(../img/black-close.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -10px;
    cursor: pointer;
    background-color: white;
}

.field-globalbridgegatewaysearch-created_at + .clear-data {
    margin-top: 0;
}

.daterange-wrap .clear-data {
    right: 1px;
}

.margin-empty,
.margin-empty .help-block {
    margin-bottom: 0;
}

.bin-route-exception-form .readonly-field input {
    background-color: #eee;
}

.card-number-view {
    padding-right: 17px;
}

.amount-label-danger {
    padding: 4px !important;
}

.amount-label-danger b {
    color: antiquewhite !important;
}

.amount-label-danger .cents {
    margin-right: 6px;
}

.amount-label-danger .glyphicon {
    font-size: 14px;
}

.field-globalbridgegatewaysearch-created_at .clear-data {
    top: 39px;
}

.multiple-attempts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 10px;
}

.multiple-attempts-container .item {
    width: 49%;
}

.multiple-attempts-container .item .table,
.verification-details-container .table{
    margin: 0;
}

.checkbox-field {
    display: flex;
    align-items: center;
}

.checkbox-field input {
    margin-right: 10px;
    top: -2px;
}
.label-warning,
.label-primary,
.label-default,
.label-info,
.label-success {
    padding: 3px 7px !important;
    display: inline-block;
    font-size: 12px!important;
    font-weight: 600;
    color: #ffffff !important;
    text-transform: capitalize;
    border-radius: 10px;
}
.label-info{
    background-color: #0ca1d7 !important
}
.label-warning {
    background-color: #ffc107 !important;
}
/* Modal currency fields START*/
.currency-list-options,
.currency-option-item,
.currency-row,
.currency-add-row,
.bank-details-currency-row, .bank-details-currency-image-row {
    margin-bottom: 15px;
}
.currency-row, .bank-details-currency-row, .bank-details-currency-image-row {
    opacity: 1;
}
.currency-body{
    padding-top: 15px;
    display: none;
}
#currency-modal .modal-dialog {
    max-width: 1000px;
    width: 90%;
}
#bank-details-modal .modal-dialog {
    max-width: 900px;
    width: 90%;
}
#custom-html-modal .modal-dialog {
    max-width: 1000px;
    width: 90%;
}
.currency-header, .bank-details-currency-header, .bank-details-currency-image-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    border: 1px solid #0ca1d7;
    padding: 10px 28px 10px 10px;
    border-radius: 5px;
    background: white;
    cursor: pointer;
}
.currency-header .remove-currency, .bank-details-currency-header .remove-currency {
    color: crimson;
    cursor: pointer;
}
.currency-header .caret, .bank-details-currency-header .caret, .bank-details-currency-image-header .caret {
    transform: translateY(-50%);
    border-top: 6px dashed #1A577A;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}
.currency-header.active .caret, .bank-details-currency-header.active .caret, .bank-details-currency-image-header.active .caret {
    transform: translateY(-50%) rotate(180deg);
}
.currency-add-row{
    display: flex;
    justify-content: center;
}
.currency-option-item__icon{
    text-align: right;
}
.currency-option-item__icon .glyphicon-trash{
    color: crimson;
    cursor: pointer;
}
.currency-option-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.currency-option-item__field{
    width: 45%;
}
/* Modal currency fields END*/
@media (min-width: 1930px) {
    .sub-nav {
        background-size: cover;
    }
}

@media (min-width: 1340px) {
    #forgot-password-form > .form-group .control-label {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .country__img {
        display: inline-block;
    }

    .action-links li {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 8px;
    }

    .action-links li:last-of-type {
        margin-bottom: 0;
    }

    .filters-list .bordered-filters.add.btn-container .btn-create br {
        display: block;
    }

    .filters-list .country .country__item {
        display: none;
    }

    .filters-list .country .country__img {
        margin-right: 5px;
    }

    .bordered-limits.add {
        font-weight: 600;
    }

    .clone-table-label .list,
    .table-label .list {
        padding-left: 0;
        margin: 0;
        list-style: none;
        display: flex;
        align-items: center;
        position: relative;
    }

    .clone-table-label .list li,
    .table-label .list li {
        font-size: 14px;
        color: #777777;
        padding-bottom: 10px;
    }

    .table-label {
        display: block;
        border-bottom: 1px solid #D9E1E8;
    }

    .gateway-index .list-gateway-item.disable .list-gateway-item__header {
        background-color: transparent;
    }

    .filters-list .bordered-filters.add.btn-container .btn-create {
        text-align: center;
    }

    .filters-list .bordered-filters.add.btn-container .btn-create span {
        font-size: 13px;
        transition: all .3s ease;
    }

    .filters-list .bordered-filters.add.btn-container {
        background: #ffffff;
        border: 1px solid #D9E1E8;
        color: #CACACA;
        margin-left: 0;
        display: flex;
        max-width: inherit;
        min-width: 47px;
        transition: all .3s ease;
    }

    .filters-list .bordered-filters.add.btn-container:hover {
        border-color: #0ca1d7;
    }

    .filters-list .bordered-filters.add.btn-container:hover .btn-create span {
        color: #0ca1d7;
    }

    .gateway-content-filters .filters-list .currency_profile {
        display: flex;
        align-items: baseline;
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .gateway-content-filters .filters-list .country {
        margin-bottom: 5px;
        display: flex;
    }

    .gateway-content-buttons__title,
    .isActive__title {
        font-size: 12px;
        font-weight: 400;
        color: #777777;
        margin-right: 5px;
    }

    .gateway-content-buttons__item {
        margin-bottom: 4px;
    }

    .gateway-content-buttons__item:last-of-type {
        margin-bottom: 0;
    }

    .hash-modal-btn {
        color: #0CA1D7;
        font-size: 12px;
        font-weight: 600;
        text-decoration: underline;
    }

    .gateway-index .list-gateway-item__val {
        font-weight: 600;
        position: relative;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
    }
    .list-gateway-item__version{
        font-size: 12px;
    }
    .open-list {
        padding-right: 15px;
        cursor: pointer;
    }

    .gateway-index .list-gateway-item__title {
        display: flex;
        font-size: 14px;
        font-weight: 600;
        width: 45%;
        padding: 0 5px 0 15px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        word-break: break-word;
    }

    .gateway-index .list-gateway-item__subtitle {
        width: 55%;
    }

    .list-gateway-item__title.full {
        width: 100%;
    }

    .gateway-index .list-gateway-item__name {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        padding-right: 10px;
        cursor: pointer;
    }

    .gateway-index .list-gateway-item__name:after,
    .open-list:after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 2px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 50%;
    }

    .gateway-index .list-gateway > div[data-key] {
        width: 100%;
        margin-bottom: 0;
        padding: 8px 0;
    }

    .gateway-index .list-gateway > div[data-key]:nth-child(odd) {
        background: #EDF3F9;
    }

    .gateway-index .list-gateway-item {
        box-shadow: none;
        background: transparent;
        display: flex;
        align-items: center;
    }

    .gateway-index .list-gateway-item__header {
        background-color: transparent;
        width: 50%;
        padding: 0;
    }

    .gateway-index .gateway-content {
        display: flex;
        align-items: center;
        width: 50%;
        padding: 0;
    }

    .payment-info,
    .gateway-index .list-gateway-item__processor {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .gateway-index .list-gateway-item__processor {
        padding-left: 0;
        width: calc(100% - 62px);
    }

    .gateway-index .list-gateway-item__info {
        width: 100%;
        align-items: center;
    }

    .payment-info__item {
        width: 33%;
        text-align: center;
        padding: 0 5px;
        position: relative;
    }
    .short-grid .payment-info__item{
        width: 50%;
    }
    .buttons-wrap {
        width: 30%;
        padding: 0 5px;
        text-align: center;
    }

    .gateway-content-buttons {
        margin-bottom: 0;
        justify-content: flex-end;
        flex-direction: column;
        align-items: flex-end;
    }

    .gateway-index .list-gateway-item__isActive {
        width: 20%;
    }

    .gateway-hash {
        width: 16%;
        text-align: center;
        padding: 0 5px;
    }

    .gateway-content-limits {
        width: 22%;
        text-align: center;
        padding: 0 5px;
        margin-bottom: 0;
    }

    .gateway-index .limits_row .bordered-limits {
        float: none;
    }

    .gateway-content-limits .limits_row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .gateway-content-filters {
        width: 45%;
    }

    .gateway-content-priority {
        display: none;
    }

    .gateway-index .list-gateway-item__priority {
        width: 14%;
        padding: 0 5px 0 0;
        text-align: center;
        color: #333333;
        font-size: 16px;
    }

    .gateway-index .list-gateway-item__logo {
        min-width: 62px;
        width: 62px;
        height: 42px;
        padding: 0 10px;
    }

    li[data-label="logo"] {
        width: 62px;
        text-align: center;
    }

    li[data-label="title"] {
        width: calc((50% - 62px) * .45);
        padding-left: 15px;
        text-align: left;
    }

    li[data-label="processor"],
    li[data-label="pmt_method"],
    li[data-label="pmt_method_subtype"] {
        width: calc(((50% - 62px) * .55) / 3);
        text-align: center;
        padding: 0 2px;
    }
    .short-grid li[data-label="processor"],
    .short-grid li[data-label="pmt_method"],
    .short-grid li[data-label="pmt_method_subtype"] {
        width: calc(((50% - 62px) * .55) / 2);
        text-align: center;
        padding: 0 2px;
    }
    li[data-label="actions"] {
        width: calc(50% * .5);
        text-align: center;
    }

    li[data-label="limits"] {
        width: calc(50% * .33);
        padding-left: calc(50% * .1);
        text-align: center;
    }

    li[data-label="filters"] {
        width: calc(50% * .22);
        text-align: center;
    }

    .gateway-index .list-gateway-item__label {
        display: none;
    }

    .filters-list .bordered-filters {
        width: auto;
        border: 1px solid #D9E1E8;
        padding: 5px;
        background: #ffffff;
        flex-direction: column;
        min-width: auto;
        margin-right: 10px;
        margin-bottom: 0;
        transition: all .3s ease;
    }

    .filters-list .bordered-filters:hover {
        border-color: #0CA1D7;
    }

    .filters-list .bordered-filters:last-of-type {
        margin-right: 0;
    }

    .filters-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        align-items: inherit;
    }

    .gateway-content__title {
        display: none;
    }

    .gateway-index .limits_row {
        min-width: inherit;
        max-width: 136px;
    }
}

.ml-10 {
    margin-left: 10px;
}

.white-btn {
    border: 1px solid #1A577A;
    border-radius: 5px;
    background-color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1A577A;
    display: inline-block;
    width: auto;
    max-width: 100%;
    transition: all .3s ease;
    padding: 0 50px;
}

.white-btn:hover {
    background-color: #1A577A;
    color: #ffffff;
}

.green-btn {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #00AD43;
    border-radius: 5px;
    text-align: center;
    color: white;
    min-width: 170px;
    max-width: 100%;
    padding: 7px 5px;
    border: 1px solid #00AD43;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all .3s ease;
}

.green-btn:hover {
    background-color: #ffffff;
    color: #00AD43;
}

.country-name {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-right: 5px;
    border: 1px solid #777777;
    min-width: 40px;
    text-align: center;
    padding: 2px 2px;
    border-radius: 50%;
}

.field-label {
    color: #777;
    font-size: 12px;
    margin-left: 0;
    margin-bottom: 0;
}

body #info-box #info-box-content {
    color: #31708e;
    padding-right: 80px;
    word-break: break-word;
}

body #info-box {
    background-color: #d9edf7;
}

#info-box.active {
    left: 300px;
    width: calc(100% - 300px);
}

#info-box {
    z-index: 10500 !important;
}

.alert-danger {
    margin-top: 20px;
}

label {
    font-size: 12px;
    font-weight: 400;
    margin-left: 5px;
    margin-bottom: 2px;
}
label[for=brand-expiration_date],
form[name=transaction-manual-update-form] label {
    white-space: nowrap;
}

.has-success .control-label.active,
label.active {
    color: #0CA1D7;
}

.has-success:focus .form-control {
    border-color: #66afe9;
}

.btn.btn-secondary {
    position: relative;
    color: #1a577a;
}

.btn.btn-secondary.cancel-verify {
    width: 100%;
}

.btn.btn-secondary::before, .btn.btn-secondary::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    border-radius: 5px;
}

.btn.btn-secondary::after {
    border-left: 2px solid #337ab7;
    border-right: 2px solid #337ab7;
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
}

.btn.btn-secondary::before {
    border-top: 2px solid #337ab7;
    border-bottom: 2px solid #337ab7;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
}

.btn.btn-secondary:hover::after, .btn.btn-secondary:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none;
}

.alert-info img {
    margin-right: 15px;
}

.customer-filter-wrap form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

#filter-customer-modal .modal-footer,
#transactions-filter-modal .modal-footer {
    width: 100%;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    cursor: not-allowed;
}
.file-input .form-control[readonly],
.table .form-control[readonly],
.account-time.form-control[readonly],
.daterange-wrap .form-control[readonly]{
    background-color: #fff;
    cursor: text;
}
form[name=transaction-manual-update-form] .btn {
    line-height: normal;
    height: auto;
    width: 110px;
    border: 0;
}

.file-preview {
    margin-bottom: 16px;
}

.primary-tab-group {
    padding-left: 15px;
    padding-right: 15px;
}

.request-for-payment-processor-view h1 {
    margin-bottom: 20px;
}

.modal-link.view-action:hover {
    text-decoration: none;
}

body .input-group.file-caption-main .input-group-btn:last-child > .btn,
.file-input .btn-primary.btn-file {
    background-color: transparent;
    border: 1px solid #1a577a;
    font-weight: 600;
    color: #1a577a;
    margin-top: 0;
    border-radius: 5px;
    cursor: pointer;
}

.btn.btn-primary.btn-file .glyphicon-folder-open {
    display: none;
}

.file-input .input-group-append .fileinput-remove span.hidden-xs {
    display: none;
}

.file-zoom-dialog .kv-zoom-title {
    color: #fff;
}

.kv-date-picker,
.kv-date-remove i {
    display: none;
}

.kv-date-remove {
    background-image: url(../img/black-close.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 3px;
    margin-top: -10px;
    cursor: pointer;
    background-color: white;
    z-index: 9;
    border: none;
}

.kv-date-remove[disabled=true]{
    background-color: transparent;
    pointer-events: none;
}

.kv-zoom-actions .btn {
    margin-bottom: 3px;
}

.print-area-brand .table td a {
    white-space: break-spaces;
}
/*.print-area-brand .table td a#admin-logs-button {*/
/*    white-space: normal;*/
/*}*/

.print-area-brand .table td.in-row .currency-in-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 5px;
    margin-top: 5px;
}

.currency-in-row .frontend-value {
    white-space: nowrap;
    margin-right: 5px;
}

.enabled-options-label {
    white-space: nowrap;
}

.form-group.field-account-email .hint-block {
    display: none;
}

.add-field.btn-success {
    margin-bottom: 2px;
}

.table-container.additional_fields {
    margin-top: 5px;
}

.select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 21px;
    top: 45%;
    border-top: 5px solid #0CA1D7;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.server-update-block {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}

.form-group.field-server-ssl {
    margin-bottom: 0;
}

.login-wrapper {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
    max-width: 400px;
    padding: 20px 50px 50px;
    background-color: #ffffff;
}

.field-loginform-rememberme label {
    color: #1a577a;
    font-size: 14px;
    font-weight: 600;
    top: 0;
    cursor: pointer;
}

#login-form .btn-primary.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-button span {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.login-button span:before {
    content: '';
    position: absolute;
    left: -24px;
    width: 16px;
    height: 16px;
    background-image: url(../img/login-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
}

#forgot-cancel-btn {
    width: 100%;
}

.white-shadow-block {
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    padding: 15px;
    background-color: #fff;
    margin-bottom: 10px;
}

.white-shadow-block .panel {
    margin-bottom: 0;
}

.nav .nav-item.active {
    margin-bottom: 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, .12);
    z-index: 0;
}

.helios-processor-form .nav .nav-item.active {
    z-index: 1;
}

.account-tab-group.white-shadow-block,
.contact-tab-group.white-shadow-block,
.gateway-tab-group.white-shadow-block {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
    margin-top: -3px;
    margin-left: 1px;
}

.contact-tab-group.white-shadow-block {
    min-height: 500px;
}

.gateway-tab-group.white-shadow-block {
    margin-left: 0;
}

#platform-notes-row .form-group {
    width: 100%;
}

.mobile-btns {
    display: none;
}

.gateway-form .page-title {
    justify-content: flex-start;
    margin-right: 20px;
}

.instruction-panel-heading .panel-title a {
    font-size: 16px;
    font-weight: 600;
}

.instruction-subtitle {
    font-weight: 600;
    font-size: 15px;
}

table td[data="Customer"] {
    max-width: 100px;
}

table td .desktop-customer-name-wrapp {
    position: relative;
    display: inline-block;
}

table td .desktop-customer-name {
    white-space: nowrap;
}

.cell-tooltip{
    opacity: 0;
    visibility: hidden;
    transition: all .55s ease;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1;
    background: #e9e2e1;
    font-size: 11px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    white-space: nowrap;
}
#transactions-table tr td.word-break:nth-child(1) .cell-tooltip,
#transactions-table tr td.card-numbers:nth-child(1) .dropdown-menu-right,
#transactions-table tr td.word-break:nth-child(2) .cell-tooltip,
#transactions-table tr td.card-numbers:nth-child(2) .dropdown-menu-right,
#transactions-table tr td.word-break:nth-child(3) .cell-tooltip,
#transactions-table tr td.card-numbers:nth-child(3) .dropdown-menu-right{
    left: 0;
    right: auto;
}
#transactions-filter-modal .daterangepicker{
    width: 374px;
}
#transactions-filter-modal .daterangepicker .ranges ul,
#transactions-filter-modal .daterangepicker .ranges{
    width: 100%;
}
#transactions-filter-modal .daterangepicker.show-calendar .ranges ul,
#transactions-filter-modal .daterangepicker.show-calendar .ranges{
    width: auto;
}
#transactions-filter-modal .daterangepicker.show-calendar{
    min-width: 645px;
    width: 100%;
}

.desktop-customer-name-wrapp.long-name:hover .cell-tooltip{
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1340px) and (min-width: 992px) {
    .report_calendar .form-control.krajee-datepicker {
        font-size: 12px;
    }

    .table-label .list li {
        position: relative;
    }

    .gateway-index .list-gateway-item__header {
        width: 50%;
    }

    .gateway-index .gateway-content {
        width: 50%;
    }

    .gateway-content-filters {
        width: 28%;
    }

    .buttons-wrap {
        width: 30%;
    }

    .gateway-index .list-gateway-item__isActive {
        width: 24%;
        justify-content: center;
    }

    .gateway-hash {
        width: 18%;
    }

    .gateway-content-limits {
        width: 14%;
    }

    .clone-table-label .list li,
    .table-label .list li {
        font-size: 12px;
    }

    li[data-label="actions"] {
        width: calc(50% * .54);
        text-align: center;
    }

    li[data-label="limits"] {
        width: calc(50% * .34);
        padding-left: calc(50% * .18);
    }

    li[data-label="filters"] {
        width: calc(50% * .14);
    }
}

@media (max-width: 1340px) {
    .transaction-search-group{
        flex-direction: column;
    }
    .transaction-select-search{
        width: 100%;
    }
    .fee-form .fee-row .fee-item {
        width: auto;
        flex: 1 1 0;
    }
    .message-substitution-for .fee-row .fee-item {
        width: auto;
        flex: 1 1 0;
    }
    .transaction-index .action-btn a.btn:not(.btn-xs){
        font-size: 12px;
    }
    .rule-engine-row {
        flex-wrap: wrap;
    }

    .server-time, .server-branch, .server-branch-unlaunched-migrations {
        width: auto;
    }

    .gateway-header {
        flex-wrap: wrap;
    }

    .gateway-header-filters {
        padding-left: 0;
    }

    .time-area > label {
        width: auto;
    }

    .time-area > label > span {
        min-width: 50px;
    }

    .gateway-content-filters {
        flex-wrap: wrap;
    }

    .filters-list {
        width: auto;
    }
}

@media (max-width: 1240px) {
    .template-modal-fixed{
        top: 122px;
    }
    .btn-filters-wrap{
        margin: 0;
        justify-content: end;
    }
    .fee-form .fee-row .fee-item {
        width: 50%;
        flex: auto;
        max-width: 50%;
    }
    .message-substitution-for .fee-row .fee-item {
        width: 50%;
        flex: auto;
        max-width: 50%;
    }
    .diagram-sub-menu{
        flex-direction: column;
    }
    .diagram-btn{
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    .toggle_switcher {
        position: relative;
        right: auto;
        align-self: flex-end;
    }
    .transaction-search-group{
        flex-direction: row;
    }
    #tid_form >div.transaction-search-group{
        padding-right: 30px;
    }
    .transaction-page .page-title{
        justify-content: flex-start;
    }
    .transaction-search-group div{
        width: 100%;
    }
    #transactions-filter-modal .daterangepicker.show-calendar {
        min-width: 546px;
        width: 100%;
    }
    .daterangepicker .calendar-table td, .daterangepicker .calendar-table th   {
        min-width: 23px;
        width: 23px;
    }
    .gateway-header-info {
        margin-bottom: 20px;
        width: 100%;
    }

    .gateway-header {
        flex-wrap: wrap;
    }
    .transaction-index .sub-title {
        flex-direction: column;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .transaction-index .action-btn {
        justify-content: flex-start;
        width: 100%;
    }
    .page-title {
        margin-bottom: 20px;
        width: 100%;
    }
    .sub-title > .page-title {
        margin-bottom: 0;
    }
    .gateway-form .page-title{
        margin-bottom: 10px;
    }
}

@media (max-width: 1024px) {
    .customer-limit-index .action-btn{
        justify-content: center;
    }
    .remove-filter-item{
        width: 40%;
    }
    .gateway-form .sub-title {
        display: block;
    }

    .frontend-rules-view-head .small-col {
        max-width: 190px;
    }

    .btn:not(.btn-xs), a.btn:not(.btn-xs) {
        font-size: 15px;
    }

    .fee-form .fee-row .fee-item {
        flex: auto;
        width: 100%;
        max-width: 100%;
    }
    #transactions-filter-modal .daterangepicker.show-calendar {
        min-width: 100%;
    }
    #transactions-filter-modal .daterangepicker .ranges ul,
    .customer-filter-wrap form div {
        width: 100%;
    }
    .filters-modal .modal-body{
        padding: 15px 0px 15px 35px;
    }
    .filters-modal .modal-footer > div{
        width: auto;
    }
    .save-template{
        padding-left: 10px;
    }
    .filters-modal .modal-dialog{
        margin: 0;
    }
}
@media (max-width: 992px) and (orientation : landscape) {
    .login-page{
        height: 100%;
        padding-bottom: 20px;
    }

}
@media (max-width: 992px) {
    .additional-item{
        flex-wrap: wrap;
    }
    .additional-item__block{
        flex: auto;
        width: 50%;
        margin-bottom: 10px;
    }
    #limits-tab span[tooltip]{
        margin-bottom: 10px;
    }
    #processing_currency-modal .modal-header{
        padding-right: 30px;
    }
    .field-globalbridgelimits-is_crm_base_currency{
        height: auto!important;
        padding-top: 0!important;
    }
    .flex-limit-row{
        display: block;
    }
    .brand-settings .brand-settings-row {
        width: 100%;
        margin-bottom: 10px;
    }
    .rules-body .brand-settings .pair {
        width: 100%;
    }
    .wrap {
        padding-bottom: 20px;
    }
    .gateway-form .page-title{
        margin-bottom: 10px;
    }
    .gateway-index .full-title{
        align-items: flex-start;
    }
    .list-gateway-item__system_name {
        word-break: break-word;
    }
    #customer-virtual-terminal .btn-modal-group{
        display: block;
    }
    .btn-modal-group .btn {
        margin-bottom: 10px;
    }
    .history-wrap {
        width: 45%;
    }

    .history-block ul li a {
        word-break: break-all;
    }

    .print-area-brand .table td.in-row .currency-in-row {
        flex-wrap: wrap;
    }

    .sub-title {
        flex-direction: column;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .settings_body {
        display: inline-flex;
        width: 100%;
        flex-direction: column;
    }

    .action-btn {
        justify-content: flex-start;
    }

    #gateway-limits-form label {
        white-space: nowrap;
    }

    body h1 {
        white-space: normal;
    }

    body .alert-info,
    .help-block,
    body .alert-warning,
    .wizard-info-block-text {
        font-size: 12px;
        margin-top: 0;
    }

    .account-permissions-form .table a,
    .account-permissions-form .badge {
        font-size: 10px;
        display: inline;
    }

    .gateway-index .clone-table-label {
        display: none !important;
    }

    .gateway-header-filters {
        flex-direction: column;
        width: 100%;
    }

    .gateway-header-filters .block-search {
        margin-bottom: 10px;
    }

    .helios-processor-form #processing-tab .form-group {
        height: auto;
    }

    .helios-processor-form #processing-tab .form-group .control-label {
        white-space: normal;
    }

    #processing_currency-modal .form-group.text-center {
        display: flex;
        justify-content: center;
    }

    .flex-wrap > div {
        flex-basis: 100%;
    }

    .server-time , .server-branch, .server-branch-unlaunched-migrations{
        display: none;
    }

    .gateway-content-limits {
        justify-content: flex-start;
    }
    #rule-engine-filter-form {
        margin-top: 10px;
        width: 100%;
    }

    .header-logo {
        width: auto;
        display: inline-flex;
        justify-self: flex-start;
    }

    .server-time , .server-branch, .server-branch-unlaunched-migrations{
        width: auto;
    }

    .gateway-content-buttons {
        margin-bottom: 0;
    }

    .gateway-content-buttons__item {
        margin-bottom: 8px;
        width: auto;
    }

    .gateway-content-buttons__item .switch-field {
        order: 0;
    }

    .gateway-content-buttons__title {
        order: 1;
        margin-left: 10px;
    }

    .gateway-content-buttons__item .gateway-content__setting {
        order: 2;
    }

    .buttons-wrap {
        display: flex;
    }

    .buttons-wrap .gateway-content__title {
        display: block;
    }

    .hash-modal-btn {
        font-size: 16px;
        font-weight: 600;
        border: 1px solid #0CA1D7;
        background: #ffffff;
        color: #0CA1D7;
        text-transform: uppercase;
        border-radius: 4px;
        display: inline-block;
        padding: 10px 10px;
        text-align: center;
        transition: all .3s ease;
    }

    .hash-modal-btn:hover {
        text-decoration: none;
        background: #0CA1D7;
        color: #ffffff;
    }

    .gateway-hash .btn-blue {
        display: block;
    }

    .gateway-hash {
        padding: 10px 30px 0 30px;
        order: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }

    .gateway-hash a {
        margin-bottom: 10px;
    }

    .gateway-hash a:last-of-type {
        margin-bottom: 0;
    }

    .gateway-content {
        display: flex;
        flex-wrap: wrap;
    }

    .limit-fields .form-group {
        width: 100%;
    }

    .bordered-filters .days {
        font-weight: 400;
    }

    .bordered-filters .stage {
        padding: 0 0 0 4px;
    }

    .filters-list .bordered-filters {
        flex-wrap: wrap;
    }

    .gateway-content-filters {
        flex-wrap: nowrap;
    }

    .disabled-wrap {
        position: absolute;
        right: 15px;
        top: 10px;
        display: flex;
    }

    .list-gateway-item__name {
        font-size: 18px;
        word-break: break-all;
        position: relative;
    }

    .list-gateway-item__subtitle,
    .list-gateway-item__system_name {
        font-size: 14px;
    }

    .list-gateway-item__info {
        width: 100%;
        padding-top: 25px;
    }

    .gateway-header__title {
        font-size: 30px;
    }

    .list-gateway-item__priority {
        display: none;
    }

    .list-gateway > div[data-key] {
        width: calc(50% - 10px);
    }

    .modal .modal-body {
        padding: 15px;
    }

    .set-password-page {
        margin-top: 50px;
    }
}

@media (min-width: 768px) {
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav > li > a > .title_main {
        opacity: 1;
        padding: 0 4px;
    }

    .navbar-fixed-left.navbar-inverse.navbar:hover .navbar-nav > li > a > .title {
        opacity: 1;
    }

    .navbar-fixed-left .dropdown .caret {
        animation: slide-in-left .2s linear forwards;
        right: -100%;
    }

    .navbar-fixed-left.active .dropdown .caret {
        display: inline-block;
    }
}
.brand-setup-radio{
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .page-title {
        margin-right: 0;
    }

    .menu-icons {
        left: 0;
    }

    .menu-icon {
        margin-right: 25px;
    }

    .navbar-fixed-left .dropdown .caret {
        display: inline-block;
    }

    .navbar-fixed-left.navbar .navbar-nav li {
        padding-right: 20px;
    }

    .list-gateway > div[data-key]:last-of-type {
        border-bottom: none;
    }

    .rules-head h4 {
        font-size: 14px;
    }
    body #info-box #info-box-content {
        padding-right: 15px;
    }
    .brand-index .list-gateway-item{
        min-height: auto;
    }
    #transactions-filter-modal,
    #transactions-template-modal{
        top: 0;
    }
    .template-modal-fixed .template-modal-wrap:after, .template-modal-fixed .template-modal-wrap:before{
        display: none;
    }
    .filters-modal-edit-title .template-form{
        right: -55px;
    }
    .filters-modal-edit-title .template-form:before,
    .filters-modal-edit-title .template-form:after {
        right: 50px;
    }
    .filters-modal-edit-title #template-form-title{
        right: -116px;
    }
    .filters-modal-edit-title #template-form-title:after,
    .filters-modal-edit-title #template-form-title:before {
        right: 158px;
    }
    .filters-modal .modal-header.edit:after{
        left: 20px;
        width: calc(100% - 40px);
    }
    .remove-icon.template-item-icon .template-form{
        max-width: 245px;
        right: -60px;
    }
    .remove-icon.template-item-icon .template-form .template-form__text{
        font-size: 12px;
        margin-right: 6px;
    }
    .remove-icon.template-item-icon .template-form:before,
    .remove-icon.template-item-icon .template-form:after{
        right: 60px;
    }
    .template-form-btn .template-form-btn_item:first-of-type{
        margin-right: 5px;
    }
    .template-item-icon.copy-icon .template-form{
        right: -120px;
    }
    .template-item-icon.copy-icon .template-form:before,
    .template-item-icon.copy-icon .template-form:after{
        right: 120px;
    }
    .template-item-icon.edit-icon .template-form{
        right: -58px;
    }
    .template-item-icon.edit-icon .template-form:before,
    .template-item-icon.edit-icon .template-form:after{
        right: 58px;
    }
    .save-template-tooltip .tooltip-template{
        right: 50%;
        transform: translateX(50%);
        bottom: 100%;
        font-size: 12px;
    }
    .save-template-tooltip .tooltip-template:before,
    .save-template-tooltip .tooltip-template:after{
        right: 82px;
    }
    .save-template-block .template-form{
        max-width: 100%;
        right: 50%;
        transform: translateX(50%);
        bottom: 100%;
    }
    .save-template-block .template-form:before,
    .save-template-block .template-form:after{
        right: 137px;
    }
    .template-modal-wrap,
    .template-modal-fixed{
        width: 100%;
    }
    .template-modal-wrap{
        padding-left: 20px;
    }
    .template-modal-content .mCustomScrollBox,
    .template-modal-header,
    .transaction-page #transactions-filter-modal form .mCustomScrollBox{
        padding-right: 20px;
    }
    #show-transactions-filter-modal{
        width: 100%;
    }
    .template-modal-fixed.active{
        right: 50%;
        transform: translateX(50%);
    }
    .manage_payment_details .gateway-btn-submits .bordered-btn{
        margin-bottom: 20px;
    }
    label[for="globalbridgefilter-max_withdrawal_amount"]{
        white-space: normal;
    }
    .fee-form .fee-row{
        margin-bottom: 0;
    }
    .fee-item.flex-item-center{
        height: auto;
    }
    .toggle_switcher{
        align-self: flex-start;
        align-items: flex-start;
        flex-direction: column;
        padding: 0 15px;
    }
    .btn-color-mode-switch{
        margin: 10px 0 20px;
    }
    .transaction-page #tid_form{
        width: 100%;
    }
    #tid_form >div.transaction-search-group{
        padding-right:0;
    }
    .brand-setup-radio {
        height: auto!important;
        margin-bottom: 5px;
    }
    .brand-setup-wizard .mobile-version{
        display: block;
    }
    .brand-setup-wizard .desktop-version{
        display: none;
    }
    .flex-limit-row{
        display: flex;
    }
    .fee-form .fee-row .fee-item{
        padding: 0;
    }
    .gateway-limits-create .checkbox-block{
        margin-top: 20px;
    }
    .gateways-logs-block .title{
        font-size: 12px;
    }
    .gateway-index .full-title{
        width: 100%;
    }
    .scroll-bar-cascade,
    .scroll-bar-customer{
        display: none;
    }
    #transaction-view .tab-content{
        margin-bottom: 15px;
    }
    #transaction-view .tab-pane .slideDown table.table{
        word-break: inherit;
    }
    #transaction-view .tab-pane#transaction table td,
    #transaction-view .tab-pane#customer table td{
        word-break: break-all;
    }
    .add-tag{
        justify-content: flex-start;
    }
    .hover-effect__center:before{
        display: none;
    }
    #transactions-filter-modal .daterangepicker.show-calendar{
        width: 100%;
        min-width: 100%;
    }
    table.detail-view tr th{
        width: 35%;
    }
    table td .desktop-customer-name-wrapp.long-name:hover .cell-tooltip{
        width: 100%;
        overflow: auto;
    }
    table td[data="Customer"] {
        max-width: inherit;
    }

    .grid-view .summary {
        margin-bottom: 10px;
    }

    .instruction-panel-heading .panel-title a {
        font-size: 14px;
    }

    .secondary-data,
    .instruction-panel .panel-body p {
        font-size: 12px;
    }

    .instruction-panel .panel-body p.instruction-subtitle {
        font-size: 13px;
    }

    body .field-globalbridgefilter-currency .select2-container--krajee .select2-selection--single .select2-selection__arrow {
        right: 20px;
    }

    body .field-globalbridgefilter-currency .select2-container--krajee .select2-selection--single .select2-selection__clear {
        right: 6px;
    }

    .list-gateway-item__processor {
        padding-left: 0;
    }

    .modal-footer .btn:first-child {
        margin-right: 0;
    }

    .modal-content .modal-header .close {
        width: 16px;
        height: 16px;
    }

    .customer-filter-wrap .modal-footer .btn:first-child {
        margin-right: 0;
    }

    .modal-header {
        font-size: 14px;
    }

    .transaction-index #transactions-table tr td .transaction_status_btns .badge {
        width: auto;
        padding: 3px 7px;
        text-align: left;
    }

    .transaction-index #transactions-table tr td .transaction_status_btns .modal-view {
        text-align: left;
    }
    #transaction-payout #refund table,
    #transaction-payout #partial-processing table{
        white-space: nowrap;
    }

    .multiple-attempts-container .item {
        width: 100%;
    }

    .frontend-rules-view-head .small-col {
        max-width: inherit;
    }

    .before-rules-block-title span,
    .before-rules-block-title h2,
    .custom-area .custom-header {
        font-size: 16px;
    }

    .brand-info.flex-row {
        display: block;
    }

    .table-wrapper {
        padding-top: 5px;
    }
    .gateway-limits-index .table-wrapper,
    .runtime-logs-index .table-wrapper{
        padding-top: 25px;
    }
    #tag-categories-grid-container.table-wrapper{
        padding-top: 20px;
        border: none;
        overflow: visible;
    }
    .grid-view.table-wrapper {
        margin-top: 0;
    }

    .account-permissions-form .table a,
    .account-permissions-form .badge {
        font-size: 7px;
    }

    .table.role-permissions > thead > tr > th,
    .table.role-permissions > tbody > tr > th,
    .table.role-permissions > tfoot > tr > th,
    .table.role-permissions > thead > tr > td,
    .table.role-permissions > tbody > tr > td,
    .table.role-permissions > tfoot > tr > td {
        padding: 5px 5px !important;
        font-size: 8px;
    }

    /*.scroll-bar {*/
    /*    opacity: 0;*/
    /*}*/

    table.detail-view tr td {
        word-break: break-word;
    }

    .modal-body .tab-pane .table > tbody > tr > th {
        width: 40%;
    }

    .cascade-nothing {
        font-size: 12px;
        padding: 0;
    }

    #release-notes-content p {
        flex-direction: column;
        align-items: flex-start;
    }
    #release-notes-content p .release-img-wrapper,
    .release-text{
        width: 100%;
        margin-right: 0;
    }

    body blockquote, .instruction-panel-heading {
        font-size: 14px;
    }

    .credentials-list__item {
        flex-basis: 100%;
    }

    .gateway-tab-group-menu {
        margin-top: 0;
        white-space: nowrap;
    }

    .list-gateway-item__logo {
        margin-right: 10px;
    }

    body .summary, .summary-info,
    .text-danger,
    .modal-body form .btn.btn-success {
        font-size: 12px;
    }

    .list-gateway-item__subtitle,
    .list-gateway-item__system_name,
    .btn-blue,
    .hash-modal-btn,
    #transaction-view .transaction-details-row b,
    #release-notes-content.loaded,
    i,
    .history-block tr td:first-of-type,
    .history-modified li > *, .history-created {
        font-size: 12px;
    }

    .btn-filter span,
    .gateway-index .gateway-header .gateway-header-info .create-gateways {
        font-size: 12px;
    }

    h4 {
        font-size: 14px;
    }
    .select2-container--krajee .select2-selection--single .select2-selection__placeholder,
    .select2-container--krajee .select2-results__option,
    body .select2-container--krajee .select2-selection--single,
    .form-control,
    .select2-container--krajee .select2-selection--multiple .select2-search--inline .select2-search__field,
    .rules-head,
    .rules-body .top-text,
    .time-area > label,
    .deposit-area > label,
    .rules-footer > label > input + span,
    .btn-rules {
        font-size: 12px;
    }

    .rules-body .top-text {
        margin-bottom: 5px;
    }

    .label {
        font-size: 12px !important;
    }

    #brandsetupwizard-company_action {
        flex-direction: column;
    }

    .helios-processor-form .nav > li > a,
    .account-settings-view .nav > li > a {
        padding: 8px;
        font-size: 12px;
        text-align: center;
    }
    .helios-processor-form textarea{
        width: 100%;
    }
    .rules-body {
        min-height: auto;
    }

    #configuration .rules-body {
        padding: 4px;
    }

    #configuration .rules-body .brand-add-field {
        display: flex;
    }
    .brand-update #configuration .rules-body .brand-add-field {
        display: block;
    }
    #configuration .rules-body .brand-add-field b {
        font-size: 12px;
        word-break: break-all;
        padding-left: 5px;
    }

    #processing .col-md-6:first-child .rules-block .rules-body {
        flex-direction: column;
    }

    #processing .rules-block .rules-body .pair {
        display: flex;
        align-items: center;
    }

    .breadcrumb > li > a {
        font-size: 12px;
    }

    .helios-processor-form #processing-tab .text-center {
        padding-left: 0;
    }

    .helios-processor-form #processing-tab .form-group {
        justify-content: flex-start;
        padding-left: 0;
    }

    .print-area-brand .table td a {
        white-space: normal;
    }

    .frontend-rules-view-head .desktop-update-btns {
        display: none;
    }

    .data-rows-item {
        align-items: inherit;
        flex-direction: column;
        margin: 15px -15px;
    }

    .data-rows-item .value {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .modal-data-html-editor .data-rows-item{
        position: relative;
        padding: 10px 0;
        border-bottom: 1px solid #eeeeee;
    }
    .modal-data-html-editor .data-rows-item > div{
        margin-bottom: 20px;
    }
    .btn.btn-primary.btn-file .glyphicon-folder-open {
        display: inline-block;
    }

    .ips-list span {
        flex: 1 1;
        flex-basis: auto;
    }

    .CodeMirror {
        height: 200px !important;
    }

    #brand-notes {
        min-height: 200px !important;
    }

    body .wrap > .container,
    body .wrap > .container-fluid {
        height: 100%;
    }

    .white-shadow-block table a {
        word-break: break-word;
    }

    .manage-roles .white-shadow-block table a {
        word-break: normal;
    }

    a.btn:not(.btn-xs).dropdown-toggle {
        display: flex;
        align-items: center;
    }

    .white-shadow-block.diagram-block {
        margin-bottom: 0;
        margin-top: 15px;
    }

    .transaction-index .progress-title {
        font-size: 12px;
        width: 55px;
    }

    .transaction-index .progress-line .value {
        font-size: 12px;
    }

    .transaction-index .row.sub-title {
        margin-right: 0;
        margin-left: 0;
    }

    .transaction-index .col-md-12.page-title {
        padding-left: 0;
        padding-right: 0;
    }

    .transaction-index .table-wrapper .ps-scrollbar-x-rail,
    .transaction-index .clone-table-wrapper {
        display: none !important;
    }

    .processing-list.filter-gateway {
        flex-direction: column;
    }

    .processing-list.filter-gateway .processing-list__item {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .navbar-fixed-left.navbar.active {
        width: 100%;
    }

    .navbar-fixed-left.navbar.active .navbar-nav li a span[class*='icon-'] {
        left: 0;
    }

    .navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li a > .title {
        bottom: 0;
        transform: translate(0, 0);
        left: 0;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a > .title {
        font-size: 18px;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a > .title_sub{
        font-size: 14px;
    }
    .navbar-fixed-left.navbar {
        margin-top: 50px;
        padding-bottom: 50px;
        padding-top: 0;
    }

    .flex-limit-row > div {
        flex: auto;
    }

    .nav > li > a {
        padding: 10px;
    }
    .nav.tabs-transaction > li > a {
        padding: 8px;
    }
    .txt-status-manage-tabs .tab-pane .table > tbody > tr > td{
        word-break: inherit;
    }
    .modal-body .txt-status-manage-tabs .tab-pane .table > tbody > tr > td{
        word-break: break-word;
    }
    .helios-processor-form .tab-group-menu {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .helios-processor-form .additional-field {
        padding-top: 5px;
    }

    .helios-processor-form .table-body .table-row {
        flex-direction: column;
        margin: 40px 0 30px;
    }

    .helios-processor-form .table-body .table-row .input-block {
        flex-direction: column;
    }

    .helios-processor-form .table-body .table-row .input-block.check {
        width: 100% !important;
        justify-content: flex-start;
        margin-bottom: 10px;
        margin-top: 5px;
        flex-direction: row;
    }

    .primary-tab-group .table-container {
        margin-top: 15px;
    }

    .helios-processor-form .table-body .table-row .remove-item {
        position: absolute;
        top: -44px;
        left: 0;
    }
    .helios-processor-form #processing-tab .remove-item{
        margin-top: 5px;
    }
    .translation-form .sub-title {
        display: none;
    }

    .gateway-form .page-title {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        margin-bottom: 10px;
    }

    .gateway-form .page-title h1 {
        margin-bottom: 10px;
    }

    .server-update-block {
        display: block;
    }

    .platform_pref__name {
        text-align: left;
        font-size: 12px;
    }

    .preferences-group {
        display: block;
    }

    .nav-tabs.account-tab-group-menu {
        display: flex;
    }

    .nav-tabs.account-tab-group-menu > li > a {
        font-size: 11px;
    }

    .platform-view .dropdown.pull-right {
        margin: 10px 0;
    }

    body .platform-form h1,
    body .frontend-update h1 {
        display: flex;
        white-space: normal;
        word-break: break-all;
        align-items: center;
    }
    .company-view h1,
    .sub-title {
        width: 100%;
        margin-bottom: 0;
    }

    .transaction-index .sub-title {
        margin-bottom: 0;
    }

    .nav-tabs {
        margin-top: 20px;
    }

    .account-settings-view .nav-tabs {
        display: flex;
    }

    .platform-form {
        overflow: hidden;
    }

    .frontend-view .dropdown.pull-right {
        margin: 10px 0;
    }

    .gateway-form .desktop-update-btns,
    .desktop-update-btns {
        display: none;
    }

    .mobile-btns {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .mobile-btns.center-btn {
        justify-content: center;
    }

    .mobile-btns .btn:first-child {
        margin-right: 20px;
    }
    .frontend-view .mobile-btns .btn:first-child{
        margin-right: 0;
    }
    .mobile-btns .btn.single-btn:first-child,
    .brand-form .mobile-btns .btn:first-child {
        margin-right: 0;
        width: 100%;
    }
    .mobile-btns .dropdown .btn:first-child{
        margin-right: 0;
    }
    .select-in-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .select-in-row .form-group {
        width: 100%;
    }

    .select-in-row .form-group:first-child {
        margin-right: 20px;
    }

    .login-wrapper {
        max-width: 100%;
        padding: 20px 20px 40px;
        width: 100%;
    }

    .account-info {
        min-width: auto;
    }
    .filters-modal{
        width: 100%;
    }
    .filters-modal .modal-dialog:before, .filters-modal .modal-dialog:after{
        display: none;
    }
    .close-filter{
        display: block;
        right: 10px;
        position: absolute;
        top: 10px;
    }
    .customer-filter-wrap form div {
        width: 100%;
    }
    .filters-modal .modal-header{
        padding: 10px 20px 0;
        flex-wrap: wrap;
    }
    .filters-modal .modal-body{
        padding: 15px;
    }
    .template-field, .select-template,
    .filters-modal .modal-footer > div{
        width: 100%;
    }
    .filters-modal .modal-footer{
        flex-wrap: wrap;
    }
    .template-field, .select-template{
        padding-left: 0;
    }
    .filters-modal .modal-footer{
        padding: 15px 0 0 0;
    }
    .add-filter{
        padding-left: 0;
        min-height: inherit;
        margin: 10px 0;
    }
    .filters-modal .modal-footer .btn-wrap{
        text-align: center;
    }
    .filters-modal .save-template{
        justify-content: center;
        padding-top: 15px;
    }
    .filters-modal__title span{
        width: 100%;
        margin-right: 0;
    }
    .edit .filters-modal__title span{
        width: auto;
    }
    .filters-modal .modal-header.edit{
        padding-right: 40px;
    }
    .additional-item {
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .additional-item__block {
        flex: auto;
        width: 50%;
        margin-bottom: 10px;
    }
    .table .glyphicon-eye-open,
    .table .glyphicon-pencil,
    .table .glyphicon-trash {
        font-size: 14px;
    }
    .helios-processor-index .action-btn .btn.btn-success {
        white-space: normal;
        display: flex;
        align-items: center;
        width: 135px;
        font-size: 11px;
        padding: 10px 20px;
        margin-left: 0;
        margin-right: 15px;
    }
    .helios-processor-index .action-btn .btn.btn-primary.btn.download-csv {
        display: flex;
        align-items: center;
    }
    .rules-container-global {
        text-align: center;
    }
    .rules-container-subcontainers {
        text-align: left;
    }
    .rule-engine .rules-container-info {
        font-size: 12px;
    }
    .rule-engine .add-rule {
        font-size: 14px;
    }
    .rule-engine .navbar {
        margin: auto;
    }
    .rule-engine .navbar li {
        float: none;
    }
    #rule-engine-filter-form {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    #rule-engine-filter-form > div:first-of-type {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .rules-configuration {
        flex-wrap: wrap;
    }
    .rules-configuration div {
        width: 100%;
        margin-bottom: 15px;
    }
    .header__icon {
        font-size: 20px;
    }
    .gateway-form-info__title {
        white-space: break-spaces;
        word-break: break-all;
        padding-bottom: 10px;
    }
    .website-body .panel-info .table,
    .website-body .panel-info .table tr {
        display: block;
        width: 100%;
    }
    .website-body .panel-info .table th {
        display: none;
    }
    .website-body .panel-info .table tbody {
        display: flex;
        flex-wrap: wrap;
    }
    .website-body .panel-info .table tbody td {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .website-body .panel-info .table tbody td.desktop-version{
        display: none;
    }
    .website-body .panel-info .table tbody td.mobile-version{
        justify-content: space-between;
        display: flex;
    }
    .website-body .panel-info .table tbody td.mobile-version a{
        width: 100%;
    }
    .website-body .panel-info .table tbody td.mobile-version a.remove-translation{
        margin-left: 20px;
    }
    .website-body .panel-info .table tbody td .table-mobile-label{
        font-weight: 600;
    }
    .action-btn > div:not(:last-of-type){
        margin-right: 0;
    }
    .maintenance .icon{
        margin-right: 0;
        font-size: 12px;
    }
    /*.gateway-drop-list {*/
    /*    top: 20px;*/
    /*}*/
    .brand-settings-row.chbx .pair:last-child {
        justify-content: flex-end;
    }
    .brand-settings-row.chbx .pair:first-child {
        white-space: nowrap;
    }
    .brand-settings-row.mr-50 {
        margin-right: 0 !important;
    }
    .gateway-tab-group.general-wrap {
        flex-direction: column;
    }
    .processing-item {
        flex-basis: 100%;
    }
    .general-item {
        width: 100%;
    }
    .gateway-form-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .gateway-form-info {
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        margin-right: 0;
        padding-right: 0;
        width: 100%;
    }
    .gateway-update .gateway-form-info {
        width: 100%;
    }
    .gateway-create .gateway-form-info .btn {
        width: 100%;
    }
    .gateway-create .gateway-btn-submits {
        width: 100%;
    }
    .gateway-btn-submits .btn {
        margin-right: 12px;
        min-width: inherit;
        width: auto;
    }
    .gateway-tab-group-menu li a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }
    .creds-item__label,
    .processing-item__title {
        font-size: 12px;
    }
    .creds-info tr td {
        font-size: 12px;
    }
    .processing-list__item.w-50 {
        flex-basis: 100%;
    }
    .gateway-form-info__title,
    body h1 {
        font-size: 20px;
    }
    #search-modal .modal-footer .btn:first-child {
        margin-right: 0;
    }
    .footer-wrap {
        padding-left: 15px;
    }
    .library-item-view .action-btn,
    .brand-index .action-btn {
        flex-direction: row;
    }
    .btn:not(.btn-xs), a.btn:not(.btn-xs) {
        font-size: 12px;
        padding: 10px 20px;

    }
    .action-btn .btn:not(.btn-xs),
    .action-btn a.btn:not(.btn-xs){
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-footer .btn{
        min-width: auto;
    }
    .payment-method-index a.btn:not(.btn-xs){
        padding: 6px 20px;
    }
    .environments-index .action-btn .btn-success{
        padding-top: 6px;
    }
    body .full-width {
        flex-direction: column;
        padding: 0 15px;
    }
    body .full-width .btn:nth-child(1) {
        margin-bottom: 10px;
    }
    .gateway-search #filter {
        width: 100%;
    }
    .contacts-form .form-group {
        width: 100%;
    }
    #rule-engine-filter-form .btn {
        margin-top: 10px;
    }
    .confirm-form h1,
    .sub-title h1,
    h2 {
        font-size: 20px;
    }
    h2 {
        margin-bottom: 20px !important;
    }
    body .summary {
        font-size: 12px;
    }
    .sub-title h1 {
        min-height: auto;
    }
    .sub-nav-wrap .account-bar {
        display: none;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li .dropdown-menu a {
        padding: 5px 5px 5px 40px;
    }
    .navbar-fixed-left.navbar .navbar-nav li a span[class*='icon-'] {
        left: 0;
        margin-right: 25px;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li .dropdown-menu li a > .title {
        font-size: 14px;
        bottom: inherit;
        opacity: 1;
        transform: translate(0, 0);
        color: #333333;
    }
    .navbar-fixed-left.navbar-inverse.navbar.active .navbar-nav li .dropdown-menu li a > .title{
        font-size: 14px;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li.active a {
        background-color: transparent !important;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a > .title {
        font-size: 18px;
        position: relative;
        left: 0;
        transform: translateX(0);
        bottom: inherit;
        white-space: normal;
        text-align: left;
        padding-right: 20px;
        overflow: visible;
    }
    .navbar-fixed-left.navbar .navbar-nav li a span[class*='icon-']{
        width: 24px;
        height: 25px;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a > .title_main{
        padding-right: 25px;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a > .title_sub{
        max-width: 100%;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav .dropdown-menu li.active .title {
        color: #2CABE2;
    }
    .header-logo {
        text-align: center;
        width: auto;
        padding-left: 40px;
    }
    .toggle_menu {
        display: block;
    }
    .wrap {
        padding-left: 0;
    }
    .navbar-fixed-left.navbar {
        width: 100%;
        transform: translateY(-100%);
    }
    .navbar-fixed-left.navbar.visible {
        transform: translateY(0%);
    }
    .navbar-collapse.collapse {
        border-color: #1A577A;
    }
    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li a {
        padding: 15px;
        display: flex;
        align-items: center;
    }
    .navbar-fixed-left.navbar .navbar-nav > li > a svg {
        left: 0;
        margin-right: 15px;
    }
    .navbar-fixed-left .navbar .navbar-nav li a > .title {
        position: relative;
        transform: translate(0, 0);
        left: inherit;
        bottom: inherit;
        font-size: 20px;
        max-width: 80%;
    }
    body .copyright {
        text-align: right;
    }
    body .footer-wrap .copyright {
        text-align: center;
    }
    .navbar-fixed-left .navbar-collapse {
        display: block;
        margin: 0;
    }
    .navbar-fixed-left .navbar-nav {
        margin: 0;
    }
    .gateway-content-buttons__item {
        flex-wrap: wrap;
    }
    .gateway-index .container-fluid {
        padding: 0;
    }
    .gateway-content-limits {
        width: 100%;
    }
    .gateway-header__title {
        margin: 0;
    }
    .gateway-header {
        padding-bottom: 0;
        border-bottom: 0;
    }
    .remove-filter-list {
        flex-wrap: wrap;
    }
    .remove-filter-item {
        margin-bottom: 10px;
        width: 100%;
        margin-right: 0;
    }
    .remove-filter-item__title{
        width: 40%;
    }
    .remove-filter {
        padding-bottom: 10px;
    }
    #search-modal #search .row > div {
        padding: 0 15px;
    }
    .gateway-btn-wrapper .download-csv {
        margin-left: 0;
    }
    .create-gateways,
    .gateway-btn-wrapper a.btn-filter {
        position: fixed;
        bottom: 10px;
        z-index: 112;
        width: 46%;
    }
    .gateway-index .gateway-header-info .btn.create-gateways {
        left: 2%;
        margin-left: 0;
        padding: 11px 6px;
        bottom: 15px;
    }
    .gateway-btn-wrapper a.btn-filter {
        right: 2%;
        background: #ffffff;
        border: 1px solid #1A577A;
        padding: 7px 6px;
        bottom: 15px;
    }
    .gateway-btn-wrapper a.btn-filter span {
        color: #1A577A;
    }
    .gateway-btn-wrapper a.btn-filter svg path {
        fill: #1A577A;
    }
    .gateway-header__title {
        font-size: 20px;
    }
    .gateway-index .footer-mobile {
        position: fixed;
        left: 0;
        width: 100%;
        bottom: 0;
        height: 70px;
        background: linear-gradient(0deg, white, transparent);
        z-index: 11;
    }
    .filters-list .bordered-filters {
        min-width: auto;
    }
    .gateway-index .filters-list .currency_profile,
    .gateway-index .filters-list .country {
        margin-bottom: 4px;
    }
    .gateway-header-info {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .gateway-index .rule-engine-btn {
        display: none;
    }
    .gateway-index .gateway-search .group-field {
        display: none;
    }
    .gateway-index .gateway-search .row {
        justify-content: flex-start;
    }
    .list-gateway > div[data-key] {
        width: 100%;
        margin-bottom: 15px;
    }
    .brand-update .panel-body .flex-center {
        display: block;
    }
    #create_new_translation {
        margin-top: 10px;
        width: 100%;
    }
    .gateway-additional-fields-group__title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .custom-area {
        padding: 0;
        min-height: 180px;
    }
    .time-area > label {
        margin-right: 20px;
    }

    .brand-index > h1 > .btn-success,
    .helios-processor-index .btn-success,
    .helios-processor-index .btn-primary,
    .payment-method-index .btn-success,
    .processing-status-index .btn-success {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .container > .brand-index > h1 > a {
        font-size: 11px;
    }

    .filters-btn-main {
        height: 70px;
    }

    .filter-wrap-btn {
        margin-top: 25%;
        margin-left: -12px;
        position: absolute !important;
    }

    body .select2-container--krajee .select2-selection--single .select2-selection__clear {
        width: 14px;
        height: 16px;
        background-position: top;
        background-repeat: no-repeat;
    }

    body .select2-container--krajee .select2-selection--single .select2-selection__arrow {
        background-color: transparent;
        top: -1px;
        height: 41px;
        right: 14px;
    }

    .frontend-form .nav-tabs .one-third a {
        font-size: 10px !important;
        justify-content: flex-start;
    }
    .pagination {
        margin: 10px 3px;
    }
    .pagination > li > a {
        padding: 6px 7px !important;
        font-size: 12px;
    }
    .pagination li.last a,
    .pagination li.first a {
        font-size: 12px;
    }
    body .pagination > li:first-child > a,
    body .pagination > li:first-child > span,
    body .pagination > li:last-child > a,
    body .pagination > li:last-child > span{
        font-size: 12px;
    }
    .maintenance {
        font-size: 9px;
        padding: 2px;
        margin-right: 15px;
    }
    hr {
        margin-bottom: 0 !important;
    }
   .to-right {
        float: right;
    }
    .to-left {
        float: left;
    }
    #payout-tab .container-additional-fields-payout,
    #deposit-tab .container-additional-fields-deposit,
    #bank-list-mapping-tab .container-bank-mapping {
        overflow-x: auto;
    }
    #front_configuration .table {
        margin-left: 4%;
    }
    .account-bar .dropdown-menu form .logout,
    .current-ip,
    .navbar-fixed-left.navbar-inverse.navbar .account-bar .dropdown-menu li a{
        font-size: 14px;
        padding-left: 25px;
    }
    .navbar-fixed-left.navbar-inverse.navbar .account-bar li .dropdown-menu li a > .title{
        left: 0;
    }
    .server-time, .server-branch, .server-branch-unlaunched-migrations{
        display: none;
    }
    .welcome-sub-title {
        font-size: 16px;
    }
    .main-chart-item-header{
        flex-direction: column;
        align-items: flex-start;
    }
    .website-item-name,
    .chart-item-trans,
    .chart-item-update {
        margin-top: 30px;
        text-align: center;
    }
    .website-index .website-item-name{
        text-align: left;
    }
    .website-index .chart-item-trans,
    .website-index .chart-item-update{
        text-align: right;
    }
    .website-body .panel-body table tr:first-child th, .website-body .panel-body table tr:first-child td {
        font-size: 12px;
    }
    .website-body .panel-body table th {
        padding: 2px !important;
    }
}

@media (max-width: 560px) {
    .website-item-name span{
        font-size: 20px;
    }
    .chart-item-trans, .chart-item-update{
        font-size: 16px;
    }
    .modal-body .sortable-item,
    .wizard-body .sortable-item,
    .sortable-item{
        max-width: 100%;
        width: 100%;
    }
    #configuration .rules-body .brand-add-field b {
        font-size: 11px;
    }
    .modal-title{
        font-size: 14px;
    }
    .brand-settings .brand-settings-row {
        flex-direction: column;
    }

    #company-filter-form span.select2-container {
        max-width: 100%;
    }

    .brand-settings-row.chbx .pair:first-child {
        white-space: pre-wrap;
    }
    .header__icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .login-wrapper{
        max-width: inherit;
        width: auto;
    }
    body h1 {
        word-break: break-word ;
    }
    .brand-form.website-update #main .brand-frontend{
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid #eee;
    }
    .transaction-index #transactions-table tr td:not(:nth-child(1)) {
        display: grid;
        grid-template-columns: 45% 1fr;
    }

    .account-bar .dropdown-menu form .logout,
    .current-ip {
        padding-left: 20px;
    }

    .navbar-fixed-left.navbar .navbar-nav li a span[class*='icon-'] {
        margin-right: 10px;
    }

    .navbar-fixed-left.navbar-inverse.navbar .navbar-nav li .dropdown-menu a {
        padding: 5px 5px 5px 20px;
    }

    .additional-item__block {
        width: 100%;
    }

    .gateway-tab-group-menu li a {
        font-size: 12px;
    }

    .processing-item .gateway-label, .processing-list.filter-gateway .processing-list__item label {
        font-size: 14px;
    }

    .gateway-content-buttons__item {
        width: auto;
    }

    #search-modal #search .row > div {
        width: 100%;
    }

    .list-gateway-item__info {
       flex-direction: column;
        padding-top: 0;
    }

    .disabled-wrap .isActive__title {
        display: none;
    }

    .list-gateway-item__name {
        font-size: 16px;
        word-break: break-all;
    }
    .wizard-container{
        flex-direction: column;
    }
}


.select2-dropdown {
    z-index: 12312312312;
}

.ips-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ips .btn-show {
    display: inline-block;
}
.btn-show{
    cursor: pointer;
}

.ips-list .hide-ip {
    display: none;
}
.brand-view .in-row .hide{
    display: none;
}
.ips-list .hide-ip.show {
    display: inline-flex !important;
}
.brand-view .in-row .hide.show{
    display: flex!important;
}
.delimiter {
    position: relative;
    top: -2px;
    margin-right: 5px;
}

.customer-manage-disabled-label {
    color: red;
    font-weight: 600;
}

.instruction-panel-heading .panel-title a,
.instruction-panel-heading .panel-title a:hover {
    text-decoration: none;
}

.panel-group.instruction-panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group.instruction-panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: none;
}

#details-view-modal .modal-header {
    display: block !important;
}

#details-view-modal.terminal-wrap .modal-header .modal-title {
    opacity: 0;
}

.grid-view {
    margin-top: 20px;
    min-height: 450px;
}
.list-gateway.grid-view{
    margin-top: 0;
}

.put-number .field-card_number .form-control,
.put-number .field-card_bin .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.put-number .field-card_number .form-control:focus,
.put-number .field-card_bin .form-control:focus {
    border-left: 1px solid #66afe9;
}

table a.info-blocked {
    bottom: 0;
    font-size: 11px;
    white-space: nowrap;
    left: 0;
}

.info-blocked:before {
    content: "\e086";
    position: relative;
    font-size: 14px;
    font-family: 'Glyphicons Halflings';
    top: 2px;
    padding-right: 4px;
}

table a.info-blocked:hover {
    text-decoration: none;
}

table a.info-blocked span:hover {
    text-decoration: underline;
}

.table.table-striped > tbody > .new-log, .table.table-striped > tbody > tr.new-log:nth-of-type(even) {
    background-color: #eeee86 !important;
}

.table.table-striped > tbody > .new-log, .table.table-striped > tbody > tr.new-log:hover {
    background-color: #eeee86 !important;
}

.scroll-bar,
.scroll-bar-cascade,
.scroll-bar-customer {
    width: 100%;
    position: absolute;
    left: 0;
    height: 20px;
    top: 0;
}
.scroll-bar{
    padding: 0 30px;
}
#progress,
#progress_cascade,
#progress_customer {
    width: 0;
    height: 12px;
    left: 0;
    background-color: #0CA1D7;
    border-radius: 6px;
}

#cascade_info .grid-view .scroll-bar{
    display: none;
}

/*.transaction-index .table-wrapper {*/
/*    overflow: hidden;*/
/*}*/

.table-container,
.table-container-cascade,
.table-container-customer {
    overflow: auto;
    -ms-overflow-style: none; /* IE 11 */
    scrollbar-width: none; /* Firefox 64 */
}

.customer-view .grid-view {
    min-height: auto;
}

.table-container::-webkit-scrollbar,
.table-container-cascade::-webkit-scrollbar,
.table-container-customer::-webkit-scrollbar {
    width: 0;
}

.table-wrapper .table {
    max-width: none;
}

body .ps-scrollbar-y-rail {
    display: none !important;
}

body .has-success.select2-container--krajee .select2-dropdown,
body .has-success .select2-container--krajee .select2-selection {
    border-color: #D9E1E8;
}

body .has-success .select2-container--open .select2-selection,
body .has-success .select2-container--krajee.select2-container--focus .select2-selection {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #D9E1E8;
}

.mobile-notif {
    top: 6px !important;
    width: 30px !important;
    height: 30px !important;
}

body .dropdown-menu-right {
    right: 4px;
}

.file-caption .file-caption-name {
    display: flex;
    align-items: center;
    height: 41px;
}
.file-caption .input-group{
   height: 100%
}
.clear-all {
    position: absolute;
    right: 8px;
    top: 45%;
    margin-top: -5px;
    line-height: 1;
    background-image: url(../img/black-close.svg);
    width: 10px;
    height: 10px;
    padding: 0;
    font-size: 0 !important;
    cursor: pointer;
}

.dropdown .btn-success:active:hover,
.dropdown .btn-success.active:hover,
.dropdown.open > .dropdown-toggle.btn-success:hover,
.dropdown .btn-success:active:focus,
.dropdown .btn-success.active:focus,
.dropdown.open > .dropdown-toggle.btn-success:focus,
.dropdown .btn-success:active.focus,
.dropdown .btn-success.active.focus,
.dropdown.open > .dropdown-toggle.btn-success.focus {
    background-color: #0ca1d7;
}

.runtime-logs-view .desktop-update-btns a,
.runtime-logs-view .mobile-btns a {
    width: 100%;
}

.modal-body .tab-pane#partial-processing .alert-info:last-of-type {
    margin-top: 20px;
}

.modal_container{
    display: flex;
    justify-content: flex-end;
}

.add-gateway-to-payment-order, .go-to-reports-page-btn {
    margin-right: 3px;
    background-color: #f1f1f5;
}

.cancel-button{
    color: white;
    background-color: #2aaae1;;
}

.transaction-gateway-column .secondary-data a {
    color: #057198;
    font-size: 11px;
}

.payment-method-list {
    display: flex;
    align-items: center;
}

.payment-method-list img {
    margin-right: 5px;
}
.gateway-limits-view .desktop-update-btns .btn{
    width: 100%;
}
#processing_amount_wrap .btn{
    line-height: normal;
    height: auto;
    border: 0;
    width: 100%;
}
#processing_amount_wrap .disabled
{
   opacity: 0.2;
}
.company-view .company-info h3,
.company-view .brand-block h4{
    word-break: break-all;
}
.company-view .brand-block .brand-title{
    padding: 0 10px;
}
.select2-container--krajee .select2-selection--multiple .select2-search--inline{
    width: 90%;
    position: relative;
    display: block;
}
.select2-container--krajee .select2-selection--multiple .select2-search--inline.show_search{
    margin: 5px 15px 5px 10px;
}
.select2-container--krajee .select2-selection--multiple .select2-search--inline .select2-search__field {
    color: #555555;
}
.select2-container--krajee .select2-selection--multiple .select2-search--inline.show_search .select2-search__field {
    border: 1px solid #ccc;
    border-radius: 4px;
    display: block;
    padding-left: 5px;
}
body .select2-search--inline.show_search:before {
    content: "\e003";
    font-family: 'Glyphicons Halflings';
    color: #ccc;
    font-size: 12px;
    position: absolute;
    right: 6px;
    top: 8px;
}
/*notific.io custom button style */

#notific-count {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 12px;
    padding: 3px 4px;
    font-weight: 600;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    bottom: 0;
    right: 0;
    overflow: hidden;
    position: fixed;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: red;
    opacity: 1;
}
#notific.active {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: transform 0.09s;
    -moz-transition: transform 0.09s;
    transition: transform 0.09s;
    background-size: 45% 45%;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%22-484%20186.9%20229.1%20229.1%22%20style%3D%22enable-background%3Anew%20-484%20186.9%20229.1%20229.1%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%09%3Cpath%20fill%3D%22white%22%20d%3D%22M-290.7%2C202.4l-78.7%2C78.7l-78.7-78.7c-5.6-5.6-14.6-5.6-20.2%2C0c-5.6%2C5.6-5.6%2C14.6%2C0%2C20.2l78.7%2C78.7l-78.8%2C78.8%0D%0A%09%09c-5.6%2C5.6-5.6%2C14.6%2C0%2C20.2s14.6%2C5.6%2C20.2%2C0l78.7-78.7l78.7%2C78.7c5.6%2C5.6%2C14.6%2C5.6%2C20.2%2C0c5.6-5.6%2C5.6-14.6%2C0-20.2l-78.7-78.7%0D%0A%09%09l78.7-78.7c5.6-5.6%2C5.6-14.6%2C0-20.2C-276.1%2C196.8-285.1%2C196.8-290.7%2C202.4L-290.7%2C202.4z%22%2F%3E%0D%0A%3C%2Fsvg%3E);
}
#notific {
    list-style: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
    padding: 0;
    position: fixed;
    z-index: 999999;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 20px -5px rgba(119,119,119,1);
    -moz-box-shadow: 0 0 20px -5px rgba(119,119,119,1);
    box-shadow: 0 0 20px -5px rgba(119,119,119,1);
    background-color: #444444;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: transform 0.09s;
    -moz-transition: transform 0.09s;
    transition: transform 0.09s;
    background-size: 50% 50%;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22510px%22%20height%3D%22510px%22%20viewBox%3D%220%200%20510%20510%22%20style%3D%22enable-background%3Anew%200%200%20510%20510%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%20%20%20%3Cpath%20fill%3D%22white%22%20d%3D%22m%20255%2C510%20c%2028.05%2C0%2051%2C-22.95%2051%2C-51%20l%20-102%2C0%20c%200%2C28.05%2022.95%2C51%2051%2C51%20z%20m%20165.75%2C-153%200%2C-140.25%20C%20420.75%2C137.7%20367.2%2C73.95%20293.25%2C56.1%20l%200%2C-17.85%20C%20293.25%2C17.85%20275.4%2C0%20255%2C0%20234.6%2C0%20216.75%2C17.85%20216.75%2C38.25%20l%200%2C17.85%20C%20142.8%2C73.95%2089.25%2C137.7%2089.25%2C216.75%20l%200%2C140.25%20-51%2C51%200%2C25.5%20433.5%2C0%200%2C-25.5%20-51%2C-51%20z%22%20%2F%3E%0D%0A%3C%2Fsvg%3E);
}
body iframe[name='Notific.io']{
    height: auto;
}
body iframe[name='Notific.io'] .client-inner{
    background: #ffffff;
}
/* Style all filter modal only ios */
@supports (-webkit-touch-callout: none) {
    .filter-modal .wrap > .container-fluid > div:not(.transaction-index),
    .filter-modal .navbar-inverse,
    .filter-modal .transaction-index > div:not(#transactions-filter-modal),
    .filter-modal .sub-nav,
    .filter-modal .footer,
    .filter-modal .breadcrumb,
    .filter-modal div.mobile-notif{
        display: none;
    }

    .filter-modal .wrap > .container-fluid,
    .filter-modal .wrap {
        min-height: 1px;
        margin-top: 0;
    }

    .filter-modal .modal {
        position: relative !important;
    }

    .filter-modal {
        overflow: auto !important;
    }

    .filter-modal .wrap {
        background-color: rgba(0, 0, 0, 0.5);
        min-height: 100vh;
    }

    .filter-modal .modal-backdrop.in {
        display: none !important;
    }
    .daterangepicker{
        min-width: 280px;
        width: auto;
        background-color: #fff;
    }
    .daterangepicker .ranges{
        background-color: #fff;
    }
}

.brand-index .list-gateway-item__processor .list-gateway-item__title a,
.brand-index .list-gateway-item__processor .applications-item a,
.brand-index .list-gateway-item__processor .address-item{
    word-break: break-all;
}
.brand-index .list-gateway-item__processor .applications-item a{
    display: block;
}
#transaction-payout .select2-container--krajee .select2-selection--single .select2-selection__arrow b,
#customer-virtual-terminal .select2-container--krajee .select2-selection--single .select2-selection__arrow b{
    border-style: solid;
    border-width: 5px 4px 0;
    border-color: #0CA1D7 transparent transparent transparent;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
body #transaction-payout .select2-container--krajee .select2-selection--single .select2-selection__arrow,
body #customer-virtual-terminal .select2-container--krajee .select2-selection--single .select2-selection__arrow{
    position: absolute;
}
body .select2-container--krajee .select2-search--dropdown .select2-search__field,
body .select2-container--krajee .select2-search--dropdown .select2-search__field:focus-visible{
    border: 1px solid #ccc;
    border-radius: 4px;
}

body #processing-tab .additional_fields .additional-field.additional-field-type:before{
    content: none;
}
body .additional_fields .additional-field.additional-field-type .select2:before{
    content: "Field type";
}

body .additional_fields .additional-field .select2:before {
    position: absolute;
    color: #999;
    font-size: 10px;
    margin: -6px 5px 0;
    background-color: #fafafa;
}

.modal .table,
.modal-body .grid-view .table{
    margin-bottom: 20px!important;
}
.modal-body .grid-view{
    min-height: 70px!important;
    position: relative;
}
body .file-caption-main .input-group .fileinput-remove,
body .file-caption-main .input-group .fileinput-cancel{
    background-color: transparent;
    border: 1px solid #1a577a;
    font-weight: 600;
    color: #1a577a;
    margin-top: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px!important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px!important;
    cursor: pointer;
}
body .file-upload-indicator .bi-plus-lg{
    font-size: 10px;
}
body .file-upload-indicator .bi-plus-lg::before {
    vertical-align: 0.2em;
}
body .file-upload-indicator .bi-plus-lg.text-warning{
    color: #ffffff;
}
body .krajee-default .file-upload-indicator{
    background: #8a6d3b;
    border-radius: 50%;
    display: none;
}
.krajee-default .file-footer-buttons .bi-zoom-in{
    font-size: 14px;
}

.file-caption-main .btn.btn-secondary::before,
.file-caption-main .btn.btn-secondary::after{
    display: none;
}
body .file-caption.icon-visible .file-caption-icon{
    padding: 0;
    left: 5px;
    z-index: 3;
    display: flex;
    height: 100%;
    align-items: center;
}

body .additional_fields label.checkbox-required:before,
body .additional_fields label.checkbox-is_account_identifier:before{
    top: -3px;
}
body .mCSB_inside>.mCSB_container{
    margin-right: 2px;
}

.kv-date-picker {
    display: none;
}

.kv-date-remove {
    background-image: url(../img/black-close.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 3px;
    margin-top: -10px;
    cursor: pointer;
    background-color: white;
    z-index: 9;
    border: none;
}

.kv-date-remove i {
    display: none;
}

input#log_time {
    padding-right: 23px;
}

.scroll-container .scroll-bar .glyphicon{
    position: absolute;
    z-index: 1;
    background:transparent;
    top: -8px;
    padding: 3px;
    font-size: 21px;
    cursor: pointer;
    color: #0ca1d7;
    opacity: 0;
    transition: opacity .7s ease;
}
.scroll-container .scroll-bar .glyphicon:hover{
    opacity: 1!important;
}
.scroll-container .scroll-bar .glyphicon-chevron-left{
    left: 0;
}
.scroll-container .scroll-bar .glyphicon-chevron-right{
    right: 0;
}

.ui-draggable-handle{
    touch-action: auto!important;
}


.logs-table .calendar-table,
#admin-logs-table .calendar-table {
    display: none;
}
.tag-index .table-responsive{
    overflow: visible;
    border: none;
}
.daterangepicker {
    z-index: 10501 !important;
}
@media screen and (max-width: 480px) {
    .daterangepicker {
        right: 15px!important;
    }
    body .kv-table-wrap th,
    body .kv-table-wrap td {
        display: table-cell!important;
        width: auto!important;
        text-align: inherit;
        font-size: 12px;
    }
    body .kv-table-wrap th.created_tag,
    body .kv-table-wrap td.created_tag{
        max-width: 100px!important;
        min-width: 100px!important;
    }
    .kv-table-wrap tr > td:first-child {
        border-top: 3px double #ccc;
        margin-top: 10px;
        font-size: 2em;
    }
}
@media screen and (max-width: 350px) {
    .manage-roles .white-shadow-block{
        padding: 0;
    }
    .role-permissions .account-permissions-form table th{
        white-space: normal!important;
    }
    .role-permissions .account-permissions-form table{
        font-size: 10px;
    }
}
.table tr[data-type="cascade"] a{
    white-space: nowrap;
}

.rate-spread-index .table-container{
    padding-top: 25px;
}
#tid_form {
    padding-left: 10px;
}
#tid_form >div{
    padding: 0;
}
.transaction-index .page-title{
    margin-right: 0;
    padding-right: 0;
    justify-content: flex-start;
}
label[for="globalbridgefilter-max_amount"] {
    white-space: nowrap;
}

.modal-body .not-allowed .form-group {
    cursor: not-allowed;
}

.modal-body .not-allowed #buttonSave,
.modal-body .not-allowed .delete-btn,
.modal-body .not-allowed .select2,
.modal-body .not-allowed input {
    pointer-events: none;
    filter: alpha(opacity=65);
    opacity: 0.65;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.colored-title{
    color: rgb(80, 159, 255);
    font-size: 30px;
}
.null-padding {
    padding: 0;
}
.view-links{
    display: block;
}
@media print {
    body {
        -webkit-print-color-adjust: exact;
    }

    .print-logo img{
        width: 120px;
        height: 40px;
    }
    .pdf_container_title{
        padding: 0 40px;
    }
    .pdf_title_img{
        margin: 0 auto 20px;
        display: block;
    }
    .pdf_title{
        font-size: 30px;
        text-align: center;
        margin-top: 0;
        margin-bottom:40px;
        font-weight: 600;
        position: relative;
    }
    .pdf_title .pdf_title_img{
        position: absolute;
        top: 10px;
        right: -30px;
        width: 50px;
        height: 50px;
    }
    .pdf_sub_title{
        font-size: 20px;
        text-align: left;
        font-weight: 500;
        position: relative;
    }
    .pdf_info_block .company_name{
        color: #00adef!important;
        font-weight: 400;
        font-size: 25px;
   }
    .pdf_info_block span{
        font-size: 20px;
        word-break: break-all;
    }
    .pdf_info_block span b{
        font-weight: 600;
    }
    .colored-title{
        color: rgb(80, 159, 255)!important;
        font-size: 20px;

    }
    .pdf_container{
        margin: 0 auto;
        padding: 0 20px;
    }

    .pdf_info_block{
        border-radius: 40px;
        background-color: rgba(244, 249, 254, 0.6) !important;
        padding: 50px 40px;
        position:relative;
        margin-top: 30px;
    }
    .pdf_circle_img{
        z-index: -1;
        position: absolute;
        top: 50px;
        right: -35px;
        width: 80px;
        height: 80px;
    }
    .pdf_points_img{
        position: absolute;
        top: 50%;
        right: 20px;
        width: 100px;
        height: 66px;
        z-index: -1;
    }
    .pdf_rectangle_img{
        position: absolute;
        bottom: -5%;
        left: -40px;
        width: 90px;
        height: 55px;
        z-index: -1;
    }
    .pdf_info_block .default-font{
        font-weight: 400;
    }
    .pdf_footer{
      height: 50px;
      position: relative;
    }
    .pdf_footer_img{
        position: absolute;
        top: 50%;
        right: 20px;
        width: 50%;

    }
}

#credentials_body .modal-dialog {
    width: 90%;
    max-width: 1000px;
}

#credentials_body[data-type=array] .modal-dialog {
    width: auto;
    max-width: 1000px;
}

table td.none_data_row ul{
    padding: 0;
    list-style: none;
}
.location-allowed-ips{
    list-style: none;
    padding-left: 10px;
}
.company_row .secondary-data{
    word-break: break-word;
}
.show-rule-history{
    cursor: pointer;
    background-image: url(../img/history-log-button.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height: 41px;
    width: 41px;
    background-size: cover;

}
.show-rule-history:hover{
    background-image: url(../img/history-log-button_hover.svg);
}
.brand-view.print-area .save-creds{
    margin-right: 20px;
}

.credentials-list__field {
    position: relative;
}

.credentials-list__field .ajax-loading {
    position: absolute;
    top: 12px;
    left: 50%;
}

.credentials-list__field .btn_loader {
    width: 15px;
    height: 15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
}

.credentials-list__field textarea {
    min-height: 41px;
    resize: vertical;
}

.field-globalbridgegateway-image.disabled {
    pointer-events: none;
    opacity: 0.7;
}


.import_btn.active ,
.start_sync.active,
.save-key.active,
.delete-key.active {
    pointer-events: none;
    cursor: progress;
}

.import_btn,
#save-key,
#delete-key {
    display: flex;
    align-items: center;
    justify-content: center;
}
.google-translate_btn .ajax-loading{
    display: inline-block;
}
.loader-small.btn_loader {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    background: inherit;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.action-btn a:not(:first-child) {
    margin-left: 15px;
}
.dropdown-menu li hr{
    margin: 5px;
}
.limits-history {
    width: 100%;
}
.history-block tr td.history-currency {
    vertical-align: middle;
}
/* Transaction Tab*/
.tab-btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    color: #888;
    border: none;
    background: transparent;
    cursor: pointer;
}
.tab-btn-active {
    color: #333;
    background-color: #fff;
    border-top: 3px #1A577A solid;
}
a.tab-btn:hover{
    text-decoration: none;
}
a.tab-btn, a.tab-btn:hover{
    text-decoration: none;
}
.summary-info-trans {
    margin-left: 30px;
    margin-right: 30px;
}
.btn-act-container {
    background-color: #fff;
    display: flex;
    padding: 20px 0 0;
    justify-content: flex-end;
}
.btn-act {
    background-color: transparent!important;
    margin: 0 30px 0;
}

/**
Grid header dropdowns
 */
.grid-filter{
    cursor: pointer;
    min-width: 80px;
}
.grid-filter.active{
    color: #0CA1D7;
}

.grid-filter .arrow-template{
    width: 13px;
    margin-left: 5px;
}

.grid-filter .arrow-template .a{
    stroke: #777;
}

.grid-filter.active .arrow-template .a{
    stroke: #0CA1D7;
}
.grid_container_field{
    position: relative;
}

.grid_field{
    position: absolute;
    z-index: 100000000;
    width: 156px;
}

.grid-filter .select2-container--krajee .select2-selection--multiple .select2-selection__rendered{
    padding-right: 4px;
}

.grid-filter .select2-selection--multiple:before {
    display: none;
}

.transaction-page .table-wrapper table.table {
   margin-bottom: 150px;
}

[data-field_id="transaction_status_id"],
[data-field_id="payment_processor_id"]
{
    position: relative;
}

.filter-counter{
    position: absolute;
    right: 4px;
    top: -10px;
    font-size: 11px;
    font-style: inherit;
    font-weight: 500;
}

.clear-filter-btn{
    margin-top: 10px;
}

#payment_processor_id_query_count{
    right: 7px;
}

.desktop-update-btns a{
    line-height: 18px;
}

.btn-action-trx {
    min-width: 130px;
}
.dropdown-action-trx {
    right: 30px!important;
}

.btn-action-trx .caret {
    right: 16px;
}
.btn-action-trx span:first-child {
    padding-right: 12px;
}

.partial_payout_request.caret,
.cascading_request.caret {
    display: inline;
    left: 5px;
    top: 4px;
    transition: none;
}
xmp{
  font-family: inherit;
}
.spl-expanded.caret {
    border-bottom: 4px solid;
    border-top: 4px solid transparent;
    top: -7px;
    transition: none;
}
.partial_payout_split_row td:nth-child(3) a,
.cascading_split_row td a.view-action {
    display: inline-block;
    max-width: 75px;
    margin-left: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.transactions-cascading-total-wrap .diagram-sub-menu .diagram-btn {
    left: 10%;
}
.transaction-index input[type="checkbox"]::before {
    top: 0px;
}

.trx_group_plus {
    display: block;
    width: 10px;
    height: 2px;
    background-color: #1a577a;
    border-radius: 1px;
    left: 24px;
    top: -11px;
}
.trx_group_plus:hover {
    background-color: #0ca1d7;
}
.trx_group_plus:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: #1a577a;
    border-radius: 1px;
    left: 4px;
    top: -4px;
}
.trx_group_plus:hover:after {
    background-color: #0ca1d7;
}
.transaction-cascading-index #transactions-table td.fixed-len {
    min-width: 120px;
}
.spl-expanded.trx_group_plus:after {
  background-color: transparent;
}
.spl-expanded.trx_group_plus:hover:after {
   background-color: transparent;
}
input[type=checkbox].checkbox-trx{
    top: 3px;
}
.disabled-currency{
    opacity: 0.5;
    cursor: default!important;
}
.accept-currency{
    padding-top: 15px;
    display: none;
}
.accept-currency__text{
    color: #777777;
    font-size: 14px;
    margin-bottom: 30px;
}
.accept-currency__ckeckbox{
    margin-bottom: 10px;
}
.limits_row.crm-limits{
    border: 1px solid #d9dde0;
    display: inline-flex;
    min-width: auto;
    padding: 10px;
}
.crm-limits__title{
    color: grey;
    font-size: 12px;
}

@media screen and (max-width: 1400px) {
    .span-progress-info {
        max-height: 405px;
        overflow: auto;
    }
}

.powerslide-warning {
    display: inline-block;
    margin-top: 3%;
}

.volatile-currency {
    color: #777777;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    list-style: none;
    padding-left: 0;
}

.reload-volatile {
    display: flex;
    justify-content: center;
}

.volatile-currency li {
    margin-bottom: 5px;
}

.volatile-currency li b {
    color: black;
}

.modal-body .form-horizontal .field-processingcurrency-is_bdcc_enabled .checkbox {
    padding-top: 0 !important;
}

#processingcurrency-is_bdcc_enabled {
    top: 0px !important;
}
.processingcurrency-is_bdcc_enabled {
    background-color: cornflowerblue !important;
}
.hubspot_div{
    width: 50%;
    margin-left: 30%;
}
.nv_subscribeNow{
    bottom: 75px !important;
}
.nv-hover-txt span{
    bottom: 90px !important;
}
.cascade_brands_warning{
    color: red;
    position: absolute;
    z-index: 999;
}

.notification{
    margin-left: 50px;
}
.notification path{
    transition: .2s ease;
}
.notification:hover path{
    stroke: #205D80;
}
body .beamer_icon.active{
    font-size: 0;
    width: 10px;
    height: 10px;
    top: 5px;
    right: 5px;
}
.retry-predefined-block, .add-predefined-button-block {
    padding-top: 15px;
}

.retry-predefined-block {
    margin-left: -29px;
}

.retry-predefined-block .alert {
    max-width: 150px;
    border: 1px black solid;
    border-radius: 10px;
}

.retry-predefined-block .title {
    padding-left: 35px;
}

.retry-predefined-block .input {
    padding-left: 25px;
    padding-top: 10px;
}

.retry-predefined-block input {
    width: 80%;
}

.list-group-item-text {
    padding: 20px;
}

.ob-retry-gateway.hidden {
    visibility: hidden;
    margin: 0;
    padding: 0;
}

.list-group-item-retry-decline,.list-group-item-trusted-cards-decline,.trusted-cards-config-condition,.trusted-cards-config-time-period {
    border: none;
}

.add-predefined-button {
    font-weight: bold;
}
.reload-volatile{
    background-color: #1A577A;
    border-color: #1a577a;
    font-weight: 600;
    color: white;
}
.reload-volatile:after{
    display: none!important;
}
.modal_gateway_settings .row div .form-group .hint-block{
    margin-top: 0!important;
}

/*trusted cards config css*/
.trusted-cards-img {
    margin-left: 10px;
}

.trusted-cards-hint{
    margin-left: 1%;
}

.trusted-cards-reason-transactions-count {
    margin-right: 9px;
}
.trusted-cards-reason-transactions-count .row{
    margin:0;
}

.trusted-cards-reason-time-period {
    margin-right: 15px;
}

.trusted-cards-img-arrow-up {
    transform: scale(1, -1);
}

.trusted-cards-dollar-icon {
    margin-left: 5px;
}

.trusted-cards-config-condition {
    padding: 0;
    margin-left: 32%;
    margin-right: 32%;
}

#trusted_cards_deposit_withdrawal_condition button {
    color: #0DA1D7;
    background-color: #EBF7FF;
    border: none;
    width: 60px;
    height: 45px;
    border-radius: 5px;
}

#trusted_cards_deposit_withdrawal_condition button:hover {
    background-color: #70b6e4;
    color: #0674bc;
}

.trusted-cards-radiobuttons-div {
    margin-left: 5%;
    margin-top: -7%;
}

.trusted-cards-number-control {
    width: 30%;
    display: inline-block;
    margin: 0 1%;
    border: solid #ccc 1px !important;
}

#trusted_cards_deposit_amount_above, #trusted_cards_withdrawal_amount_above {
    display: flex;
    align-items: center;
    margin-left: 3%;
}
#trusted_cards_deposit_amount_above_transaction, #trusted_cards_withdrawal_amount_above_transaction {
    margin-left: 6%;
}

#trusted_cards_deposit_amount_above label, #trusted_cards_withdrawal_amount_above label {
    margin-top: 3%;
    margin-right: 2%;
}

#trusted_cards {
    margin-bottom: -2%;
}
#trusted_cards_deposit_amount_above_field[disabled]:before,#trusted_cards_withdrawal_amount_above_field[disabled]:before{
    background-color: rgb(238, 238, 238);
}
.select2-container--krajee .select2-results__option[aria-selected] {
    min-height: 3rem;
}
.additional-css textarea{
    width: 100%;
}
.cashier-preset .btn-panel{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    width: 170px;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}
.cashier-preset{
    display: flex;
    justify-content: space-between;
    background-color: #f7fbff;
}
.btn-panel-bottom{
    border: 3px solid #2CABE2;
    padding: 6px;
    color: black;
    transition: all .3s ease;
}
.btn-panel-bottom:hover{
    background: #2CABE2;
    color: white;
    text-decoration: none;
}
.btn-panel a i{
    color: black;
    font-size: 20px;
    display: inline-block;
    margin-left: 5px;
    transition: color .3s ease;
}
.btn-panel a:hover i{
    color: #1a577a;
}
.cashier-presets{
    justify-content: start;
}
.cashier-presets > div[data-key]{
    margin-right: 20px;
}
.manage-presets-link{
    margin-top: 10px;
}

.three_ds_mpi_enabled #globalbridgegateway-three_ds_mpi_enabled{
    top:30px;
}

.child_config .rules-body:not(:first-of-type){
    min-height: 20px;
}
.rules-body .pair label{
    display: inline;
}
.modal-detail span:hover{
    cursor: pointer;
}
.logs_method_column{
    width: 50%;
    white-space: normal!important;
}
.logs_tid_column{
    width: 16%;
}
.transaction-view-actions a{
    width: 30%;
    margin-top: 10px;
}
.transaction_mpi_result_field:hover,.transaction-details-row .glyphicon-info-sign:hover{
    cursor: pointer;
}
.transaction-trx-details-block, .transaction-app-details-block,.transaction-mpi-details-block,.transaction-risk-details-block{
    border: 1px solid #DCDFE5;
    border-radius: 4px;
    margin-left: 5px;
    height: 270px;
    width: 277px;
}
.transaction_mpi_result_field{
    white-space: normal;
    overflow-wrap: break-word;
    width: 115px;
    max-width: max-content;
}
body .add-btn{
    background-color: transparent;
    border-color: transparent;
    color: #1A577A;
    font-weight: 600;
    font-size: 12px !important;
    height: auto;
    text-transform: capitalize;
    padding: 1px 5px;
    line-height: 1.5;
    text-align: left;
}

.add-acquirer-field:hover{
    background-color: #0CA1D7 !important;
    border-color: #0CA1D7 !important;
    color: #1A577A;
}
.add-acquirer-field:focus{
    color: #1A577A;
}
.acquirer_bin_row{
    padding-bottom: 10%;
}
.acquirer_bin_row span{
    padding-left: 0;
}
.mpi_logs_method_column{
    white-space: pre-line!important;
}
.tooltip-inner{
    background-color: crimson;
}
[scenario="deposit_order"] .tooltip-inner{
    background-color: black;
}
#rule-edit-modal.modal .modal-body{
    padding: 15px 50px;
}
.full-title span.badge,
.list-gateway-item__system_name span.badge
{
    padding: 6px;
    border-radius: 0 !important;
    background-color: #f7e0e2;
    color: #e35d6a;
}
.configuration_required_message {
    background: #EF233C1A;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-radius: 4px;
    color: #F53D53;
}

.configuration_required_message-element {
    margin-left: 8px;
}

.configuration_required_message-element ul {
    margin: 4px;
    padding-left: 17px;
}

.configuration_required_message-element ul li:not(:last-child) {
    margin-bottom: 6px;
}
.configuration_required_message span.badge span.glyphicon {
    color: #F20D28;
}
.configuration_required_message_tooltip {
    position: relative;
    padding: 3px 8px;
    cursor: pointer;
    background: #EF233C1A;
    border-radius: 4px;
}

.configuration_required_message_tooltip:hover span.app-tooltip {
    display: block;
}

.configuration_required_message_tooltip span.app-tooltip {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 50%;
    padding: 8px 16px;
    background: #2B303B;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    transform: translateX(-50%);
}

.configuration_required_message_tooltip span.app-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border: 8px solid transparent;
    border-top-color: #2B303B;
    transform: translateX(-50%);
}

.gateway_weight_modal {
    position: fixed;
    top: 7%;
    right: 1%;
    width: 30%;
    z-index: 999;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: Inter, serif;
    margin: 0 0 1rem;
    box-shadow: 0 .25rem .75rem #0000001a;
}

.message_text {
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    padding: 16px;
    overflow-wrap: anywhere;
}

.got_it_button_container {
    margin-top: 5px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    font-family: Inter, serif;
}

.got_it_button {
    background-color: transparent;
    border: 1px solid transparent;
    color: #0f768a;
    border-radius: 4px;
    padding: 8px 14px;
}

.got_it_button:hover {
    background-color: #edfafd;
}

.close_button_container {
    position: absolute;
    top: 14px;
    right: 16px;
}

.close_button {
    -webkit-appearance: button;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid transparent;
    color: rgb(125, 141, 166);
}

.message_title {
    margin-bottom: 6px;
}
.merchant_accounts_list{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.error_message_title {
    margin-bottom: 6px;
    color: red;
}
.triangle {
    width: 0;
    height: 0;
    border-left: 5.5px solid transparent;
    border-right: 5.5px solid transparent;
    border-bottom: 6px solid rgba(26, 87, 122, 1);
    transition: all .3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.retry-settings-row .insufficient-funds-alert{
    margin: 15px 0 0 0;
}
.insufficient-funds-alert img{
    margin-right: 0;
}
.tooltip-table{
    padding: 5px 10px;
    background-color: rgba(43, 48, 59, 1);
    color: #fff;
    display: block;
    border-radius: 10px;
}
.tooltip-tr ul{
    padding-left: 25px;
    margin-bottom: 2px;
}
.tooltip-tr td{
    text-align: left;
}
.transaction-tooltip__holder{
    position: relative;
}
.transaction-tooltip__holder::before{
    content: "\e086";
    position: absolute;
    font-size: 16px;
    font-family: 'Glyphicons Halflings';
    top: -31px;
    left: -22px;
}
.transaction-tooltip{
    display: none;
    position: absolute;
    background: #2b303b;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    width: 300px;
    z-index: 2;
    left: -267px;
}
.transaction-tooltip a {
    margin: 0;
}
.transaction-tooltip p{
    text-align: center;
    margin: 0;
}
.transaction-tooltip__holder:hover .transaction-tooltip{
    display: block;
}
.transaction-tooltip:after{
    content: "";
    border: 10px solid transparent;
    border-bottom: 20px solid #2b303b;
    width: 20px;
    height: 20px;
    position: absolute;
    display: inline-block;
    right: 36px;
    top: -26px;
}
.total-pagination{
    display: flex;
}
#bottomSummary{
    margin-top: 30px;
    font-weight: bold;
}
.tooltip-table{
    padding: 5px 10px;
    background-color: rgba(43, 48, 59, 1);
    color: #fff;
    display: block;
    border-radius: 10px;
}
.tooltip-tr ul{
    padding-left: 25px;
    margin-bottom: 2px;
}
.tooltip-tr td{
    text-align: left;
}
.helios-processor-form #processing-tab .form-group.field-heliosprocessor-accepted_card_schemes{
    display: initial;
}
.mit_scheme_settings{
    margin-left: 1.2%;
}
.template-field .error-message,
#transactions-filter-modal .error-message{
    color: crimson;
    margin-top: 5px;
    font-size: 12px;
}

.file-caption button,
.file-caption input,
.file-caption optgroup,
.file-caption select,
.file-caption span,
.file-caption textarea {
    font-family: "Open Sans", sans-serif;
}
/* AI banner styles*/
.ai-routing-banner__wrapper {
    padding-bottom: 20px;
    height: var(--ai-banner-height-desktop);

    @media (max-width: 1400px) {
      height: var(--ai-banner-height-tablet);
    }
    @media (max-width: 1200px) {
      height: var(--ai-banner-height-mobile);
    }
    @media (max-width: 991px) {
      height: auto;
      padding: 20px 0;
    }
}

.ai-routing-banner {
    font-family: Inter, sans-serif;
    color: #ffffff;
    display: block;
    padding: 24px;
    border-radius: 20px;
    background-image: url(../img//AI_activate_banner.jpg);
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 40px 0 rgba(112, 144, 176, 0.28);
}

.ai-routing-banner__title {
    font-family: inherit;
    font-size: 20px;
    font-weight: semi-bold;
    line-height: 1.2;
    margin: 0 0 8px;
    padding: 0;
}

.ai-routing-banner__description {
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 8px;
    padding: 0;
}

.ai-routing-banner__button {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.2;
    display: block;
    border-radius: 8px;
    background-color: #edfafd;
    color: #2b303b;
    padding: 15px;
    margin: 0;
    text-decoration: none;
    text-align: center;

    &:hover {
        color: #23527c;
    }
}
