﻿/*Animations Begin*/
/*Rotate*/
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*Slider Zoom In*/
@-webkit-keyframes sliderZoomIn {
    0% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1.25, 1.25);
        -moz-transform: scale(1.25, 1.25);
        -ms-transform: scale(1.25, 1.25);
        -o-transform: scale(1.25, 1.25);
        transform: scale(1.25, 1.25);
    }
}

@-moz-keyframes sliderZoomIn {
    0% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1.25, 1.25);
        -moz-transform: scale(1.25, 1.25);
        -ms-transform: scale(1.25, 1.25);
        -o-transform: scale(1.25, 1.25);
        transform: scale(1.25, 1.25);
    }
}

@-ms-keyframes sliderZoomIn {
    0% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1.25, 1.25);
        -moz-transform: scale(1.25, 1.25);
        -ms-transform: scale(1.25, 1.25);
        -o-transform: scale(1.25, 1.25);
        transform: scale(1.25, 1.25);
    }
}

@-o-keyframes sliderZoomIn {
    0% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1.25, 1.25);
        -moz-transform: scale(1.25, 1.25);
        -ms-transform: scale(1.25, 1.25);
        -o-transform: scale(1.25, 1.25);
        transform: scale(1.25, 1.25);
    }
}

@keyframes sliderZoomIn {
    0% {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform: scale(1.25, 1.25);
        -moz-transform: scale(1.25, 1.25);
        -ms-transform: scale(1.25, 1.25);
        -o-transform: scale(1.25, 1.25);
        transform: scale(1.25, 1.25);
    }
}

/*Text Zoom In*/
@-webkit-keyframes textZoomIn {
    0% {
        opacity: 0;
        filter: opacity(0);
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -moz-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        -o-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
        filter: opacity(1);
    }
}

@-moz-keyframes textZoomIn {
    0% {
        opacity: 0;
        filter: opacity(0);
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -moz-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        -o-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
        filter: opacity(1);
    }
}

@-ms-keyframes textZoomIn {
    0% {
        opacity: 0;
        filter: opacity(0);
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -moz-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        -o-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
        filter: opacity(1);
    }
}

@-o-keyframes textZoomIn {
    0% {
        opacity: 0;
        filter: opacity(0);
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -moz-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        -o-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
        filter: opacity(1);
    }
}

@keyframes textZoomIn {
    0% {
        opacity: 0;
        filter: opacity(0);
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        -moz-transform: scale3d(0.3, 0.3, 0.3);
        -ms-transform: scale3d(0.3, 0.3, 0.3);
        -o-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
        filter: opacity(1);
    }
}

/*fadeIn*/
@-webkit-keyframes fadeUp {
    0% {
        -webkit-transform: translate(0, 27px);
        filter: opacity(0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0, 0);
        filter: opacity(1);
        opacity: 1;
    }
}

@-moz-keyframes fadeUp {
    0% {
        -moz-transform: translate(0, 27px);
        filter: opacity(0);
        opacity: 0;
    }

    100% {
        -moz-transform: translate(0, 0);
        filter: opacity(1);
        opacity: 1;
    }
}

@-ms-keyframes textZoomIn {
    0% {
        -ms-transform: translate(0, 27px);
        filter: opacity(0);
        opacity: 0;
    }

    100% {
        -ms-transform: translate(0, 0);
        filter: opacity(1);
        opacity: 1;
    }
}

@-o-keyframes fadeUp {
    0% {
        -o-transform: translate(0, 27px);
        filter: opacity(0);
        opacity: 0;
    }

    100% {
        -o-transform: translate(0, 0);
        filter: opacity(1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translate(0, 27px);
        filter: opacity(0);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        filter: opacity(1);
        opacity: 1;
    }
}
/*Animations End*/

/*General Begin*/
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../Content/Images/bg.png') repeat left top #fefefe;
    z-index: 10000;
}

#loading {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -50px;
    margin-left: -50px;
    border: 3px solid transparent;
    border-top-color: #e21f2f;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 2.5s;
    -moz-animation-duration: 2.5s;
    -o-animation-duration: 2.5s;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
}

    #loading:before, #loading:after {
        position: absolute;
        display: block;
        content: "";
        border: 3px solid transparent;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-animation-name: rotate;
        -moz-animation-name: rotate;
        -o-animation-name: rotate;
        animation-name: rotate;
        -webkit-animation-duration: 3s;
        -moz-animation-duration: 3s;
        -o-animation-duration: 3s;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -o-animation-iteration-count: infinite;
    }

    #loading:before {
        top: 5px;
        right: 5px;
        bottom: 5px;
        left: 5px;
        border-bottom-color: #0bb4ce;
    }

    #loading:after {
        -webkit-animation-duration: 2.5s;
        -moz-animation-duration: 2.5s;
        -o-animation-duration: 2.5s;
        animation-duration: 2.5s;
        top: 15px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        border-top-color: #6ec25b;
    }

.loading {
    overflow: hidden !important;
}

.indicator {
    background-color: rgba(255,255,255,.75);
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
    cursor: default;
}

    .indicator > svg {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }

        .indicator > svg path, .indicator > svg rect {
            fill: #48606e;
        }

body {
    font-family: 'Roboto', sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: always;
    background: url('../Content/Images/bg.png') repeat left top #fefefe;
    padding: 0 !important;
}

.icon:before, .dropdown-toggle:after, .bx-wrapper .bx-controls-direction a:before, .panel-title:before, .panel-list > li > a:before, .foot-list > li:before, .main-list > li:before, .f-list > li > a:before, #scrollTop:before, .nav-sign-up:before, .nav-sign-in:before,
.btn-profile:before, .btn-changeuser:before, .btn-language:before, .nav-sign-out:before, .navbar .dropdown-menu > li > a:before, .table-acc-sum thead th:before, .navbar .dropdown-menu:after, .not-found-list > li > a:before, .nav-link > .arrow:before, .sidebar-heading:before, .select-header:before, .main-container .panel-desc:before, .main-container .panel-desc:after, .btn-captcha:before, .account-summary .nav > li > a:before, .widget-title:before, .card-flip:after, .table-title:before, .table-child > tbody > tr > td:before, .table-modal > tbody > tr > td:first-child:before, .nav-home:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, .btn-profile, .btn-changeuser, .btn-language, .side-toggle > .icon-bar, .box-file + label strong {
    -webkit-transition: color ease .25s, background-color ease .25s;
    -moz-transition: color ease .25s, background-color ease .25s;
    -o-transition: color ease .25s, background-color ease .25s;
    transition: color ease .25s, background-color ease .25s;
}

    a:hover, a:focus, a:active {
        text-decoration: none;
    }

        a:hover, a:active, a:hover:before, a:active:before {
            color: #00a285 !important;
        }

.dropdown-menu {
    padding: 0;
    background-color: #fefefe;
    border-color: #ccc;
    overflow: hidden;
    margin: 5px 0 0;
}

.main-header {
    margin-bottom: 60px;
}

.main-title {
    margin: 0;
    padding: 5px 25px;
    border-left: 5px solid #00a285;
    background-color: #f6f6f6;
    color: #48606e;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

#scrollTop {
    height: 42px;
    width: 42px;
    line-height: 38px;
    font-size: 21px;
    text-align: center;
    color: #fff;
    position: fixed;
    z-index: 999;
    display: none;
    background-color: #3b505d;
}

    #scrollTop:before {
        content: "\f077";
    }

.btn-custom {
    text-transform: uppercase;
}

.btn-primary {
    color: #fff !important;
    background-color: #48606e;
    border-color: #435865;
}

    .btn-primary:before {
        content: none !important;
    }

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        color: #fff !important;
        background-color: #516876 !important;
        border-color: #465c6a !important;
    }

.dropdown .dropdown-menu {
    filter: opacity(0);
    opacity: 0;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.dropdown.open .dropdown-menu {
    filter: opacity(1);
    opacity: 1;
}

.dropdown-menu {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu > .dropdown-header, .bootstrap-select .dropdown-menu > li > a {
    padding: 10px 20px;
}

.img-captcha {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    height: auto;
}

.btn-captcha {
    text-align: center;
    position: relative;
    top: 6px;
    font-size: 13px;
    text-transform: uppercase;
    color: #cbcbcb;
}

    .btn-captcha:before {
        content: "\f021";
    }

.modal {
    text-align: center;
    padding: 0 !important;
    z-index: 99999;
}

    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.modal-header .close {
    margin-top: 2px;
}

.modal-content {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-color: #ddd;
}

.modal-header {
    text-align: center;
    color: #48606e;
}

.modal-header, .modal-footer {
    border-color: #ddd;
}

.btn {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.btn-md, .btn-lg {
    font-weight: 400;
}

.btn-md {
    padding: 10px 20px;
    font-size: 15px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

.form-group {
    position: relative;
}

.form-group, .checkbox, .radio {
    margin-bottom: 30px;
}

.no-margin .checkbox {
    margin-bottom: 25px;
}

input[type="radio"], input[type="checkbox"] {
    margin: 0;
    position: relative;
    top: 2px;
}

.check-group {
    position: relative;
    top: 1px;
    margin-right: 5px !important;
}

.checkbox a, .radio a {
    color: #48606e;
    font-weight: bolder;
}

label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #48606e;
}

.form-control {
    height: 45px;
    padding: 12px;
    color: #666;
    border: 1px solid #ddd;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

textarea {
    resize: vertical;
    min-height: 64px;
    max-height: 128px;
}

    textarea.text-wide {
        min-height: 256px;
        max-height: 384px;
    }

.form-group .btn.dropdown-toggle, .form-group .btn.dropdown-toggle, .form-group .btn.dropdown-toggle {
    border-color: #ddd;
    padding: 11px 12px 12px 12px;
}

.field-validation-error {
    font-size: 12px;
    color: #ba2424;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    margin-top: 7px;
    display: block;
    cursor: default;
}

.text-left {
    text-align: left !important;
}

.btn-dec-filter {
    margin-bottom: 24px;
}

.alert {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    .alert:before, .alert:after {
        content: ' ';
        display: table;
        clear: both;
    }

    .alert .fa {
        margin-right: 7px;
    }

.alert-discount {
    line-height: 2.45;
}

.modal-open {
    overflow: hidden !important;
}

.label {
    position: relative;
    top: -1px;
    padding: 2px 4px;
    text-align: center;
    font-size: 10px;
    margin-left: 10px;
}

.label-default {
    background-color: #6f889a;
}

.table-belsis .badge {
    min-width: 6px;
    padding: 2px 6px;
    font-size: 11px;
}

.badge-success {
    background-color: #5cb85c;
}

.table-pop {
    font-size: 13px;
}

.table-modal th {
    font-weight: 500;
}

.fc-span {
    color: #31708f;
    font-size: 13px;
    display: inline-block;
    padding-top: 5px;
}

.nav-tab-mb {
    margin-bottom: 25px;
}

.text-box {
    padding: 10px 14px;
    border: 1px solid #eee;
}

.document-detail .row .row {
    margin-bottom: 16px;
}

.list-belsis {
    padding-left: 0;
    list-style-type: decimal;
}

    .list-belsis > li {
        margin-bottom: 15px;
    }
/*General End*/
/*Growl Begin*/
#growls {
    z-index: 50000;
    position: fixed;
}

    #growls.default {
        top: 10px;
        right: 10px;
    }

    #growls.tl {
        top: 10px;
        left: 10px;
    }

    #growls.tr {
        top: 10px;
        right: 10px;
    }

    #growls.bl {
        bottom: 10px;
        left: 10px;
    }

    #growls.br {
        bottom: 10px;
        right: 10px;
    }

    #growls.tc {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    #growls.bc {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

        #growls.tc .growl, #growls.bc .growl {
            margin-left: auto;
            margin-right: auto;
        }

.growl {
    opacity: 0.8;
    filter: opacity(0.8);
    position: relative;
    border-radius: 4px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: default;
}

    .growl.growl-incoming {
        opacity: 0;
        filter: opacity(0);
    }

    .growl.growl-outgoing {
        opacity: 0;
        filter: opacity(0);
    }

    .growl.growl-small {
        width: 200px;
        padding: 5px;
        margin: 5px;
    }

    .growl.growl-medium {
        width: 250px;
        padding: 10px;
        margin: 10px;
    }

    .growl.growl-large {
        width: 300px;
        padding: 15px;
        margin: 15px;
    }

    .growl.growl-default {
        color: #fff;
        background: rgb(76, 175, 80);
        box-shadow: 0 0 5px rgb(76, 175, 80);
    }

    .growl.growl-error {
        color: #fff;
        background: rgb(244, 67, 54);
        box-shadow: 0 0 5px rgb(244, 67, 54);
    }

    .growl.growl-notice {
        color: #fff;
        background: rgb(33, 150, 243);
        box-shadow: 0 0 5px rgb(33, 150, 243);
    }

    .growl.growl-warning {
        color: #fff;
        background: rgb(255, 152, 0);
        box-shadow: 0 0 5px rgb(255, 152, 0);
    }

    .growl .growl-close {
        cursor: pointer;
        float: right;
        font-size: 14px;
        line-height: 18px;
        font-weight: normal;
    }

    .growl .growl-title {
        font-size: 15px;
        line-height: 25px;
    }

    .growl .growl-message {
        font-size: 13px;
        line-height: 16px;
    }
/*Growl End*/

/*Radial Progress Begin*/
.radial-bar {
    margin: 16px auto;
    width: 80px;
    height: 80px;
    background-color: #cccccc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.radial-bar-mask {
    clip: rect(0px, 80px, 80px, 40px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    width: 80px;
    height: 80px;
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.radial-bar-fill {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    clip: rect(0px, 40px, 80px, 0px);
    background-color: #669900;
    width: 80px;
    height: 80px;
    position: absolute;
}

.radial-bar-inset {
    width: 70px;
    height: 70px;
    position: absolute;
    margin-left: 5px;
    margin-top: 5px;
    background-color: #fff;
    border-radius: 50%;
    display: table-cell;
}

.radial-bar-percent {
    text-align: center;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #669900;
    font-size: 22px;
}

.radial-text {
    text-align: center;
    margin: 16px auto;
}

    .radial-text > h3 {
        color: #48606e;
    }

    .radial-text > p {
        color: #7f8f9b;
    }
/*Radial Progress End*/

/*Navbar Begin*/
.navbar-top.navbar-default {
    background-color: #48606e;
    color: #fff;
    -webkit-box-shadow: inset 0px -3px 9px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: inset 0px -3px 9px 0px rgba(0,0,0,0.15);
    box-shadow: inset 0px -3px 9px 0px rgba(0,0,0,0.15);
}

.navbar-top.navbar {
    min-height: 34px;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
}

.navbar-top.navbar-default .navbar-nav > li > p {
    font-size: 12px;
    line-height: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    margin: 0;
}

.navbar-default .navbar-nav > li > a {
    color: #48606e;
}

.navbar-main.navbar-default {
    background-color: #f7f7f7;
    color: #666;
    -webkit-box-shadow: 0px 6px 24px 0px rgba(0,0,0,0.2), inset 0px -6px 24px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 6px 24px 0px rgba(0,0,0,0.2), inset 0px -6px 24px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 6px 24px 0px rgba(0,0,0,0.2), inset 0px -6px 24px 0px rgba(0,0,0,0.05);
    z-index: 999;
}

.navbar-main.navbar {
    min-height: 56px;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar-main.navbar-default .navbar-nav > li > a {
    line-height: 56px;
    font-size: 15px;
}

.main-brand {
    display: table;
    margin: 0;
    z-index: 9999;
}

.navbar-brand img {
    margin: 0 auto;
}

.nav-sign-up:before, .nav-sign-in:before, .btn-profile:before, .btn-changeuser:before, .btn-language:before, .nav-sign-out:before, .nav-home:before {
    position: relative;
    font-size: 24px;
    margin-right: 12px;
}

.nav-sign-up:before {
    content: "\f007";
}

.nav-sign-in:before {
    content: "\f023";
}

.nav-sign-out:before {
    content: "\f13e";
}

.nav-home:before {
    content: "\f015";
}

.btn-profile, .btn-changeuser, .btn-language {
    color: #48606e;
    background-color: transparent !important;
    border: none;
    font-size: 15px;
    line-height: 56px;
}

    .btn-profile:before {
        content: "\f007";
    }

    .btn-language:before {
        content: "\f02e";
    }

    .btn-profile:hover, .btn-changeuser:hover, .btn-profile:focus, .btn-profile:active:hover, .btn-profile.active:hover, .open > .dropdown-toggle.btn-profile:hover, .btn-changeuser:hover, .btn-profile:active:focus, .btn-profile.active:focus, .open > .dropdown-toggle.btn-profile:focus, .btn-profile:active.focus, .btn-profile.active.focus, .open > .dropdown-toggle.btn-profile.focus,
    .btn-language:hover, .btn-language:focus, .btn-language:active:hover, .btn-language.active:hover, .open > .dropdown-toggle.btn-language:hover, .btn-language:active:focus, .btn-language.active:focus, .open > .dropdown-toggle.btn-language:focus, .btn-language:active.focus, .btn-language.active.focus, .open > .dropdown-toggle.btn-language.focus {
        outline: none;
        outline-offset: 0;
        color: #00a285;
        background-color: transparent;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

.navbar .dropdown-menu > li > a {
    padding: 18px 20px;
    color: #666;
}

.navbar .dropdown-toggle:after {
    margin-left: 5px;
    content: "\f107";
}

.table a {
    color: #48606e;
}

.table-acc-sum {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    white-space: nowrap;
}

    .table-acc-sum thead th {
        font-weight: 500;
        text-transform: uppercase;
        font-size: 13px;
        padding-bottom: 12px;
    }

    .table-acc-sum.profile thead th:before {
        content: "\f2c0";
        margin-right: 7px;
    }

    .table-acc-sum.debt thead th:before {
        content: "\f09d";
        margin-right: 7px;
    }

    .table-acc-sum tbody th, .table-acc-sum tfoot th {
        font-weight: bolder;
    }

    .table-acc-sum.debt tbody tr td:last-child, .table-acc-sum.debt tfoot tr td:last-child {
        text-align: right;
    }

    .table-acc-sum.debt tfoot tr td:last-child {
        font-weight: bolder;
    }

/*Navbar End*/

/*Slider Begin*/
.slide-zoom-in {
    -webkit-animation-name: sliderZoomIn;
    animation-name: sliderZoomIn;
    -webkit-animation-duration: 25s;
    animation-duration: 25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.text-animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.not-animated {
    opacity: 0;
}

.text-zoom-in {
    opacity: 1;
    -webkit-animation-name: textZoomIn;
    animation-name: textZoomIn;
}

.bx-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    *zoom: 1;
    overflow: hidden;
}

    .bx-wrapper:after {
        content: ' ';
        display: table;
        background: url('../Content/Images/slider-bg.png') no-repeat center bottom transparent;
        background-size: cover;
        width: 100%;
        position: absolute;
        bottom: -30px;
        height: 127px;
    }

    .bx-wrapper .bx-viewport {
        height: auto !important;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }


    .bx-wrapper .bx-pager,
    .bx-wrapper .bx-controls-auto {
        position: absolute;
        bottom: 90px;
        width: 100%;
    }

    .bx-wrapper .bx-loading {
        min-height: 50px;
        background: url('../Content/Images/bx_loader.gif') center center no-repeat #fff;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2000;
    }

    .bx-wrapper .bx-pager {
        text-align: center;
        font-size: .85em;
        font-family: Arial;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.5);
    }

        .bx-wrapper .bx-pager .bx-pager-item,
        .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
            display: inline-block;
            *zoom: 1;
            *display: inline;
        }

        .bx-wrapper .bx-pager.bx-default-pager a {
            background: transparent;
            text-indent: -9999px;
            display: block;
            width: 13px;
            height: 13px;
            margin: 0 5px;
            outline: 0;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

            .bx-wrapper .bx-pager.bx-default-pager a:hover,
            .bx-wrapper .bx-pager.bx-default-pager a.active {
                background: #fff;
            }

    .bx-wrapper .bx-controls-direction a {
        position: absolute;
        top: 50%;
        outline: 0;
        z-index: 9999;
        color: rgba(255,255,255,.5);
    }

        .bx-wrapper .bx-controls-direction a:before {
            display: block;
            text-align: center;
        }

        .bx-wrapper .bx-controls-direction a.disabled {
            display: none;
        }

    .bx-wrapper .bx-prev:before {
        content: "\f104";
    }

    .bx-wrapper .bx-next:before {
        content: "\f105";
    }

.belsis-slider {
    overflow: hidden;
}

.slide {
    position: relative;
    width: 100% !important;
}

.slide-caption {
    position: absolute;
    top: 50%;
    text-transform: uppercase;
    color: #fff;
}

    .slide-caption span {
        display: block;
    }

.slide:nth-last-child(-n+2) .slide-caption span {
    color: #0065a8;
}

.slide:nth-child(2n+1) .slide-caption span {
    color: #00a285;
}
/*Slider End*/

/*About Begin*/
.e-about {
    margin-top: 64px;
    color: #7f8f9b;
}

    .e-about .panel {
        background-color: transparent;
        border: none;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .e-about .panel-default > .panel-heading {
        color: #48606e;
        background-color: #f5f5f5;
        border-color: #ddd;
    }

    .e-about .panel-heading {
        padding: 10px 15px;
        border-bottom: none;
        border-radius: 0;
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
    }

        .e-about .panel-heading .fa {
            display: block;
            font-size: 32px;
            margin-bottom: 24px;
        }

    .e-about .panel-body {
        text-align: center;
    }
/*About End*/

/*Panel Begin*/
.home-content .panel {
    margin-bottom: 32px;
    background-color: #fff;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
}

.home-content .panel-heading {
    padding: 0;
    border-bottom: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

    .home-content .panel-heading img {
        max-width: 100%;
        height: auto;
        display: block;
        z-index: 98;
        -webkit-transition: 1s ease-in-out;
        -moz-transition: 1s ease-in-out;
        -o-transition: 1s ease-in-out;
        transition: 1s ease-in-out;
    }

.home-content .panel:hover img, .home-content .panel:focus img {
    -webkit-transform: rotate(-6deg) scale(1.25);
    -moz-transform: rotate(-6deg) scale(1.25);
    -ms-transform: rotate(-6deg) scale(1.25);
    -o-transform: rotate(-6deg) scale(1.25);
    transform: rotate(-6deg) scale(1.25);
}

.home-content .btn-panel {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.home-content .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    filter: opacity(0.4);
    z-index: 99;
}

.home-content .fa {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 48px;
    color: #fff;
    text-align: center;
    margin-top: -24px;
    z-index: 100;
}

.home-content .cover.cover-1 {
    background-color: #71cf02;
}

.home-content .cover.cover-2 {
    background-color: #027bcf;
}

.home-content .cover.cover-3 {
    background-color: #c302cf;
}

.home-content .cover.cover-4 {
    background-color: #cf0210;
}

.home-content .cover.cover-5 {
    background-color: #cdcf02;
}

.home-content .cover.cover-6 {
    background-color: #cf8402;
}

.home-content .panel-title {
    text-align: center;
    color: #48606e;
    font-size: 20px;
    line-height: 28px;
    margin: 8px 0 24px 0;
}

.home-content .panel-list {
    list-style-type: none;
    padding-left: 0;
    text-align: center;
    margin: 0;
}

    .home-content .panel-list > li > a {
        font-size: 15px;
        color: #7f8f9b;
        display: inline-block;
        margin-bottom: 18px;
    }

        .home-content .panel-list > li > a:before {
            content: "\f101";
            color: #596e7b;
            font-size: 15px;
            margin-right: 5px;
        }
/*Panel End*/

/*Footer Begin*/
footer {
    background: url('../Content/Images/footer-bg.png') no-repeat center center #48606e;
    background-size: cover;
    padding: 45px 0 0 0;
}

.foot-logo {
    margin-bottom: 32px;
}

.foot-list {
    list-style-type: none;
    padding-left: 25px;
}

    .foot-list > li {
        position: relative;
        margin-bottom: 13px;
    }

        .foot-list > li, .foot-list > li > a {
            color: #c4c4c4;
        }


            .foot-list > li:before {
                position: absolute;
                top: 1px;
                left: -25px;
                color: #00a285;
            }

.fl-title:before {
    content: "\f0f7";
}

.fl-addr:before {
    content: "\f041";
}

.fl-phone:before {
    content: "\f095";
}

.fl-fax:before {
    content: "\f1ac";
}

.fl-mail:before {
    content: "\f003";
}

.f-title {
    margin: 0 0 16px 0;
    padding: 0;
    color: #00a285;
    font-size: 20px;
}

.f-list {
    list-style-type: none;
    padding-left: 0;
}

    .f-list > li {
        margin-bottom: 12px;
    }


        .f-list > li > a {
            color: #c4c4c4;
        }

            .f-list > li > a:before {
                margin-right: 7px;
                color: #00a285;
                content: "\f105";
            }

.foot-copy {
    margin-top: 64px;
    font-size: 11px;
    text-align: center;
    color: #c4c4c4;
    background-color: #3b505d;
    padding: 24px 0;
}

.belsis {
    margin-top: 12px;
    display: inline-block;
    text-indent: -9999px;
    width: 64px;
    height: 19px;
    background: url('../Content/Images/belsis.png') no-repeat left top transparent;
    -webkit-transition: background ease .25s;
    transition: background ease .25s;
}

    .belsis:hover, .belsis:focus, .belsis:active {
        background: url('../Content/Images/belsis-h.png') no-repeat left top transparent;
    }
/*Footer End*/

/*Call Us Begin*/
.call-us {
    position: relative;
    background-image: url('../Content/Images/office.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: default;
}

.call-us, .call-us-phone {
    color: #f7f7f7;
}

.call-us-container {
    width: 100%;
    position: relative;
}

.call-us-content {
    text-align: center;
}

    .call-us-content .fa {
        font-size: 48px;
    }

.call-us-title {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0 26px 0;
}

.call-us-content p {
    line-height: 28px;
    font-size: 16px;
    margin: 0;
}

.call-us-phone {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    font-size: 20px;
}
/*Call Us End*/

/*We Are Begin*/
.panel-fade {
    -webkit-animation: fadeUp 0.95s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-animation: fadeUp 0.95s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-animation: fadeUp 0.95s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeUp 0.95s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: opacity(1);
    opacity: 1;
}

.panel-hide {
    filter: opacity(0);
    opacity: 0;
}

.we-are-header {
    text-align: center;
    margin-bottom: 96px;
    color: #48606e;
}

    .we-are-header .fa {
        font-size: 48px;
    }

.we-are-title {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0 26px 0;
}

.we-are-text {
    line-height: 28px;
    font-size: 16px;
    color: #7f8f9b;
}

.we-are .panel {
    background-color: transparent;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-align: center;
    color: #48606e;
}

    .we-are .panel .fa {
        font-size: 40px;
        color: #7f8f9b;
    }

.we-are .panel-heading {
    padding: 0;
    border-bottom: none;
    border-radius: 0;
}

.we-are .panel-body {
    padding: 25px 15px 0 15px;
}

.we-are .counter {
    display: block;
    font-size: 32px;
    font-weight: 600;
}

.we-are .panel-title {
    font-size: 20px;
    line-height: 20px;
    margin: 15px 0 0 0;
    text-transform: uppercase;
}
/*We Are End*/

/*Sidebar Begin*/
.sidebar-wrapper {
    margin-bottom: 64px;
}

.sidebar-menu {
    border: 1px solid #ddd;
}

    .sidebar-menu, .sidebar-menu .sub-menu {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

.sidebar-heading {
    position: relative;
    background-color: #48606e;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

    .sidebar-heading:before {
        color: #fff;
        content: "\f1ea";
        position: absolute;
        top: 22px;
        left: 15px;
    }

    .sidebar-heading h3 {
        margin: 0;
        padding: 22px 15px 22px 40px;
        font-size: 13px;
        text-transform: uppercase;
        color: #fff;
        font-weight: 400;
    }

.nav-item {
    display: block;
    margin: 0;
    padding: 0;
}

.sidebar-menu > li > a {
    background-color: #fcfcfc;
    font-size: 15px;
}

    .sidebar-menu > li > a > .fa {
        margin: 0 10px 0 3px;
    }

.sidebar-menu > li > a, .sidebar-menu .sub-menu > li > a {
    display: block;
    position: relative;
    margin: 0;
    padding: 15px;
    font-weight: 400;
    color: #48606e;
}

.sidebar-menu > li.open > a, .sidebar-menu > li:hover > a {
    background-color: #f1f1f1;
}

.sidebar-menu > li > .sub-menu > li:hover > a {
    background-color: #e5e5e5;
}

.sidebar-menu > li.active > a, .sidebar-menu > li.active:hover > a, .sidebar-menu > li.active > .sub-menu > li:hover > a, .sidebar-menu > li.active > .sub-menu > li > .active, .sidebar-menu > li.active > .sub-menu > li:hover > .active {
    background-color: #6f889a;
    color: #fff;
}

    .sidebar-menu > li.active > a > .selected {
        display: block;
        position: absolute;
        left: -1px;
        top: 15px;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        border-left: 9px solid #fefefe;
    }

.sidebar-menu > li.open > .sub-menu {
    display: block;
}

.sidebar-menu > li {
    border-bottom: 1px solid #ddd;
}

    .sidebar-menu > li:last-child {
        border: none;
    }

.nav-link > .arrow {
    position: absolute;
    right: 15px;
    top:-30px !important;
}

    .nav-link > .arrow:before {
        content: "\f104";
    }

.open .nav-link > .arrow:before {
    content: "\f107";
}

.sidebar-menu .sub-menu {
    display: none;
    padding: 8px 0;
    margin: 0;
    background-color: #f1f1f1;
}

    .sidebar-menu .sub-menu > li > a {
        padding: 6px 15px 6px 41px;
    }
/*Sidebar End*/

/*Breadcrumb Begin*/
.breadcrumb-container {
    background-color: #ececec;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-size: 13px;
    color: #7f8f9b;
}

    .breadcrumb > li + li:before {
        padding: 0;
    }

    .breadcrumb > li > a {
        color: #555;
    }

.page-title {
    margin: 0;
    color: #48606e;
}
/*Breadcrumb End*/

/*Page Begin*/

/*Page End*/

/*404 Begin*/
.not-found {
    text-align: center;
    color: #7f8f9b;
}

.not-found-title {
    font-size: 32px;
    line-height: 1.5;
    color: #48606e;
}

.not-found-desc {
    font-size: 16px;
    line-height: 2;
    color: #7f8f9b;
}

.not-found-list {
    list-style-type: none;
    padding-left: 0;
    margin: 32px 0;
}

    .not-found-list > li > a {
        color: #48606e;
        display: inline-block;
        margin-bottom: 16px;
    }

        .not-found-list > li > a:before {
            content: "\f105";
            margin-right: 7px;
            color: #7f8f9b;
        }
/*404 End*/

/*Sign In Begin*/
.main-container {
    -webkit-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.25);
}

    .main-container .panel {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    .main-container.sign-in .panel-heading, .main-container.debt-payment .panel-heading {
        text-align: center;
    }

    .main-container .panel-heading {
        padding: 23px 15px;
        background-color: #ececec;
    }

        .main-container .panel-heading h3 {
            margin: 0;
            padding: 0;
            color: #48606e;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            cursor: default;
        }

    .main-container.sign-in .nav {
        margin-bottom: 2px;
    }

        .main-container.sign-in .nav a {
            color: #48606e;
        }

    .main-container.sign-in .panel-desc, .main-container.debt-payment .panel-desc {
        padding: 10px;
        position: relative;
        margin-bottom: 10px;
        /* font-style: italic; */
        color: #7f8f9b;
        text-align: justify;
        text-indent: 10px;
    }

    .main-container .panel-desc:before, .main-container .panel-desc:after {
        position: absolute;
        color: #48606e;
        text-indent: 0;
    }

    .main-container .panel-desc:before {
        top: 0;
        left: 0;
        content: "\f10d";
    }

    .main-container .panel-desc:after {
        bottom: 0;
        right: 0;
        content: "\f10e";
    }

    .main-container .panel-body {
        padding: 12px 15px;
    }

    .main-container .panel-footer {
        padding: 5px 15px;
    }

.sign-in-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .sign-in-list:before, .sign-in-list:after {
        display: table;
        content: ' ';
        clear: both;
    }

    .sign-in-list > li > a {
        font-size: 13px;
        color: #48606e;
        text-transform: uppercase;
    }

.sign-in .nav-tabs > li:not([class='active']) > a {
    background-color: #eee;
}
/*Sign In End*/

/*Sign Up Begin*/
.main-container.sign-up .media:first-child {
    margin-top: 0;
}

.main-container.sign-up .media-left {
    width: 64px;
    height: 64px;
    display: inline-block;
    padding: 0;
    text-align: center;
    border: 2px solid #a8b8c1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    float: left;
    margin-right: 16px;
}

.main-container.sign-up .media .fa {
    margin-top: 17px;
}

.main-container.sign-up .media-body {
    color: #7f8f9b;
}

.main-container.sign-up .media .media-heading {
    text-transform: uppercase;
    font-size: 16px;
}

.main-container.sign-up .media .fa {
    font-size: 24px;
    margin-left: 1px;
}

.main-container.sign-up .media .media-heading {
    color: #48606e;
}

.main-container.sign-up .media .fa {
    color: #a8b8c1;
}

.main-container.sign-up .media p {
    margin: 0;
}
/*Sign Up End*/

/*Account Begin*/
.main-container.account {
    color: #666;
}

.no-margin {
    margin: 0 !important;
}

.box {
    padding: 15px;
    border: 1px solid #dedede;
    cursor: default;
}

    .box:before, .box:after, .widget:before, .widget:after {
        content: ' ';
        display: table;
        clear: both;
    }

.box {
    margin-bottom: 30px;
}

.widget {
    margin-bottom: 48px;
}

    .widget .account-table {
        margin: 0 -8px;
    }

.widget-title {
    font-size: 14px;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #bebebe;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

    .widget-title:before {
        margin-right: 7px;
        position: relative;
    }

.widget-user:before {
    content: "\f2c3";
}

.widget-debt:before {
    content: "\f09d";
}

.widget-contact:before {
    content: "\f2bc";
}

.widget-pass:before {
    content: "\f023";
}

.widget .form-group:first-child {
    padding-top: 7px;
}

.account-avatar {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.account-name {
    font-size: 24px;
    line-height: 32px;
    color: #48606e;
    text-align: center;
    margin-top: 24px;
}

.account-table {
    margin-bottom: 0;
}

    .account-table tr > th, .account-table tr > td {
        padding: 3px;
        line-height: 1.42857143;
        vertical-align: top;
    }

    .account-table tr > th {
        font-weight: 500;
    }

    .account-table.align-right tr > td:last-child {
        text-align: right;
    }

.account-summary .nav-pills > li.active > a, .account-summary .nav-pills > li.active > a:hover, .account-summary .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #48606e;
}

.account-summary .nav > li > a:hover, .account-summary .nav > li > a:focus {
    background-color: transparent;
}

.account-summary .nav-pills > li > a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.account-summary .nav > li > a {
    padding: 13px 15px;
    text-transform: uppercase;
    color: #48606e;
}

    .account-summary .nav > li > a:before {
        font-size: 18px;
        margin-right: 7px;
        position: relative;
        top: 2px;
    }

.account-summary .nav-pills-user:before {
    content: "\f007";
}

.account-summary .nav-pills-pass:before {
    content: "\f023";
}

.main-container.account .main-header {
    margin-bottom: 36px;
}

.main-container.account .main-title {
    font-size: 28px;
    padding: 0 20px 1px 15px;
    background-color: #fff;
}
/*Account End*/

/*Bootstrap Select Begin*/
/*!
 * Bootstrap-select v1.12.4 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2017 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */

select.bs-select-hidden,
select.selectpicker {
    display: none !important;
}

.bootstrap-select {
    width: 220px;
    /*IE9 and below*/
}

    .bootstrap-select > .dropdown-toggle {
        width: 100%;
        padding-right: 25px;
        z-index: 1;
    }

        .bootstrap-select > .dropdown-toggle.bs-placeholder,
        .bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
        .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
        .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
            color: #999;
        }

    .bootstrap-select > select {
        position: absolute !important;
        bottom: 0;
        left: 50%;
        display: block !important;
        width: 0.5px !important;
        height: 100% !important;
        padding: 0 !important;
        opacity: 0 !important;
        border: none;
    }

        .bootstrap-select > select.mobile-device {
            top: 0;
            left: 0;
            display: block !important;
            width: 100% !important;
            z-index: 2;
        }

.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48;
}

.bootstrap-select.fit-width {
    width: auto !important;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 220px;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: thin dotted #333333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px;
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none;
}

    .bootstrap-select.form-control:not([class*="col-"]) {
        width: 100%;
    }

    .bootstrap-select.form-control.input-group-btn {
        z-index: auto;
    }

        .bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
            border-radius: 0;
        }

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
    float: none;
    display: inline-block;
    margin-left: 0;
}

    .bootstrap-select.btn-group.dropdown-menu-right,
    .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
    .row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
        float: right;
    }

.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
    margin-bottom: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
    padding: 0;
}

    .form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
    .form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
        height: 100%;
        font-size: inherit;
        line-height: inherit;
        border-radius: inherit;
    }

.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%;
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
    cursor: not-allowed;
}

    .bootstrap-select.btn-group.disabled:focus,
    .bootstrap-select.btn-group > .disabled:focus {
        outline: none !important;
    }

.bootstrap-select.btn-group.bs-container {
    position: absolute;
    height: 0 !important;
    padding: 0 !important;
}

    .bootstrap-select.btn-group.bs-container .dropdown-menu {
        z-index: 1060;
    }

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle;
}

.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
    width: 100%;
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .bootstrap-select.btn-group .dropdown-menu.inner {
        position: static;
        float: none;
        border: 0;
        padding: 0;
        margin: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .bootstrap-select.btn-group .dropdown-menu li {
        position: relative;
    }

        .bootstrap-select.btn-group .dropdown-menu li.active small {
            color: #fff;
        }

        .bootstrap-select.btn-group .dropdown-menu li.disabled a {
            cursor: not-allowed;
        }

        .bootstrap-select.btn-group .dropdown-menu li a {
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .bootstrap-select.btn-group .dropdown-menu li a.opt {
                position: relative;
                padding-left: 2.25em;
            }

            .bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
                display: none;
            }

            .bootstrap-select.btn-group .dropdown-menu li a span.text {
                display: inline-block;
            }

        .bootstrap-select.btn-group .dropdown-menu li small {
            padding-left: 0.5em;
        }

    .bootstrap-select.btn-group .dropdown-menu .notify {
        position: absolute;
        bottom: 5px;
        width: 96%;
        margin: 0 2%;
        min-height: 26px;
        padding: 3px 5px;
        background: #f5f5f5;
        border: 1px solid #e3e3e3;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
        pointer-events: none;
        opacity: 0.9;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    margin-top: 5px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
    z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, 0.2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, 0.2);
    border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid white;
    border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
    display: block;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
    padding: 4px 8px;
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .bs-actionsbox .btn-group button {
        width: 50%;
    }

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .bs-donebutton .btn-group button {
        width: 100%;
    }

.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px;
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
}
/*# sourceMappingURL=bootstrap-select.css.map */
/*Bootstrap Select End*/

/*Card Begin*/
.card-container {
    margin-top: 36px;
}

.card-wrapper {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
}

.card {
    position: relative;
}

.card, .card-face {
    width: 512px;
    height: 322px;
}

.card-face {
    position: absolute;
    top: 0;
    left: 0;
    background: url('..//Content/Images/card/card.png') no-repeat left top transparent;
    background-size: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.25s ease, background-image 0.25s ease;
    -moz-transition: -moz-transform 0.25s ease, background-image 0.25s ease;
    -o-transition: -o-transform 0.25s ease, background-image 0.25s ease;
    transition: transform 0.25s ease, background-image 0.25s ease;
    overflow: hidden;
}

    .card-face.front {
        background-position: 0 0;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        -o-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        z-index: 2;
    }

    .card-face.behind {
        background-position: 0 -322px;
        -webkit-transform: rotateY(-180deg);
        -moz-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
        -o-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }

.card.flip .front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.card.flip .behind {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.card-flip {
    position: absolute;
    top: 1em;
    padding: 1em 1.5em;
    background: #6f889a;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
    -webkit-transition: right 0.25s ease;
    -moz-transition: right 0.25s ease;
    -o-transition: right 0.25s ease;
    transition: right 0.25s ease;
    text-transform: uppercase;
    color: #fff !important;
}

    .card-flip:after {
        content: "\f112";
        margin-left: 7px;
    }

.card-number, .card-name, .card-expiry, .card-ccv {
    position: absolute;
    color: #666;
}

.card-type {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 64px;
    height: 64px;
    background-size: contain !important;
}

.chase-sapphire {
    background: url('..//Content/Images/card/types/chase-sapphire.png') no-repeat top left transparent;
}

.discover {
    background: url('..//Content/Images/card/types/discover.png') no-repeat top left transparent;
}

.maestro {
    background: url('..//Content/Images/card/types/maestro.png') no-repeat top left transparent;
}

.mastercard {
    background: url('..//Content/Images/card/types/mastercard.png') no-repeat top left transparent;
}

.unionpay {
    background: url('..//Content/Images/card/types/unionpay.png') no-repeat top left transparent;
}

.visa {
    background: url('..//Content/Images/card/types/visa.png') no-repeat top left transparent;
}

.laser-card {
    background: url('..//Content/Images/card/types/laser-card.png') no-repeat top left transparent;
}

.american-express {
    background: url('..//Content/Images/card/types/american-express.png') no-repeat top left transparent;
}

.jcb {
    background: url('..//Content/Images/card/types/jcb.png') no-repeat top left transparent;
}

.diners {
    background: url('..//Content/Images/card/types/diners.png') no-repeat top left transparent;
}
/*Tables Begin*/
.table-pay > tbody > tr > td {
    padding: 0;
}

.table-belsis {
    vertical-align: middle;
    background-color: #fcfcfc;
    width: 100%;
    font-size: 13px;
}

    .table-belsis > thead, .table-belsis > tfoot {
        color: #555;
        background-color: #ececec;
    }

    .table-belsis > thead, .table-belsis > tfoot {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        cursor: default;
    }

        .table-belsis > thead > tr > th {
            font-weight: 500;
            padding: 12px 8px;
        }

    .table-belsis > tbody > tr:nth-child(2n) {
        background-color: #f5f5f5;
    }

    .table-belsis > tbody > tr:hover {
        background-color: #ebebeb;
        cursor: pointer;
    }

.table-child > tbody > tr.checked {
    background-color: #6f889a;
    color: #fff;
}

.btn-debt-detail {
    font-size: 10px;
}

.btn-locked-debt + .tooltip {
    width: auto;
}

.table-belsis > tbody > tr.selected, .table-child > tbody > tr.selected {
    color: #fff;
    background-color: #7f8f9b;
}

.table-belsis > tfoot > tr > td {
    padding: 10px 8px;
}

.table-belsis > thead,
.table-belsis > tbody,
.table-belsis > tfoot,
.table-belsis > thead > tr,
.table-belsis > tbody > tr,
.table-belsis > tfoot > tr,
.table-belsis > thead > tr > th,
.table-belsis > tbody > tr > td,
.table-belsis > tfoot > tr > td {
    display: block;
    width: 100%;
}

    .table-belsis > thead > tr,
    .table-belsis > tbody > tr,
    .table-belsis > tfoot > tr {
        /*max-height: 50px !important;*/
    }

        .table-belsis > thead > tr:after,
        .table-belsis > tbody > tr:after,
        .table-belsis > tfoot > tr:after {
            content: ' ';
            display: block;
            visibility: hidden;
            clear: both;
        }

.table-belsis > tbody {
    height: 384px;
    overflow-y: scroll;
}

.table-mini > tbody {
    height: 112px;
}

.table-belsis > thead > tr > th,
.table-belsis > tbody > tr > td,
.table-belsis > tfoot > tr > td {
    float: left;
}

.table-belsis > thead > tr > th {
    border-left: none;
}

.table-belsis > tbody > tr > td {
    border-left: none;
    border-right: none;
    border-bottom: none;
    height: auto !important;
}


.table-pay > tbody > tr > td {
    height: auto !important;
}

.table-belsis > tbody > tr:first-child > td {
    border-top: none;
}

.table-belsis > tfoot > tr > td {
    border-left: none;
    border-bottom: none;
}

.table-count {
    float: right;
}

.table-parent {
    padding: 12px 8px;
}

.table-child {
    margin-bottom: 0;
}

    .table-child > thead > tr > th, .table-child > tbody > tr > td, .table-child > tfoot > tr > td {
        float: left;
    }

    .table-child > tbody > tr {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
    }

.table-title {
    text-decoration: none !important;
}

    .table-title:before {
        width: 7px;
        content: "\f0da";
        margin-right: 7px;
    }

    .table-title.active:before {
        content: "\f0d7";
    }

.table-container {
    display: none;
}

.payment-info {
    margin-top: 16px;
    width: 100%;
    float: right;
}

.table-main > tfoot > tr > td, .table-child > tfoot > tr > td {
    font-weight: 500;
}

.table-child > tbody > tr > td {
    overflow: hidden;
    padding: 12px 8px;
}

.table-nb,
.table-nb > thead,
.table-nb > body,
.table-nb > tfoot,
.table-nb > thead > tr > th,
.table-nb > thead > tr > td,
.table-nb > tbody > tr > td,
.table-nb > tbody > tr > th,
.table-nb > tfoot > tr > td,
.table-nb > tfoot > tr > th {
    border: none;
}

.payment-info .table {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: default;
}

    .payment-info .table > tbody > tr > th {
        padding-left: 0;
    }

    .payment-info .table > tbody > tr > td {
        text-align: right;
        padding-right: 0;
    }

tfoot th[colspan]:before,
tfoot td[colspan]:before {
    content: ' ';
    display: inline-block;
}
/*Tables End*/

/*Pagination Begin*/
.page-inner {
    margin-bottom: 64px;
}

    .page-inner:before, .page-inner:after {
        content: '';
        display: table;
        clear: both;
    }

.pagination-container {
    text-align: center;
}

.pagination > li:first-child > a, .pagination > li:first-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-radius: 0;
}

.pagination > li > a, .pagination > li > span {
    color: #48606e;
    padding: 8px 14px;
}

    .pagination > li > a:hover, .pagination > li > span:hover {
        color: #00a285;
    }

.pagination > li + li > a, .pagination > li + li > span {
    margin-left: 8px;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #48606e;
    border-color: #48606e;
}
/*Pagination End*/

/*Drag'n Drop Begin*/
.box-container {
    font-size: 1.25rem;
    position: relative;
    padding: 40px 20px;
    text-align: center;
}

    .box-container.has-advanced-upload {
        outline: 2px dashed #ddd;
        outline-offset: 0;
        -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
        transition: outline-offset .15s ease-in-out, background-color .15s linear;
    }

    .box-container.is-dragover {
        outline-offset: -20px;
        outline-color: #c8dadf;
        background-color: #fff;
    }

.box-dragndrop,
.box-icon {
    display: none;
}

.box-container.has-advanced-upload .box-dragndrop {
    display: inline;
}

.box-container.has-advanced-upload .box-icon {
    width: 100%;
    height: 80px;
    fill: #48606e;
    display: block;
    margin-bottom: 40px;
}

.box-container.is-uploading .box-input,
.box-container.is-success .box-input,
.box-container.is-error .box-input {
    visibility: hidden;
}

.box-uploading,
.box-success,
.box-error {
    display: none;
}

.box-container.is-uploading .box-uploading,
.box-container.is-success .box-success,
.box-container.is-error .box-error {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY( -50% );
    transform: translateY( -50% );
}

.box-uploading {
    font-style: italic;
}

.box-success {
    -webkit-animation: appear-from-inside .25s ease-in-out;
    animation: appear-from-inside .25s ease-in-out;
}

@-webkit-keyframes appear-from-inside {
    from {
        -webkit-transform: translateY( -50% ) scale( 0 );
    }

    75% {
        -webkit-transform: translateY( -50% ) scale( 1.1 );
    }

    to {
        -webkit-transform: translateY( -50% ) scale( 1 );
    }
}

@keyframes appear-from-inside {
    from {
        transform: translateY( -50% ) scale( 0 );
    }

    75% {
        transform: translateY( -50% ) scale( 1.1 );
    }

    to {
        transform: translateY( -50% ) scale( 1 );
    }
}

.js .box-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

    .js .box-file + label {
        max-width: 80%;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        display: inline-block;
        overflow: hidden;
    }

        .js .box-file + label:hover strong,
        .box-file:focus + label strong,
        .box-file.has-focus + label strong {
            color: #00a285;
        }

    .js .box-file:focus + label,
    .js .box-file.has-focus + label {
        outline: 1px dotted #000;
        outline: -webkit-focus-ring-color auto 5px;
    }

.no-js .box-file + label {
    display: none;
}
/*Drag'n Drop End*/

/*Tooltip Begin*/
.tooltip {
    width: 100%;
    font-size: 13px;
}

.tooltip-inner {
    padding: 12px 14px;
    background-color: #516876;
    border-radius: 0;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #516876;
}

.tooltip.top-left .tooltip-arrow {
    border-top-color: #516876;
}

.tooltip.top-right .tooltip-arrow {
    border-top-color: #516876;
}

.tooltip.right .tooltip-arrow {
    border-right-color: #516876;
}

.tooltip.left .tooltip-arrow {
    border-left-color: #516876;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #516876;
}

.tooltip.bottom-left .tooltip-arrow {
    border-bottom-color: #516876;
}

.tooltip.bottom-right .tooltip-arrow {
    border-bottom-color: #516876;
}
/*Tooltip End*/

/*Media Queries Begin*/
@media (max-width:383px) {
    .btn-captcha {
        display: inline-block;
        margin: 0 0 30px 0;
    }

        .btn-captcha:before {
            display: inline-block;
            font-size: 24px;
            position: relative;
            top: 4px;
            margin-right: 7px;
        }

    .not-found {
        font-size: 90px;
    }
}

@media (min-width:384px) {
    .btn-captcha {
        display: inline-block;
        margin-left: 7px;
        margin-bottom: 7px;
    }

        .btn-captcha:before {
            display: block;
            font-size: 24px;
            margin-bottom: 4px;
        }

    .not-found {
        font-size: 120px;
    }
}

@media (max-width:767px) {
    #scrollTop {
        bottom: 25px;
        right: 25px;
    }

    .navbar-top .navbar-collapse {
        display: block;
    }

    .navbar-top.navbar-default .navbar-nav > li {
        text-align: center;
    }

        .navbar-top.navbar-default .navbar-nav > li > a {
            margin: 0 0 0 10px;
        }

    .navbar-brand {
        width: 86px;
        height: 86px;
    }

        .navbar-brand img {
            max-width: 100%;
            height: auto;
        }

    .navbar-toggle {
        margin-top: 26px;
        margin-bottom: 25px;
        border: none;
    }

    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background-color: transparent;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #00a285;
    }

    .navbar-default .navbar-toggle.collapsed .icon-bar {
        background-color: #48606e;
    }

    .navbar-main .navbar-nav {
        margin-top: 0;
        margin-bottom: 0;
    }

        .navbar-main .navbar-nav > li {
            border-bottom: 1px solid #e7e7e7;
        }

        .navbar-main .navbar-nav .dropdown-menu {
            border-top: 1px solid #e7e7e7;
        }

    .navbar-main.navbar-default .navbar-nav > li, .navbar-default .navbar-nav .dropdown-menu > li {
        text-align: center;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 36px;
    }

    .nav-sign-up:before, .nav-sign-in:before, .btn-profile:before, .nav-sign-out:before, .btn-language:before, .nav-home:before {
        margin-right: 5px;
    }

    .nav-profile .open .dropdown-menu {
        padding: 15px;
    }

    .nav-language .dropdown-menu > li > a {
        line-height: 64px !important;
    }

    .bx-wrapper .bx-controls-direction a {
        width: 36px;
        height: 48px;
        font-size: 48px;
        margin-top: -24px;
    }

    .slide-caption {
        font-size: 18px;
        text-align: center;
    }

        .slide-caption span {
            font-size: 24px;
        }

    .bx-wrapper .bx-prev {
        left: 0;
    }

    .bx-wrapper .bx-next {
        right: 0;
    }

    .foot-logo {
        margin: 0 auto 32px auto;
        display: table;
    }

    .panel-title {
        line-height: 36px;
        font-size: 17px;
    }

        .panel-title:before {
            width: 36px;
            height: 36px;
        }

    .f-title {
        text-align: center;
    }

    .f-content {
        margin-top: 32px;
    }

    .breadcrumb-container {
        margin: 48px 0;
    }

    .nav-sign-up:before {
        top: 3px;
    }

    .nav-sign-in:before {
        top: 4px;
    }

    .btn-profile:before {
        top: 3px;
    }

    .nav-sign-out:before {
        top: 4px;
    }

    .nav-home:before {
        top: -3px;
    }

    .navbar-top.navbar-default .navbar-nav > li > p {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .home-content {
        margin-top: 64px;
        margin-bottom: 128px;
    }

    .we-are {
        margin: 128px 0;
    }

        .we-are .panel {
            margin-bottom: 64px;
        }

    .call-us, .call-us-container {
        height: 512px;
    }

    .btn-profile, .btn-language {
        padding: 10px;
    }

    .home-content .panel-heading img {
        width: 100%;
    }

    .table-acc-sum.profile {
        text-align: left;
    }

    .main-title {
        line-height: 1.5;
        text-align: center;
        border-right: 5px solid #00a285;
        display: block;
    }

    .not-found-title, .not-found-desc, .not-found-list {
        text-align: center;
    }

    .main-container {
        margin: 64px 15px 0 15px;
    }

    .panel-desc {
        text-align: center;
    }

    .sign-in-list {
        text-align: center;
    }

        .sign-in-list > li > a {
            display: inline-block;
            margin-bottom: 16px;
        }

        .sign-in-list > li:last-child > a {
            margin: 0;
        }

    .media-container {
        margin: 64px 0 32px;
    }

    .main-container.sign-up .media {
        margin-top: 64px;
    }

    .account-summary {
        margin-bottom: 48px;
    }

        .account-summary .nav > li > a {
            text-align: center;
        }

    .btn-primary.pull-right, .btn-primary.pull-left {
        width: 100%;
    }

    .xs-mb-15 {
        margin-bottom: 15px;
    }

    .card-wrapper {
        display: none;
    }

    .pagination > li > a, .pagination > li > span {
        margin-bottom: 8px;
    }

    .table-child > tbody > tr > td:first-child:before {
        content: "\f045";
        margin-right: 7px;
        color: #c4c4c4;
    }

    .table-child > tfoot {
        display: none;
    }

    .table-child > tbody > tr > td:first-child {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 767px;
    }

    .btn-dec-filter {
        width: 100%;
    }

        .btn-dec-filter > .btn {
            padding: 10px 12px;
            -webkit-border-radius: 0 !important;
            -moz-border-radius: 0 !important;
            border-radius: 0 !important;
        }

    .table-modal > tbody > tr > td:first-child:before {
        content: "\f08e";
        font-size: 13px;
        margin-right: 7px;
        color: #48606e;
    }

    .table-pay > tbody > tr > td:first-child:before {
        content: none;
    }

    .modal .modal-dialog {
        width: 90%;
    }

    .img-captcha {
        width: 100%;
    }

    .btn-back {
        width: 100%;
    }

    .alert-inner {
        display: block;
        margin-bottom: 16px;
    }

    .btn-beyan-ver {
        display: block;
        width: 100%;
    }

    .sign-in .nav-tabs > li:not([class='active']):first-child > a {
        border-color: #ddd;
    }
}

@media(min-width:768px) {
    #scrollTop {
        bottom: 50px;
        right: 50px;
    }

    .navbar-main .navbar-header {
        position: relative;
    }

    .main-brand {
        position: absolute;
        top: -34px;
        background: url('../Content/Images/label.png') no-repeat left top;
    }

    .navbar-main.navbar > .container .navbar-brand, .navbar-main.navbar > .container-fluid .navbar-brand {
        margin-left: 0;
    }

    .main-brand {
        padding: 32px 21px 56px 21px;
    }

    .navbar-brand {
        width: 86px;
        height: 86px;
        padding: 0;
    }

    .navbar-main .navbar-collapse {
        margin-left: 116px;
    }

    .nav-sign-up {
        margin-left: 7px;
        margin-right: 7px;
    }

    .nav-profile .dropdown-menu {
        width: 288px;
        padding: 18px;
        font-size: 13px;
    }

    .navbar .dropdown-menu {
        max-width: 320px;
    }

        .navbar .dropdown-menu:after {
            position: absolute;
            z-index: -1;
            color: #e8ecef;
        }

    .nav-language .dropdown-menu > li > a:hover, .nav-language .dropdown-menu > li > a:focus {
        background-color: transparent;
    }

    .nav-language .dropdown-menu:after {
        content: "\f0ac";
        bottom: -25%;
        right: -15%;
        font-size: 128px !important;
    }

    .nav-profile .dropdown-menu:after {
        content: "\f007";
        bottom: -15%;
        right: -10%;
        font-size: 320px !important;
    }

    .navbar .dropdown-menu > li > a:before {
        content: "\f105";
        margin-right: 7px;
        color: #7f8f9b;
    }

    .navbar .dropdown-menu .dropdown-toggle:after {
        content: "\f105" !important;
    }

    .bx-wrapper .bx-controls-direction a {
        width: 48px;
        height: 64px;
        font-size: 64px;
        margin-top: -64px;
    }

    .bx-wrapper img {
        width: 100%;
        display: block;
    }

    .nav-sign-up:before, .nav-sign-in:before, .btn-profile:before, .btn-language:before, .nav-sign-out:before, .nav-home:before {
        margin-right: 7px;
        float: left;
    }

    .slide:nth-child(odd) .slide-caption {
        text-align: left;
    }

    .slide:nth-child(even) .slide-caption {
        text-align: right;
    }

    .slide-caption {
        font-size: 30px;
    }

        .slide-caption span {
            font-size: 44px;
        }

    .bx-wrapper .bx-prev {
        left: 10px;
    }

    .bx-wrapper .bx-next {
        right: 10px;
    }

    .foot-logo {
        display: inline-block;
        margin-left: 21px;
    }

    .panel-title {
        line-height: 48px;
        font-size: 18px;
    }

        .panel-title:before {
            width: 48px;
            height: 48px;
        }

    .list-half {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    .f-content {
        margin-top: 82px;
    }

    .nav-sign-up:before {
        top: 14px;
    }

    .nav-sign-in:before {
        top: 16px;
    }

    .btn-profile:before {
        top: 15px;
    }

    .btn-language:before {
        top: 15px;
    }

    .nav-sign-out:before {
        top: 16px;
    }

    .nav-home:before {
        top: 14px;
    }

    .navbar-top.navbar-default .navbar-nav > li > p {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .home-content {
        margin-top: 92px;
        margin-bottom: 192px;
    }

    .we-are {
        margin: 128px 0 192px 0;
    }

        .we-are .panel {
            margin-bottom: 0;
        }

    .call-us, .call-us-container {
        height: 384px;
    }

    .nav-profile, .nav-language {
        height: 86px;
    }

    .btn-profile, .btn-language {
        padding: 15px;
    }

    .main-header {
        background: url('..//Content/Images/title.png') repeat left top transparent;
        margin-bottom: 60px;
    }

    .main-title {
        display: inline-block;
    }

    .not-found {
        font-size: 128px;
    }

    .not-found-list {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    .breadcrumb-container {
        margin: 64px 0;
    }

    .main-container.sign-in {
        max-width: 560px;
    }

    .main-container.debt-payment {
        max-width: 700px;
    }

    .main-container {
        margin: 92px auto 64px auto;
    }

    .sign-in-list > li {
        float: left;
    }

        .sign-in-list > li:after {
            content: '/';
            color: #7f8f9b;
            margin: 0 7px;
        }

        .sign-in-list > li:last-child:after {
            content: none;
        }

    .media-container {
        margin: 24px 0;
    }

    .main-container.sign-up .media {
        margin-top: 92px;
    }

    .card-number {
        font-size: 1.5em;
        top: 5em;
        left: 1.9em;
    }

        .card-number > span + span {
            margin-left: 0.5em;
        }

    .card-name {
        font-size: 1em;
        bottom: 1.3em;
        left: 3em;
    }

    .card-expiry {
        font-size: 1em;
        bottom: 3.55em;
        left: 10.5em;
    }

    .card-ccv {
        font-style: italic;
        font-size: 1.25em;
        top: 5.95em;
        left: 8.5em;
    }

    .table-belsis > thead, .table-belsis tfoot {
        padding-right: 17px;
    }

    .btn-dec-filter > .btn + .btn {
        border-left: none;
    }

    .btn-dec-filter > .btn {
        padding: 18px 8px;
    }

    .img-captcha {
        max-width: 141px;
        height: 46px;
        float: left;
    }

    .payment-info {
        max-width: 256px;
    }

    .table-acc-sum > tbody > tr > td {
        max-width: 194px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .alert {
        position: relative;
    }

    .alert-inner {
        width: 80%;
        float: left;
    }

    .btn-beyan-ver {
        position: absolute;
        top: 0;
        bottom: 0;
        height: 34px;
        margin: auto;
        right: 15px;
    }

    .sign-in .nav-tabs > li:not([class='active']):first-child > a {
        border-color: #ddd #eee #ddd #ddd;
    }

    .sign-in .nav-tabs > li:not([class='active']):last-child > a {
        border-color: #ddd #ddd #ddd #eee;
    }
}

@media(max-width: 991px) {
    .breadcrumb-inner {
        padding: 24px 0;
        text-align: center;
    }

    .page-title {
        font-size: 30px;
    }

    .breadcrumb, .page-title {
        display: block;
    }

    .breadcrumb {
        margin-top: 16px;
    }

        .breadcrumb > li {
            margin-top: 8px;
        }
}

@media(min-width:992px) {
    .breadcrumb-container {
        margin-top: 64px;
    }

    .breadcrumb-inner {
        padding: 48px 0;
    }

    .page-title {
        font-size: 32px;
    }

    .breadcrumb, .page-title {
        display: inline-block;
    }

    .breadcrumb {
        margin-top: 8px;
        float: right;
    }

    .main-list {
        margin-top: 36px;
    }

    .page-content-wrapper {
        float: left;
        width: 100%;
    }

    .navbar-main {
        position: relative;
    }

    footer {
        clear: both;
    }

    .not-found {
        font-size: 196px;
    }

    .not-found-list {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }

    .card-number {
        font-size: 1.75em;
        top: 6em;
        left: 2.1em;
    }

    .card-name {
        font-size: 1.25em;
        bottom: 1.3em;
        left: 3em;
    }

    .card-expiry {
        font-size: 1.25em;
        bottom: 3.75em;
        left: 11em;
    }

    .card-ccv {
        font-size: 1.5em;
        top: 6.625em;
        left: 9.5em;
    }
}

@media(max-width:1199px) {
    .select-wrapper {
        margin-bottom: 32px;
    }

    .select-header {
        color: #7f8f9b;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: default;
        margin: 0 0 16px 0;
    }

        .select-header:before {
            content: "\f1ea";
            margin-right: 7px;
            position: relative;
            top: 1px;
        }

    .page-select.form-control {
        height: 46px;
    }

    .page-select .btn-default, .page-select .btn-default:active, .page-select .btn-default.active, .page-select .open > .dropdown-toggle.btn-default {
        color: #fff !important;
        background-color: #48606e !important;
        border-color: transparent !important;
        padding: 12px 26px;
    }

        .page-select .btn-default .fa {
            margin-right: 7px;
        }

    .page-select .dropdown-menu {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        padding: 10px 0;
    }

    .page-select .dropdown-header {
        color: #7f8f9b;
    }

    .page-select .dropdown-menu > li > a {
        color: #48606e;
        line-height: 2;
    }

    .card-flip {
        right: 1em;
    }

        .card-flip:hover {
            right: 0em;
        }
}

@media (min-width:1199px) {
    .card-number {
        top: 5.25em;
        left: 1.85em;
    }

    .card-name {
        left: 2.65em;
    }

    .card-expiry {
        bottom: 3.325em;
        left: 10em;
    }

    .card-ccv {
        top: 5.925em;
        left: 8.55em;
    }
}

@media(min-width:1200px) {
    .card-wrapper {
        margin-top: 15px;
    }

    .card-flip {
        right: -1em;
    }

        .card-flip:hover {
            right: -1.5em;
        }

    .not-found {
        font-size: 236px;
    }
}
/*Media Queries End*/










.hwrap {
    overflow: hidden;
    color: #fff;
    background-color: #3b505d;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}

.hmove {
    display: flex;
}

.hitem {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    font-size: 18pt;
    color: #fff;
    text-transform: uppercase;
}

@keyframes tickerh {



    0% {
        transform: translate3d(100%, 0, 0);
    }

    100% {
        transform: translate3d(-400%, 0, 0);
    }
}

.hmove {
    animation: tickerh linear 45s infinite;
}

    .hmove:hover {
        animation-play-state: paused;
    }


.e-devletLogo {
    width: 200px;
    border: solid 1px #dbdbdb;
    border-radius: 10px;
    margin: 10px;
}



.btn-captcha {
    position: absolute;
    right: 11px;
    color: #435865;
    top: 1px;
}


#formLogin .field-validation-error {
    margin-top: -18px;
}



.btn-changeuser:before {
    content: '\f1b8';
    top: 15px;
}



#formLogin > .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    color: orangered !important;
    font-weight: bold;
}

.main-container.sign-in .nav a {
    cursor: pointer;
}


#formLogin > .form-group {
    /*  margin-left: 15%;
    margin-right: 15%;*/
}


@media(max-width:767px) {
    .btn-captcha {
        position: static !important;
    }

    .img-captcha {
        height: 43px !important;
    }
}



#Filelist {
    list-style: none;
}

    #Filelist:before {
        content: 'Yüklenecek Dosyalar';
        color: orangered;
        border-bottom: solid 1px orangered;
    }

    #Filelist li {
        border-bottom: solid 1px #00a285;
        padding: 3px;
        cursor: pointer;
    }

        #Filelist li:hover {
            color: orangered;
            border-bottom: solid 1px orangered;
        }

        #Filelist li:before {
            content: '\00d7';
            margin-left: -20px;
            margin-right: 10px;
        }



.filelist {
    list-style: none;
}

    .filelist:before {
        content: 'Yüklenecek Dosyalar';
        color: orangered;
        border-bottom: solid 1px orangered;
    }

    .filelist li {
        border-bottom: solid 1px #00a285;
        padding: 3px;
        cursor: pointer;
    }

        .filelist li:hover {
            color: orangered;
            border-bottom: solid 1px orangered;
        }

        .filelist li:before {
            content: '\00d7';
            margin-left: -20px;
            margin-right: 10px;
        }


.table-belsis > tbody > tr > td.waiting {
    color: orangered;
    opacity: 1;
}


/*#kesintiTablosu > thead, #kesintiTablosu > tbody, #kesintiTablosu > tfoot, #kesintiTablosu > thead > tr, #kesintiTablosu > tbody > tr, #kesintiTablosu > tfoot > tr, #kesintiTablosu > thead > tr > th, #kesintiTablosu > tbody > tr > td, #kesintiTablosu > tfoot > tr > td {
   display: normal !important;
   width:auto !important;
}
*/




#kesintiTablosu > tbody {
    height: auto !important;
}

.analizDetayBilgileri > tbody {
    height: auto !important;
}






/* vertical tabs */
.vertical {
    margin: 20px 0;
}

    .vertical.hc-tabs {
        margin: 40px 0;
    }

    .vertical .nav-tabs,
    .vertical .tab-content {
        display: table-cell;
        margin: 0;
        vertical-align: top;
    }

    .vertical .nav-tabs {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-bottom-color: transparent;
        background-color: #999999;
    }

        .vertical .nav-tabs > li {
            float: none;
        }

            .vertical .nav-tabs > li a {
                margin: 0;
                padding: 15px 40px;
                white-space: nowrap;
                color: #ffffff;
                border-bottom: 1px solid #8f8f8f;
            }

            .vertical .nav-tabs > li > a:hover {
                border-color: #f0f0f0 #f0f0f0 #ebebeb;
                border-right-color: transparent;
                color: #666666;
                z-index: 2;
            }

                .vertical .nav-tabs > li > a:hover:after {
                    width: 3px;
                    content: "";
                    background-color: #e84c3d;
                    height: 102%;
                    position: absolute;
                    left: 0;
                    top: 0;
                }

            .vertical .nav-tabs > li.active > a,
            .vertical .nav-tabs > li.active > a:hover,
            .vertical .nav-tabs > li.active > a:focus {
                -webkit-box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.04);
                box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.04);
                border-right-color: transparent;
                border-bottom-color: #f0f0f0;
                color: #666666;
                z-index: 2;
                width: 101%;
            }

    .vertical .tab-content {
        border-top: 1px solid #f0f0f0;
        -webkit-box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.04);
        box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.04);
        left: -1px;
        z-index: 1;
        padding: 20px 30px;
    }

        .vertical .tab-content:after {
            background-color: transparent;
        }

.arrow {
    display: block;
    position: relative;
}

    .arrow i {
        font-size: 96px;
        top: -62px;
        position: absolute;
        line-height: 1;
        z-index: 2;
        left: 50%;
        margin-left: -27px;
    }

        .arrow i:before {
            color: #fafafa;
            text-shadow: 0px -1px 1px #E9E9E9;
        }

/* Small devices (tablets, phones less than 767px) */
@media (max-width: 767px) {
    .vertical .nav-tabs,
    .vertical .tab-content {
        display: block;
    }
}

/* hc-tabs */
.hc-tabs .hc-tabs-top img {
    display: none;
}
