/* ====================================
   MODERN HOME PAGE ENHANCEMENTS
   ==================================== */

/* Modern color palette */
:root {
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  --text-dark: #1e293b;
  --text-light: #475569;
  --light-bg: #f8fafc;
}

.commonpage .topbanner {
    padding: 4rem 0 5rem;
    background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.commonpage .topbanner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.text-twotruncate, .text-threetruncate {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-twotruncate {
    -webkit-line-clamp: 2;
}

.text-threetruncate {
    -webkit-line-clamp: 3;
}

.topbannertxt h1 {
    color: var(--text-dark);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #6366f1 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.topbannertxt p {
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 1.5rem 0;
    max-width: 600px;
}

.topbannertxt ul {
    list-style: none;
    padding: 0;
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbannertxt li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    border-radius: 0.875rem;
    font-weight: 600;
    transition: all 300ms ease;
    cursor: pointer;
}

.topbannertxt li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.topbannertxt li i {
    font-size: 1.25rem;
}

.displayflex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
    gap: 1.5rem;
}

/* Modern Section Styling */
.alllogin {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.alllogin::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(99, 102, 241, 0.05));
    border-radius: 50%;
    filter: blur(100px);
}

.alllogin .alllogintop {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.alllogin .allloginonetxt h3 {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.alllogin .allloginonetxt p {
    color: #a5f3fc;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0.5rem 0 0;
    background: linear-gradient(135deg, #a5f3fc 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alllogin .allloginone h3 {
	color: #ffffff;
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.alllogin .allloginone a {
	color: #60a5fa;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	font-size: 0.875rem;
	font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 300ms ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.alllogin .allloginone a:hover {
    gap: 1rem;
}

.alllogin .allloginone a img {
	margin: 0;
    width: 16px;
    height: 16px;
}

.alllogin .alllogintwo h4 {
	color: #ffffff;
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 1.5rem 0;
}

.alllogin .alllogintwo p {
	color: #cbd5e1;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
}

.alllogin .alllogintwo img {
	height: 50px;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: filter 300ms ease;
}

.alllogin .alllogintwo img:hover {
    filter: brightness(0) invert(1) opacity(1);
}

.alllogin .allloginbottom1 a {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.75;
    font-weight: 700;
    transition: all 300ms ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.alllogin .allloginbottom1 a:hover {
    gap: 1rem;
}

.alllogin .allloginbottom1 {
    padding: 1.5rem 1.5rem 0;
}

.alllogin .allloginbottom1 img {
	width: 16px;
    height: 16px;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: filter 300ms ease;
}

.alllogin .allloginbottom1 img:hover {
    filter: brightness(0) invert(1) opacity(1);
}

/* Modern Section Styling */
.cls_sectionone {
    padding: 5rem 0;
    position: relative;
}

.cls_sectionone .cls_sectiononeimg {
    height: auto;
    padding: 0
}

.cls_sectionone .cls_sectiononeimg img {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    transition: all 300ms ease;
}

.cls_sectionone .cls_sectiononeimg img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25);
}

.cls_sectionone .cls_sectiononetxt {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cls_sectionone .cls_sectiononetxt h4 {
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
}

.cls_sectionone .cls_sectiononetxt p {
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.75;
}
.cls_sectionbtm {
    margin-top: -100px;
}

.cls_arriving .title h5 {
    color: #303841;
    font-size: 34px;
    line-height: 62px;
    font-weight: bold;
}

.cls_arriving .title h6 {
    color: #303841;
    font-size: 51px;
    font-weight: bold;
    margin-bottom: 1em;
}
.cls_arrivingin {
    background: #EEEEEE 0% 0% no-repeat padding-box;
    border-radius: 10px;
    display: inline-block;
    padding: 3em;
}
.cls_arrivingin h5{
	color: #303841;
	font-size:36px;
	line-height: 62px;
	font-weight: bold;
}

.cls_arrivingin p{
	color: #303841
	font-size:18px;
	line-height: 31px;
	font-weight: bold;
}
.cls_arrivingin img {
    height: 50px;
}
.cls_driverone {
    padding: 4em 0;
}
.cls_driveronetxt h3
{
    color: #000;
    font-size: 34px;
    line-height: 62px;
    font-weight: bold;
}
.cls_driveronetxt p
{
    color: #000;
    font-size: 51px;
    line-height: 62px;
    font-weight: bold;
}
.cls_driveronetwo
{
    background-color: #EEEEEE;
    padding: 3em;
    border-radius: 10px;
}

.cls_driveronetwo h4
{
   color: #303841;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.cls_driveronetwo p
{
    color: #303841;
    font-size: 18px;
    line-height: 31px;
}
.cls_dottedline .circle {
    height: 48px;
    border: 1px solid #46ac46;
    display: block;
    width: 48px;
    text-align: center;
    background-color: #46ac46;
    border-radius: 10px;
    font-size: 31px;
    line-height: 47px;
    color: #303841;
        z-index: 2;
    position: relative;
        margin-left: 1em;
}
.cls_dottedline .line {
    width: 68%;
    border: 2px dashed rgb(0 0 0 / 21%);
    position: absolute;
    left: 50px;
    top: 23px;
    height: 0;
}
.cls_dottedline {
    position: relative;
    z-index: 2;
    margin: 4em 0 2em;
    display: inline-block;
    width: 100%;
}
.cls_signin {
    padding: 5em 0;
}
.cls_signin .cls_signintext {
    background-color: #EEEEEE;
    padding: 3em;
    border-radius: 10px;
}
.cls_signin .title {
    color: #303841;
    font-size: 41px;
    line-height: 62px;
    margin: 0 0 1em 22px;
    font-weight: bold;
}
.cls_signintext h4 
{
    color: #303841;
    font-size: 30px;
    line-height: 55px;
    font-weight: bold;
}
.cls_signintext p 
{
    color: #303841;
    font-size: 16px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 2em;
}

.cls_signintext a
{
    color: #46ac46;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: bold;
}
.cls_signintext img
{
    margin-left: 20px;
}
h1.cls_profiletitle {
    margin: 0;
    color: #F6C90E;
    font-size: 27px;
    line-height: 62px;
    font-weight: bold;
}
.paymentpage {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    border-width: 1px 0 1px 0;
    border-color: rgb(112 112 112 / 20%);
    border-style: solid;
}
.paymentpage small
{
    color: #303841;
    font-size: 17px;
    line-height: 45px;
}
.paymentpage label
{
    color: #303841;
    font-size: 31px;
    line-height: 36px;
    font-weight: bold;
}

.paymentpage small.pull-right.pull-left-sm 
{
    color: #303841;
    font-size: 14px;
    line-height: 37px;
}
.cls_paymentpage .form-control
{
    color: #303841 !important;
    font-weight: bold !important;
    font-size: 15px !important;
}
.pay_period_details .bor-left {
    background-color: #EEEEEE;
    border-radius: 10px;
    padding:2em 3em;
    border: unset;
    display: inline-block;
    width: 100%;
}
.pay_period_details .bor-left  small
{
    font-size: 28px;
}
.pay_period_details .bor-left  small
{
    font-size: 18px;
    line-height: 21px
    color:#303841;
}
.cls_table thead tr th {
    padding: 15px 0;
    font-size: 19px;
    color: #3A4750;
    line-height: 22px;
}
.cls_table tbody tr td {
    padding: 15px 0;
    font-size: 19px;
    color: #3A4750;
    line-height: 22px;
    font-weight: 100;
}
.cls_table tbody tr {
    border-width: 1px 0 1px 0;
    border-style: solid ;
    border-color: rgb(112 112 112 / 20%);
}
.pagination > li > a, .pagination > li > span
{
    background-color: #EEEEEE;
    color: #3A4750;
    border-color: #EEEEEE !important;
    border-radius: 10px !important;
    font-size: 17px;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus
{
    background-color: #EEEEEE;
    border-color: #EEEEEE;
    color: #3A4750;
}
.cls_litags a.custom-clas {
    display: inline-block;
    position: relative;
    padding: 7px 20px 7px 7px;
    background-color: #f6c90f;
    border-radius: 10px;
}
.cls_litags .filter-checked {
    font-size: 17px;
}
.cls_litags .icon_delete {
    position: absolute;
    top: 14px;
    right: 7px;
    font-size: 13px;
}
.pr-0
{
    padding-right: 0 !important;
}
img
{
    max-width: 100%;
}
.footertwolinks2
{
    justify-content: flex-end;
}
.signup-wrapper.cls_signuprider {
    background-color: #EEEEEE;
    border-radius: 10px;
    padding-bottom: 1em;
}
.cls_signuprider .form-control {
    background-color: #fff !important;
    border-radius: 10px !important;
}
.cls_signuprider .select.select--xl
{
    background-color: #fff !important;
    border-radius: 10px !important;
}
.cls_signuprider i 
{
    color: #303841 !important;
}
.cls_driversignup .driverform {
    background-color: #fff;
    padding: 1em 2em;
    border-radius: 10px;
    display: inline-block;
}
.cls_lefttext h1 {
    font-size: 61px;
    color: #fff;
    margin-bottom: 30px;
}
.cls_lefttext p {
    font-size: 21px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 30px;
}
.driverform .forminput {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}
.cls_driversignup h3.cls_title {
    text-align: center;
    margin: 0 0 30px;
}
.driverform .mobile-code #select-title-stage
{
    padding: 12px 15px;
    position: inherit;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #C7C7C7 !important;
    border-right: none;
    width: 100%;
    border-radius: 10px;
}
.cls_arrivinginatag
{
    color: #46ac46;
    font-size:21px; 
    font-weight: bold;
}
.cls_arrivinginatag img
{
    width: 60px;
    padding-left: 30px;
}
@media screen and (max-width: 767px) { 
img
{
    max-width: 100%;
}
.topbannertxt ul
{
    display: flex;
    align-items: center;
}
.allloginone {
    margin-bottom: 20px;
    text-align: center;
}
.alllogin .alllogintop {
    padding-bottom: 2em;
}
.alllogintwo
{
    margin-bottom: 3em;
}
.cls_sectionone
{
    padding: 3em 0;
}
.cls_sectionone .cls_sectiononeimg {
    height: auto;
    padding: 10px;
}
.cls_sectionbtm {
    margin-top: 0;
    flex-direction: column-reverse;
}
.cls_arrivingin
{
    margin-bottom: 3em;
}

.cls_footer
{
    text-align: center;
}
.threelinks li {
    display: inline-block;
    margin: 0 15px;
}
.footertwolinks, .footertwolinks1, .footertwolinks2 {
    text-align: center;
}
.footertwolinks ul , .footertwolinks1 ul{
    justify-content: center;
    padding: 0;
}
.footertwolinks li {
    margin: 20px 0 10px;
    width: calc(100% / 2);
}
.footertwolinks1 li {
    margin: 7px 15px;
    margin-left: 0;
}
.footertwolinks2
{
    justify-content: center;
}
.threelinks1 li {
    margin: 10px 0;
}
.logo-link img
{
    margin-top: 7px !important;
}
.nav-list-one li {
    margin-bottom: 0px;
    margin-top: 20px;
}
.cls_dottedline
{
    display: none;
}
.cls_driveronetwo
{
    margin-top: 30px;
}
.cls_signin {
    padding: 0;
}
.cls_signin .cls_signintext {
    padding: 2em;
    margin-bottom: 20px;
}
.sigin-riders {
    padding-top: 0;
}
.cls_driversignup .driverform
{
    padding: 1em;
}
.cls_driversignup .pad-0
{
    padding: 0;
}
.cls_driversignup .cls_lefttextin
{
    display: none;
}
}
