/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    img.logo-img.me-2.logo_styleHeader {
        display: none;
    }  
    

}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    /* .sticky-top.navbar-dark .logo-img{
        background: url(/logo/SimpliTry_Blue.png) no-repeat;
    } */

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    .sticky-top.navbar-dark img.logo-img.me-2.logo_styleSubHeader {
        display: block !important;
    } 
    
    .sticky-top.navbar-dark img.logo-img.me-2.logo_styleHeader{
        display: none !important;
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.text-left-Technology{
    text-align: left !important;
    padding-top: 10px;
}


.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.tryone-hero {
    background-position: center center;
}

.tryone-badge {
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: .03em;
}

.tryone-hero-copy {
    max-width: 760px;
    font-size: 1.15rem;
}

.tryone-stat-card {
    min-height: 160px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
}

.tryone-feature {
    padding: 14px 18px;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
}

.tryone-image-panel {
    position: absolute;
    right: 0;
    bottom: -30px;
    max-width: 320px;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(160deg, #ffffff 0%, #eef9ff 100%);
    border: 1px solid rgba(6, 163, 218, .14);
    box-shadow: 0 20px 50px rgba(9, 30, 62, .18);
}

.tryone-panel-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(6, 163, 218, .1);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tryone-image-panel h4 {
    color: var(--dark);
}

.tryone-image-panel p {
    color: #6c757d;
}

.tryone-panel-points {
    display: grid;
    gap: 12px;
}

.tryone-panel-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(9, 30, 62, .08);
}

.tryone-panel-point i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    flex-shrink: 0;
}

.tryone-panel-point span {
    color: var(--dark);
    font-weight: 600;
}

.page-section-heading {
    max-width: 760px;
}

.tryone-process {
    display: grid;
    gap: 18px;
}

.tryone-process-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(221, 221, 221, .45);
}

.tryone-process-step span {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tryone-panel {
    box-shadow: 0 0 35px rgba(9, 30, 62, .15);
}

.tryone-list {
    padding-left: 1.2rem;
}

.tryone-list li + li {
    margin-top: 12px;
}

.tryone-contact-card {
    padding: 32px 24px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(221, 221, 221, .45);
}

.tryone-contact-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
}

.tryone-contact-icon i {
    font-size: 1.8rem;
}

.tryone-job-card {
    padding: 30px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(221, 221, 221, .45);
    transition: .5s;
}

.tryone-job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(6, 163, 218, .18);
}

.tryone-job-card-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.tryone-job-main {
    flex: 1 1 auto;
    min-width: 0;
}

.tryone-job-main p {
    color: #6c757d;
}

.tryone-job-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.tryone-job-filter-panel {
    padding: 28px 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(6, 163, 218, .16), transparent 28%),
        linear-gradient(145deg, #ffffff, #f4fbff);
    border: 1px solid rgba(6, 163, 218, .12);
    box-shadow: 0 24px 60px rgba(9, 30, 62, .08);
}

.tryone-job-filter-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.tryone-job-filter-head p {
    color: #617285;
    max-width: 620px;
}

.tryone-job-filter-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tryone-job-filter-count {
    min-width: 120px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #091E3E;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 16px 36px rgba(9, 30, 62, .18);
}

.tryone-job-filter-count span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.tryone-job-filter-count small {
    display: block;
    margin-top: 6px;
    font-size: .85rem;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tryone-job-filter-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr auto;
    gap: 18px;
    align-items: end;
}

.tryone-filter-field {
    min-width: 0;
}

.tryone-filter-label {
    display: block;
    margin-bottom: 10px;
    color: #33485f;
    font-size: .92rem;
    font-weight: 800;
}

.tryone-filter-input-wrap {
    position: relative;
}

.tryone-filter-input-wrap i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1rem;
    pointer-events: none;
}

.tryone-filter-input {
    width: 100%;
    height: 58px;
    padding: 0 18px 0 50px;
    border-radius: 16px;
    border: 1px solid rgba(9, 30, 62, .12);
    background: #FFFFFF;
    color: #091E3E;
    font-weight: 700;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .8);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    appearance: none;
}

.tryone-filter-input::placeholder {
    color: #91a0ae;
    font-weight: 600;
}

.tryone-filter-input:focus {
    outline: none;
    border-color: rgba(6, 163, 218, .45);
    box-shadow: 0 0 0 4px rgba(6, 163, 218, .12);
}

.tryone-filter-select-wrap::after {
    content: "\f282";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #6f8295;
    pointer-events: none;
}

.tryone-filter-select {
    padding-right: 44px;
    cursor: pointer;
}

.tryone-filter-textarea,
.tryone-file-input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(9, 30, 62, .12);
    background: #FFFFFF;
    color: #091E3E;
    font-weight: 700;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.tryone-filter-textarea {
    min-height: 130px;
    padding: 16px 18px;
}

.tryone-file-input {
    height: 58px;
    padding: 14px 18px;
}

.tryone-filter-textarea:focus,
.tryone-file-input:focus {
    outline: none;
    border-color: rgba(6, 163, 218, .45);
    box-shadow: 0 0 0 4px rgba(6, 163, 218, .12);
}

.tryone-filter-actions {
    display: flex;
    align-items: end;
}

.tryone-auth-shell {
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(6, 163, 218, .12), rgba(52, 173, 84, .06));
}

.tryone-auth-panel {
    padding: 36px;
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 24px 60px rgba(9, 30, 62, .08);
}

.tryone-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.tryone-auth-card {
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(238, 249, 255, .6), #ffffff);
    border: 1px solid rgba(6, 163, 218, .12);
}

.tryone-auth-footer {
    margin-top: 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
    color: #617285;
    font-weight: 700;
}

.tryone-auth-footer a {
    color: var(--primary);
}

.tryone-otp-input {
    letter-spacing: .55em;
    text-transform: uppercase;
}

.tryone-signup-modal .modal-content {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(9, 30, 62, .16);
}

.tryone-signup-modal .modal-header,
.tryone-signup-modal .modal-footer {
    padding-left: 28px;
    padding-right: 28px;
}

.tryone-signup-modal .modal-body {
    padding-left: 28px;
    padding-right: 28px;
}

.tryone-signup-banner {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(6, 163, 218, .12), rgba(52, 173, 84, .08));
    color: #28445d;
    font-weight: 700;
}

.tryone-portal-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #eef9ff);
    box-shadow: 0 20px 50px rgba(9, 30, 62, .08);
}

.tryone-portal-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.tryone-portal-status {
    min-width: 180px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #F8FBFE;
    border: 1px solid rgba(6, 163, 218, .1);
}

.tryone-job-accordion-card {
    padding: 0;
    overflow: hidden;
}

.tryone-job-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 30px 32px 24px;
}

.tryone-job-toggle:focus-visible {
    outline: 3px solid rgba(6, 163, 218, .25);
    outline-offset: -3px;
}

.tryone-job-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.tryone-job-arrow {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 163, 218, .14), rgba(52, 173, 84, .14));
    color: var(--primary);
    font-size: 1.1rem;
    transition: transform .3s ease, background .3s ease;
}

.tryone-job-toggle[aria-expanded="true"] .tryone-job-arrow {
    transform: rotate(180deg);
    background: linear-gradient(135deg, rgba(6, 163, 218, .22), rgba(52, 173, 84, .22));
}

.tryone-job-collapse {
    border-top: 1px solid rgba(9, 30, 62, .08);
}

.tryone-job-details {
    padding: 24px 32px 30px;
    background: linear-gradient(180deg, rgba(238, 249, 255, .5), rgba(255, 255, 255, 1));
}

.tryone-job-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.tryone-job-meta-item {
    padding: 18px 20px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(6, 163, 218, .12);
    box-shadow: 0 10px 24px rgba(9, 30, 62, .06);
}

.tryone-job-meta-label {
    display: block;
    margin-bottom: 6px;
    color: #6c757d;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tryone-job-meta-value {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
}

.tryone-job-description {
    padding: 24px;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 14px 30px rgba(9, 30, 62, .06);
}

.tryone-job-description h6 {
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tryone-job-description p {
    color: #526071;
    line-height: 1.8;
}

.tryone-job-guest-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tryone-job-login-hint {
    color: #617285;
    font-weight: 700;
}

.tryone-job-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--light);
    color: var(--primary);
    font-weight: 700;
    font-size: .9rem;
}

.tryone-job-date {
    color: #6c757d;
    font-size: .9rem;
    white-space: nowrap;
}

.tryone-empty-state {
    padding: 48px 32px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(221, 221, 221, .45);
}

@media (max-width: 991.98px) {
    .tryone-image-panel {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 24px;
    }

    .tryone-job-card-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }

    .tryone-job-filter-head {
        flex-direction: column;
    }

    .tryone-job-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tryone-auth-grid {
        grid-template-columns: 1fr;
    }

    .tryone-portal-summary,
    .tryone-portal-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tryone-filter-actions {
        grid-column: 1 / -1;
    }

    .tryone-job-actions {
        width: 100%;
    }

    .tryone-job-toggle,
    .tryone-job-details {
        padding-left: 24px;
        padding-right: 24px;
    }

    .tryone-job-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .tryone-badge {
        padding: 10px 16px;
        font-size: .9rem;
    }

    .tryone-hero-copy {
        font-size: 1rem;
    }

    .tryone-process-step {
        padding: 20px;
    }

    .tryone-job-filter-panel {
        padding: 22px;
        border-radius: 20px;
    }

    .tryone-job-filter-grid {
        grid-template-columns: 1fr;
    }

    .tryone-auth-panel {
        padding: 24px;
    }

    .tryone-auth-card {
        padding: 22px;
    }

    .tryone-signup-modal .modal-header,
    .tryone-signup-modal .modal-body,
    .tryone-signup-modal .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tryone-job-card {
        padding: 22px;
    }

    .tryone-job-actions {
        width: 100%;
    }

    .tryone-job-actions .btn {
        width: 100%;
    }

    .tryone-job-heading-row {
        align-items: flex-start;
    }
}
