@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Outfit:wght@100..900&display=swap');

:root {
    --outfit: "Outfit", sans-serif;
    --nunito: "Nunito Sans", sans-serif;
    --heading-font: "Outfit", sans-serif;
    --heading-color: #013C60;
    --content-color: #4C7F9E;
    --white-color: #ffffff;
    --deep-blue: #013C60;
    --light-blue: #1F8CCF;
    --border-color: #DFDFDF;

}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--nunito);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--content-color);
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--white-color);
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 18px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    margin: 0 0 22px 0;
    padding: 0;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1.2;

}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1,
.title-h1 {
    font-size: 40px;
    margin-top: -8px;
    text-transform: capitalize;
}

h2,
.title-h2 {
    font-size: 26px;
    text-transform: capitalize;
}

h3,
.title-h3 {
    font-size: 22px;
    margin-top: -2px;
}

/* 
h4,
.item-title-2 {
    font-size: 24px;
    line-height: 1.2;
}

h5,
.item-title-3 {
    font-size: 20px;
    line-height: 1.2;
}

h6,
.item-title-4 {
    font-size: 18px;
    line-height: 1.2;
} */

.ionia-dashboard {
    position: relative;
}

.dashboard-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 520px;
    z-index: -1;
    pointer-events: none;
}

.dashboard-shape-btm {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 573px;
    z-index: -1;
    pointer-events: none;
}


.ionia-dashboard label {
    margin-bottom: 10px;
    color: var(--heading-color);
}

.ionia-dashboard label {
    margin-bottom: 10px;
    color: var(--heading-color);
    text-transform: capitalize;
}

.ionia-dashboard input[type="text"],
.ionia-dashboard input[type="tel"],
.ionia-dashboard input[type="password"],
.ionia-dashboard input[type="email"],
.ionia-dashboard input[type="number"],
.ionia-dashboard select {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-radius: 10px;
    background-color: var(--white-color);
    color: var(--content-color);
    border: 1px solid var(--border-color);
    outline: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ionia-dashboard textarea{
    width: 100%;
    height: 150px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white-color);
    color: var(--content-color);
    border: 1px solid var(--border-color);
    outline: none !important;
}

.ionia-dashboard input[type="submit"] {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    background: linear-gradient(137.41deg, #55BBF9 12.39%, #1F8CCF 89.77%);
    border: transparent;
    padding: 15px 26px;
    color: var(--white-color);
    border-radius: 160px;
    text-transform: capitalize;
}

.ionia-dashboard input[type="submit"]:hover {
    background: linear-gradient(137.41deg, #1F8CCF 12.39%, #55BBF9 89.77%);
}



.ionia-dashboard select {
    padding-right: 40px;
    background: white url(../images/down-indicator.svg) no-repeat calc(100% - 25px) center;
    background-size: 12px;
    outline: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.ionia-dashboard select::-ms-expand {
    display: none;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--heading-color);
    transition: all .3s ease-in-out;
}

a:hover {
    color: var(--heading-color);
}

img {
    max-width: 100%;
}

.cmn-btn-grp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px -5px;
}

.cmn-btn-grp .cmn-btn-col {
    padding: 0 5px 5px;
    line-height: 0;
}

.cmn-btn {
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(137.41deg, #55BBF9 12.39%, #1F8CCF 89.77%);
    text-transform: capitalize;
    padding: 12px 22px;
    color: var(--white-color);
    border-radius: 160px;
    line-height: 1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cmn-btn span {
    position: relative;
    z-index: 1;
}

.cmn-btn:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: var(--heading-color);
    border-radius: 20px;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    z-index: 0;
}

.cmn-btn:hover {
    color: var(--white-color);
}

.cmn-btn:hover::before {
    right: auto;
    left: 0;
    width: 100%;
}

.load-more-btn {
    min-width: 160px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.cmn-btn-white {
    background: var(--white-color);
    color: var(--heading-color);
    border: 1px solid var(--border-color);
}

.cmn-btn-link {
    padding: 0;
    background: transparent;
    color: var(--light-blue);
    display: inline-flex;
    align-items: center;
    text-decoration: underline !important;
}

.cmn-btn-link::before {
    display: none;
}

.cmn-btn-link i {
    transition: all 0.3s ease-in-out;
}

.cmn-btn-link:hover {
    color: var(--light-blue);
    text-decoration: none !important;
}

.cmn-btn-link:hover i {
    transform: rotate(29deg);
    margin-left: 8px;
}

.cmn-btn-link i {
    max-width: 14px;
    margin-left: 4px;
    display: inline-block;
    flex: none;
}

.cmn-btn-link i img {
    width: 100%;
}

.cmn-list-card {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.cmn-list-card:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #EEEEEE;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.cmn-list-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.cmn-list-card:last-child::after {
    display: none;
}

.cmn-list-card>i {
    width: 22px;
    height: 22px;
    background: linear-gradient(137.41deg, #55BBF9 12.39%, #1F8CCF 89.77%);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin-right: 16px;
    font-style: normal;
}

.cmn-list-card h3 {
    margin-bottom: 8px;
}

.cmn-list-card p {
    font-size: 14px;
    margin-bottom: 14px;
}


.cmn-list-card>i img {
    height: 10px;
}

.cmn-list-card-v2>i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: var(--white-color);
}

.cmn-list-card-v2 p {
    margin-bottom: 10px;
}

.cmn-list-card-v2 p:last-child{
    margin-bottom: 0;
}

/* .ionia-dashboard .container {
    max-width: 1164px;
    padding: 0 12px;
    width: 100%;
    margin: 0 auto;
} */

.dashboard-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid #E2E2E2;
    background: transparent;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.dashboard-header.fixed{
    background: var(--white-color);

}

.dashboard-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-header-nav .header-logo {
    width: 100px;
    display: inline-block;
}

.dashboard-header-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.dashboard-header-right ul li {
    margin-left: 16px;
}

.dashboard-header-notification {
    width: 50px;
    height: 50px;
    background: linear-gradient(137.41deg, #55BBF9 12.39%, #1F8CCF 89.77%);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-header-user {
    width: 64px;
    height: 62px;
    background: #D9D9D9;
    border-radius: 10px;
    position: relative;
    display: block;
    overflow: hidden;
}

.dashboard-header-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.dashboard-header-right {
    margin-left: auto;
}

.dashboard-menu-icon {
    display: none;
    width: 40px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 16px;
    cursor: pointer;
}

.dashboard-menu-icon span {
    display: block;
    background: var(--heading-color);
    height: 2px;
}

.dashboard-menu-icon span:nth-child(2) {
    width: calc(100% - 9px);
    align-self: flex-end;
}

.dashboard-sidebar {
    border-radius: 50px;
    background-color: var(--heading-color);
    padding: 70px 0px 50px;
    width: 448px;
    position: fixed;
    top: 192px;
    left: 20px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.dashboard-sidebar-in {
    max-height: calc(100vh - 576px);
    overflow-y: auto;
}

.dashboard-sidebar-list {
    padding: 30px;
    list-style: none;
    margin: 0;
}

.dashboard-sidebar-action ul {
    padding: 10px 30px 0;
    margin: 0;
    list-style: none;
}

.dashboard-sidebar-list li,
.dashboard-sidebar-action ul li {
    margin-bottom: 9px;
}

.dashboard-sidebar-list li:last-child,
.dashboard-sidebar-action ul li:last-child {
    margin-bottom: 0;
}


.dashboard-sidebar-list li a,
.dashboard-sidebar-action li a {
    padding: 17px 19px;
    /* padding: 17px 23px 17px 47px; */
    border-radius: 30px;
    color: var(--white-color);
    line-height: normal;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-family: var(--outfit);
    font-weight: 300;
    position: relative;
}

.dashboard-sidebar-list li a:hover,
.dashboard-sidebar-action li a:hover,
.dashboard-sidebar-list li.current-menu-item a,
.dashboard-sidebar-list li a.active {
    background: linear-gradient(137.41deg, #55BBF9 12.39%, #1F8CCF 89.77%);
    box-shadow: 0px 14px 32px rgba(96, 193, 253, 0.56);

}

.dashboard-sidebar-list li a img,
.dashboard-sidebar-action li a img {
    margin-right: 15px;
    max-width: 22px;
}


/* .dashboard-sidebar-list li a::before{
    content: '';
    width: 24px;
    height: 27px;
    top: 50%;
    left: 18px;
    position: absolute;
    transform: translateY(-50%);
}
.dashboard-sidebar-list li:first-child a::before {
    background: url(images/home-icon.svg) no-repeat center;
    background-size: 20px;
}
.dashboard-sidebar-list li:first-child a::before {
    background: url(images/home-icon.svg) no-repeat center;
    background-size: 20px;
} */
/* asider */
.dashboard-wprapper {
    width: 100%;
    padding-left: 500px;
    padding-top: 192px;
    padding-bottom: 100px;
    overflow-x: hidden;
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: #1F8CCF transparent;
    position: relative;
}


.dashboard-wprapper::-webkit-scrollbar {
    width: 7px;
}

.dashboard-wprapper::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: #F0F0F0;
}

.dashboard-wprapper::-webkit-scrollbar-thumb {
    outline: none;
    background: var(--light-blue);
    border-radius: 40px;
}

.dashboard-sidebar-in {
    scrollbar-width: thin;
    scrollbar-color: #1F8CCF transparent;
}

.dashboard-sidebar-in::-webkit-scrollbar {
    width: 7px;
}

.dashboard-sidebar-in::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
}

.dashboard-sidebar-in::-webkit-scrollbar-thumb {
    outline: none;
    background: var(--light-blue);
    border-radius: 40px;
}


.dashboard-footer {
    background: var(--heading-color);
    color: var(--white-color);
    text-align: center;
    padding: 30px 0 26px;
    position: fixed;
    width: 100%;
    left: 0;bottom: 0;
}

.dashboard-footer a {
    color: var(--white-color);
    text-align: center;
}

.dashboard-footer a:hover {
    text-decoration: underline !important;
}

/* home page start */
.profile-card {
    padding: 30px 30px 62px;
    background: var(--white-color);
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 37px rgba(247, 247, 247, 0.59);
    border-radius: 30px;
    display: flex;
    margin-bottom: 30px;
}

.profile-card:last-child {
    margin-bottom: 0;
}

.profile-card p {
    margin-bottom: 24px;
}

.profile-card h1 {
    margin-bottom: 8px;
}

.profile-card figure {
    width: 164px;
    height: 164px;
    border-radius: 50%;
    margin: 0 26px 0 0;
    flex: none;
    overflow: hidden;
}

.profile-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card-info {
    max-width: 300px;
}

.dashboard-hm-wpr {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.dashboard-hm-lft {
    width: 48.5%;
    flex: none;
}

.dashboard-hm-rgt {
    width: 51.5%;
    flex: none;

}

.cmn-radius-30 {
    border-radius: 30px;
}

.service-type-card {
    padding: 40px 30px 70px;
    border: 1px solid #EEEEEE;
}

.service-type-card-hd {
    margin-bottom: 28px;
}


.notifications-card {
    border: 1px solid #EEEEEE;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.notifications-card-hd {
    padding: 66px 42px 32px;
    border-bottom: 1px solid #EEEEEE;
}

.notifications-card-bd {
    padding: 34px 42px;
    max-height: 680px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #1F8CCF transparent;
}

.notifications-card-bd::-webkit-scrollbar {
    width: 7px;
    border-radius: 26px;
}

.notifications-card-bd::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: #F0F0F0;
}

.notifications-card-bd::-webkit-scrollbar-thumb {
    outline: none;
    background: var(--light-blue);
    border-radius: 160px;
}



.notifications-card-bd .cmn-list-card-v2:after {
    width: 100vw;
}

.notifications-card-ft {
    line-height: 0;
    padding: 40px 42px;
    margin-top: auto;
}


.cmn-card-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin: -10px -14px;
}

.cmn-card-meta ul li {
    font-size: 14px;
    color: var(--content-color);
    display: flex;
    align-items: center;
    padding: 10px 14px;
    position: relative;
}

.cmn-card-meta ul li::after {
    content: "";
    width: 1px;
    display: inline-block;
    background: #C9C9C9;
    height: 16px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.cmn-card-meta ul li:last-child:after {
    display: none;
}

.dashboard-sidebar-close {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #3ab4f4;
    overflow: hidden;
    color: var(--white-color);
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    right: 10px;
    top: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    z-index: 1;
}

.dashboard-sidebar-close:hover {
    background: var(--light-blue);
    color: var(--white-color);
}

/* home page end */

/* General Information page start */
.gen-info-user-form .input-edit-btn {
    position: absolute;
    top: 37px;
    right: 10px;
    z-index: 1;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gen-info-user-form .input-edit-btn img {
    pointer-events: none;
}

.gen-info-user-form .input-edit-btn:hover img {
    filter: brightness(0) saturate(100%) invert(7%) sepia(88%) saturate(7021%) hue-rotate(10deg) brightness(108%) contrast(113%);
}

.gen-info-user-frm-wpr {
    padding: 45px 30px 68px;
    box-shadow: 0px 4px 37px 16px #F7F7F7;
    margin-bottom: 30px;
    background: var(--white-color);
}

.gen-info-user-frm-wpr:last-child {
    margin-bottom: 0;
}

.gen-info-user-frm-inr {
    display: flex;
    max-width: 962px;
    margin: 0 auto;
}

.user-img-upload {
    width: 185px;
    height: 185px;
    position: relative;
    margin: 0 54px 0 0;
    flex: none;
}

.user-img-upload figure {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
}

.user-img-upload figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-img-upload-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--white-color);
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--heading-color);
}

.user-img-upload-icon input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.user-img-upload-icon img {
    max-width: 20px;
}

.gen-info-user-form {
    width: 100%;
}

.gen-info-user-form h1 {
    margin-bottom: 30px;
    font-family: var(--heading-font);
    margin: 0 0 22px 0;
    padding: 0;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1.2;
}

.gen-info-user-form label {
    line-height: 1.4;
    margin-bottom: 0;
}

.gen-info-user-form .input-wpr {
    margin-bottom: 25px;
    position: relative;
}


.gen-info-user-form .input-wpr:last-child {
    margin-bottom: 0;
}

.gen-info-user-form input[type="text"],
.gen-info-user-form input[type="tel"],
.gen-info-user-form input[type="password"],
.gen-info-user-form input[type="email"],
.gen-info-user-form input[type="number"] {
    width: 100%;
    height: 40px;
    padding: 0 30px 0 0;
    background-color: transparent;
    color: var(--content-color);
    border: 1px solid transparent;
    border-bottom-color: #B9B9B9;
    outline: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    /* background: transparent url(../images/edit-icon.svg) no-repeat calc(100% - 10px) center / 10px; */
}


.gen-info-user-form input::-webkit-input-placeholder {
    color: #C2C2C2;
}

.gen-info-user-form input::-moz-placeholder {
    color: #C2C2C2;
}

.gen-info-user-form input:-ms-input-placeholder {
    color: #C2C2C2;
}

.gen-info-user-form input::-ms-input-placeholder {
    color: #C2C2C2;
}

.gen-info-user-form input::placeholder {
    color: #C2C2C2;
}


.gen-info-user-form input[type="text"]:read-only,
.gen-info-user-form input[type="tel"]:read-only,
.gen-info-user-form input[type="password"]:read-only,
.gen-info-user-form input[type="email"]:read-only,
.gen-info-user-form input[type="number"]:read-only {
    color: #C2C2C2;
}

.gen-info-user-form .submit-wpr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 35px;
}

.gen-info-user-form input[type="submit"] {
    margin-right: 11px;
}

.gen-info-user-form input[type="submit"]:hover {
    background: linear-gradient(137.41deg, #1F8CCF 12.39%, #55BBF9 89.77%);
}

.gen-info-user-form .submit-wpr button {
    color: var(--light-blue);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    outline: none;
}

.gen-info-user-form {}

.gen-info-user-form .submit-wpr button:hover {
    color: var(--heading-color);
}

.company-details-wpr {
    padding: 62px 50px 83px;
    box-shadow: 0px 4px 37px 16px #F7F7F7;
    margin-bottom: 30px;
}

.company-details-wpr:last-child {
    margin-bottom: 0;
}

.company-details-wpr h2 {
    text-align: center;
    margin-bottom: 46px;
}


.company-details-form-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 42px;
}


.cmn-form-style input::-webkit-input-placeholder {
    color: var(--heading-color);
    font-size: 14px;
}

.cmn-form-style input::-moz-placeholder {
    color: var(--heading-color);
    font-size: 14px;
}

.cmn-form-style input:-ms-input-placeholder {
    color: var(--heading-color);
    font-size: 14px;
}

.cmn-form-style input::-ms-input-placeholder {
    color: var(--heading-color);
    font-size: 14px;
}

.cmn-form-style input::placeholder {
    color: var(--heading-color);
    font-size: 14px;
}


.hd-border {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hd-border::after {
    content: "";
    width: 100%;
    max-width: 105px;
    background: linear-gradient(90deg, #013C60 0%, rgba(1, 60, 96, 0) 100%);
    height: 1px;
    display: block;
    margin-left: 20px;
}

.hd-border::before {
    content: "";
    width: 100%;
    max-width: 105px;
    background: linear-gradient(90deg, rgba(1, 60, 96, 0) 0%, #013C60 100%);
    height: 1px;
    display: block;
    margin-right: 20px;
}

.company-doc-wpr {
    padding: 62px 50px 83px;
    box-shadow: 0px 4px 37px 16px #F7F7F7;
    margin-bottom: 30px;
    text-align: center;
    background: var(--white-color);
}

.company-doc-wpr:last-child {
    margin-bottom: 0;
}

.company-doc-wpr h2 {
    margin-bottom: 20px;
}

.company-doc-wpr h3 {
    margin-bottom: 34px;
    text-align: center;
}

.company-doc-uploadr {
    background: #F3FAFF;
    border: 1px dashed var(--heading-color);
    padding: 30px;
    height: 445px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;

}

.company-doc-uploadr figure {
    margin-bottom: 24px;
    max-width: 85px;
}

.company-doc-uploadr figure img {
    width: 100%;
}

.company-doc-uploadr h4 {
    margin-bottom: 10px;
}

.submit-wpr {
    margin-top: 40px;
    text-align: center;
}

.company-doc-wpr input[type="submit"] {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    background: linear-gradient(137.41deg, #55BBF9 12.39%, #1F8CCF 89.77%);
    border: transparent;
    padding: 15px 26px;
    color: var(--white-color);
    border-radius: 160px;
    text-transform: capitalize;
}

.company-doc-wpr input[type="submit"]:hover {
    background: linear-gradient(137.41deg, #1F8CCF 12.39%, #55BBF9 89.77%);
}

.uploadr-field {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.uploadr-field input[type=file] {
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* General Information page end */


/* Service Form start */
.serv-type-request-wpr {
    margin-bottom: 50px;
}

.serv-type-request-wpr:last-child {
    margin-bottom: 0;
}

.serv-type-wpr {
    display: flex;
    align-items: center;
}


.serv-type-wpr h2 {
    margin: 0 20px 0 0;
    flex: none;
}

.serv-type-wpr form {
    width: 100%;
    max-width: 527px;
}

.serv-type-wpr select {
    background-color: var(--white-color);
    border-color: transparent;
    box-shadow: 0px 4px 37px 16px #F7F7F7;
    font-weight: 500;
    font-size: 22px;
    font-family: var(--outfit);
}

.freight-forward-serv-Req .submit-wpr {
    margin-top: 50px;
}

.freight-forward-serv-Req .submit-wpr input {
    height: 60px;
    min-width: 200px;
}

.freight-forward-serv-Req-inr {
    padding: 70px 30px 100px;
    box-shadow: 0px 4px 37px 16px #F7F7F7;
    background: var(--white-color);
}

.freight-forward-serv-Req-inr h2 {
    margin-bottom: 100px;
}

.freight-forward-serv-Req-form .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 64px;
}

.freight-forward-serv-fld {
    position: relative;
}

.freight-forward-serv-fld label {
    margin-bottom: 6px;
}

.freight-forward-serv-fld label+p {
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 10px;
    color: #C7C9CA;
}

.serv-fld-inr {
    min-height: 60px;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

.serv-fld-inr>p {
    color: #C7C9CA;
    font-size: 14px;
}

.freight-forward-serv-fld input::-webkit-input-placeholder {
    color: #C7C9CA;
}

.freight-forward-serv-fld input::-moz-placeholder {
    color: #C7C9CA;
}

.freight-forward-serv-fld input:-ms-input-placeholder {
    color: #C7C9CA;
}

.freight-forward-serv-fld input::placeholder {
    color: #C7C9CA;
}

.select-chk-box {
    padding-right: 40px;
    background: url(../images/down-indicator.svg) no-repeat calc(100% - 15px) center transparent;
    background-size: 12px;
    position: relative;
}

.ionia-dashboard .serv-fld-date-picker input {
    padding-right: 40px;
    background: url(../images/date-icon.svg) no-repeat calc(100% - 15px) center transparent;
    background-size: 20px;
}

.serv-req-chk label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    line-height: 1.2;
    margin: 0;
    cursor: pointer;
}

.serv-req-chk label span {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    color: #C7C9CA;
}

.serv-req-chk label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.serv-req-chk label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 18px;
    height: 18px;
    border: 1px solid #DEDEDE;
    background: transparent;
    border-radius: 3px;
}

.serv-req-chk label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(../images/tick-icon.svg) no-repeat center center;
    background-size: 8px;
}

.serv-req-chk label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.serv-req-chk input[type="checkbox"]:checked+span {
    color: var(--primary-color);
}

.serv-req-chk label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.serv-req-radio label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    line-height: 1.2;
    margin: 0;
    cursor: pointer;
}

.serv-req-radio label span {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    color: #C7C9CA;
    text-transform: capitalize;
}

.serv-req-radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.serv-req-radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 18px;
    height: 18px;
    border: 1px solid #DEDEDE;
    background: transparent;
    border-radius: 50%;
}

.serv-req-radio label input[type="radio"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: var(--deep-blue);
    background-size: 8px;
    border-radius: 50%;

}

.serv-req-radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.serv-req-radio input[type="radio"]:checked+span {
    color: var(--primary-color);
}

.serv-req-radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(.5);
    transform: scale(.5);
}

.serv-fld-chek-inr,
.serv-fld-radio-inr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -5px -10px;
}

.serv-fld-radio-inr .serv-req-radio,
.serv-fld-chek-inr .serv-req-chk {
    padding: 5px 10px;
}

.custom-dropdown {
    display: none;
    width: max-content;
    min-width: 172px;
    min-height: 150px;
    box-shadow: 0px 4px 37px 16px #F7F7F7;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 10px;
    margin-left: auto;
    background: var(--white-color);
    position: absolute;
    right: 0;
    z-index: 1;
    top: 100%;
}

.custom-dropdown.show {
    display: block;
}

.custom-dropdown ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.custom-dropdown ul li {
    margin-bottom: 8px;
}

.custom-dropdown ul li:last-child {
    margin-bottom: 0;
}

.custom-dropdown ul li .serv-req-chk label {
    padding-left: 24px;
}


/* dtaepicker start */
.ui-widget-header a {
    color: var(--content-color);
}

.ui-widget.ui-widget-content {
    border-color: var(--border-color);
    color: var(--content-color);
}

.ui-widget.ui-widget-content * {
    font-family: var(--nunito);
}

.ui-widget-header {
    border-color: transparent;
    background: #F3FAFF;
    color: var(--content-color);
    font-weight: bold;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-color: var(--border-color);
    background: transparent;
    color: var(--content-color);
}

.ui-datepicker .ui-datepicker-title select {
    border-color: var(--light-blue);
}

.ui-datepicker .ui-datepicker-title select:focus {
    outline: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover {
    border-color: var(--heading-color);
    background: var(--white-color);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border-color: transparent;
    background: var(--heading-color);
    color: var(--white-color);
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid transparent;
    background: var(--light-blue);
    color: var(--white-color);
}

.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover {
    background: var(--heading-color);
    color: var(--white-color);
}


.ui-widget-header .ui-icon {
    background-image: url(../images/lft-indicator.svg);
    background-position: center;
}

.ui-datepicker-next .ui-icon {
    background-image: url(../images/rgt-indicator.svg);
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px !important;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 3px;
    border-color: var(--heading-color);
    background: var(--white-color);
    border: 1px solid transparent;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    border: 1px solid var(--heading-color);
}

.weight-plus-minus p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.plus-minus-btns {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.plus-minus-btn {
    height: 7px;
    line-height: 0;
    cursor: pointer;
}

.plus-minus-btn.increment {
    margin-bottom: 8px;
}

.plus-minus-btn img {
    height: 100%;
}

/* dtaepicker end */

/* Service Form end */

/* service-status start */
.service-status-bar {
    --bs-gutter-y: 20px;
}

.service-status-bar h2 {
    margin-bottom: 0;
}

.service-status-bar ul {
    padding: 0;
    margin: -16px -8px 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.service-status-bar ul li {
    padding: 16px 8px 0;
}

.status-badge {
    font-weight: 600;
    color: var(--heading-color);
    border: 1px solid var(--border-color);
    background: var(--white-color);
    padding: 11px 24px;
    line-height: 1;
    border-radius: 20px;
    min-width: 115px;
    display: inline-block;
    text-align: center;
}

.status-badge:hover {
    box-shadow: 0px 4px 37px 16px #F7F7F7;
    border-color: transparent;
}

hr {
    margin: 50px 0;
    border-color: var(--border-color);
    opacity: 1;
}

hr:last-child {
    margin-bottom: 0;
}

.cmn-dashboard-table {
    padding: 60px 50px 74px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
}

.cmn-dashboard-table table {
    margin: 0;
    min-width: 750px;
}

.table-responsive {
    overflow-y: hidden;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: #1F8CCF #ffffff;
}

.table-responsive::-webkit-scrollbar {
    height: 7px;
}

.table-responsive::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
    outline: none;
    background: linear-gradient(137.41deg, #55BBF9 12.39%, #1F8CCF 89.77%);
    border-radius: 40px;
}



.cmn-dashboard-table th {
    padding: 0 15px 4px;
    color: var(--heading-color);
    background-color: var(--white-color);
    border: 0;
    box-shadow: none;
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    font-family: var(--outfit);
    text-transform: capitalize;
}

.cmn-dashboard-table td {
    padding: 31px 15px;
    background-color: var(--white-color);
    color: var(--content-color);
    border: 0;
    box-shadow: none;
    font-weight: 500;
    line-height: 1.3;
}

.cmn-dashboard-table thead tr th:first-child,
.cmn-dashboard-table tbody tr td:first-child {
    padding-left: 0;
}

.cmn-dashboard-table tbody tr:last-child td {
    padding-bottom: 0;
}

.cmn-dashboard-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.cmn-dashboard-table tbody tr:last-child {
    border-bottom: 0;
}

.cmn-dashboard-table a {
    white-space: nowrap;
    font-weight: 600;
    text-decoration: underline !important;
}

.cmn-dashboard-table a:hover {
    color: var(--light-blue);
}

.service-name-table,
.status-table {
    width: 24%;
}

.submit-date-table {
    width: 37%;
}

.action-table {
    width: 18%;
}

/* service-status end */


/* quotes-received page start */
.quotes-received-card {
    padding: 50px 50px 90px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    background: var(--white-color);
}

.quotes-received-card:last-child {
    margin-bottom: 0;
}

.quotes-received-card-hd {
    margin-bottom: 42px;
    display: flex;
    align-items: center;
}

.quotes-received-card-hd h1,
.quotes-received-card-hd h2 {
    margin-bottom: 0;
}

.quotes-received-card .cmn-card-cont {
    max-width: 825px;
    margin-right: auto;
}

.quotes-received-card .cmn-list-card-v2 p {
    margin-bottom: 17px;
}

.quotes-received-card .download-link {
    margin-left: 20px;
}

.quotes-received-card .cmn-list-card {
    margin-bottom: 40px;
    padding-bottom: 36px;
    align-items: flex-start;
}

.quotes-received-card .cmn-list-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.quotes-received-card .cmn-list-card:after {
    border-color: var(--border-color);
}

.load-more-wpr {
    line-height: 0;
    text-align: center;
    margin-top: 40px;
}

.download-link {
    font-weight: 600;
    text-decoration: underline !important;
    flex: none;
    white-space: nowrap;
}

.download-link i {
    display: none;
}

.download-link:hover {
    color: var(--content-color);
}

/* quotes-received page end */
.quote-history-card .quotes-received-card-hd {
    justify-content: space-between;
}

.quote-history-filter {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 7px 16px;
}

.ionia-dashboard .quote-history-filter select {
    border: 0;
    height: auto;
    padding: 0 18px 0 16px;
    background-position: calc(100% - 0px) 9px;
}

.quote-history-filter form {
    display: flex;
    align-items: center;
    flex: none;
}

.quote-history-filter p {
    border-left: 1px solid var(--border-color);
    padding-left: 12px;
    margin-left: 12px;
}


.quote-history-filter i {
    flex: none;
    max-width: 20px;
    line-height: 0;
}

.quote-history-filter i img {
    width: 100%;
}

/* quote-status-rules page start */
.client-name-table {
    width: 21%;
    min-width: 150px;
}

.client-quotes-table {
    width: 66%;
}

.client-quotes-table p {
    max-width: 435px;
    line-height: 1.2;
}

.client-status-table {
    width: 13%;
    min-width: 100px;
}

.quote-status-rules .cmn-dashboard-table td {
    padding: 22px 15px;
}


.quote-status-rules .cmn-dashboard-table th {
    padding-bottom: 0;
}

.revision-rq-modal {
    background: rgba(1, 60, 96, 0.871);
    backdrop-filter: blur(44px)
}

.revision-rq-modal .modal-dialog {
    max-width: 962px;
    width: 100%;
}

.revision-rq-modal .modal-content {
    padding: 54px 52px 67px;
}

.revision-rq-modal .modal-hd {
    margin-bottom: 40px;
}

.revision-rq-modal .modal-bd {
    margin-bottom: 40px;
    line-height: 0;
}

.revision-rq-modal textarea {
    width: 100%;
    height: 290px;
    padding: 30px;
    resize: none;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    outline: none;
    line-height: 1;
}

.revision-rq-modal .modal-ft {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.revision-rq-modal .modal-ft input[type="submit"] {
    padding-top: 22px;
    padding-bottom: 22px;
    min-width: 198px;
}

.revision-rq-modal-close {
    margin-right: 27px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--heading-color);
    transition: all 0.3s ease-in-out;
}

.revision-rq-modal-close:hover {
    cursor: pointer;
    color: var(--light-blue);
}


/* quote-status-rules page end */
/* notifications page start */

.cmn-main-hd {
    margin-bottom: 45px;
}

.notifications-main-card {
    padding: 50px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
}

.notifications-main-card .cmn-list-card {
    margin-bottom: 32px;
    padding-bottom: 30px;
}

.notifications-main-card .cmn-list-card:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
}

.notifications-main-card .cmn-card-cont {
    max-width: 825px;
    margin-right: auto;
}
.notifications-main-card .notification-date {
    margin-left: 20px;
}
.notification-date {
    flex: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: var(--content-color);

}

.notification-date span {
    display: block;
    min-width: 140px;
    margin-bottom: 9px;

}

/* notifications page end */



/*08-04-25 Css Start*/
.login-pg-outer{
    text-align:center;
    width:100%;
    padding:50px 0 100px;
}

.ionia-dashboard h1{
    font-size: 40px;
    margin-top: -8px;
    text-transform: capitalize;
    font-family: var(--heading-font);
    margin: 0 0 22px 0;
    padding: 0;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1.2;
}

.ionia-dashboard .gen-info-user-form h1{
    font-size: 32px;
    margin-top: -6px;
    font-family: var(--heading-font);
    margin: 0 0 22px 0;
    padding: 0;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1.2;
}


/*08-04-25 Css End*/

/* support starts 23.04.2025  */
.cmn-btn {
    z-index: 0;
}
.cmn-btn:before{
    z-index: -1;
}
/* support ends 23.04.2025  */

/* responsive start */

/* min start */
@media (min-width: 1400px) {
    .ionia-dashboard .container {
        max-width: 1264px;
    }
}

@media (min-width: 1601px) {

    .dashboard-header .container {
        max-width: 1644px;
    }

    .dashboard-sidebar {
        /* width: 448px;
        left: 50px; */
        padding: 70px 0px;
    }

    .dashboard-wprapper {
        padding-right: calc((100% - 1644px) / 2);
    }

    .dashboard-sidebar-list li a,
    .dashboard-sidebar-action li a {
        font-size: 20px;
    }
}

.gen-info-user-form h1 {
    margin-bottom: 30px;
    color:var(--heading-color);
    font-size: 32px;
    margin-top: -6px;
    font-family: var(--heading-font);
    margin: 0 0 22px 0;
    padding: 0;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1.2;
}



.profile-card-info h1{
    font-family: var(--heading-font);
    margin: 0 0 22px 0;
    padding: 0;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1.2;
    font-size: 32px;
    margin-top: -6px;
}

/* min end */

@media (max-width: 1600px) {

    h1,
    .title-h1,.gen-info-user-form h1 {
        font-size: 32px;
        margin-top: -6px;
    }

    .dashboard-header {
        padding: 12px 0;
    }

    .dashboard-header-nav .header-logo {
        width: 90px;
        display: inline-block;
    }

    .profile-card figure {
        width: 110px;
        height: 110px;
        margin: 0 20px 0 0;
    }

    .dashboard-wprapper {
        width: 100%;
        padding-left: 360px;
        padding-top: 150px;
        padding-right: calc((100% - 1240px) / 2);
    }

    .dashboard-sidebar-in {
        max-height: calc(100vh - 366px);
    }

    .dashboard-sidebar {
        width: 310px;
        top: 150px;
        border-radius: 20px;
        padding: 24px 0;
    }

    .dashboard-hm-wpr {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .profile-card-info {
        max-width: 100%;
    }

    .profile-card {
        padding: 26px;
        margin-bottom: 20px;
    }

    .profile-card p {
        margin-bottom: 16px;
    }

    .cmn-radius-30 {
        border-radius: 20px;
    }

    .notifications-card-bd {
        padding: 26px;
    }

    .notifications-card-hd {
        padding: 26px;
    }

    .service-type-card {
        padding: 26px;
    }

    .notifications-card-ft {
        padding: 26px;
    }

    .dashboard-footer {
        padding: 24px 0;
    }

    /* gen page start */
    .gen-info-user-frm-wpr,
    .company-details-wpr,
    .company-doc-wpr {
        padding: 50px;
    }

    /* gen page end */


    /* Service Form start */

    .freight-forward-serv-Req-inr {
        padding: 50px 30px 50px;
    }

    .freight-forward-serv-Req-inr h2 {
        margin-bottom: 30px;
    }

    .freight-forward-serv-Req-form .row {
        --bs-gutter-y: 30px;
    }

    .freight-forward-serv-Req .submit-wpr {
        margin-top: 30px;
    }

    /* Service Form end */

    /* service-status start */
    .cmn-dashboard-table {
        padding: 50px;
    }

    /* service-status end */

    /* quotes-received page start */
    .quotes-received-card {
        padding: 40px;
        margin-bottom: 30px;
    }

    .quotes-received-card-hd {
        margin-bottom: 32px;
        display: flex;
        align-items: center;
    }

    .notifications-main-card{
        padding: 40px;  
    }
    
    /* quotes-received page end */
    .revision-rq-modal .modal-dialog {
        max-width: 700px;
    }

    .revision-rq-modal .modal-content {
        padding: 50px;
    }


}

@media (max-width: 1399px) {

    h1,
    .title-h1 {
        font-size: 28px;
        margin-top: -4px;
    }

    h3,
    .title-h3 {
        font-size: 20px;
        margin-top: -2px;
    }

    .cmn-radius-30 {
        border-radius: 16px;
    }


    .dashboard-sidebar {
        border-radius: 16px;
    }

    .profile-card,
    .notifications-card-hd,
    .notifications-card-bd,
    .notifications-card-hd,
    .notifications-card-hd,
    .service-type-card,
    .notifications-card-ft {
        padding: 20px;
    }

    .notifications-card-ft {
        padding: 26px;
    }

    .dashboard-wprapper {
        padding-right: calc((100% - 1120px) / 2);
    }

    /* service-status start */

    hr {
        margin: 40px 0;
    }

    

    .cmn-dashboard-table {
        padding: 40px;
    }

    .quotes-received-card, .notifications-main-card {
        padding: 30px;
    }

    .quotes-received-card .cmn-list-card, .notifications-main-card .cmn-list-card{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    /* service-status end */


}

@media (max-width: 1199px) {
    .dashboard-header .container {
        max-width: 100%;
    }

    .dashboard-wprapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dashboard-sidebar-in {
        max-height: calc(100vh - 128px);
    }

    .dashboard-menu-icon {
        display: flex;
    }


    .dashboard-sidebar {
        position: fixed;
        transform: translate(-130%);
        z-index: 2;
        top: 0;
        left: 0;
        border-radius: 0;
        bottom: 0;
        padding-top: 40px;
    }

    .dashboard-sidebar.show {
        transform: translate(0);
    }

    .dashboard-sidebar-close {
        display: flex;
    }

    .serv-type-request-wpr {
        margin-bottom: 40px;
    }

    .notifications-main-card .cmn-list-card {
        margin-bottom: 22px;
        padding-bottom: 20px;
    }


    .cmn-main-hd{
        margin-bottom: 40px;
    }

}

@media (max-width: 991px) {
    .dashboard-hm-rgt {
        width: 100%;
    }

    .dashboard-hm-lft {
        width: 100%;
    }

    .company-doc-uploadr {
        height: 400px;
    }

    .company-doc-uploadr figure {
        margin-bottom: 18px;
    }

    /* service-status start */
    hr {
        margin: 30px 0;
    }

    .cmn-dashboard-table {
        padding: 30px;
    }

    .cmn-dashboard-table th {
        font-size: 20px;
    }

    .cmn-dashboard-table td {
        padding: 28px 15px;
    }

    /* service-status end */
    .load-more-btn {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .revision-rq-modal .modal-ft input[type="submit"] {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .load-more-wpr {
        margin-top: 30px;
    }

    .revision-rq-modal textarea {
        padding: 20px;
    }

    .notifications-main-card .notification-date {
        margin-left: 10px;
    }

    .cmn-main-hd{
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {

    .dashboard-sidebar-list,
    .dashboard-sidebar-action ul {
        padding: 20px;
    }

    .dashboard-sidebar-list li a img,
    .dashboard-sidebar-action li a img {
        margin-right: 10px;
        max-width: 15px;
    }

    .dashboard-sidebar-list li a,
    .dashboard-sidebar-action li a {
        padding: 14px 18px;
        font-size: 16px;
    }

    .user-img-upload {
        width: 160px;
        height: 160px;
        margin-right: 30px;
    }

    .gen-info-user-frm-wpr,
    .company-details-wpr,
    .company-doc-wpr {
        padding: 40px;
    }

    .company-doc-uploadr {
        height: 300px;
    }

    .company-details-form-row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }

    .company-details-wpr h2,
    .company-doc-wpr h3 {
        margin-bottom: 30px;
    }

    .company-doc-uploadr figure {
        margin-bottom: 12px;
    }

    .ionia-dashboard input[type="text"],
    .ionia-dashboard input[type="tel"],
    .ionia-dashboard input[type="password"],
    .ionia-dashboard input[type="email"],
    .ionia-dashboard input[type="number"],
    .ionia-dashboard select {
        height: 50px;
        padding: 0 15px;
    }

    .gen-info-user-form input[type="text"],
    .gen-info-user-form input[type="tel"],
    .gen-info-user-form input[type="password"],
    .gen-info-user-form input[type="email"],
    .gen-info-user-form input[type="number"] {
        height: 40px;
        padding: 0 30px 0 0;

    }

    .serv-fld-inr {
        min-height: 50px;
    }

    .ionia-dashboard select {
        padding-right: 35px;
        background: white url(../images/down-indicator.svg) no-repeat calc(100% - 15px) center;
        background-size: 12px;
        outline: none !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
    }

    .freight-forward-serv-Req .submit-wpr input {
        height: 50px;
        min-width: 180px;
    }

    .serv-type-request-wpr {
        margin-bottom: 30px;
    }

    .freight-forward-serv-Req-inr {
        padding: 30px;
    }

    /* service-status start */
    .service-status-bar ul {
        justify-content: flex-start;
    }


    .cmn-dashboard-table td {
        padding: 22px 15px;
    }

    .service-status-bar ul {
        margin: -8px -4px 0;
    }

    .service-status-bar ul li {
        padding: 8px 4px 0;
    }

    /* service-status end */

    .download-link i {
        display: block;
    }

    .download-link span {
        display: none;
    }

    .quotes-received-card-hd {
        margin-bottom: 26px;
    }

    .quote-history-card .quotes-received-card-hd {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-history-card .quotes-received-card-hd h2 {
        margin-bottom: 12px;
    }

    .ionia-dashboard .quote-history-filter select {
        padding: 0 18px 0 10px;
    }

    .quote-history-filter i {
        max-width: 16px;
    }

    .revision-rq-modal .modal-content {
        padding: 30px;
    }

    .revision-rq-modal .modal-hd {
        margin-bottom: 22px;
    }

    .revision-rq-modal .modal-bd {
        margin-bottom: 22px;
    }

}

@media (max-width: 575px) {

    h1,
    .title-h1 {
        font-size: 26px;
    }

    h3,
    .title-h3 {
        font-size: 18px;
    }

    .cmn-list-card>i {
        margin-right: 10px;
    }


    .dashboard-wprapper {
        padding-top: 120px;
    }

    .cmn-list-card-v2>i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .dashboard-header-nav .header-logo {
        width: 70px;
    }

    .dashboard-header-user,
    .dashboard-header-notification {
        width: 40px;
        height: 40px;
    }

    .dashboard-header-notification img {
        max-width: 17px;
    }


    .dashboard-menu-icon {
        width: 30px;
        height: 24px;
    }

    .profile-card {
        flex-direction: column;
    }


    .profile-card figure {
        width: 100px;
        height: 100px;
        margin: 0 0 20px;
    }

    .dashboard-sidebar {
        width: 280px;
    }

    .dashboard-footer {
        padding: 20px 0;
    }

    .gen-info-user-frm-wpr,
    .company-details-wpr,
    .company-doc-wpr {
        padding: 20px;
    }

    .gen-info-user-frm-inr {
        flex-direction: column;
    }

    .gen-info-user-form h1 {
        margin-bottom: 16px;
    }

    .user-img-upload {
        margin: 0 0 30px;
        width: 120px;
        height: 120px;
    }

    .user-img-upload-icon {
        width: 40px;
        height: 40px;
    }

    .user-img-upload-icon img {
        max-width: 17px;
    }

    .company-details-form-row {
        --bs-gutter-y: 15px;
    }

    .ionia-dashboard label {
        margin-bottom: 5px;
    }

    .hd-border {
        display: block;
    }

    .hd-border::before {
        display: none;
    }

    .hd-border::after {
        margin: 15px auto 0;
    }

    .company-doc-uploadr figure {
        max-width: 60px;
    }

    .freight-forward-serv-Req-form .row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }

    .serv-type-wpr select {
        font-size: 18px;
    }

    .serv-type-wpr {
        flex-direction: column;
    }

    .serv-type-wpr h2 {
        margin: 0 0 20px 0;
        flex: none;
    }

    .freight-forward-serv-Req-inr {
        padding: 20px;
    }

    .custom-dropdown {
        min-height: auto;
    }

    .cmn-dashboard-table {
        padding: 20px;
    }

    hr {
        margin: 20px 0;
    }

    .cmn-dashboard-table th {
        padding: 0 15px 4px;
        font-size: 18px;
    }

    .cmn-dashboard-table table {
        min-width: 700px;
    }

    .quotes-received-card, .notifications-main-card {
        padding: 20px;
    }

    .quotes-received-card .download-link, .notification-date {
        margin-left: 10px;
    }

    .load-more-btn {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .revision-rq-modal .modal-ft input[type="submit"] {
        padding: 16px;
        min-width: auto;
    }

    .revision-rq-modal-close {
        margin-right: 12px;
    }

    .quote-history-filter {
        padding: 7px 14px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 10px;
    }

    .quote-history-filter p {
        padding: 6px 0 0;
        border-left: 0;
        margin: 6px 0 0;
        border-top: 1px solid var(--border-color);
    }

    .revision-rq-modal .modal-content {
        padding: 20px;
    }
    .notifications-main-card .cmn-list-card {
       flex-wrap: wrap;
    }

    .notifications-main-card .notification-date{
        width: 100%;
        margin: 0;
        text-align: right;
    }
    .notifications-main-card .cmn-card-cont {
        max-width: calc(100% - 40px);
        margin-bottom: 15px;
    }

    .cmn-main-hd{
        margin-bottom: 20px;
    }

}

@media (max-width: 374px) {
    .user-img-upload {
        width: 100px;
        height: 100px;
    }

    .gen-info-user-frm-wpr,
    .company-details-wpr,
    .company-doc-wpr {
        padding: 15px;
    }

    .company-doc-uploadr {
        height: 250px;
    }

    .quotes-received-card, .notifications-main-card {
        padding: 14px;
    }

    .revision-rq-modal .modal-content {
        padding: 15px;
    }

}