/* Elements */

html {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
    webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: lato,-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,sans-serif;
    background-color: #f0f2f5;
}

h1 {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #162e4b;
    font-size: 2em;
}

h2 {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #162e4b;
    font-size: 1.5em;
}

h3 {
    margin-top: 3px;
    margin-bottom: 5px;
    color: #162e4b;
    font-size: 18px;
}

p {
    color: rgb(96, 98, 102);
    font-size: 0.9em;
}

iframe {
    width: 100%;
    border: unset;
}

select,
input[type="text"],
input[type="password"],
input[type="number"] {
    height: 36px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(220, 223, 230);
    border-radius: 4px;
    color: rgb(96, 98, 102);
    font-size: 14px;
    line-height: 36px;
    padding: 0px 10px;
    display: inline-block;
    transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0 10px 0 10px;
    outline: none;
}

textarea {
    min-height: 100px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(220, 223, 230);
    border-radius: 4px;
    color: rgb(96, 98, 102);
    font-size: 14px;
    line-height: 18px;
    padding: 5px 10px;
    display: inline-block;
    transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-sizing: border-box;
    resize: vertical;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
    -webkit-appearance: none;
}

select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus {
    border: 0;
    box-shadow: 0 0 0 0.1rem rgba(3,168,154,.2);
}

select:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
textarea:hover {
    border-color: #C0C4CC;
}

select.negative,
input[type="text"].negative, 
input[type="password"].negative, 
input[type="number"].negative, 
textarea.negative,
.custom-select.negative .custom-select-trigger,
.custom-select-wrapper.negative .custom-select-trigger {
    color: #ff4949;
    background-color: #ffeded;
}

/* alerts */
.alert_info, .alert_success, .alert_warning, .alert_error {
    margin: 20px 0;
    padding: 17px;
    display: flex;
    align-items: center;
    position: relative;
    line-height: 20px;
    font-size: 16px;
    border-radius: 3px;
}
.alert_info {
    color: #00529B;
    background-color: #BDE5F8;
}
.alert_success {
    color: #4F8A10;
    background-color: #DFF2BF;
}
.alert_warning {
    color: #9F6000;
    background-color: #FEEFB3;
}
.alert_error {
    color: #D8000C;
    background-color: #FFD2D2;
}
.alert_info i, .alert_success i, .alert_warning i, .alert_error i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align:middle;
}

.alert_info.icon, .alert_success.icon, .alert_warning.icon, .alert_error.icon {
	padding-left: 50px;
}

.alert_info.icon:before, .alert_success.icon:before, .alert_warning.icon:before, .alert_error.icon:before {
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    left: 15px;
    font-size: 20px;
    font-weight: 100;
}

.alert_info.icon:before {
	content: '\f05a';
}

.alert_success.icon:before {
	content: '\f058';
} 

.alert_warning.icon:before {
	content: '\f06a';
} 

.alert_error.icon:before {
	content: '\f057';
}

#address_status {
    display: none;
}

/* Scrollbar */

*::-webkit-scrollbar-track {
    border-radius: 0px;
    box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.1);
    background-color: #ffffff !important;
    border-top: 0px !important;
    border-right: 0px !important;
    border-bottom: 0px !important;
}

*::-webkit-scrollbar {
    width: 8px;
    background-color: #ffffff !important;
}

*::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #adadad !important;
}


/* Basic styles */

.negativeText {
    color: #ff4949 !important;   
}

.positiveText {
    color: #30d11a !important;   
}

.m-top-10 {
    margin-top: 10px !important;
}

.m-top-20 {
    margin-top: 20px !important;
}

.m-bottom-10 {
    margin-bottom: 10px !important
}

.m-bottom-20 {
    margin-bottom: 20px !important;
}

.m-right-10 {
    margin-right: 10px !important;
}

.m-right-20 {
    margin-right: 20px !important;
}

.m-left-10 {
    margin-left: 10px !important;
}

.m-left-20 {
    margin-left: 20px !important;
}

.width-20 {
    width: 20px;
}

.width-40 {
    width: 40px;
}

.width-60 {
    width: 60px;
}

.width-80 {
    width: 80px;
}

.width-100 {
    width: 100px;
}

.width-150 {
    width: 150px;
}

.width-200 {
    width: 200px;
}

.width-10-per {
    width: 10%;
}

.width-20-per {
    width: 20%;
}

.width-30-per {
    width: 30%;
}

.width-40-per {
    width: 40%;
}

.width-50-per {
    width: 50%;
}

.width-60-per {
    width: 60%;
}

.width-70-per {
    width: 70%;
}

.width-80-per {
    width: 80%;
}

.width-90-per {
    width: 90%;
}

.full-width {
    width: 100%;
}

.f-right {
    float: right;
}

.f-left {
    float: left;
}

.cur-point {
    cursor: pointer;
}

.no-padding {
    padding: 0px !important;
}

.no-margin {
    margin: 0px !important;
}

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

.over-visible {
    overflow: visible !important;
}

.hidden {
    display: none !important;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-warp {
    flex-wrap: wrap;
}

.flex-space-between {
    justify-content: space-between;
}

.flex-align-end {
    align-items: flex-end;
}

.flex-justify-center {
    justify-content: center;
}

.clearfix {
	clear: both;
	display: block;
	visibility: hidden;
}
  

/* Input */

.input-container {
    position: relative;
    width: 100%;
    margin: 20px 0px;
}

.input-container>input,
.input-container>select,
.input-container textarea,
.input-container>div,
.input-container>p {
    width: 100%;
}

.input-container.error input,
.input-container.error select,
.input-container.error textarea {
    border-color: #ca5959;
    background-color: #fff7f7;
}

.input-container.error p {
    color: #ca5959;
}

.input-container>p {
    color: #d442af;
    margin: 5px 0px;
}

.input-container .checkbox-array {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.input-container .checkbox-array .checkbox-container {
    margin: 5px 10px;
}

.input-container:not(.has-label) > label {
    line-height: 1.2rem;
    color: #a7a7a7;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    font-size: 17px;
}

.input-container.has-icon>input,
.input-container.has-icon>select,
.input-container.has-icon textarea,
.input-container.has-icon>div {
    padding: 0px 30px;
}

.input-container.has-icon-post-only>input,
.input-container.has-icon-post-only>select,
.input-container.has-icon-post-only textarea,
.input-container.has-icon-post-only>div {
    padding-right: 30px;
}

.input-container.has-icon .pre-icon {
    position: absolute;
    height: 36px;
    left: 10px;
    bottom: 0;
    text-align: center;
    color: #C0C4CC;
    -webkit-transition: all .3s;
    transition: all .3s;
    line-height: 36px;
    font-size: 12px;
}

.input-container.has-icon .post-icon,
.input-container.has-icon-post-only .post-icon {
    position: absolute;
    height: 36px;
    right: 10px;
    bottom: 0;
    text-align: center;
    color: #C0C4CC;
    -webkit-transition: all .3s;
    transition: all .3s;
    line-height: 36px;
    font-size: 12px;
}

.input-container.has-label {
    display: flex;
    align-items: center;
}

.input-container.has-label>label {
    font-weight: 700;
    text-align: right;
    font-size: 14px;
    color: #606266;
    line-height: 18px;
    padding: 0 12px 0 0;
    width: 120px;
    box-sizing: border-box;
}

.input-container.has-label>input,
.input-container.has-label select,
.input-container.has-label .checkbox-array,
.input-container.has-label textarea,
.input-container.has-label>div,
.input-container.has-label>p {
    width: calc(100% - 120px);
}

.input-container.has-label.column {
    flex-direction: column;
}

.input-container.has-label.column label {
    text-align: left;
    width: 100%;
}

.input-container.column input,
.input-container.column select,
.input-container.column textarea,
.input-container.column>div,
.input-container.column>p {
    width: 100%;
}


/* checkboxes */

.checkbox-container {
    margin: 5px 0px;
}

.checkbox-container input[type="checkbox"],
.checkbox-container input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.checkbox-container label {
    padding-left: 10px;
    line-height: 14px;
    font-size: 14px;
    color: #606266;
}

.checkbox-container input[type="checkbox"]+label,
.checkbox-container input[type="radio"]+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin-right: 10px;
}

.checkbox-container input[type="checkbox"]+label:before,
.checkbox-container input[type="radio"]+label:before {
    content: '';
    margin-right: 5px;
    display: inline-block;
    vertical-align: text-top;
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border: 1px solid #d9d9d9;
}

.checkbox-container input[type="radio"]+label:before {
    border-radius: 100%;
}

.checkbox-container input[type="checkbox"]:hover:not(:disabled)+label:before,
.checkbox-container input[type="radio"]:hover:not(:disabled)+label:before {
    background: #1890ff;
}

.checkbox-container.negative input[type="checkbox"]:hover:not(:disabled)+label:before,
.checkbox-container.negative input[type="radio"]:hover:not(:disabled)+label:before {
    background: #ff182d;
}

.checkbox-container.positive input[type="checkbox"]:hover:not(:disabled)+label:before,
.checkbox-container.positive input[type="radio"]:hover:not(:disabled)+label:before {
    background: #13ce66;
}

.checkbox-container input[type="checkbox"]:focus+label:before,
.checkbox-container input[type="radio"]:focus+label:before {
    border: 1px solid #1890ff;
}

.checkbox-container.negative input[type="checkbox"]:focus+label:before,
.checkbox-container.negative input[type="radio"]:focus+label:before {
    border: 1px solid #ff182d;
}

.checkbox-container.positive input[type="checkbox"]:focus+label:before,
.checkbox-container.positive input[type="radio"]:focus+label:before {
    border: 1px solid #13ce66;
}

.checkbox-container input[type="checkbox"]:checked+label:before,
.checkbox-container input[type="radio"]:checked+label:before {
    background: #1890ff;
}

.checkbox-container.negative input[type="checkbox"]:checked+label:before,
.checkbox-container.negative input[type="radio"]:checked+label:before {
    background: #ff182d;
}

.checkbox-container.positive input[type="checkbox"]:checked+label:before,
.checkbox-container.positive input[type="radio"]:checked+label:before {
    background: #13ce66;
}

.checkbox-container input[type="checkbox"]:disabled+label,
.checkbox-container input[type="radio"]:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.checkbox-container input[type="checkbox"]:disabled+label:before,
.checkbox-container input[type="radio"]:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.checkbox-container input[type="checkbox"]:checked+label,
.checkbox-container input[type="radio"]:checked+label {
    color: #1890ff;
}

.checkbox-container.negative input[type="checkbox"]:checked+label,
.checkbox-container.negative input[type="radio"]:checked+label {
    color: #ff182d;
}

.checkbox-container.positive input[type="checkbox"]:checked+label,
.checkbox-container.positive input[type="radio"]:checked+label {
    color: #13ce66;
}

.checkbox-container input[type="checkbox"]:checked+label:after,
.checkbox-container input[type="radio"]:checked+label:after {
    content: '\f00c';
    position: absolute;
    left: 4px;
    top: 2px;
    color: #fff;
    font-size: 8px;
    font-family: "Font Awesome 5 Pro";
}

.checkbox-container .checkbox-description {
    margin: 0px;
    font-size: 11px;
    margin-left: 21px;
}


/* Checkbox Array */

.checkbox-array {
    display: flex;
    flex-wrap: wrap;
}

.checkbox-array .checkbox-container {
    margin-right: 5px;
}


/* Custom Select */

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
}

.custom-select-wrapper select {
    display: none;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: block;
    padding: 0 62px 0 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 36px;
    min-height: 36px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    cursor: pointer;
    border: 1px solid rgb(220, 223, 230);
    border-radius: 4px;
    color: rgb(96, 98, 102);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 7px 0;
    padding: 5px 0px;
    border-radius: 4px;
    box-sizing: border-box;
    transition: all .2s ease-in-out;
    border: 1px solid rgb(230, 235, 245);
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 12px 0px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    max-height: 300px;
    overflow: auto;
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid rgb(220, 223, 230);
    border-left: 1px solid rgb(220, 223, 230);
    background: #fff;
    transform: rotate(45deg);
    transition: all .2s ease-in-out;
}

.custom-option,
.custom-option-toggle {
    position: relative;
    display: block;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(96, 98, 102);
    line-height: 17px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    box-sizing: border-box;
}

.custom-option:hover,
.custom-option.selection,
.custom-option-toggle:hover,
.custom-option-toggle.selection {
    background-color:#ffe8f4;
    color: #d442af;
}


/* buttons */

.button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    background: #FFFFFF;
    border: 1px solid #DCDFE6;
    border-color: #DCDFE6;
    color: #606266;
    text-decoration: none;
}

.button:hover,
.button:focus {
    color: #1890ff;
    border-color: #badeff;
    background-color: #ffe8f4;
}

.button:active {
    color: #1682e6;
    border-color: #1682e6;
    outline: none;
}

.button.small {
    padding: 8px 15px;
}

.button.tiny {
    padding: 5px 12px;
    font-size: 12px;
}

.button.large {
    padding: 15px 30px;
    font-size: 20px;
}

.button.blue {
    color: #FFFFFF;
    background-color: #1890ff;
    border-color: #1890ff;
}

.button.blue:hover,
.button.blue:focus {
    background: #46a6ff;
    border-color: #46a6ff;
    color: #FFFFFF;
}

.button.blue:active {
    background: #1682e6;
    border-color: #1682e6;
    color: #FFFFFF;
    outline: none;
}

.button.purple {
    color: #FFFFFF;
    background-color: #e618ff;
    border-color: #e618ff;
}

.button.purple:hover,
.button.purple:focus {
    background: #d442af;
    border-color: #d442af;
    color: #FFFFFF;
}

.button.purple:active {
    background: #d442af;
    border-color: #d442af;
    color: #FFFFFF;
    outline: none;
}

.button.green,
.button.positive {
    color: #FFFFFF;
    background-color: #13ce66;
    border-color: #13ce66;
}

.button.green:hover,
.button.positive:hover,
.button.green:focus,
.button.positive:focus {
    background: #42d885;
    border-color: #42d885;
    color: #FFFFFF;
}

.button.green:active,
.button.positive:active {
    background: #11b95c;
    border-color: #11b95c;
    color: #FFFFFF;
    outline: none;
}

.button.grey,
.button.info {
    color: #FFFFFF;
    background-color: #909399;
    border-color: #909399;
}

.button.grey:hover,
.button.info:hover,
.button.grey:focus,
.button.info:focus {
    background: #a6a9ad;
    border-color: #a6a9ad;
    color: #FFFFFF;
}

.button.grey:active,
.button.info:active {
    background: #82848a;
    border-color: #82848a;
    color: #FFFFFF;
    outline: none;
}

.button.yellow,
.button.warning {
    color: #ffffff;
    background-color: #fdd76f;
    border-color: #f9d165;
}

.button.yellow:hover,
.button.warning:hover,
.button.yellow:focus,
.button.warning:focus {
    background: #ffd35b;
    border-color: #fbca46;
    color: #ffffff;
}

.button.yellow:active,
.button.warning:active {
    background: #e6a700;
    border-color: #e6a700;
    color: #FFFFFF;
    outline: none;
}

.button.red,
.button.negative {
    color: #FFFFFF;
    background-color: #ff4949;
    border-color: #ff4949;
}

.button.red:hover,
.button.negative:hover,
.button.red:focus,
.button.negative:focus {
    background: #ff6d6d;
    border-color: #ff6d6d;
    color: #FFFFFF;
}

.button.red:active,
.button.negative:active {
    background: #e64242;
    border-color: #e64242;
    color: #FFFFFF;
    outline: none;
}

/* Main App Styles */

#app {
    max-width: 900px;
    background-color: #fff;
    margin: 50px auto;
    box-sizing: border-box;
}

/* Header Styles */

.header.navbar {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header.navbar .navbar-section {
    flex: 1 1 100%;
    min-width: 100%;
    padding: .5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between!important;
    box-sizing: border-box;
    border-bottom: 1px solid #969696;
}

.navbar .navbar-brand {
    font-size: .9rem;
    text-decoration: none;
}

.header.navbar .btn-contact {
    color: #1d1d1b;
    transition: all 1s;
    height: auto;
    background-color: transparent;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 8px;
}

.header.navbar .btn-contact .btn-icon {
    fill: #1d1d1b;
    width: 2.1rem;
    height: 2.1rem;
    padding: .2rem;
    transition: all 1s;
}

.header.navbar .btn-contact .btn-text {
    font-size: 1.125rem;
}

.header.navbar .btn-contact .btn-text strong {
    color: #03a89a;
    font-size: 1.5rem;
    position: relative;
}

#header {
    position: relative;
    margin-bottom: 100px;
}

#header > div {
    padding: 0px 30px;
    padding-top: 0px;
    margin-top: -5px;
    background-color: #03a89a;
    color: #fff;
    font-size: 16px;
}

#header:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: #03a89a;
    -webkit-clip-path: polygon(0 0,100% 0,100% 100%, 0 0);
    clip-path: polygon(0 0,100% 0,100% 100%, 0 0);
    bottom: -99.5px;
    left: 0;
}

#header img {
    width: 300px;
    margin: 14px;
}

#header h1 {
    color: #fff;
    font-size: 58px;
    width: 100%;
    text-align: right;
    margin-bottom: 30px;
}

/* Payment Main Content Styles */

#main_content {
    padding: 0 30px;
}

#main_content h2 {
    border-bottom: 1px solid #969696;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

#main_content h2.no_border {
    border: none;
    margin-bottom: 0px;
}

/* Footer */

#footer > div {
    padding: 10px 0px;
    padding-top: 0px;
    margin-top: -1px;
    background-color: #03a89a;
    color: #fff;
    font-size: 16px;
}

#footer > div p {
    color: #fff;
    margin: 5px 0px;
    text-align: center;
}

#footer > div a {
    text-decoration: none;
    color: inherit;
}

#footer {
    position: relative;
    margin-top: 100px;
}

#footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: #03a89a;
    -webkit-clip-path: polygon(0 0,0 100%,100% 100%);
    clip-path: polygon(0 0,0 100%,100% 100%);
    top: -99.5px;
    left: 0;
}

/* Invoice Details */
.invoice_details {
    margin-bottom: 20px;
}

.invoice_details > p {
    margin: 0px;
    margin-bottom: 5px;
}

.invoice_details > p > span {
    font-weight: bold;
}

/* Invoice Table */

.invoice_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.invoice_table thead th:first-child {
    width: 100%;
    text-align: left;
    padding-left: 3px;
}

.invoice_table thead th {
    border-bottom: 3px solid #03a89a;
    border-top: 1px solid #03a89a;
    padding: 15px 5px;
    font-size: 22px;
    color: #162e4b;
    line-height: 1;
}

.invoice_table tbody td, .invoice_table tfoot td {
    padding: 3px;
    font-size: 14px;
}

.invoice_table tbody td:nth-child(2) {
    text-align: center;
}

.invoice_table tbody td:nth-child(3) {
    text-align: right;
}

.invoice_table tbody td:nth-child(4) {
    text-align: right;
}

.invoice_table tfoot th {
    text-align: right;
    color: #03a89a;
    padding-right: 15px;
}

.invoice_table tfoot td {
    text-align: right;
}

.invoice_table tr.spacer td {
    border: none;
}

/* Containers */

.container {
    width: 100%;
    margin: 15px 0px;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.05);
    ;
    position: relative;
    background-color: #fff;
    min-height: 90px;
    flex-grow: 1;
    border-radius: 4px;
}

.container:after {
    content: "";
    clear: both;
    display: table;
}

.container.transparentBG {
    background: transparent;
    box-shadow: none;
}

.containerSplit {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}

.containerSplit > .container {
    width: calc(100% - 30px);
    margin: 15px;
}

.containerSplit.halfContainer > .container {
    width: calc(50% - 30px);
}

.containerSplit.thirdContainer > .container {
    width: calc(33.33% - 30px);
}

.containerSplit.thirdContainer > .container.twoThirds {
    width: calc(66.66% - 30px);
}

.containerSplit.quarterContainer > .container {
    width: calc(25% - 30px);
}

.containerSplit.quarterContainer > .container.twoQuarters {
    width: calc(50% - 30px);
}

.containerSplit.quarterContainer > .container.threeQuarters {
    width: calc(75% - 30px);
}

.container>h2 {
    margin: -10px;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.container.no-padding>h2 {
    margin: 0px;
}

.container>h2 .icon {
    font-size: 18px;
}

.container>h2 .button {
    margin-top: -5px;
}

.container h3 {
    border-bottom: 1px solid #eaeaea;
    color: #717171;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-right: -10px;
    margin-bottom: 5px;
}

/* Popup */

.popup {
	display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 999;
    width: 100%;
    height: 100%;
    opacity: 0.97;
}

.popup .popup_content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    width: 100%;
    max-width: 75%;
    height: 100%;
    max-height: 75%;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: auto;
	transition: 1s;
    overflow: hidden;
}

.popup .popup_content .popup_head {
    background: rgb(158, 20, 175);
	margin-top: -1px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 5px;
    height: 50px;
    color: #fff;
}

.popup .popup_content .popup_head.negative {
    background: rgb(255, 133, 133);
    background: -moz-linear-gradient(left, rgb(216, 49, 49) 1%, rgb(255, 133, 133) 100%);
    background: -webkit-linear-gradient(left, rgb(216, 49, 49) 1%,rgb(255, 133, 133) 100%);
    background: linear-gradient(to right, rgb(216, 49, 49) 1%,rgb(255, 133, 133) 100%);
}

.popup .popup_content .popup_head .popup_title {
    line-height: 50px;
    font-size: 21px;
    padding-left: 16px;
}

.popup .popup_content .popup_head .close_popup span {
    position: absolute;
    right: 10px;
    top: 11px;
    font-size: 14px;
    color: #ffffff;
    background-color: rgb(244, 81, 108);
    border-radius: 100%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
}

.popup .popup_content .popup_body {
    height: calc(100% - 80px);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	position: relative;
}

.popup .popup_content .popup_body iframe {
    height: calc(100% - 4px);
    width: 100%;
}

.popup .popup_content .popup_body.no_footer {
	height: calc(100% - 30px);
}

.popup .popup_content .popup_footer {
    box-shadow: 0px -2px 20px -8px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 45px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 7px;
    box-sizing: border-box;
}

.popup.popup_confirm .popup_content {
    width: 320px;
    height: 175px;
}

.popup.popup_confirm .popup_content .popup_body {
    text-align: center;
}

/* Table */

.table-container {
    overflow-x: auto;
    width: 100%;
    overflow-x: auto;
    width: 100%;
    margin: 15px 0px;
    padding: 0px;
    padding-top: 5px;
    box-sizing: border-box;
    box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    background-color: #fff;
    min-height: 90px;
    overflow: auto;
    flex-grow: 1;
    border-radius: 4px;
}

table.main_table {
    width: 100%;
    border-spacing: 0px;
}

table.main_table thead th {
    border-bottom: 1px solid #dfe6ec;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-word;
    line-height: 23px;
    padding-left: 10px;
    padding-right: 10px;
    color: rgb(144, 147, 153);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding-top: 15px;
    min-width: 50px;
    position: relative;
}

table.main_table thead th.order-desc,
table.main_table thead th.order-asc,
table.main_table thead th.order-able {
    padding-left: 20px;
}

table.main_table thead th.order-able {
    cursor: pointer;
}

table.main_table thead th.order-asc::before,
table.main_table thead th.order-desc::before,
table.main_table thead th.order-able::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: '\f0d8';
    left: 7px;
    bottom: 5px;
    color: #dadada;
    font-size: 12px;
}

table.main_table thead th.order-asc::after,
table.main_table thead th.order-desc::after,
table.main_table thead th.order-able::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: '\f0d7';
    left: 7px;
    bottom: -3px;
    color: #dadada;
    font-size: 12px;
}

table.main_table thead th.order-asc::before,
table.main_table thead th.order-desc::after,
table.main_table thead th.order-asc,
table.main_table thead th.order-desc {
    color: #d442af;
}

table.main_table tbody td {
    padding: 10px 0;
    border-bottom: 1px solid #dfe6ec;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-word;
    line-height: 23px;
    padding-left: 10px;
    padding-right: 10px;
    color: rgb(96, 98, 102);
    font-size: 14px;
    min-width: 50px;
}

table.main_table tbody tr:nth-child(odd) td {
    background-color: rgba(87, 125, 159, 0.02);
}

table.link-table tr td {
    cursor: pointer;
}

table.link-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.04);
}

/* Submit Button */
#submit_btn {
    background-color: #03a89a;
    border-radius: 0;
    padding: .5rem 1.5rem .5rem 3.5rem;
    -webkit-clip-path: polygon(45px 0,100% 0,100% 100%,0 100%);
    clip-path: polygon(45px 0,100% 0,100% 100%,0 100%);
    margin-left: -30px;
    height: 50px;
    line-height: 47px;
    font-size: 21px;
    border: .05rem solid #03a89a;
    position: relative;
    color: #fff;
    float: right;
    cursor: pointer;
    text-transform: uppercase;
}

#submit_btn:hover {
    background-color: #fff;
    color: #03a89a;
    border: .05rem solid #03a89a;
}

#submit_btn:before {
    content: "";
    width: .05rem;
    border-left: .05rem solid #03a89a;
    height: 100px;
    position: absolute;
    transform: rotate(33deg);
    bottom: 0;
    left: 0;
    transform-origin: bottom left;
}

/* dc buttons */

.dc_btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: .05rem solid #03a89a;
    border-radius: .4rem;
    display: inline-block;
    font-size: 18px;
    line-height: 20px;
    outline: none;
    padding: 8px 23px;
    text-align: center;
    text-decoration: none;
    transition: background .2s,border .2s,box-shadow .2s,color .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    background: #03a89a;
    border-color: #03998c;
    color: #fff;
    cursor: pointer;
}

.link_text {
    align-self: center;
    text-decoration: underline;
    color: #a7a7a7;
    cursor: pointer;
    font-size: 14px;
    line-height: 14px;
}

/* other */
.exp_splitter {
    font-size: 24px;
    color: #a7a7a7;
    font-weight: 600;
    margin: 0 3px;
}

@media all and (max-width: 768px) {
    .containerSplit.halfContainer > .container,
    .containerSplit.thirdContainer > .container,
    .containerSplit.thirdContainer > .container.twoThirds,
    .containerSplit.quarterContainer > .container,
    .containerSplit.quarterContainer > .container.twoQuarters,
    .containerSplit.quarterContainer > .container.threeQuarters {
        width: calc(100% - 30px);
    }

    .container.wrap-order-1 {
        order: 1;
    }
    
    .container.wrap-order-2 {
        order: 2;
    }

    #app {
        margin: 0px;
    }

    #footer:before {
        height: 70px;
        top: -70px;
    }

    #header:before {
        height: 70px;
        bottom: -70px;
    }
}

@media all and (max-width: 645px) {
    .header.navbar .navbar-section {
        flex-direction: column;
        align-items: center;
    }
    #header h1 {
        font-size: 45px;
    }
}

@media all and (max-width: 425px) {
    .input-container.has-label {
        flex-direction: column;
    }
    .input-container.has-label label {
        text-align: left;
        width: 100%;
    }
    .input-container.has-label input,
    .input-container.has-label select,
    .input-container.has-label textarea,
    .input-container.has-label>div,
    .input-container.has-label>p {
        width: 100%;
    }
    #footer:before {
        height: 60px;
        top: -60px;
    }
    #header:before {
        height: 60px;
        bottom: -60px;
    }
}
