html,
body {
    background: #eceef2;
    font-family: 'proxima_novaregular';
    font-size: 14px;
    color: #353D4E;
    line-height: normal;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga"on;
    height: 100%;
}

@font-face {
    font-family: 'proxima_novaregular';
    src: url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),
        url('../fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novabold';
    src: url('../fonts/proxima_nova_bold-webfont.woff2') format('woff2'),
        url('../fonts/proxima_nova_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*================ Common Elements =================*/
html:focus {
    outline: none;
}

:focus {
    outline: none;
}

ol,
ul,
dl,
li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

::placeholder {
    color: #97A3BA;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #97A3BA;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #97A3BA;
}

input:focus {
    outline: none;
}

.radio-group .custom-radio label {
    font-size: 14px;
    color: #353D4E;
}

a.link {
    color: #EB131B;
    text-transform: uppercase;
}

a.link:hover {
    color: #D30008;
}



@-webkit-keyframes aslide {
    100% {
        width: 100%;
        opacity: 1
    }
}

@keyframes aslide {
    100% {
        width: 100%;
        opacity: 1
    }
}


form {
    float: left;
    width: 100%;
}

.disabled label {
    color: #CACACA !important;
}

.text-small {
    font-size: 14px !important;
}

.text-light{
 color: #97A3BA;
}

select.form-control {
    background-image: url("../images/select-arrow.png");
    background-position: calc(100% - 5px);
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 15px;
}

select.form-control option {
    padding: 5px;
}

select::-ms-expand {
    display: none;
}

.remove-btn {
    background-color: #fff;
    border: 1px solid #EC1C23;
    padding: 7px 5px;
    font-size: 14px;
    color: #EC1C23;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
}

.remove-btn:hover {
    background-color: #EC1C23;
    color: #fff;
}

.add-btn {
    background-color: #fff;
    border: 1px solid #ECEEF2;
    padding: 7px 5px;
    font-size: 14px;
    color: #97A3BA;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
}

.add-btn:hover {
    background-color: #97A3BA;
    color: #fff;
}

.border-dotted {
    border-bottom: 1px dotted #BFC9DD;
    float: left;
    width: 100%;
}

.border-bottom {
    border-bottom: 1px solid #BFC9DD;
    float: left;
    width: 100%;
}

.border-line {
    background-color: #BFC9DD;
    width: 1px;
    height: 100%;
    display: inline-block;
}

.table-heading {
    font-size: 14px;
    border-bottom: 1px solid #BFC9DD;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.subtitle-primary {
    font-size: 16px;
}

.subtitle-primary span{
    font-size: 14px;
    color: #97A3BA;
    display: block;
    padding-top: 5px;
}

.subtitle-secondary {
    font-size: 14px;
}

.paragraph-primary {
    font-size: 14px;
}

.paragraph-secondary {
    font-size: 12px;
}

.caption-primary {
    font-size: 11px;
}

.caption-secondary {
    font-size: 10px;
}

.padding {
    padding: 20px;
}

.no-padding {
    padding: 0px !important;
}

.edit-view a {
    color: #EC1C23;
}

.edit-view .btn-white {
    font-size: 14px;
}

.upload-link {
    text-transform: uppercase;
    text-decoration: underline;
}

.heading-border {
    border-bottom: 1px solid #ECEEF2;
    padding-bottom: 20px;
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

.heading-border h3 {
    float: left;
}

.heading-border a {
    text-transform: uppercase;
}

.form-group label {
    font-size: 11px;
    color: #97A3BA;
}

.form-group label span {
    color: #EB131B;
    font-size: 13px;
}

.form-group .text i {
    padding-right: 10px;
}

.custom-radio label {
    padding-left: 8px;
    line-height: 21px;
    color: #97A3BA;
}

.switch-btn.large {
    width: 94px;
    height: 42px;
}

.switch-btn.large .slider:before {
    width: 28px;
    height: 28px;
    bottom: 7px;
}

.switch-btn.large input:checked+.slider:before {
    -webkit-transform: translateX(55px);
    -ms-transform: translateX(55px);
    transform: translateX(55px);
}

.switch-btn {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 30px;
    margin-bottom: 0px;
}

.switch-btn input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D1D1D1;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #579D0C;
}

input:checked+.slider:before {
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.upload-box .img {
    margin-top: 15px;
}

.upload-box .img img {
    width: 80px;
    height: 80px;
}

.upload-box label.upload-input input[type="file"] {
    display: none;
}

.upload-box label.upload-input {
    margin-left: 10px;
    font-size: 14px;
    color: #EC1C23;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
}

.upload-box label.upload-input:hover {
    color: #D30008;
    text-decoration: none;
}

.user-dropdown {
    margin-top: 55px !important;
}

.dropdown-menu .btn {
    margin-left: 0px !important;
}

.dropdown-menu ul.action-link {
    min-width: 200px;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}

.dropdown-menu ul.action-link li {
    color: #97A3BA;
    padding: 10px 0px;
    float: left;
    width: 100%;
}

.dropdown-menu ul.menu-link {
    min-width: 200px;
    position: relative;
}

.dropdown-menu ul.menu-link li {
    float: inherit;
}

.dropdown-menu ul.menu-link li a {
    padding: 20px 20px;
    float: left;
    width: 100%;
    border-bottom: 1px solid #ECEEF2;
    white-space: nowrap;
}

.dropdown-menu ul.menu-link li a:hover {
    text-decoration: none;
    background-color: #F4F6F8;
    color: #353D4E;
}

.dropdown-menu.arrow {
     margin-top: 30px;
    left: auto !important;
    right: 0 !important;
    transform: none !important;   
}

.dropdown-menu.arrow:before {
    content: '';
    height: 15px;
    width: 15px;
    background-color: #fff;
    top: -8px;
    position: absolute;
    right: 15px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-left: 1px solid #e6e8ea;
    border-top: 1px solid #e6e8ea;
}

/*.dropdown-menu-left.arrow:before{
  left: 15px;
}

.dropdown-menu-right.arrow:before{
  right: 15px;
}*/

.primary-tab {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ECEEF2;
}

.primary-tab li {
    float: left;
}

.primary-tab li a {
    padding: 25px 15px;
    display: block;
    font-size: 16px;
}

.primary-tab li a:hover {
    color: #EC1C23;
    text-decoration: none;
    border-bottom: 1px solid #EC1C23;
    margin-bottom: -1px;
}

.primary-tab li a.active {
    color: #EC1C23;
    text-decoration: none;
    border-bottom: 1px solid #EC1C23;
    margin-bottom: -1px;
}

.tab-content {
    float: left;
    width: 100%;
}

.border-box {
    padding: 20px;
    border: 1px solid #BFC9DD;
    border-radius: 5px;
    position: relative;
    float: left;
    width: 100%;
}

.border-box .tag {
    background-color: #97A3BA;
    font-size: 12px;
    border-radius: 5px;
    color: #fff;
    padding: 3px 10px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.border-box .car-name {
    font-size: 14px;
    padding: 20px 0px 25px 0px;
}

.border-box .car-name span {
    font-size: 11px;
    color: #97A3BA;
    display: block;
    padding-top: 5px;
}

.border-box .btns {
    border-top: 1px dashed #97A3BA;
    padding-top: 20px;
}

.border-box .btns a {
    color: #EC1C23;
    font-size: 14px;
    text-transform: uppercase;
}

.border-box .btns a:hover {
    color: #D30008;
    text-decoration: none;
}

.border-box.user-box .btns {
    border-top: 0px;
    padding-top: 0px;
}

.border-box.user-box .address-name {
    font-size: 14px;
    padding-bottom: 30px;
}

.border-box.user-box .address-name span {
    font-size: 11px;
    color: #97A3BA;
    padding-bottom: 10px;
    display: block;
}

/*================ Login Elements =================*/
.login-bg {
    float: left;
    width: 100%;
    height: 100%;
    background-image: url("../images/loginbg.jpg");
    background-repeat: no-repeat;
    background-position: calc(100% - 600px);
    background-size: cover;
}

.login-bg .login-panel {
    background-color: #fff;
    min-width: 600px;
    max-width: 600px;
    height: 100%;
    float: right;
    box-shadow: -1px 0px 6px #0000001A;
}

.login-bg .login-panel .login-box {
    padding-left: 10%;
    padding-right: 10%;
    width: 100%;
}

.login-bg .login-panel .login-box .login-link {
    color: #353D4E;
    text-decoration: underline;
}

.login-bg .login-panel .login-box .login-link:hover {
    color: #ED1C24;
    text-decoration: none;
}

.login-bg .login-panel .login-box .logo {
    margin-bottom: 50px;
}

.login-bg .login-panel .login-box .logo img{
    max-width: 150px;
}

.login-bg .login-panel .login-box .btn {
    font-family: 'proxima_novabold';
    font-size: 14px;
    text-transform: capitalize;
    line-height: 40px;

}

.login-bg .login-panel .login-box .copyright-text {
    font-size: 12px;
    color: #97A3BA;
    padding-top: 50px;
}

.login-bg .login-panel .login-box .login-input {
    position: relative;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

.login-bg .login-panel .login-box .login-input input {
    border: 1px solid #ECEEF2;
    padding: 20px 40px 20px 40px;
    width: 100%;
    border-radius: 5px;
}

.login-bg .login-panel .login-box a {
    color: #EB131B;
}

.login-bg .login-panel .login-box .login-input i.left {
    position: absolute;
    left: 15px;
    top: 23px;
    color: #dd7544;
    z-index: 9;
}

.login-bg .login-panel .login-box .login-input i.right {
    position: absolute;
    right: 15px;
    top: 23px;
    color: #97A3BA;
}

.login-bg .login-panel .login-box .login-input .input-group-text {
    padding: 0px 10px 0px 30px;
    width: 90px;
    border: 1px solid #ECEEF2;
}

.login-bg .login-panel .login-box .login-input .input-group-text select {
    border: 0px;
}

.login-bg .login-panel .login-box .login-input .input-group input {
    border-radius: 0px 5px 5px 0px;
}


/*================ Header Elements =================*/
header {
    background-color: #fff;
    box-shadow: 0px 1px 2px #0000001A;
    padding: 15px 20px;
    float: left;
    width: 100%;
    border-bottom: 1px solid #dadce0;
    position: relative;
    z-index: 9;
}

header .logo {
    float: left;
    min-width: 330px;
}

header .logo img {
    height: 45px;
}



header .logo.left-menu-bar{
  border-right: 1px solid #ECEEF2;
  padding-right: 20px;
}

header .logo.left-menu-bar i{
  color: #97A3BA; 
  font-size: 20px;
  cursor: pointer;
}

header nav ul li {
    float: left;
}

header nav ul li a {
    font-family: 'proxima_novaregular';
    padding: 0px 20px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

header nav ul li a:hover {
    color: #ec2128;
    text-decoration: none;
}

header nav ul li a.active {
    color: #ec2128;
}

header .notification-icon {
    margin-left: auto;
    position: relative;
    margin-right: 4%;
}

header .notification-icon span {
    width: 10px;
    height: 10px;
    background-color: #EB131B;
    border: 2px solid #fff;
    position: absolute;
    top: 2px;
    right: 0px;
    border-radius: 100%;
}

header .notification-icon i {
    color: #97A3BA;
    font-size: 28px;
    cursor: pointer;
}

header .user-profile-section {
    cursor: pointer;
}

header .user-profile-section .user-name {
    float: left;
    padding-right: 15px;
    font-size: 16px;
    color: #353D4E;
    text-align: right;
}

header .user-profile-section .user-name span {
    display: block;
    font-size: 12px;
    color: #97A3BA;
}

header .user-profile-section img {
    border: 1px solid #EB131B;
    border-radius: 100%;
    width: 42px;
    height: 42px;
}

/*================ Page Elements =================*/
.main-container {
    padding: 20px;
    width: 100%;
    float: left;
}

.white-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    width: 100%;
    float: left;
}

/*================ Page Header Elements =================*/

.page-header {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.page-header .page-title {
    font-family: 'proxima_novabold';
    font-size: 14px;
    float: left;
    padding-top: 10px;
}

.page-header .page-action {
    float: right;
}

.page-header .page-action .btn {
    margin-left: 30px;
}

.sub-header {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.sub-header .balance {
    font-size: 20px;
    color: #353D4E;
    float: left;
}

.sub-header .balance span {
    font-family: 'proxima_novabold';
    font-size: 14px;
    color: #353D4E;
    display: block;
    padding-bottom: 6px;
}

.sub-header .balance.br-left {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #BFC9DD;
}

.search-box {
    position: relative;
    float: left;
    width: 100%;
}

.search-box input {
    font-size: 16px;
    color: #97A3BA;
    background-color: #F4F6F8;
    border: 0px;
    padding: 14px 50px 14px 20px;
    border-radius: 5px;
    width: 100%;
}

.search-box img {
    color: #97A3BA;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.page-header .page-action .action-btn {
    color: #97A3BA;
    font-size: 16px;
    float: left;
    margin-left: 30px;
    cursor: pointer;
}

.page-header .page-action .action-btn img {
    padding-right: 5px;
}

.page-header .page-action .action-btn i {
    padding-left: 5px;
    margin-top: -7px;
}

/*================ Table Elements =================*/
.table thead th:first-child{
  border-radius: 5px 0px 0px 5px;  
}

.table thead th:last-child{
  border-radius: 0px 5px 5px 0px;  
}

.table tr td i.fa-ellipsis-h {
    color: #BFC9DD;
    font-size: 20px;
    cursor: pointer;
}

.table tr.search-row td input {
    background-color: #fff;
    border: 0px;
    font-size: 16px;
    color: #97A3BA;
    padding: 5px 0px;
    width: 100%;
}

.pagination li {
    margin: 0px 5px;
}

.pagination li a {
    border-radius: 5px;
    padding: 5px 10px;
    border: 1px solid #BFC9DD;
    color: #BFC9DD;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

.pagination li a:hover {
    background-color: #353D4E;
    border-color: #353D4E;
    color: #fff;
}

.pagination li.active a {
    background-color: #353D4E;
    border-color: #353D4E;
    color: #fff;
}

.pagination li.text a {
    background-color: transparent;
    border: 0px;
    font-size: 12px;
}

.pagination li.text a:hover {
    color: #EC1C23;
}


/*================ Left sidebar Elements =================*/
.left-sidebar {
    background-color: #fff;
    margin-left: -20px;
    margin-top: -20px;
    float: left;
}

.left-sidebar ul.left-menu li .round-btn {
    background-color: #353D4E;
}

.left-sidebar ul.left-menu li.active .round-btn {
    background-color: #EC1C23;
}

.left-sidebar .search-box{
  padding: 20px;
  border-bottom: 1px solid #ECEEF2;
}

.left-btn{
 padding: 15px 20px;
 border-bottom: 1px solid #ECEEF2;   
 float: left;
 width: 100%;
}

.left-sidebar .round-btn {
    background-color: #EC1C23;
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.left-sidebar .round-btn i {
    font-size: 20px;
    color: #fff;
}

.left-sidebar .name {
    padding-left: 20px;
    float: left;
    font-size: 16px;
}

.left-sidebar .name span {
    font-size: 12px;
    color: #97A3BA;
    display: block;
}


.customers-list {
    float: left;
    width: 100%;
    height: 100vh;
    overflow: auto;
}

.customers-list li {
    border-bottom: 1px solid #ECEEF2;
    padding: 15px 20px;
    float: left;
    width: 100%;
    cursor: pointer;
}

.customers-list li:hover {
    background-color: #F4F6F8;
}

.customers-list li.active {
    background-color: #F4F6F8;
}

.customers-list li.no-hover {
    background-color: transparent;
    cursor: default;
}

.customers-list li .customer-img {
    position: relative;
}

.customers-list li .customer-img img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.customers-list li .customer-img span {
    width: 11px;
    height: 11px;
    background-color: #D1D1D1;
    border: 2px solid #fff;
    position: absolute;
    top: 2px;
    right: 0px;
    border-radius: 100%;
}

.customers-list li .name {
    padding-left: 20px;
    float: left;
    font-size: 16px;
}

.customers-list li .name span {
    font-size: 12px;
    color: #97A3BA;
    display: block;
}

.customers-list li .arrow-icon {
    font-size: 20px;
    color: #97A3BA;
}


.user-panel {
    float: left;
    width: 100%;
    padding: 0px 30px 0px 20px;

}

.user-panel .user-detail {
    float: left;
    padding: 16px 0px;
}

.user-panel .user-detail img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.user-panel .user-detail .name {
    padding-left: 20px;
    float: left;
    font-family: 'proxima_novabold';
    font-size: 20px;

}

.user-panel .user-detail .name span {
    font-family: 'proxima_novaregular';
    font-size: 16px;
    color: #97A3BA;
    display: block;
}

.user-links-section {
    float: right;
}

.user-links-section .user-links {
    float: left;
}

.user-links-section .user-links li {
    float: left;
}

.user-links-section .user-links li a i {
    padding-left: 5px;
    color: #BFC9DD;
}

.user-links-section .user-links li a {
    font-size: 16px;
    padding: 0px 15px;
}

.user-links-section .user-links li a:hover {
    color: #EC1C23;
    text-decoration: none;
}

.user-links-section .user-links li a.active {
    color: #EC1C23;
}

.user-links-section .status-panel {
    border-left: 1px solid #ECEEF2;
    float: left;
    padding: 20px 0px 20px 30px;
    margin-left: 20px;
    font-size: 16px;
    color: #97A3BA;
}

.user-links-section .status-panel .switch-btn {
    margin-left: 20px;
}

.address-box .address-name {
    font-size: 16px;
    padding: 10px 0px 30px 0px;
}

.address-box .address-name span {
    font-size: 14px;
    color: #97A3BA;
    display: block;
    padding-top: 10px;
}

.address-box .btns {
    border-top: 0px;
    padding-top: 0px;
}

.ribbon-tag {
    font-size: 14px;
    border-radius: 0px;
    text-align: center;
    top: 30px;
    right: 0px;
    left: auto;
    padding-left: 0px;
    height: 27px;
    position: absolute;
    background-color: #97A3BA;
    color: #fff;
}

.ribbon-tag i {
    float: left;
    font-size: 50px;
    margin-left: -1px;
    color: #fff;
}

.ribbon-tag span {
    padding-left: 10px;
    padding-right: 10px;
}

.activity-log {
    float: left;
    width: 100%;
    position: relative;
}

.activity-log:before {
    content: '';
    border-left: 1px dashed #BFC9DD;
    position: absolute;
    left: 17px;
    height: 100%;
}

.activity-log li {
    display: flex;
    padding-bottom: 30px;
    float: left;
    width: 100%;
}

.activity-log li .subtitle-secondary {
    color: #97A3BA;
    padding-top: 10px;
}

.activity-log li .paragraph-secondary {
    color: #97A3BA;
    padding-top: 5px;
}

.activity-log li .log-icon {
    border: 1px solid #BFC9DD;
    min-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    text-align: center;
    line-height: 28px;
    margin-right: 20px;
    background-color: #fff;
    position: relative;
}

.rating-star {
    display: flex;
}

.rating-star i {
    color: #97A3BA;
    padding: 0px 2px;
    font-size: 16px;
}

.rating-star i.active {
    color: #FFC600;
}

.primary-tab.large {
    padding-left: 0px;
    border-bottom: 0px;
}

.primary-tab.large li a {
    font-size: 16px;
    font-family: 'proxima_novabold';
    padding: 15px 15px;
    margin-bottom: 0px;
}

.primary-tab.medium li a {
    font-family: 'proxima_novabold';
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}

.listing-box {
    padding: 0px;
}

.listing-box .custom-radio label {
    padding-left: 0px;
}

.listing-box .customers-list .customer-img img {
    width: auto;
    height: auto;
    border-radius: 0px !important;
}

.car-box .img img {
    height: 70px;
    width: 70px;
}

.car-box .name {
    padding-left: 20px;
}

.service-table tr td {
    color: #97A3BA;
    padding: 20px 10px;
    white-space: nowrap;
}

.service-table tr td .status-panel {
    font-size: 16px;
}

.service-table tr td .status-panel label.switch-btn {
    margin-left: 10px;
}

.service-table tr td .input-group {
    width: 130px;
}

.service-table tr td .link-btn a {
    color: #EC1C23;
    text-transform: uppercase;
}

.service-table tr td .link-btn a:hover {
    color: #D30008;
}

.service-table tr td.collapse-icon i {
    color: #97A3BA;
    font-size: 20px;
    cursor: pointer;
}

.service-details {
    border-top: 1px dashed #BFC9DD;
    padding-top: 20px;
}

.service-details li {
    padding: 5px;
}

table tr.collapse.show {
    border-top: 2px solid #fff !important;
}

table tr.collapse.show td {
    padding-top: 0px;
}

/*================ Sidebar Elements =================*/
.modal-sidebar-area {
    width: 100%;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 9;
    -webkit-overflow-scrolling: touch;
    display: none;
}

.background-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.44);
    top: 0;
    left: 0;
}

.sidebar-panel {
    background-color: #fff;
    box-shadow: -3px 0px 6px #0000001A;
    max-width: 650px;
    width: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    -webkit-overflow-scrolling: touch;
    -webkit-animation: aslide 0.5s ease-in forwards;
    animation: aslide 0.5s ease-in forwards;
    transition: ease .3s;
}

.sidebar-panel .sidebar-header {
    background-color: #353D4E;
    color: #fff;
    padding: 20px 22px;
    float: left;
    width: 100%;
    height: 70px;
}

.sidebar-panel .sidebar-header .subtitle-primary {
    float: left;
}

.sidebar-panel .sidebar-header .close-icon {
    margin-left: auto;
    float: right;
    cursor: pointer;
    height: 20px;
    width: 20px;
    background-image: url("../images/close.png");
    background-size: 20px 20px;
}

.sidebar-panel .sidebar-footer {
    background-color: #fff;
    padding: 20px 20px;
    border-top: 1px solid #BFC9DD;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.sidebar-panel .sidebar-container {
    float: left;
    width: 100%;
    padding: 20px;
    overflow: auto;
    position: absolute;
    top: 70px;
    bottom: 81px;
}

.sidebar-panel .sidebar-container form {
    float: left;
    width: 100%;
}

.sidebar-panel .sidebar-container .primary-tab {
    margin-bottom: 20px;
}

.text-nowrap {
    white-space: nowrap !important;
}

.invoice-text {
    float: left;
    width: 100%;
    font-size: 16px;
    padding-bottom: 10px;
}

.invoice-text i.fa-rupee-sign {
    font-size: 14px;
    padding-right: 5px;
    padding-left: 5px;
}

.invoice-text i.fa-times-circle {
    font-size: 15px;
    color: #97A3BA;
    padding-right: 5px;
    padding-left: 0px;
    cursor: pointer;
}

.invoice-text i {
    font-size: 10px;
    padding-left: 5px;
}

.total-box {
    border: 1px dotted #BFC9DD;
    padding: 15px;
    margin-top: 30px;
}

/*================ Notifications Elements =================*/
.notifications-table .custom-checkbox{
 font-size: 12px;
}

/*================ Responsive Elements =================*/
@media (max-width: 577px) {}

@media (max-width: 767px) {
    header {
        padding: 15px 15px;
    }

    header nav {
        margin-left: auto;
    }

    header .logo {
        min-width: auto;
    }

    header .logo img {
        height: 30px;
    }

    header .notification-icon {
        margin-left: 15px;
    }

    header .user-profile-section .user-name {
        display: none;
    }

    header .user-profile-section img {
        width: 30px;
        height: 30px;
    }

    header nav .navbar-collapse {
        background-color: #fff;
        width: 100%;
        position: absolute;
        left: 0px;
        top: 61px;
        z-index: 9;
    }

    header nav ul li {
        float: inherit;
    }

    header nav ul li a {
        font-size: 14px;
        display: block;
        padding: 13px 15px;
        border-bottom: 1px solid #ECEEF2;
    }

    .main-container,
    .white-box {
        padding: 15px;
    }

    .search-box {
        display: none;
    }

    .page-header .page-action .btn {
        margin-left: 10px;
    }

    .page-header .page-action .action-btn {
        margin-left: 15px;
        font-size: 14px;
    }


}

@media (max-width: 991px) {
    .left-sidebar {
        margin-left: 0px;
    }
    
}

@media (max-width: 1199px) {}


.add-donations .form-control  {
    border-radius: 5px !important;
    padding: 0px 10px;
    border: 1px solid #9298af !important;
}

.add-donations .form-label {
    font-weight: 600;
}


#donation-table tr th:nth-child(5) {
    max-width: 500px;
}