@font-face {
    font-family:"ploni bold";
    src:url(/fonts/ploni-bold-aaa.woff2) format('woff2'),
    url(/fonts/ploni-bold-aaa.woff) format('woff');
    font-display: auto;
}

@font-face {
    font-family:"ploni regular";
    src:url(/fonts/ploni-regular-aaa.woff2) format('woff2'),
    url(/fonts/ploni-regular-aaa.woff) format('woff');
    font-display: auto;
}

@font-face {
    font-family:"ploni light";
    src:url(/fonts/ploni-light-aaa.woff2) format('woff2'),
    url(/fonts/ploni-light-aaa.woff) format('woff');
    font-display: auto;
}

html, body {
    padding: 0;
    margin: 0;
    font-family: "ploni regular", Arial, sans-serif;
    font-size: 16px;
    background: #ffffff;
}

input, select, textarea, button {
    font-family: "ploni regular", Arial, sans-serif;
}

p {
    margin-bottom: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}
h2 {
    font-size: 32px;
}
#sidebar {
    overflow-y: auto;
    z-index: 1001;
    position: fixed;
    width: 240px;
    height: 100vh;
    transition: .2s ease-in;
    border-left: 1px solid #f4f4f4;
    padding-top: 40px;
    box-sizing: border-box;
    background: #ffffff;
}

#container {
    margin-right: 240px;
    padding: 0 20px 20px;
}

#header {
    height: 60px;
    margin: 0 -20px 20px;
    padding: 10px;
    display: table;
    width: 100%;
}

.logo {
    display: table-cell;
    text-align: left;
}
.greeting {
    font-size: 24px;
    height: 60px;
    display: table-cell;
    padding: 20px 20px 0 0;
}

.greeting span {
    font-weight: bold;
}
.avatar-container {
    text-align: center;
}
.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: 0 auto;
    box-shadow: 0 27px 50px 2px rgba(0,0,0,0.23);
}

.avatar-title {
    margin-top: 25px;
    font-family: "ploni bold", Arial, sans-serif;
    font-size: 22px;
}

.avatar-email {
    font-size: 12px;
    font-weight: normal;
    color: #afafaf;
}

.pointer {
    cursor: pointer;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.main-navigation ul li {
    display: block;
    padding: 0 25px;
    margin-bottom: 2px;
}

.main-navigation ul li a {
    display: block;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    padding: 8px 20px;
    background: #fff;
    border-radius: 30px;
    transition: .1s ease-in;
}

.main-navigation ul li a:hover,
.main-navigation ul li.active a {
    background: #FC1748;
    color: #ffffff;
}

textarea,
select,
md-datepicker,
md-autocomplete,
input[type=email],
input[type=password],
input[type=text] {
    height: 36px;
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    padding: 0 15px;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0 0 10px 0 #F3F2F7;
}

textarea:hover,
select:hover,
md-datepicker:hover,
md-autocomplete:hover,
input[type=password]:hover,
input[type=email]:hover,
input[type=text]:hover {
    outline: none;
}

textarea:focus,
select:focus,
md-datepicker:focus,
md-autocomplete:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=text]:focus{
    border: 1px solid #FC1748;
    outline: none;
}

textarea {
    height: auto;
}

select {
    padding: 0 10px;
}

a:link,a:visited,a:active {
    color: #FC1748;
    text-decoration: none;
}

.table-toolbar {
    margin-bottom: 20px;
}
.table-toolbar input {
    box-shadow: none;
}
.table-toolbar > input, .table-toolbar > a {
    margin-left: 10px;
}

.table-toolbar > a {
    float: left;
}

.table-toolbar::after {
    clear: both;
    content: '';
    display: block;
    height: 0;
}

.button {
    font-size: 16px;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    border: 0 none;
    background: #FC1748;
    color: #ffffff !important;
    display: inline-block;
    transition: .2s ease-in;
}

.button i {
    margin-left: 5px;
}

.button:hover {
    background: #ff587a;
    color: #ffffff !important;
}

.button.button-green {
    background: #0CCC91;
}

.button:hover.button-green {
    background: #07eea7;
}

.button.button-gray {
    background: #C0CBD4;
}

.button:hover.button-gray {
    background: #dbe2e7;
}

.button.button-small {
    font-size: 12px;
    padding: 4px 10px;
}

.button.button-xsmall {
    font-size: 12px;
    padding: 2px 6px;
}
.button.button-only-icon {
    padding: 5px 6px 1px;
}

.button.button-only-icon i {
    margin: 0;
}

.button-upload {
    position: relative;
}

.button-upload input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
    display: block;
}

.table-responsive {
    box-shadow: 0 0 29px 10px #F3F2F7;
    margin-top: 20px;
    padding: 20px;
    overflow-x: auto;
    border-radius: 20px;
}

.box .table-responsive {
    box-shadow: none;
}

table.white {
    width: 100%;
    border-collapse: collapse;
}

table.white th {
    text-align: right;
    padding-bottom: 20px;
    color: #C0BDCC;
    border-bottom: 1px solid #f0f0f0;
    font-family: "ploni regular", Arial, sans-serif;
    font-weight: normal;
}

table.white td {
    padding: 8px 5px;
}

table.white tr:hover td {
    background: #fff4f6;
}

table.white th button {
    background: transparent;
    color: #C0BDCC;
    border: transparent;
}

.label {
    padding: 5px 15px;
    border-radius: 20px;
    color: #000000;
    background: #eeeeee;
}

.label.label-purple {
    color: #6149CD;
    background: #F6EFFF;
}

.label.label-green {
    color: #49cd5f;
    background: #f0ffef;
}

.label.label-yellow {
    color: #e3c24c;
    background: #fffcef;
}

.label.label-red {
    color: #cd4949;
    background: #ffefef;
}
.label.label-small {
    font-size: 12px;
    padding: 4px 6px;
}
.login-wrapper {
    background: #000000;
    height: 100vh;
    width: 100%;
}
.login-box {
    position: fixed;
    right: 0;
    background: #ffffff;
    width: 300px;
    margin-top: 0;
    height: calc( 100vh - 100px );
    padding: 50px;
}

.login-logo {
    text-align: center;
}
.login-input {
    margin-top: 10px;
}

.login-input label {
    padding-right: 20px;
}

.login-box input {
    width: 100%;
}
.login-box button {
    width: 100%;
    cursor: pointer;
}
.login-error-box {
    text-align: center;
    background: #ffe5e5;
    border-radius: 20px;
    margin-top: 10px;
    padding: 5px 20px;
}

.login-forgot {
    text-align: left;
}
.login-forgot a {
    color: #FC1647;
    text-decoration: none;
}

.box {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 29px 10px #F3F2F7;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.modal-content {
    border: 0 none;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 20px;
    padding: 0 20px;
}

.field {
    display: table;
    width: 100%;
    margin-bottom: 20px;
    min-height: 36px;
}
.field > label {
    display: table-cell;
    width: 25%;
    font-size: 18px;
    font-family: "ploni bold", Arial, sans-serif;
    text-align: left;
    padding-left: 10px;
    height: 36px;
    line-height: 36px;
    vertical-align: top;
}

.field input[type=phone],
.field input[type=email],
.field input[type=password],
.field input[type=text] {
    width: 100%;
    height: 36px;
    font-size: 18px;
}
.field > div {
    display: table-cell;
    width: 75%;
    min-height: 36px;
    vertical-align: middle;
}

h3.title {
    margin: 0 0 10px;
    font-size: 22px;
}

.top-buttons {
    margin-bottom: 10px;
    text-align: left;
}

.top-buttons.top-buttons-left {
    float: left;
}

.multiselect {
    height: 36px;
    border: 1px solid #f0f0f0;
    box-sizing: border-box;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 0 10px 0 #F3F2F7;
}

.multiselect ul {
    list-style: none;
    height: 34px;
    margin: 0;
    padding: 0;
    display: table;
    min-width: 200px;
    table-layout: fixed;
}

.multiselect ul li {
    cursor: pointer;
    display: table-cell;
    border-left: 1px solid #f0f0f0;
    padding: 0 15px;
    vertical-align: middle;
    transition: .2s ease-in;
    width: 2%;
    white-space: nowrap;
}

.multiselect ul li:last-child {
    border-left: 0 none;
    padding-left: 15px;
    border-radius: 30px 0 0 30px;
}

.multiselect ul li:first-child {
    padding-right: 15px;
    border-radius: 0 30px 30px 0;
}

.multiselect ul li.selected {
    background: #FC1647;
    color: #ffffff;
}

#alert-floating-container {
    width: 25%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

#alert-floating-container .alert {
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: 10px;
}

@media (max-width: 1200px) {
    #alert-floating-container {
        width: 50%;
    }
}

@media (max-width: 800px) {
    #alert-floating-container {
        width: 100%;
    }
}

.alert {
    border-radius: 20px;
    margin-top: 10px;
    padding: 15px 20px;
    opacity: 0.95;
}

.alert button {
    float: left;
    background: transparent;
    border: 0 none;
    cursor: pointer;
}

.alert-danger {
    background: #ffe5e5;
}

.alert-success {
    background: #ecfded;
}

.badge {
    background: #FC1647;
    padding: 3px 6px;
    border-radius: 30px;
    display: inline-block;
    float: left;
    color: #ffffff;
    font-size: 12px;
    margin-left: -15px;
}

.documents-list {
    text-align: center;
}

.help-block {
    margin: 0;
}

md-datepicker,
.itemDetails input,
.itemDetails select,
.document-table input {
    width: 100%;
}

.md-datepicker-input-container {
    border: 0 none;
    width: 100%;
}

input.md-datepicker-input {
    font-size: inherit;
    width: 100%;
    max-width: 100%;
    height: 36px;
}

.form-actions {
    text-align: center;
}
.document-sum .field > div,
.document-sum .field label {
    width: 50%;
    padding: 0 10px;
}
.document-sum .field label {
    text-align: left;
}

.tblbottom {
    margin-top: 10px;
}


.input-group md-autocomplete {
    width: 90%;
}

md-autocomplete md-autocomplete-wrap {
    border: 0 none !important;
    box-shadow: none !important;
    height: auto !important;
    width: 100%;
}

md-autocomplete input {
    border: 0 none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.documentPreview {
    margin: 0 auto;
    max-width: 800px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}
.documentPreviewContainer {
    min-height: 1110px;
    font-size: 16px;
    margin: 10px;
}
.documentPreviewContainer table {
    border-spacing: 1px;
    border-collapse: separate;
}
.documentPreviewContainer td, .documentPreviewContainer th {
    padding: 5px;
    /*white-space: nowrap;*/
    vertical-align: top;
}

.document-for,
.documentPreview table th,
.documentPreview table td {
    font-size: 14px !important;
}

.documentPreview table td span {
    font-size: 11px !important;
}

.documentPreview table td span.document-business-name {
    font-size: 22px !important;
}

.pagination-container {
    margin-top: 20px;
}
ul.pagination {
    height: 36px;
    display: initial;
    padding: 0;
    margin: 0;
    float: left;
}

ul.pagination li {
    float: right;
}

ul.pagination li a {
    height: 36px;
    background: #fff;
    color: #FC1647;
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    text-decoration: none;
    border-top: 1px solid #FC1647;
    border-left: 1px solid #FC1647;
    border-bottom: 1px solid #FC1647;
}

ul.pagination li.active a {
    background: #FC1647;
    color: #ffffff;
}

ul.pagination li:first-child a {
    border-right: 1px solid #FC1647;
    border-radius: 0 30px 30px 0;
}

ul.pagination li:last-child a {
    border-radius: 30px 0 0 30px;
}

ul.submenu {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

ul.submenu li {
    display: inline-block;
    margin-left: 10px;
}

ul.submenu li:not(.active) a {
    background: none;
    color: #000000 !important;
}

.payment-box {
    display: none;
    margin-bottom: 30px;
}

.payment-box.active {
    display: block;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group > md-datepicker,
.input-group > md-autocomplete,
.input-group > select,
.input-group > input {
    float: right;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 0;
}

.input-group-btn {
    display: table-cell;
    text-align: center;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.input-group-addon {
    padding: 6px 15px;
    display: table-cell;
    text-align: center;
    background: #FC1647;
    color: #ffffff;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.input-group-btn:first-child .button,
.input-group-addon:first-child {
    border-radius: 0 30px 30px 0;
}

.input-group-btn:last-child .button,
.input-group-addon:last-child {
    border-radius: 30px 0 0 30px;
}

.input-group-btn .button {
    text-align: center;
    padding: 9px 15px;
}

.document-sum .field {
    margin-bottom: 10px;
}

.md-datepicker-input-mask {
    display: none;
}
.md-default-theme .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, 
.md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, 
.md-default-theme .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator, 
.md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
    background: #FC1647;
}

.md-default-theme .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator, 
.md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
    border: 1px solid #FC1647;
}

.loading-box {
    text-align: center;
    font-size: 20px;
    padding: 20px 0;
}

.quota-container > form > div {
    margin-right: auto;
    margin-left: auto;
}

.quota-container .quota-submit {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

ul.bank-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.quota-signature {
    text-align: center;
}
.signature-pad {
    border: 1px solid #000;
}

.project-list h4 {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    font-family: "ploni bold", Arial, sans-serif;
    margin-bottom: 0;
    color: #FC1748;
}

.project-duedate {
    font-size: 12px;
}

.project-description {
    text-align: center;
    margin-bottom: 10px;
}

.project-clock {
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 22px;
}

.project-clock > div {
    line-height: 16px;
    margin-bottom: 5px;
}
.project-buttons a {
    white-space: nowrap;
}
.project-buttons {
}

.project-status {
    text-align: left;
    margin-bottom: 10px;
}

ul.project-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.project-icons li {
    float: right;
    margin-left: 8px;
    font-size: 13px;
    color: #adadad;
}

ul.project-icons::after {
    clear: both;
    content: '';
    display: block;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.project-copany-name {
    font-family: "ploni bold", Arial, sans-serif;
}

.chat {
    position: relative;
}

.chat-container {
    height: 600px;
    overflow-y: auto;
    display: flex;
    flex-direction: column-reverse;
    padding: 0 10px 20px;
}

.chat-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chat-container ul li {
    display: table;
    margin-bottom: 2px;
    width: 100%;
    direction: rtl;
}

.chat-container ul li.me {
    direction: ltr;
}

.chat-container ul li.first {
    margin-top: 20px;
}

.chat-container ul li:first-child {
    margin-top: 0;
}

.chat-container ul li.me .chat-profile,
.chat-container ul li.me .chat-message {
    text-align: left;
}

.chat-container ul li .chat-spacer,
.chat-container ul li .chat-profile {
    display: table-cell;    
    width: 50px;
    vertical-align: top;
    padding-top: 22px;
}


.chat-container ul li .chat-message {
    display: table-cell;
    text-align: right;
}

.chat-container ul li .chat-message .chat-name {
    font-family: "ploni bold", Arial, sans-serif;
    
}

.chat-container ul li .chat-message .chat-bobble {
    background: #fff2f7;
    color: #3b3b3b;
    padding: 10px 10px 5px;
    display: inline-block;
    border-radius: 10px 2px 2px 10px;
    font-size: 14px;
    line-height: 18px;
    text-align: right;
    direction: rtl;
    max-width: 70%;
}

.chat-container ul li .chat-message .chat-bobble .caht-text {
    white-space: pre-line;
}
.chat-container ul li.first .chat-message .chat-bobble {
    border-radius: 10px 10px 2px 10px;
}
.chat-container ul li:last-child .chat-message .chat-bobble,
.chat-container ul li.last .chat-message .chat-bobble {
    border-radius: 10px 2px 10px 10px;
}

.chat-container ul li.me .chat-message .chat-bobble {
    background: #FC1647;
    color: #ffffff;
    border-radius: 2px 10px 10px 2px;
}

.chat-container ul li.me.first .chat-message .chat-bobble {
    border-radius: 10px 10px 10px 2px;
}

.chat-container ul li.me:last-child .chat-message .chat-bobble,
.chat-container ul li.me.last .chat-message .chat-bobble {
    border-radius: 2px 10px 10px 10px;
}

.chat-container ul li.first:last-child .chat-message .chat-bobble,
.chat-container ul li.first.last .chat-message .chat-bobble,
.chat-container ul li.me.first:last-child .chat-message .chat-bobble,
.chat-container ul li.me.first.last .chat-message .chat-bobble {
    border-radius: 10px;
}

.chat-container ul li.me .chat-message .chat-name {
    display: none;
}

.chat-container ul li .chat-profile img {
    width: 35px;
    border-radius: 50px;
}

.chat-container ul li .chat-message .chat-date {
    text-align: center;
    color: #c1c1c1;
    margin: 5px 0;
    direction: rtl;
    font-size: 12px;
}

.chat-container ul li .chat-message .chat-time {
    font-size: 12px;
    display: block;
    text-align: left;
    margin-top: 5px;
    line-height: 10px;
}

.chat-attachment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: #ffffff;
    text-align: center;
    transition: .2s ease-in;
}

.chat-attachment a {
    float: left;
    font-size: 30px;
}
.chat-attachment img {
    margin-top: 100px;
    max-width: 300px;
    max-height: 300px;
}

.chat-container ul li .chat-message .chat-bobble .chat-media > a {
    color: #ffffff;
}

.chat-container ul li .chat-message .chat-bobble .chat-media.image {
    overflow-y: hidden;
    max-height: 250px;
    background: #ffffff;
}

.chat-container ul li .chat-message .chat-bobble .chat-media.image img {
    max-width: 100%;
    cursor: pointer;
    transition: .2s ease-in;
}

.chat-container ul li .chat-message .chat-bobble .chat-media.image img:hover {
    opacity: 0.5;
}


.chat-container ul li .chat-message .chat-bobble .chat-media.attachment {
    display: table;
    width: 100%;
    background: #f3f3f3;
    padding: 10px;
    text-align: left;
    color: #404040;
    border-radius: 5px;
    direction: ltr;
    margin-bottom: 5px;
}

.chat-container ul li .chat-message .chat-bobble .chat-media.attachment .chat-media-attachment-icon {
    display: table-cell;
    width: 15px;
}

.chat-container ul li .chat-message .chat-bobble .chat-media.attachment .chat-media-attachment-name {
    display: table-cell;
    padding-left: 5px;
}

.chat-container ul li .chat-message .chat-bobble .chat-media.attachment .chat-media-attachment-name > div {
    font-size: 14px;
    color: #999999;
    padding-right: 20px;
}

.chat-controllers {
    display: table;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #d9d9d9;
    padding-top: 20px;
}

.chat-controllers .chat-tools {
    display: table-cell;
    width: 100px;
    vertical-align: top;
}

.chat-controllers .chat-textarea {
    display: table-cell;
    vertical-align: top;
}

.chat-controllers .chat-textarea textarea {
    width: 100%;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    resize: none;
}

.chat-file {
    border-top: 1px solid #d9d9d9;
    font-size: 16px;
    margin-top: 20px;
    padding-top: 20px;
}

.chat-file > div {
    font-size: 14px;
    color: #cbcbcb;
    padding-right: 20px;
}

.chat-file > a {
    float: left;
    font-size: 16px;
}

.chat-controllers .chat-textarea textarea:focus {
    border: 0 none;
}

.chat-controllers .chat-send {
    vertical-align: top;
    display: table-cell;
    width: 50px;
}

.emojionearea.focused,
.emojionearea {
    border: 0 none;
    box-shadow: none;
    direction: rtl;
}

.emojionearea .emojionearea-editor {
    direction: rtl;
    text-align: right;
    padding: 6px 12px 6px 24px;
    min-height: auto;
    font-size: 16px;
}

.emojionearea .emojionearea-button {
    right: -100px;
    top: 0;
}

.emojionearea .emojionearea-button .emojionearea-button-close,
.emojionearea .emojionearea-button .emojionearea-button-open {
    display: none;
}

.emojionearea .emojionearea-picker {
    position: relative;
    width: 100%;
    height: 200px;
    box-shadow: none;
    border-radius: 0;
    top: auto;
}

.emojionearea .emojionearea-picker .emojionearea-wrapper {
    width: 100%;
    height: 200px;
}

.emojionearea .emojionearea-picker .emojionearea-scroll-area,
.emojionearea .emojionearea-picker .emojionearea-search-panel + .emojionearea-scroll-area {
    height: 160px;
}

.emojionearea .emojionearea-picker.emojionearea-picker-position-top {
    right: auto;
    margin: 0;
}

.emojionearea .emojionearea-button.active + .emojionearea-picker-position-top {
    margin: 0;
}

.emojionearea .emojionearea-picker .emojionearea-wrapper::after {
    display: none;
}

.emojionearea .emojionearea-picker.emojionearea-filters-position-top .emojionearea-filters {
    border-radius: 0;
}

.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn,
.emojionearea .emojionearea-picker .emojionearea-filters .emojionearea-filter {
    float: right;
}

.blink {
    animation: blink 2s infinite;
}


@keyframes blink {
    0% {
        color: #adadad;
    }
    50% {
        color: #FC1647;
    }
    100% {
        color: #adadad;
    }
}

.box.selected {
    background-color: #FC1647;
    color: #ffffff;
}

.bank-box .bank-header {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
}

.bank-box .bank-header h3 {
    margin-bottom: 0;
    font-family: "ploni bold", Arial, sans-serif;
}

.bank-box .bank-header p {
}

.bank-box .bank-description {
    text-align: center;
}

.bank-box .bank-price {
    border-top: 1px solid #d9d9d9;
    margin-top: 20px;
    padding-top: 20px;
}
.bank-box .bank-price > div {
    display: table;
    width: 100%;
}

.bank-box .bank-price .bank-price-label,
.bank-box .bank-price .bank-price-amount {
    display: table-cell;
    width: 50%;
    font-size: 22px;
}

.bank-box .bank-price .bank-price-amount {
    text-align: left;
}

.bank-box .bank-price .bank-price-total {
    font-family: "ploni bold", Arial, sans-serif;
}

.gateway-box {
    text-align: center;
}
.gateway-box i {
    font-size: 40px;
}
.gateway-box h4 {
    font-family: "ploni bold", Arial, sans-serif;
}