﻿@font-face {
    font-family: "Tele2DisplaySerif";
    src: url('../fonts/Tele2DisplaySerif-Regular.otf');
    /*src: url('../assets/fonts/GilroyExtraBold.eot') format('embedded-opentype'), 
        url('../assets/fonts/GilroyExtraBold.woff2') format('woff2'), 
        url('../assets/fonts/GilroyExtraBold.woff') format('woff'), 
        url('../assets/fonts/GilroyExtraBold.ttf') format('truetype'), 
        url('../assets/fonts/GilroyExtraBold.svg#GilroyExtraBold') format('svg');*/
}

@font-face {
    font-family: "Tele2DisplaySerifBold";
    src: url('../fonts/Tele2DisplaySerif-Bold.otf');
}

html {
    height: 100%;
}

body {
    position: relative;
    height: 100%;
    font-family: "Tele2DisplaySerif";
    background-color: #f0f0f0;
}

/* Bootstrap 4 */
.row:before, .row:after {
    display: none !important;
}

.color-pink {
    color: #eb749c;
}

.title-background {
    /*background-image: -moz-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);*/
    background-image: -moz-linear-gradient(180deg, #1f2229 0%, #1f2229 100%);
    background-image: -webkit-linear-gradient(180deg, #1f2229 0%, #1f2229 100%);
    background-image: -ms-linear-gradient(180deg, #1f2229 0%, #1f2229 100%);
    background-size: 100% 100px;
    background-repeat: no-repeat;
}

.title-background-full {
    /*background-image: -moz-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);*/
    background-image: -moz-linear-gradient(180deg, #1f2229 0%, #1f2229 100%);
    background-image: -webkit-linear-gradient(180deg, #1f2229 0%, #1f2229 100%);
    background-image: -ms-linear-gradient(180deg, #1f2229 0%, #1f2229 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.btn {
    white-space: normal;
}

/* Pink button */
.btn-primary.pink {
    /*background-image: -moz-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(228, 90, 167) 0%, rgb(245, 91, 81) 100%);*/
    background-color: #1f2229;
    border-color: #1f2229;
    min-width: 120px;
}

    .btn-primary.pink:not(:disabled):not(.disabled):active,
    .btn-primary.pink:not(:disabled):not(.disabled).active,
    .show > .btn-primary.pink.dropdown-toggle {
        border-color: #1f2229;
    }

        .btn-primary.pink:not(:disabled):not(.disabled):active:focus,
        .btn-primary.pink:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.pink.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(31, 34, 41, 0.5);
        }

    .btn-primary.pink:focus, .btn-primary.pink.focus {
        box-shadow: 0 0 0 0.2rem rgba(31, 34, 41, 0.5);
    }

    .btn-primary.pink:hover {
        border-color: #1f2229;
    }

    .btn-primary.pink.disabled, .btn-primary.pink:disabled {
        border-color: #1f2229;
    }

/* Green button */
.btn-primary.green {
    background-color: rgb(123, 204, 80);
    border-color: rgb(123, 204, 80);
    min-width: 120px;
}

    .btn-primary.green:not(:disabled):not(.disabled):active,
    .btn-primary.green:not(:disabled):not(.disabled).active,
    .show > .btn-primary.green.dropdown-toggle {
        border-color: rgb(123, 204, 80);
    }

        .btn-primary.green:not(:disabled):not(.disabled):active:focus,
        .btn-primary.green:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.green.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(123, 204, 80, 0.5);
        }

    .btn-primary.green:focus, .btn-primary.green.focus {
        box-shadow: 0 0 0 0.2rem rgba(123, 204, 80, 0.5);
    }

    .btn-primary.green:hover {
        border-color: rgb(123, 204, 80);
    }

    .btn-primary.green.disabled, .btn-primary.green:disabled {
        border-color: rgb(123, 204, 80);
    }

/* Blue button */
.btn-primary.blue {
    background-image: -moz-linear-gradient(180deg, rgb(87, 156, 204) 0%, rgb(67, 89, 172) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(87, 156, 204) 0%, rgb(67, 89, 172) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(87, 156, 204) 0%, rgb(67, 89, 172) 100%);
    border-color: rgb(67, 89, 172);
    min-width: 120px;
}

    .btn-primary.blue:not(:disabled):not(.disabled):active,
    .btn-primary.blue:not(:disabled):not(.disabled).active,
    .show > .btn-primary.blue.dropdown-toggle {
        border-color: rgb(67, 89, 172);
    }

        .btn-primary.blue:not(:disabled):not(.disabled):active:focus,
        .btn-primary.blue:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.blue.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(67, 89, 172, 0.5);
        }

    .btn-primary.blue:focus,
    .btn-primary.blue.focus {
        box-shadow: 0 0 0 0.2rem rgba(67, 89, 172, 0.5);
    }

    .btn-primary.blue:hover {
        border-color: rgb(67, 89, 172);
    }

    .btn-primary.blue.disabled,
    .btn-primary.blue:disabled {
        border-color: rgb(67, 89, 172);
    }

/* Muted button */
.btn-primary.muted {
    background-image: -moz-linear-gradient(180deg, rgb(174, 174, 174) 0%, rgb(182, 182, 182) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(174, 174, 174) 0%, rgb(182, 182, 182) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(174, 174, 174) 0%, rgb(182, 182, 182) 100%);
    border-color: rgb(182, 182, 182);
    min-width: 120px;
}

    .btn-primary.muted:not(:disabled):not(.disabled):active,
    .btn-primary.muted:not(:disabled):not(.disabled).active,
    .show > .btn-primary.muted.dropdown-toggle {
        border-color: rgb(182, 182, 182);
    }

        .btn-primary.muted:not(:disabled):not(.disabled):active:focus,
        .btn-primary.muted:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.muted.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(182, 182, 182, 0.5);
        }

    .btn-primary.muted:focus,
    .btn-primary.muted.focus {
        box-shadow: 0 0 0 0.2rem rgba(182, 182, 182, 0.5);
    }

    .btn-primary.muted:hover {
        border-color: rgb(182, 182, 182);
    }

    .btn-primary.muted.disabled,
    .btn-primary.muted:disabled {
        border-color: rgb(182, 182, 182);
    }

.text-pink {
    color: rgb(239, 84, 122) !important;
}

.text-gold {
    color: #f1c363 !important;
}

.text-green {
    color: #81ae4e !important;
}

.text-attention {
    font-size: 110%;
    text-transform: uppercase;
    color: rgb(239, 84, 122) !important;
}

/* Fix for minimized labels */
form {
    position: relative;
}

.form-group.is-invalid .form-control {
    border-color: #dc3545;
}

    .form-group.is-invalid .form-control:focus {
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

.file-control.is-invalid {
    border-color: #dc3545;
}

.form-control-radio.is-invalid {
    border: 1px solid #dc3545;
    border-radius: 0.25rem;
    color: #dc3545;
}

.form-group > label.minimized {
    position: absolute;
    pointer-events: none;
    left: 16px;
    margin-top: -31px;
    top: auto;
    transition: 0.2s ease all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 20px);
}

.typeahead-label-minimized {
    font-size: 9px !important;
    opacity: 1 !important;
    margin-top: -38px !important;
}

.questionary-row .questionary-col .form-group > label.minimized {
    left: 24px;
    width: calc(100% - 36px);
}

.form-group > input:hover ~ label.minimized,
.form-group > input:focus ~ label.minimized,
.form-group > input[value]:not(:focus):not([value=""]) ~ label.minimized,
.form-group > input[placeholder]:not([placeholder=""]) ~ label.minimized {
    font-size: 9px !important;
    opacity: 1 !important;
    margin-top: -38px !important;
}

.form-group > input:-webkit-autofill ~ label.minimized {
    font-size: 9px !important;
    opacity: 1 !important;
    margin-top: -38px !important;
}

.form-group > input:-moz-autofill ~ label.minimized {
    font-size: 9px !important;
    opacity: 1 !important;
    margin-top: -38px !important;
}

.form-group > input:autofill ~ label.minimized {
    font-size: 9px !important;
    opacity: 1 !important;
    margin-top: -38px !important;
}

.questionary-row {
    margin-left: -8px;
    margin-right: -8px;
}

    .questionary-row .questionary-col {
        padding-left: 8px;
        padding-right: 8px;
    }

.page-progress {
    margin-bottom: -12px;
    z-index: 1;
    position: relative;
}

    .page-progress .page .page-line {
        width: 100%;
        height: 8px;
    }

        .page-progress .page .page-line.active-line {
            background-image: -moz-linear-gradient( 180deg, rgb(148,185,89) 0%, rgb(123,171,69) 100%);
            background-image: -webkit-linear-gradient( 180deg, rgb(148,185,89) 0%, rgb(123,171,69) 100%);
            background-image: -ms-linear-gradient( 180deg, rgb(148,185,89) 0%, rgb(123,171,69) 100%);
            box-shadow: 0px 5px 10px 0px rgba(31, 32, 41, 0.2);
            margin-right: -8px;
        }

        .page-progress .page .page-line.inactive-line {
            background-color: rgb(215, 215, 215);
        }

    .page-progress .page .page-dot {
        border-width: 3px;
        border-color: rgb(144, 183, 86);
        border-style: solid;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        margin-right: -8px;
        margin-top: -4px;
        z-index: 2;
        position: relative;
    }

        .page-progress .page .page-dot.page-dot-current {
            background-color: rgb(215, 215, 215);
        }

        .page-progress .page .page-dot.page-dot-back {
            background-color: rgb(255, 193, 7);
        }

        .page-progress .page .page-dot.page-dot-success {
            background-color: rgb(144, 183, 86);
        }

        .page-progress .page .page-dot .fa {
            position: relative;
            margin-left: -1px;
            margin-top: -1px;
            font-size: 0.75em;
            color: #cecece;
            display: block;
            color: #fff;
        }

    .page-progress .page:first-child .page-line {
        border-radius: 0.25rem 0 0 0;
    }

    .page-progress .page:last-child .page-line {
        border-radius: 0 0.25rem 0 0;
    }

/* Font Awesome */
.fa-sm {
    /*font-size: 0.63em;*/
}

[data-toggle="collapse"] .fa:before {
    content: "\f106";
    opacity: 0.5;
}

[data-toggle="collapse"].collapsed .fa:before {
    content: "\f107";
    opacity: 0.5;
}

.hr-dotted {
    border: 0;
    border-top: 1px dashed #ccc;
}

.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: black;
    text-align: center;
    height: 1.5em;
    /*opacity: .5;*/
}

    .hr-text:before {
        content: '';
        /*background: linear-gradient(to right, transparent, #818078, transparent);*/
        /*background-color: #818078;*/
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
    }

    .hr-text:after {
        content: attr(data-content);
        position: relative;
        display: inline-block;
        color: black;
        padding: 0 .5em;
        line-height: 1.5em;
        color: rgba(129, 128, 120, 0.5);
        background-color: #fcfcfa;
        font-size: 90%;
    }


/* Customize the label (the container) */
label.custom-radio {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-left: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    label.custom-radio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    /* Create a custom radio button */
    label.custom-radio .checkmark {
        position: absolute;
        top: 5px;
        left: 0;
        height: 16px;
        width: 16px;
        background-color: #fff;
        border-radius: 50%;
        border: 1px solid #ced4da;
    }

    /* On mouse-over, add a grey background color */
    label.custom-radio:hover input ~ .checkmark {
        background-color: #ccc;
    }

    /* When the radio button is checked, add a blue background */
    label.custom-radio input:checked ~ .checkmark {
        background-color: #fff;
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    label.custom-radio .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    label.custom-radio input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    label.custom-radio .checkmark:after {
        top: 3px;
        left: 3px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #172934;
    }

.form-control-radio {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Customize the label (the container) */
label.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-left: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    label.custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    /* Create a custom radio button */
    label.custom-checkbox .checkmark {
        position: absolute;
        top: 5px;
        left: 0;
        height: 16px;
        width: 16px;
        background-color: #fff;
        border-radius: 50%;
        border: 1px solid #ced4da;
    }

    /* On mouse-over, add a grey background color */
    label.custom-checkbox:hover input ~ .checkmark {
        background-color: #ccc;
    }

    /* When the radio button is checked, add a blue background */
    label.custom-checkbox input:checked ~ .checkmark {
        background-color: rgb(144, 183, 86);
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    label.custom-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the indicator (dot/circle) when checked */
    label.custom-checkbox input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the indicator (dot/circle) */
    label.custom-checkbox .checkmark:after {
        content: "\f00c";
        margin-left: 1px;
        margin-top: 1px;
        font-size: 0.75em;
        color: #fff;
    }

.card-footer.custom-card-footer {
    background-color: #fff7ed;
    border-top: none;
}

input.fileinput-hidden {
    font-size: 1px;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    cursor: pointer;
}

.file-control {
    width: 100%;
    height: 150px;
    border: 1px dashed #ccc;
}

.inform-table tr td:first-child {
    width: 50%;
}

.inform-table tr td:last-child {
    width: 50%;
    text-align: right;
    font-weight: bold;
}

/* fix sms code block */
.sms-code-container {
    display: -ms-flexbox !important;
    display: flex !important;
}

    .sms-code-container > div:first-child {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
        padding-right: 16px;
    }

@media (max-width: 576px) {
    .sms-code-container {
        display: block !important;
    }

        .sms-code-container > div:first-child {
            padding-right: 0 !important;
            margin-bottom: 16px;
        }

        .sms-code-container > div:last-child {
            text-align: center;
        }
}

#errorMessage {
    margin-top: 16px;
}

.sms-code-container .form-group {
    margin-bottom: 0;
}

#BlockUI {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    margin: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.6);
}

#BlockUIMessage {
    padding: 16px;
    text-align: center;
    background-color: #000;
    color: #fff;
    max-width: 400px;
}

.add-file {
    cursor: pointer;
}

#orderConfirmationSmsBlock {
    margin-bottom: 20px;
}

.dtpicker-buttonCont .dtpicker-button {
    color: #fff !important;
}

.dtpicker-header .dtpicker-close {
    color: #FF3B30 !important;
}

.dtpicker-components .dtpicker-comp > * {
    color: #2980B9 !important;
}

/*.ap-layout-fixed {
    width: 100% !important;
}*/

.bg-sand {
    background-color: #fff7ed !important;
}

.bg-grey-light {
    background-color: #f5f5f5 !important;
}

.bg-pink-light {
    background-color: #f38492 !important;
}

.currency-sign {
    font-size: 70%;
    opacity: 0.7;
}

.account-label {
    font-size: 75%;
}

span.twitter-typeahead .tt-menu,
span.twitter-typeahead .tt-dropdown-menu {
    max-height: 250px;
    overflow-y: auto;
}

span.twitter-typeahead .tt-suggestion {
    white-space: normal !important;
}

.personal-area-nav .nav-item.dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

    .personal-area-nav .nav-item.dropdown a.dropdown-toggle {
        color: #f8f9fa;
    }

    .personal-area-nav .nav-item.dropdown.show a.dropdown-toggle {
        color: #212529;
        background-color: #fff;
    }

.personal-area-nav .nav-icon {
    min-width: 24px;
    display: inline-block;
    margin-left: -18px;
    text-align: center;
}

.personal-area-nav .dropdown-toggle .nav-icon {
    min-width: 20px;
    margin-left: -6px;
}

.table-label {
    color: #6c757d;
    font-size: 75%;
}

.text-vertical {
    writing-mode: tb-rl;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    vertical-align: middle;
    text-align: center;
}

.border-radius {
    border-radius: 0.25rem;
}

.border-radius-l {
    border-radius: 0.25rem 0 0 0.25rem;
}

.border-radius-r {
    border-radius: 0 0.25rem 0.25rem 0;
}

.border-radius-lt {
    border-radius: 0.25rem 0 0 0;
    margin-right: -1px;
    margin-bottom: -1px;
}

.border-radius-lb {
    border-radius: 0 0 0 0.25rem;
    margin-right: -1px;
    margin-top: -1px;
}

.border-radius-rt {
    border-radius: 0 0.25rem 0 0;
    margin-left: -1px;
    margin-bottom: -1px;
}

.border-radius-rb {
    border-radius: 0 0 0.25rem 0;
    margin-left: -1px;
    margin-top: -1px;
}

.border-radius-t {
    border-radius: 0.25rem 0.25rem 0 0;
}

.border-radius-b {
    border-radius: 0 0 0.25rem 0.25rem;
    margin-left: -1px;
    margin-top: -1px;
}

.mt-1px {
    margin-top: -1px;
}

.mb-1px {
    margin-bottom: -1px;
}

.border-r {
    border-top: 10px solid #f38492;
    border-bottom: 10px solid #f38492;
    width: 1px;
    height: 100%;
}

.table-padding-0 td {
    padding: 0;
}

table.loans tr td:first-child
/*,table.loans tr td:last-child*/ {
    padding-bottom: calc(0.25rem + 1px);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    table.loans tr td:first-child
    /*,table.loans tr td:last-child*/ {
        padding-bottom: 0.25rem;
    }
}

@supports (-ms-ime-align:auto) {
    table.loans tr td:first-child
    /*,table.loans tr td:last-child*/ {
        padding-bottom: 0.25rem;
    }
}

table.loans tr:nth-child(2n-1) td {
    padding-top: 0.25rem;
}

table.loans tr:nth-child(2n) td {
    padding-bottom: 0.25rem;
}

table.aggregate-loans {
    background-color: #f38492 !important;
}

table.single-loan tr:first-child td:first-child {
    padding-bottom: 0;
}

#pillsLoansContent .tab-pane > div > div {
    padding: 0.25rem 1rem;
}

.inform-block {
    padding: 0.25rem 1.25rem;
}

    .inform-block .table-label {
        margin-top: -1.25rem;
        padding: 0 0.75rem;
    }

    .inform-block .modal-header {
        border-bottom: none;
    }

        .inform-block .modal-header .close {
            padding: 0.5rem;
            margin: -1.5rem -2rem -1rem auto;
            z-index: 1;
        }

#loansDetails .card.inform-line {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

    #loansDetails .card.inform-line .card-body {
        font-size: 75%;
    }

#loansDetails .loans-total {
    font-weight: bold;
    /*padding: 0 0.75rem;*/
}

.card.inform-line {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    border-radius: 0;
    border: none;
}
    .card.inform-line:not(:last-child) {
        border-bottom: 1px solid #cdcccd;
    }

    .card.inform-line .card-body {
        padding: 0.75rem 1rem;
    }

.orders .inform-block {
    margin-top: 0.5rem;
}

.field-type-currency {
    text-align: right;
    padding-right: 30px;
}

.input-currency-sign {
    position: absolute;
    display: block;
    transform: translate(0, -50%);
    top: 20px;
    right: 16px;
    pointer-events: none;
    width: 30px;
    text-align: center;
    font-style: normal;
    font-size: 70%;
    opacity: 0.7;
}

.questionary-col .input-currency-sign {
    right: 10px;
}

.instantor-block {
    text-align: center;
    width: 100%;
}

.file-control .fa-lg {
    font-size: 3em !important;
    color: rgb(239, 84, 122) !important;
}

.file-control.file-uploaded .fa-lg {
    color: rgba(10, 10, 10, 0.3) !important
}

.info-item {
    margin-bottom: 16px;
}

/* range item */

input[type=range] {
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-radius: 5px;
}

@supports (-moz-appearance:none) {
    input[type=range] {
        height: 5px;
    }
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    background: #f0f0f2;
    border-radius: 25px;
    border: 0px solid #000101;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #f0f0f2;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: 0.2s;
    /*box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;*/
    background: #f0f0f2;
    border-radius: 25px;
    border: 0px solid #000101;
}

input[type=range]::-moz-range-thumb {
    /*box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;*/
    border: 0px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 25px;
    background: #fa6288;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 0px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 25px;
    background: #fa6288;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -3.6px;
}

input[type=range]::-ms-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 0px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 25px;
    background: #fa6288;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    border-width: 5px 0;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #f0f0f2;
    border: 0px solid #000101;
    border-radius: 50px;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]::-ms-fill-upper {
    background: #f0f0f2;
    border: 0px solid #000101;
    border-radius: 50px;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range]:focus::-ms-fill-lower {
    background: #f0f0f2;
}

input[type=range]:focus::-ms-fill-upper {
    background: #f0f0f2;
}

.input-icon {
    display: block;
    position: relative;
    float: right;
    margin-left: -35px;
    margin-top: 8px;
    margin-right: 10px;
    font-size: 1.4rem;
    color: #ccc;
    z-index: 999;
}

/*#cashInformTable tr {
    height: calc(2.25rem + 0.6rem);
}

    #cashInformTable tr > td {
        vertical-align: middle;
    }*/

.btn {
    border-radius: 2rem;
}

/* dialog style */
@media (min-width: 576px) {
    #paymentsDialog .modal-dialog {
        max-width: 768px;
    }
}

.modal-content {
    border-radius: 1.5rem;
    border: none;
    box-shadow: 8.485px 8.485px 43px 0px rgba(0, 0, 0, 0.25);
    background-color: #f2f2f2;
}

    .modal-content .modal-header {
        background-color: #172934;
        color: #fff;
        border-top-left-radius: 1.5rem;
        border-top-right-radius: 1.5rem;
        border-bottom: none;
    }

        .modal-content .modal-header .close {
            color: #fff;
        }

            .modal-content .modal-header .close:not(:disabled):not(.disabled):hover,
            .modal-content .modal-header .close:not(:disabled):not(.disabled):focus {
                color: #fff;
            }

.modal-backdrop {
    background-color: #fff;
}

    .modal-backdrop.show {
        opacity: 0.7;
    }

#paymentsDialog .form-control-radio {
    height: auto;
}

    #paymentsDialog .form-control-radio .custom-radio {
        padding-left: 25px;
    }


.form-group .form-control:not(textarea) {
    background: none;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid #8f9399;
}

.form-group textarea.form-control {
    background: none;
    border-radius: 5px;
    border: 1px solid #8f9399;
}

    .form-group .form-control:focus,
    .form-group .form-control:hover {
        color: #1f2229;
        border-color: #1f2229;
        box-shadow: none;
    }

.form-group.is-invalid .form-control {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

    .form-group.is-invalid .form-control:focus {
        box-shadow: none;
    }

.form-control.is-invalid {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

#paymentsDialog .nav-link {
    color: #6c757d;
    border-radius: 2rem;
}

    #paymentsDialog .nav-link.active {
        color: #fff;
        background-color: #172934;
    }

#paymentsDialog .card {
    border-radius: 1rem;
}

.card {
    border-radius: 1rem;
    overflow: hidden;
}

.card-header {
    background-color: #172934;
    color: #c5c4c5;
}

.card-header .table-label {
    color: #c5c4c5;
}

@media (min-width: 768px) {
    #paymentsTabContent label {
        white-space: nowrap;
    }
}

