/*Common CSS*/
* {
    outline: none;
}

*::-moz-selection {
    background: #3079ed;
    color: #fff;
    text-shadow: none;
}

body,
html {
    font-family: 'Fira Sans' !important;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
}

sup {
    color: orangered;
}

label {
    display: block;
    font-family: 'Fira Sans';
    font-weight: 400;
}

option {
    font-family: 'Fira Sans';
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans';
    line-height: normal;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans';
}

img {
    vertical-align: middle;
    border: none
}

p {
    font-size: 18px;
    padding: 0;
    color: #2a2a2a;
    display: block;
    font-family: 'Fira Sans';
    margin: 0;
    line-height: normal;
}

a,
input,
select,
textarea,
.btn {
    transition: all 0.25s ease-in 0s;
    -webkit-transition: all 0.25s ease-in 0s;
    -moz-transition: all 0.25s ease-in 0s;
    -o-transition: all 0.25s ease-in 0s;
    outline: none;
    font-family: 'Helvetica Neue LT Pro';
    text-decoration: none;
}

a {
    color: #666;
    cursor: pointer;
}

a:hover {
    outline: none;
    cursor: pointer;
    color: #212121;
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none
}

.full-width {
    float: left;
    width: 100%;
}

.relative {
    position: relative
}

.full-img {
    width: 100%;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"],
select,
input[type="number"] {
    transition: all 0.25s ease-in 0s;
    -webkit-transition: all 0.25s ease-in 0s;
}

button {
    transition: all 0.25s ease-in 0s;
    -webkit-transition: all 0.25s ease-in 0s;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
select:focus,
input[type="number"]:focus {
    outline: none;
    transition-duration: 0.1s;
    box-shadow: none;
}

.form-control {
    box-shadow: none;
    padding: 0 10px;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
}

.form-control::-moz-placeholder {
    opacity: 1;
    color: #222;
}

.form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #222;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

select.form-control {
    border: 1px solid #949494;
}

select::-ms-expand {
    display: none;
}

video {
    width: 100%;
}

select option {
    color: #282828;
}

picture>img {
    width: 100%;
    height: auto;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

/* ::-webkit-scrollbar { width: 10px;}
::-webkit-scrollbar-track { background: #fff; border-radius: 0;}
::-webkit-scrollbar-thumb { background: #FF5A37; border-radius:0;}
::-webkit-scrollbar-thumb:hover { background: #FF5A37; border-radius: 0;} */

/*Common CSS*/
.modal {
    z-index: 10000;
    right: -17px;
}

.modal-backdrop {
    z-index: 9999;
}

.modal-open {
    padding-right: 0 !important;
    overflow: auto;
}

.modal.in {
    padding-right: 0 !important;
}

.modal-content {
    float: left;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.modal-dialog {
    max-width: 600px;
    width: 90%;
    margin: 70px auto 0;
}

.modal-body {
    float: left;
    width: 100%;
    padding: 15px;
}

.modal-backdrop.in {
    opacity: .80;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.styled_select {
    position: relative;
    width: 100%;
}

.styled_select:after {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    line-height: 52px;
    color: #959191;
    font-size: 30px;
    text-align: center;
    pointer-events: none;
}

.styled_select select {
    padding-right: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.container {
    max-width: 1300px;
    width: 100%;
    padding: 0 15px;
}

.img_block>img {
    width: 100%;
}

.custom_checkbox {
    display: inline-block;
    width: 100%;
    text-align: left;
    position: relative;
    padding-left: 50px;
}

.custom_checkbox input[type=checkbox] {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer
}

.custom_checkbox label {
    color: #fff;
    line-height: normal;
    font-size: 20px;
}

.custom_checkbox label:before {
    content: '';
    background-color: transparent;
    border: 2px solid #fff;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 26px;
    height: 26px;
}

.custom_checkbox input[type=checkbox]:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 10px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Common CSS for pages */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    height: 52px;
    border-radius: 5px;
    padding: 0 15px;
    background-color: #EEEEEE;
    border: 1px solid rgba(45, 51, 147, .18);
    font-size: 15px;
    color: #000000;
    font-weight: 400;
}

.btn {
    border: none;
    color: #fff;
    background-color: #2D3393;
    line-height: 60px;
    font-size: 18px;
    font-weight: 600;
    padding: 0 60px 0 25px;
    border-radius: 5px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
}

.btn span {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: all 0.25s ease-in 0s;
}

.btn:hover span {
    right: 10px;
}

.btn:hover {
    color: #fff;
    background-color: #3f46a5;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    align-items: center;
}

.login_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 60px;
}

.login_container .img_block {
    width: 48%;
    padding: 0 30px;
}

.login_container .content_block {
    width: 52%;
    padding: 0 50px 0 30px;
}

.login_container .content_block h3 {
    text-align: center;
    font-size: 25px;
    color: #1E1E1E;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 10px;
}

.title {
    color: #2D3393;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.login_wrap {
    background-color: #FBFBFB;
    border: 1px solid rgba(45, 51, 147, .18);
    padding: 30px;
}

.login_wrap h2 {
    color: #1E1E1E;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 5px;
    text-align: center;
}

label {
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Roboto';
    margin-bottom: 5px;
}

.login_wrap .btn_wrap {
    padding-top: 30px;
    text-align: center;
}

.back {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
}

.bottom_logo {
    position: absolute;
    left: 0;
    /* bottom: 0px; */
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 90px;
    z-index: 1;
}

.mid_section {
    position: relative;
    padding-bottom: 100px;
}

.title02 {
    text-align: center;
    color: #000;
    font-size: 25px;
    font-weight: 500;
    padding-bottom: 20px;
    position: relative;
}

.title02 b {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 12px;
    color: #F00;
    font-weight: 400;
}

/* Fill Data CSS */
.bt_border {
    border-bottom: 1px solid #D9D9D9;
}

.left_header li .user_wrap {
    display: inline-grid;
    position: relative;
    padding: 0 40px 0 20px;
    text-align: left;
    color: black;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
}

.left_header {
    display: flex;
    align-items: center;
}

.left_header li {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.left_header li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .5);
    width: 1px;
    height: 36px;
}

.left_header li:first-child:before {
    display: none;
}

.left_header li:first-child {
    padding-left: 0;
}

.left_header li:last-child {
    padding-right: 0;
}

.left_header li .user_pic {
    width: 40px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.left_header li span {
    display: block;
    font-weight: 700;
}

.down_arrow {
    position: absolute;
    right: 0;
    top: 0;
}

.fill_data {
    padding-top: 60px;
    text-align: center;
}

.fill_data .inner {
    max-width: 930px;
    width: 100%;
    margin: auto;
    background: linear-gradient(to bottom, rgba(45, 51, 147, 0.15) 0%, rgba(69, 74, 159, 0) 100%);
    text-align: left;
    padding: 40px;
    border-radius: 15px;
}

.fill_data .form-control {
    background-color: #fff;
}

.fill_data .btn_wrap {
    text-align: center;
    padding-top: 100px;
}

.fill_data .btn {
    padding-right: 80px;
}

/* Company Info CSS */
.back_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.back_bg>img {
    width: 100%;
}

.company_info {
    padding-top: 60px;
    text-align: center;
    max-width: 930px;
    width: 100%;
    margin: auto;
}

.company_info .ci_wrap {
    width: 100%;
    background-color: #FBFBFB;
    text-align: left;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid rgba(45, 51, 147, .18);
}

.ci_wrap .form-control {
    height: 40px;
}

.company_info .ci_wrap p {
    font-size: 15px;
    color: #000;
    font-family: 'Roboto';
    font-weight: 400;
    padding-bottom: 10px;
}

.company_info .inner {
    width: 100%;
    padding: 20px 30px 5px;
    background: linear-gradient(to bottom, rgba(238, 238, 238, 1) 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 5px;
    /* border-bottom: 1px solid #D9D9D9; */
}

.company_info .btn_wrap {
    text-align: center;
    padding-top: 30px;
}

.company_info .btn {
    padding-right: 80px;
}

/* Profit & Loss */
.blue_control label {
    color: #2D3393;
    font-weight: 700;
}

.blue_control .form-control {
    background-color: #CCCFFF;
    border-color: #2D3393;
}

.mid_section .company_info .btn_wrap {
    padding-top: 20px;
}

/* Balance Sheet */
.company_info .ci_wrap h3 {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    font-family: 'Roboto';
    padding: 10px 0;
}

/* Search page */
.search {
    position: relative;
    min-width: 600px;
    margin: 15px 0;
}

.search .form-control {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    height: 52px;
    padding: 0 60px 0 15px;
}

.search .btun {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    padding: 0;
    border: none;
    background-color: #D9D9D9;
    border-radius: 0 10px 10px 0;
}

.search_table {
    margin-bottom: 60px;
}

/* Responsive */
@media(max-width:1440px) {
    .container {
        max-width: 1170px;
    }

    .login_container .content_block h3 {
        font-size: 22px;
    }

    .title {
        font-size: 25px;
    }

    .login_wrap {
        padding: 25px;
    }

    .form-control {
        height: 40px;
        font-size: 13px;
    }

    .login_wrap h2 {
        font-size: 18px;
    }

    .btn {
        line-height: 40px;
        font-size: 14px;
    }

    .login_container {
        padding-top: 30px;
    }

    .header {
        padding: 20px 0;
    }

    .fill_data {
        padding-top: 30px;
    }

    .title02 {
        font-size: 22px;
    }

    label {
        font-size: 13px;
    }

    .styled_select::after {
        line-height: 40px;
        font-size: 24px;
    }

    .company_info {
        padding-top: 30px;
    }

    /* .company_info .btn_wrap {
        padding-top: 66px;
    } */

    .btn span img {
        width: 24px;
    }
}