/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Default CSS */

* {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    background: #ffffff;
}

img  {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--heading-font);
}

p {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    outline: none;
    border: none;
    font-weight: 500;
    -webkit-transition: color 350ms ease-in-out;
    -moz-transition: color 350ms ease-in-out;
    -ms-transition: color 350ms ease-in-out;
    -o-transition: color 350ms ease-in-out;
    transition: color 350ms ease-in-out;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

title {
    text-transform: capitalize;
}

:root {
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;
    --primary-color: #367BF5;
    --secondary-color: #F3AA18;
    --black-color: #000;
    --lightblack: #222222;
    --white-color: #fff;
    --darkgrey: #868686;
    --lightgrey: #636363;
    --green: #069697;
    --red: #EA3D2F;
}

.green {
    color: var(--green) !important;
}

.lightblack {
    color: var(--lightblack) !important;
}

.blue {
    color: var(--primary-color) !important;
}

.red {
    color: var(--red) !important;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}
.section-header h2 {
    color: #003366;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    padding-bottom: 15px;
}

.theme-btn {
    background: #0048b4;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    padding: 0.75rem 1rem;
}

.theme-btn svg {
    width: 14px;
}

.outline-btn {
    color: #0048b4;
    border: 2px solid #0048b4;
}

.btn:active,
.btn:hover {
    background: #0048b4;
    color: #ffffff;
    border-color: #0048b4;
}

/* main css start */

.bg-login img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top left;
}

.w-100-500 {
    width: calc(100vw - 900px);
}

.login-content {
    width: 700px;
    padding: 30px 80px 30px 0px;
}

.login_content-form-sec {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login_content-form-sec h2 {
    color: #003366;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    padding-bottom: 20px;
}

.login_content-form-sec p {
    color: #AAAAAA;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 40px;
}

.login_content-form-sec span a {
    color: #0048b4;
}

.singup-form-sec .form-group.email, .singup-form-sec .form-group.password {
    position: relative;
}
.singup-form-sec .form-group {
    position: relative;
    margin-bottom: 40px;
}

.singup-form-sec .form-group.email:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 10px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-image: url(../img/home/email.svg);
}

.singup-form-sec .form-control {
    font-size: 16px;
    color: #636363;
    line-height: 23px;
    border: 1px solid #636363;
    padding: 20px 20px;
    height: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.singup-form-sec .form-group .lab-style {
    width: auto;
    height: 1.3em;
    padding: 0px 0.5em 0px 0.5em;
    margin: 0px;
    background: white;
    transition: 0.2s ease-in-out;
    position: absolute;
    top: -10px;
    left: 1em;
    color: #636363;
}

.singup-form-sec .form-group.password:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 10px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-image: url(../img/home/lock.svg);
}

.singup-form-sec .form-group.form-check {
    font-size: 16px;
    color: #636363;
}

.singup-form-sec .login-submit input[type="submit"] {
    width: 100%;
    border-radius: 5px;
    background: #0048b4;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 17.23px;
    padding: 22px 15px;
    border: 0;
    display: inline-block;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.forgot-password > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 400;
    color: #0048b4;
    margin-top: 22px;
}

.forgot-password > span:before, .forgot-password > span:after {
    content: '';
    display: block;
    width: 35%;
    height: 1px;
    background: #D0D0D0;
}

/* dashboard css start */

.app-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    border-radius: 0;
    background: #e8ecf3;
    transition: all 0.3s ease-in-out;
}
.logo-header {
    position: relative;
    background: #0048b4;
    padding: 28px;
    text-align: center;
}
.app-sidebar.hidden {
    margin-left: -300px;
  }
  
  .main-content.app-content.full-width {
    margin-left: 0;
    max-width: 100%;
  }
  
.app-sidebar .profile-header {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
    margin: 20px 0px;
    border-bottom: 2px solid #aaaaaa;
}

.app-sidebar .profile-header img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.app-sidebar .profile-header .indicator-top {
    position: absolute;
    top: -5px;
    left: 54%;
}

.app-sidebar .profile-header h4 {
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 20px;
    color: #003366;
    padding-top: 15px;
}
.sidebar-nav {
    position: relative;
    padding: 15px;
}
.sidebar-nav .list-inline li {
    padding: 5px;
    border-radius: 5px;
}
.sidebar-nav .list-inline li a {
    width: 100%;
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}

.sidebar-nav .list-inline .dropdown-menu .dropdown-item.active {
    background-color: transparent;
}

.sidebar-nav .list-inline li a svg {
    margin-right: 10px;
    width: 48px;
    height: 48px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
}
.sidebar-nav .list-inline li a svg path {
    fill: #0048b4;
}
.sidebar-nav .list-inline li.active a svg {
    background: #0048b4;
}

.sidebar-nav .list-inline li.active a svg rect {
    fill: #0048b4;
    opacity: 1;
}

.sidebar-nav .list-inline li.active a svg path {
    fill: #ffffff;
}

.sidebar-nav .list-inline li.active .dropdown-item svg path {
    fill: #0048b4;
}

.profile-dropdown .dropdown-menu {
    min-width: 12.5rem;
}
.profile-dropdown .dropdown-menu .dropdown-item:hover,
.sidebar-nav .list-inline li .dropdown-item:hover,
.sidebar-nav .list-inline li .dropdown-item:active {
    background-color: transparent;
}
.main-content.app-content {
    width: 100%;
    max-width: calc(100% + -300px);
    position: relative;
    padding: 0;
    margin: 0px 0px 15px 300px;
    background-color: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.app-content .header {
    background: #FFFFFF;
    /* box-shadow: 0px 10px 60px 5px rgba(77, 166, 255, 0.1); */
    border-radius: 0;
    padding: 20px 20px;
    border-bottom: 1px solid #0048b4;
}

.header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-content .profile-dropdown .dropdown { 
    display: flex;
    align-items: center;
}
.header .header-content .profile-dropdown .dropdown .user_image { 
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}
.header .header-content .profile-dropdown .dropdown p { 
    font-size: 16px;
    color: #003366;
    margin-right: 20px;
}
.header .header-content .sidemenu-toggle h4 {
    font-size: 30px;
    color: #0048b4;
    line-height: 44px;
    font-weight: bold;
    margin-left: 15px;
}
.user_info-section {
    position: relative;
    padding: 30px 0 0;
} 

.user_info-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #AAAAAA;
    padding-bottom: 20px;
}

.user_info-section .section-header .section-title h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #003366;
    padding-bottom: 0px;
}

.user_info-section .user_info-box-sec {
    position: relative;
    padding: 20px 0;
}

.user_info-box-sec .card {
    position: relative;
    border: 1px solid #0048b4;
    border-radius: 10px;
    margin-bottom: 20px;
}

.user_info-box-sec .card-body {
    padding: 1.2rem;
}

.user_info-box-sec .card-body h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 5px;
}

.user_info-box-sec .card-body p {
    color: #AAAAAA;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.subscription_details-section {
    position: relative;
    padding-bottom: 30px;
}

.subscription_details-section .card { 
    border: 1px solid #0048b4;
    padding: 0.2rem;
}

.subscription_details-section .section-header h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    border-bottom: 1px solid #AAAAAA;
    margin-bottom: 10px;
}
.subscription_details-section .section-header p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #aaaaaa;
    padding-bottom: 15px;
}

.subscription-info table thead {
    background-color: #0048b4;
    border-radius: 10px;
}

.subscription-info table thead th {
    padding: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #0048b4;
    background-color: #0048b4;
}

.subscription-info table thead th:first-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.subscription-info table thead th:last-child {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.subscription-info table tbody td {
    padding: 25px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #AAAAAA;
}

.purchase_gas-section .action-btn,
.subscription-info .action-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.purchase_gas-section .action-btn .btn,
.subscription-info .action-btn .btn {
    border-radius: 0.375rem;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 0.75rem 1.2rem;
    border: 2px solid #0048b4;
}

.purchase_gas-section .section-header h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    border-bottom: 1px solid #AAAAAA;
    margin-bottom: 10px;
}

.purchase_gas-section .ps-form-section table td {
    vertical-align: middle;
    border: none;
}

/* Manage Account screen css start */

.ps-form-section {
    width: 100%;
    position: relative;
    padding: 20px 0;
}
.ps-form-section .section-header h2 {
    border-bottom: 1px solid #AAAAAA;
    margin-bottom: 10px;
}

.ps-form-section .card {
    border: none;
    background: transparent;
}

.ps-info-form-sec .form-group label {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #444444;
    margin-bottom: 0.6rem;
}

.ps-info-form-sec .form-group .form-control {
    border: 1px solid #0048b4;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: #444444;
}

.ps-info-form-sec .form-group .form-control:focus {
    box-shadow: none;
}

.manage-count-sec {
    display: flex;
    align-items: center;
    justify-content: flex-end;
} 
.manage-count-sec .manage-box {
    border: 1px solid #0048b4;
    border-radius: 10px;
    padding: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    width: 140px;
} 
.manage-count-sec .manage-box p {
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    text-align: center;
}
.manage-count-sec .manage-box p span {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
}

.manage-count-sec .manage-box:not(:last-child) {
    margin-right: 15px;
}

.ps-form-section .manage-heading {
    border-bottom: 1px solid #AAAAAA;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.ps-form-section .manage-heading .section-title h2 { 
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #003366;
}
.ps-form-section .search-client-sec {
    display: flex;
    align-items: center;
}

.ps-form-section .search-client-sec .form-control {
    border: 1px solid #0048b4;
    border-radius: 10px;
    padding: 0.65rem 1rem;
}

.ps-form-section .form-control:focus {
    box-shadow: none;
}

.ps-form-section .search-client-sec .btn {
    padding: 0.65rem 1rem;
    background-color: #ffffff;
    color: #222222;
    border: 1px solid #0048b4;
}

.ps-form-section .action-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ps-form-section table {
    background-color: #0048b4;  
      border-radius: 10px;
      border: 1px solid #eeeeee;
}

.ps-form-section table.dataTable.no-footer {
    border-bottom: 1px solid #fff;
}

.ps-form-section .dataTables_length, 
.ps-form-section .dataTables_filter, 
.ps-form-section .dataTables_wrapper .dataTables_info {
    display: none;
}

.ps-form-section table tbody td {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    vertical-align: middle;
    padding: 16px 20px;
    border-color: #eeeeee;
}

.ps-form-section table thead {
    border-radius: 10px;
}
.ps-form-section table thead th {
    background-color: #0048b4;
    border-radius: 10px;
    padding: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid #0048b4;
    vertical-align: middle;
}

.ps-form-section .dataTables_wrapper .dataTables_paginate {
    float: inherit;
    text-align: center;
    margin: 25px 0 0;
}

.ps-form-section .dataTables_wrapper .dataTables_paginate .paginate_button {
   background-color: rgba(19, 198, 255, 0.2);
   margin: 0px 5px;
   color: #4da6ff !important;
   border-radius: 5px;
}

.ps-form-section .dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.ps-form-section .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #0048b4;
    color: #ffffff !important;
    border-color: #0048b4;
}

.ps-form-section table thead th:first-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.ps-form-section table thead th:last-child {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.general-setting-sec .nav-tabs .nav-link.active {
    background: #0048b4;
    border-radius: 10px 10px 0px 0px;
    color: #ffffff;
    font-weight: 600;
}

.general-setting-sec .nav-tabs .nav-link {
    padding: 0.9rem 1rem;
    color: #868686;
    font-weight: 500;
}

.subscription-plan-section {
    position: relative;
    padding: 20px 0;
}

.sub-plan-box {
    background: #ffffff;
    border: 1px solid #AAAAAA;
    border-radius: 20px;
    padding: 20px;
}

.sub-plan-box .plan-info h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 4px;
    color: #444444;
}

.sub-plan-box .plan-info p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #AAAAAA;
    padding-bottom: 15px;
}

.sub-plan-box .plan-info h2 {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 40px;
    color: #003366;
}

.sub-plan-box .plan-info h2 span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #AAAAAA;
    margin-left: 5px;
}

.sub-plan-box .plan-info {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #aaaaaa;
}

.sub-plan-box .plan-text h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #444444;
    padding-bottom: 5px;
}

.sub-plan-box .plan-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #AAAAAA;
    padding-bottom: 15px;
}

.sub-plan-box .plan-text {
    position: relative;
    margin-bottom: 15px;
    border-bottom: 1px solid #aaaaaa;
}

.sub-plan-box.active-plan {
    background: #0048b4;
    border: 1px solid #0048b4;
}

.sub-plan-box.active-plan .plan-text p,
.sub-plan-box.active-plan .plan-info p {
    color: rgba(255, 255, 255, 0.7);
}

.sub-plan-box.active-plan .plan-text h4,
.sub-plan-box.active-plan .plan-info h4,
.sub-plan-box.active-plan .plan-info h2 span,
.sub-plan-box.active-plan .plan-info h2 {
    color: #ffffff;
}

.sub-plan-box.active-plan .plan-text,
.sub-plan-box.active-plan .plan-info {
    border-bottom: 1px solid #ffffff;
}

.sub-plan-box.active-plan .theme-btn {
    background: #ffffff;
    color: #0048b4;
}



/* === Responsive Css === */

@media screen and (max-width: 1600px) {
    .singup-form-sec .login-submit input[type="submit"] {
        padding: 18px 15px;
    }
    .singup-form-sec .form-group.password:before {
        top: 14px;
    }
    .login_content-form-sec p {
        font-size: 16px;
        line-height: 24px;
    }
    .login_content-form-sec h2 {
        font-size: 36px;
        line-height: 42px;
        padding-bottom: 15px;
    }
    .w-100-500 {
        width: calc(100vw - 400px);
    }
    .singup-form-sec .form-control {
        padding: 14px 20px;
        font-size: 14px;
    }
    .singup-form-sec .form-group .lab-style {
        font-size: 14px;
    }
}
@media screen and (max-width: 1440px) {
    .sub-plan-box .plan-text p,
    .sub-plan-box .plan-text h4 {
        font-size: 16px;
        line-height: 20px;
    }
    .sub-plan-box .plan-info {
        margin-bottom: 10px;
        padding-bottom: 20px;
    }
    .sub-plan-box .plan-info h2 {
        font-size: 32px;
        line-height: 36px;
    }
  
    .section-header h2 {
        font-size: 24px;
    }
    .user_info-section .section-header {
        padding-bottom: 14px;
    }
    .login_content-form-sec h2 {
        font-size: 30px;
        line-height: 36px;
        padding-bottom: 10px;
    }
    .forgot-password > span {
        font-size: 14px;
        font-weight: 400;
    }
}

@media screen and (max-width: 1366px) {
    .general-setting-sec .nav-tabs .nav-link {
        padding: 0.8rem 1rem;
    }
    .ps-info-form-sec .form-group .form-control {
        padding: 0.675rem 1rem;
        font-size: 0.9rem;
    }
    .table-responsive table thead th {
        padding: 16px;
        font-size: 14px;
    }
    .subscription_details-section .section-header p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .user_info-box-sec .card-body p {
        font-size: 14px;
        line-height: 18px;
    }
    .ps-info-form-sec .form-group label,
    .user_info-box-sec .card-body h4 {
        font-size: 16px;
        line-height: 20px;
    }
    .purchase_gas-section .action-btn .btn, .subscription-info .action-btn .btn {
        font-size: 12px;
        line-height: 14px;
        padding: 0.75rem 1rem; 
    }
    .section-header h2,
    .user_info-section .section-header .section-title h2,
    .subscription_details-section .section-header h2,
    .purchase_gas-section .section-header h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .w-100-500 {
        width: calc(100vw - 300px);
    }
    .login-content {
        width: 600px;
        padding: 0px 40px 0px 0px;
    }
}


@media screen and (min-width: 992px) {
    .app-sidebar #close { 
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .login-content {
        width: 100%;
        padding: 40px;
    }
    .w-100-500 {
        width: auto;
    }
    .bg-login img {
        display: none;
    }
    .header .header-content .sidemenu-toggle h4 {
        font-size: 24px;
    }
    .general-setting-sec .nav-tabs .nav-link {
        padding: 0.6rem 1rem;
    }
    .ps-form-section table tbody td,
    .ps-form-section table thead th {
        white-space: nowrap;
    }
    .sidebar-nav {
        margin-left: 0;
    }
    .app-sidebar #close i { 
        width: 24px;
        height: 24px;
        background: #e8ecf3;
        border-radius: 50%;
        text-align: center;
        line-height: 26px;
        font-size: 14px;
        color: #0048b4;
    }
    .app-sidebar #close {
        position: absolute;
        right: 5px;
        top: 6px;
        z-index: 1;
    }
    .main-content.app-content {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    .app-sidebar {
        margin-left: -300px;
    }
    .app-sidebar.hidden {
        margin-left: 0;
        z-index: 1;
    }
   
}

@media screen and (max-width: 767px) {
    .sub-plan-box {
        margin-bottom: 20px;
    }
    .header-content {
        display: flex;
        flex-wrap: nowrap;
      }
    .sidemenu-toggle,
    .app-logo {
        flex: 1 1 33.33%;
    }
    .login-content {
        width: 100%;
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .ps-form-section table tbody td img {
        width: 30px;
    }
    .ps-form-section table tbody td {
        padding: 12px 14px;
        font-size: 14px;
    }
    .ps-form-section table thead th
   {
        padding: 12px 14px;
        font-size: 14px;
    }
    .app-content .header {
        padding: 10px 14px;
    }
}

@media screen and (max-width: 500px) {
   
}