 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 :root {
     --default-font: "Poppins", sans-serif;
     --heading-font: "Poppins", sans-serif;
     --nav-font: "Poppins", sans-serif;
 }

 :root {
     --background-color: #ffffff;
     /* Background color for the entire website, including individual sections */
     --default-color: #35211f;
     /* Default color used for the majority of the text content across the entire website */
     --heading-color: #200f0d;
     /* Color for headings, subheadings and title throughout the website */
     --accent-color: #2755b0;
     /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
     --accent-color-2: #fff500;
     --landing-blue: #12229d;
     --surface-color: #ffffff;
     /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
     --contrast-color: #ffffff;
     /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
 }

 :root {
     scroll-behavior: smooth;
 }

 body {
     color: var(--default-color);
     background-color: #f9f9f9;
     font-family: var(--default-font);
     font-size: 16px;
     line-height: 24px;
 }

 .go4-dashboard {
     background-color: var(--contrast-color) !important;
     margin: 100px 0 0;
     height: 100vh
 }

 a {
     color: var(--accent-color);
     text-decoration: none;
     transition: 0.3s;
 }

 a:hover {
     color: color-mix(in srgb, var(--accent-color), transparent 25%);
     text-decoration: none;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     color: var(--heading-color);
     font-family: var(--heading-font);
 }

 /*
-------------------------------------------------------------------------------------------
Dashboard Page
-------------------------------------------------------------------------------------------*/

 .dashboard-outer {
     z-index: 9;
     padding-left: 280px;
     flex: 1;
     flex-direction: column;
     display: flex;
 }

 .dashboard-sidebar {
     width: 280px;
     z-index: 0;
     overflow: hidden;
     min-width: 280px;
     position: relative;
     flex: 0 0 280px;
     margin-top: -60px;
     transition: all .2s;
     position: fixed;
     height: 100vh;
     background: #fff;
     box-shadow: 7px 0 60px rgba(0, 0, 0, .05);
 }

 .dashboard-inner {
     padding: 30px;
     flex: 1;
 }

 .pg-title-wrap {
     position: relative;
     display: flex;
     align-items: center;
     margin: 0 0 30px;
     background: var(--surface-color);
     padding: 20px;
     border-radius: 10px;
 }

 .pg-title {
     display: flex;
     align-items: center;
 }

 .pg-title h4 {
     font-size: 1.25rem;
     font-weight: 400;
     display: flex;
     align-content: center;
     align-items: center;
     margin: 0;
 }

 .pg-title i {
     font-size: 22px;
     color: #777;
     margin: 0 20px 0 0;
 }

 .admin-card {
     background: var(--surface-color);
     color: #000000;
     display: flex;
     justify-content: space-between;
     border-radius: 12px;
     padding: 20px 40px;
 }

 .admin-card span {
     display: block;
 }

 .admin-card span h4 {
     font-size: 16px;
     line-height: 28px;
     font-weight: 500;
     padding-right: 10px;
 }

 .admin-card span img {
     width: 100%;
     max-width: 35px;
 }

 .admin-card h6 {
     font-size: 45px;
     font-weight: bold;
 }

 .user-img-edit {
     position: relative;
     display: block;
     margin: 0 auto;
     text-align: center;
 }

 .dash-user-img {
     border-radius: 50%;
     overflow: hidden;
     width: 100px;
     height: 100px;
     line-height: 100px;
     border: 2px solid var(--accent-color);
     object-fit: cover;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto;
 }

 .dash-user-img img {
     width: 100%;
     max-width: 100px;
     height: 100px;
     object-fit: cover;
     padding: 5px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .img-upload-btn {
     position: absolute;
     bottom: 5px;
     right: 25%;
     border: none;
     background: var(--background-color);
     border-radius: 50%;
     width: 35px;
     height: 35px;
 }

 .img-upload-btn i {
     font-size: 1.2em;
     background-color: var(--contrast-color);
     border-radius: 50%;
 }

 .file-upload {
     display: none;
 }

 .img-upload-btn:hover {
     transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
     color: #999;
 }

 .user-titile {
     display: grid;
     align-items: center;
     justify-content: center;
     width: 100%;
 }

 .trip-data h3 {
     font-size: 35px;
     line-height: 45px;
     font-weight: 700;
     color: var(--accent-color);
     text-align: center;
     display: block;
 }

 .trip-data p {
     font-size: 20px;
     line-height: 40px;
     font-weight: 500;
     color: #222;
     text-align: center;
     display: block;
     margin: 20px 0;
 }

 /*
-------------------------------------------------------------------------------------------
Profile Page
-------------------------------------------------------------------------------------------*/
 .profile {
     background: #efefef;
 }

 .title {
     text-align: center;
     /*    background: linear-gradient(45deg,#c4d3e7,#041e42);*/
     background: var(--contrast-color);
     padding: 30px;
 }

 .title h3 {
     color: #0011a9;
     font-size: 30px;
     text-transform: uppercase;
     margin: 0;
 }

 .title h4 {
     color: #333;
     font-size: 20px;
     text-transform: uppercase;
     margin: 0;
     font-weight: 500;
 }

 .pic-left-col {
     background: var(--contrast-color);
     padding: 6px 15px;
     margin: 70px 0 0;
     display: block;
 }

 .user-titile h4 {
     font-size: 18px;
     color: #000000;
     text-align: center;
     padding-left: 0;
     line-height: 22px;
     margin: 15px 0 5px;
 }

 .user-titile h4 span {
     font-size: 13px;
     color: #000;
     display: block;
     margin-bottom: 3px;
 }

 .user-titile p {
     font-size: 13px;
     line-height: 18px;
     color: #414141;
     display: block;
     margin: 0px;
 }

 .user-titile {
     display: grid;
     align-items: center;
     justify-content: center;
     width: 100%;
 }

 .left-col {
     background: var(--contrast-color);
     padding: 6px 15px;
 }

 .left-col .left-ul {
     list-style: none;
     border: none;
     padding: 0;
 }

 .left-col ul {
     list-style: none;
     border-bottom: 1px solid #dbe3ed;
     padding: 10px 0;
 }

 .left-col ul h4 {
     color: var(--contrast-color);
     font-size: 18px;
     padding: 10px 0;
     font-weight: 700;
     padding: 0;
     padding: 10px;
     background: var(--accent-color);
 }

 .left-col ul li {
     padding: 10px 0;
 }

 .left-col ul li .fa-chevron-right {
     float: right;
     font-size: 12px;
     margin-top: 10px;
 }

 .left-col ul li a {
     color: #0027A7;
     font-size: 16px;
     padding: 15px 0;
     text-decoration: none;
     font-weight: 500;
 }

 .left-col ul li a:hover {
     color: #000;
     font-size: 16px;
     padding: 15px 0;
     text-decoration: none;
 }

 .left-col ul i {
     font-size: 15px;
     padding-right: 10px;
 }

 .right-col {
     background: var(--contrast-color);
     padding: 15px;
     margin: 30px 0;
 }

 .profile-detail {
     padding: 10px;
 }

 .profile-detail h4 {
     text-align: center;
     color: #000;
     font-weight: 700;
     font-size: 18px;
     line-height: 40px;
     margin: 0;
 }

 .profile-detail p {
     text-align: center;
     color: #5d5d5d;
     font-weight: 700;
     font-size: 18px;
     line-height: 25px;
 }

 .profile-detail hr {
     border: 1px solid #b5c5da;
 }

 .profile-detail table {
     border: none;
     padding: 20px;
     box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
     border-radius: 20px;
 }

 .profile-detail table tbody {
     padding: 20px;
     display: block;
 }

 .profile-detail .change-btn,
 .profile-detail .save-btn {
     display: block;
     text-align: center;
     padding: 12px 20px;
     border-radius: 10px;
     font-size: 18px;
     font-weight: 500;
 }

 .profile-detail .change-btn {
     background: var(--contrast-color);
     color: var(--accent-color);
     border: 1px solid var(--accent-color);
     margin: 0 0 0 10px;
 }

 .profile-detail .change-btn:hover {
     background: var(--accent-color);
     color: var(--contrast-color);
     border: 1px solid var(--accent-color);
 }

 .profile-detail .save-btn {
     background: var(--accent-color);
     color: var(--contrast-color);
     border: 1px solid var(--accent-color);
     margin: 0 10px 0 0;
 }

 .profile-detail .save-btn:hover {
     background: var(--contrast-color);
     color: var(--accent-color);
     border: 1px solid var(--accent-color);
 }

 .radio-text {
     padding-right: 10px;
 }

 .edit-profile-form {
     margin: 50px 0;
 }

 .edit-profile-form .input-div,
 .edit-profile-form .select-div {
     position: relative;
 }

 .edit-profile-form .input-icon {
     position: absolute;
     top: 12px;
     left: 20px;
     margin: 0;
 }

 .edit-profile-form .input-icon i,
 .edit-profile-form .select-icon i {
     font-size: 15px;
     color: #818181;
 }

 .edit-profile-form input,
 .edit-profile-form input[type="file"],
 .edit-profile-form textarea,
 .edit-profile-form .form-select {
     background-color: var(--surface-color);
     border-radius: 60px;
     border: none;
     padding: 10px 40px;
     height: 50px;
     margin: 0 0 12px;
     font-size: 13px;
     color: #636363;
     width: 100%;
     position: relative;
 }

 label {
     display: block;
     text-align: left;
 }

 .profile-detail h5 {
     font-size: 18px;
     padding: 20px 15px 0 15px;
 }

 .radio-btn {
     display: flex;
     justify-content: flex-start;
     padding-top: 10px;
 }

 .radio-btn input[type="radio"] {
     text-align: left !important;
     justify-content: flex-start !important;
     display: flex !important;
     width: 10% !important;
     height: 25px;
     margin: 0;
     margin-right: 15px;
 }

 /*

-------------------------------------------------------------------------------------------------------------------------------

TRIP DETAIL PAGE

-----------------------------------------------------------------------------------------------------------------------------*/

 .trip-data .table {

     width: 100%;

     text-align: center;

 }

 .pack-img {

     width: 40px;

     height: 40px;

     object-fit: cover;

     text-align: center;

     margin: auto;

 }

 .pack-img img {

     width: 100%;

     max-width: 40px;

     height: 40px;

     object-fit: cover;

 }

 .eye-icon {

     color: green;

     font-size: 25px;

 }


 /*
-------------------------------------------------------------------------------------------------------------------------------
ADDRESS PAGE
-----------------------------------------------------------------------------------------------------------------------------*/
 .profile-detail .add-box {
     padding: 10px;
     text-align: center;
     background: #e4edff;
     height: 320px;
 }

 .add-box .new-add h5 {
     font-size: 14px;
     line-height: 255px;
 }

 .add-box .new-add h5 a {
     color: #0137B4;
     text-decoration: none;
 }

 .add-box .new-add h5 a i {
     font-size: 20px;
     font-weight: bolder;
     padding-right: 10px;
 }

 .add-box .add-name {
     display: flex;
     justify-content: space-between;
 }

 .add-box .add-name .user-name {
     font-weight: 600;
     font-size: 14px;
     float: left;
     font-family: 'Raleway', sans-serif;
 }

 .add-box .add-name .add-type {
     font-weight: 500;
     font-size: 14px;
     border: 1px solid #bcc9e1;
     border-radius: 4px;
     padding: 0 10px;
     float: right;
     line-height: 27px;
     display: inline-block;
 }

 .add-box .default-add {
     color: #0C7400;
     font-weight: 500;
     font-size: 14px;
     text-align: left;
 }

 .add-box .add-info {
     color: #222;
     font-weight: 500;
     font-size: 14px;
     text-align: left;
     list-style: none;
     padding: 0;
     margin-bottom: 3px;
 }

 .add-box .add-mobile {
     display: flex;
     justify-content: space-between;
 }

 .add-box .add-mobile span {
     float: right;
     font-size: 14px;
 }

 .add-box .add-mobile strong {
     float: left;
     font-size: 14px;
     font-weight: 700;
     font-family: 'Raleway', sans-serif;
 }

 .add-box .edit-add {
     display: flex;
     justify-content: space-between;
 }

 .add-box .edit-add a {
     float: left;
     font-size: 14px;
     color: #222;
     text-decoration: none;
     padding-right: 10px;
     display: inline-flex;
     line-height: 23px;
 }

 .add-box .edit-add .login-trigger svg {
     font-size: 14px;
     padding-right: 5px;
     margin-top: 3px;
 }

 .add-box .edit-add span {
     float: right;
     font-size: 14px;
     color: var(--accent-color);
     font-weight: 600;
 }

 .form-check {
     padding-top: 30px;
 }

 .add-btn {
     padding: 40px 0;
     display: flex;
     justify-content: center;
 }

 .add-save {
     background: var(--accent-color);
     text-align: center;
     padding: 15px 35px;
     display: block;
     color: var(--contrast-color);
     font-weight: 600;
     text-transform: uppercase;
     text-decoration: none;
     margin-top: 30px;
     margin-left: 20px;
 }

 .add-reset {
     border: 1px solid;
     border-color: var(--accent-color);
     text-align: center;
     padding: 15px 35px;
     display: block;
     color: #041e42;
     font-weight: 600;
     text-transform: uppercase;
     border-radius: 2px;
     text-decoration: none;
     margin-top: 30px;
 }

 .modal-body .close {
     width: auto;
     height: auto;
     padding: 0px 10px;
     background: var(--accent-color);
     border-color: #d9e1fb;
     color: var(--contrast-color);
 }

 /*
-------------------------------------------------------------------------------------------------------------------------------
RESPONSIVE START
-----------------------------------------------------------------------------------------------------------------------------*/
 @media (min-width: 320px) and (max-width: 1367px) {}


 @media (min-width: 320px) and (max-width: 768px) {
     .dashboard-sidebar {
         display: none;
     }

     .pic-left-col {
         margin: 0;
     }

     .img-upload-btn {
         right: 32%;
     }

     .dashboard-outer {
         padding-left: 0;
     }

     .dashboard-inner {
         padding: 6px;
         flex: 1;
     }

     .mob-dash-btns {
         display: flex;
         justify-content: center;
         margin: 0 0 30px;
     }

     .mob-dash-btns button {
         border: 1px solid var(--accent-color);
         background: var(--accent-color);
         padding: 10px;
         border-radius: 6px;
         display: flex;
         justify-content: center;
         margin: 5px;
     }

     .mob-dash-btns button:hover {
         border: 1px solid var(--accent-color);
         color: var(--accent-color);
         background: var(--contrast-color);
     }

     .mob-dash-btns button:hover i {
         color: var(--accent-color);
     }

     .mob-dash-btns button i {
         font-size: 25px;
         color: var(--contrast-color);
     }

     .edit-profile-form input,
     .edit-profile-form input[type="file"],
     .edit-profile-form textarea,
     .edit-profile-form .form-select {
         padding: 10px 20px;
         font-size: 12px;
     }

     .admin-card {
         background: var(--surface-color);
         color: #000000;
         display: flex;
         justify-content: space-between;
         border-radius: 12px;
         padding: 20px 40px;
         margin: 0 0 10px;
     }
 }