/* Table styling */
#additionalkey {
    background-color: #0071e3;
    border: none;
    color: #fff;
    padding: 3px 2px;
    border-radius: 2px;
    outline: none;
}

.tab-result .table {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;

}

.tab-result .table thead {
    background: #007bff;
    color: #fff;
    font-weight: 600;
}

.tab-result .table th,
.tab-result .table td {
    padding: 14px;
    vertical-align: middle;
    font-size: 14px;
    color: rgba(0, 0, 0, .6);
}

.table tbody tr:hover {
    background: #f9f9f9;
    transition: 0.3s;
}


.form-container {
    background: white;
    border-radius: 8px;
    padding: 0px 40px 40px 40px;
    max-width: 900px;
    margin: 0px auto;
    width: 100%;
}

#successmsg {
    color: green;
    padding: 5px 5px;
    background: #e0ffe0;
    margin: 10px 0px;
    border: 2px solid #a5ffa5;
}

#failmsg {
    color: red;
    padding: 5px;
    margin: 10px 0px;
    background: #ffeaea;
    border: 2px solid #ffb6b6;
}

.icon-button {
    background-color: transparent;
    border: none;
    color: #007bff;
    float: right;
    font-size: 20px;
}

.icon-button i {
    font-size: 30px;
    bottom: -4px;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-header p {
    color: rgba(0, 0, 0, 0.56);
    font-family: Roboto;
    font-size: .9rem;
    font-weight: 300;
}

.form-group label {
    display: block;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.56);
    font-family: Roboto;
    margin-bottom: 8px;
    font-size: .9rem;
}

.form-container .required {
    color: #e53e3e;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: .9rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    background: white;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-container .helper-text {
    font-size: 0.8rem;
    color: rgb(88 88 88 / 56%);
    font-family: Roboto;
    margin-top: 8px;
    line-height: 1.4;
}

.form-container .select-dropdown {
    position: relative;
}

.form-container .select-dropdown select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}


.form-container .select-dropdown select:invalid {
    color: rgb(165, 165, 165);
}

.form-container .submit-btn {
    background: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    font-size: 14px !important;
    border-radius: 6px;
    padding: 8px 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
    margin-top: 29px;
}

.form-container .submit-btn:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-1px);
}

.form-container .submit-btn:active {
    transform: translateY(0);
}

.form-container .success-message {
    display: none;
    background: #48bb78;
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container .clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e53e3e;
    background: #fed7d7;
}

.form-container .error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

@media (max-width: 768px) {
    .form-container {
        padding: 10px 0px;
    }

    .form-container .form-header h1 {
        font-size: 2rem;
    }

    .form-container .submit-btn {
        float: none;
        margin-top: 10px;
        width: 100%;
    }
}

.form-floating label {
    color: rgba(0, 0, 0, 0.56) !important;
    padding: 10px 10px;
}

.input-container label {
    font-size: 12px !important;
}

.help-text {
    font-size: 11px !important;
}

.form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-right: 10px;
}

.form-small-text {
    font-size: 12px;
}

.form-control {
    height: 42px;
    min-height: 42px;
    padding: 10px 10px !important;
}

.contact select {
    color: rgba(0, 0, 0, 0.72) !important;
}

input,
select,
textarea {
    box-shadow: none !important;
}

.navbar .container-fluid {
    padding: 0px;
}

.float-right {
    float: right;
}

.text-right {
    text-align: right;
}

.pageTitle {
    text-transform: uppercase;
}

.freeheight {
    max-height: none !important;
}

.navbar-brand img {
    height: 50px;
}

.printing-content {
    font-size: 1.5em;
    letter-spacing: -2px;
    margin-top: 70px;
    font-weight: 500;
}

a {
    text-decoration: none;
}

.flex-center {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.contact {
    width: 550px;
    max-width: 100%;
    padding: 30px 80px;
    margin: 30px auto;
    border-radius: 10px;
    border: 1px solid #f5f5f5;
}


.contact input::placeholder {
    color: rgb(224, 224, 224);
    font-size: .9em;
    opacity: 1;
    /* Firefox */
}

.contact textarea::-webkit-input-placeholder {
    color: rgb(224, 224, 224) !important;
}

.contact textarea::placeholder {
    color: rgb(224, 224, 224) !important;
}

.contact textarea:-moz-placeholder {
    color: rgb(224, 224, 224) !important;
    opacity: 1;
}

.contact textarea:-ms-input-placeholder {
    color: rgb(224, 224, 224) !important;
}

.contact input::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgb(189, 189, 189);
    font-size: .9em;
}

.contact select {
    color: rgb(189, 189, 189);
    font-size: .8em;
}

.contact option:not(:first-of-type) {
    color: black;
}

.contact label,
.contact p {
    font-size: .9em;
    color: rgba(0, 0, 0, 0.56);
    font-weight: 300 !important;
}

.nav-link,
.dropdown-item {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.72);
    font-weight: 300;
    font-size: 0.9em;
}

.page-light-text h1 {
    font-family: Roboto;
    text-transform: uppercase;
    font-weight: 300;
    padding: 0 64px;
    color: rgba(0, 0, 0, 0.56);
    margin-top: 16px;
}

.remember-points {
    margin-top: 10px;
    margin-bottom: 50px;
}

.remember-points h3 {
    font-size: 16px;
}

.remember-points ul {
    padding-left: 20px !important;

}

.remember-points li {
    font-size: 13px !important;
    margin-bottom: 3px !important;
}

.page-light-text h6,
.page-light-text h1,
.page-light-text h2,
.page-light-text h3,
.page-light-text h4,
.page-light-text h5 {
    color: rgba(0, 0, 0, 0.72);
    font-family: Roboto;
    font-weight: 400 !important;
    line-height: initial !important;
}

.page-light-text label,
.page-light-text input {
    font-size: .8em;
    font-weight: 300;
}

.file-browse {
    border: 1px dotted #bdbdbd;
    padding: 15px;
    align-items: end;
    justify-self: flex-end;
    width: 100%;
    color: #919191;
    font-family: Roboto;
    font-weight: 300 !important;
}

:root {
    --primary-color: rgb(190 168 255) !important;
    --primary-hover: rgb(175, 168, 255);
    --success-color: rgb(114, 209, 177);
    --danger-color: rgb(216, 122, 122);
    --transition-speed: 0.3s;
}

.btn-primary {
    background-color: #0071e3;
    border-color: var(--primary-color);
}

.bg-primary {
    --bs-bg-opacity: 1;
}

.border-primary {
    --bs-border-opacity: 1;
}

.card {
    border: 1px solid #f1f1f1;
}


.card.border-primary:hover {
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.15) !important;
}

.btn {
    transition: all var(--transition-speed);
    font-size: .9em;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-check {
    color: var(--success-color);
}

.feature-x {
    color: var(--danger-color);
}

.page-light-text h4 .text-muted {
    font-size: 10px;
}

.page-light-text li {
    color: rgba(0, 0, 0, 0.56);
    font-family: Roboto;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: .9em;
}

.page-light-text p {
    color: rgba(0, 0, 0, 0.56);
    font-family: Roboto;
    font-weight: 300;
    font-size: .9em;
}

body {
    background-color: #f9f9f9 !important;
    font-family: Roboto;
}


.body-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal.fade.in {
    opacity: 1;
    background: rgba(0, 0, 0, .5);
}

.modal.fade.in .modal-dialog {
    transform: none;
}

.blankDiv {}

.coming-soon {}

.coming-soon .container {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 0;

}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.websiteBody {
    max-height: 675px;
    min-height: 675px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: rgb(84 84 84);
}

.socialIcons {
    display: flex;
    column-gap: 16px;
    color: #909090;
}

.socialIcons a {
    color: #909090;
}

.socialIcons i {
    color: #909090;
}

.socialIcons a:hover {
    color: #757575;
}

.small-text {
    color: rgba(0, 0, 0, 0.56);
    font-family: Roboto;
    font-weight: 300;
    padding: 0 64px;
    margin-top: 16px;
}

.userMsg {
    font-size: 29px;
    font-family: Roboto;
    line-height: initial;
    font-weight: 450 !important;
    padding: 0 64px;
    color: rgba(0, 0, 0, 0.56) !important;
    margin-top: 16px;
}

.trackingCont {
    margin-top: 64px;
    padding-right: 164px;
    padding-left: 64px;
}

.track-package {
    color: #595959;
    font-weight: 300;
}

.trackingCont .mb-3 {
    font-weight: 300;
    color: #8b8b8b;
    font-size: 13px;
}

.track-field {
    border: 1px solid #e4e4e4 !important;
    font-size: 13px;
    color: #8c8c8c;
}

.track-btn {
    background-color: #8f8f8f !important;
}

.bigger-circle {
    position: absolute;
    width: 1100px;
    height: 1100px;
    right: -25%;
    top: 124px;
    border: 1px solid grey;
    border-radius: 1000px;
}

.clickable {
    color: #0071e3;
    text-decoration: none;
    font-weight: 600;
}

.big-circle {
    position: absolute;
    right: 0;
    width: 1080px;
    height: 1080px;
    bottom: 0;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("/images/circle-image.jpg"), linear-gradient(45deg, rgba(70, 2, 255, .5) 10%, rgba(201, 14, 221, .5) 44%, rgba(255, 190, 58, .5) 70%);
    background-blend-mode: color-burn;


}

.home-bg {
    background: url("/images/circle-image.jpg"), linear-gradient(45deg, rgba(70, 2, 255, .5) 10%, rgba(201, 14, 221, .5) 44%, rgba(255, 190, 58, .5) 70%);
    background-position: left 0px bottom 430px;
    background-size: 72%;
}

.shipping-bg {
    background: url("/images/shipping.png"), linear-gradient(45deg, rgba(70, 2, 255, .5) 10%, rgba(201, 14, 221, .5) 44%, rgba(255, 190, 58, .5) 70%);
    background-position: left -200px bottom 0px;
    background-size: 140%;
}

.printing-bg {
    background: url("/images/printing.png"), linear-gradient(45deg, rgba(70, 2, 255, .5) 10%, rgba(201, 14, 221, .5) 44%, rgba(255, 190, 58, .5) 70%);
    background-position: left 0px bottom 300px;
    background-size: 72%;
}

.mailbox-bg {
    background: url("/images/mailbox.png"), linear-gradient(45deg, rgba(70, 2, 255, .5) 10%, rgba(201, 14, 221, .5) 44%, rgba(255, 190, 58, .5) 70%);
    background-position: left -50px bottom 300px;
    background-size: 75%;
}

.small-circle {
    width: 500px;
    height: 500px;
    background-color: #ffffff;
    border-radius: 500px;
}

.companyDetails {
    font-family: Roboto;
    font-weight: 300;
    margin-top: 30px;
}

.timings,
.address {
    font-size: .9rem;
}

.address {
    color: rgba(0, 0, 0, 0.56);
    ;
}

.customersLogo {
    margin-left: 60px;
    margin-top: 32px;
}

.reservation {
    margin-left: 159px;
    margin-top: 80px;
    background-color: #0071e3;
    border: 1px solid #0071e3;
    font-size: 14px !important;
    text-transform: uppercase;
    padding: 7px 30px !important;
}

.reservation-noneborder {
    margin-left: 159px;
    margin-top: 80px;
    background-color: transparent !important;
    color: #06c !important;
    border: 1px solid #06c;
    font-size: 14px !important;
    text-transform: uppercase;
    padding: 7px 30px !important;
}

.rental {
    z-index: 2;
    top: 18%;
    left: 18%;
}

.printing {
    z-index: 3;
    top: 28%;
    left: 12%;
}

.shipping {
    z-index: 4;
    top: 40%;
    left: 8%;
}

.page-heading {
    font-size: 42px;
    color: #ffffff;
    text-transform: uppercase;
    top: 90px;
    margin-right: 70px;
    position: absolute;
    font-family: Roboto;
}

.page-heading h1 {
    font-size: 44px;
    line-height: 46px;
    font-weight: 500;
    color: #ffffff;
    text-align: right;
    text-transform: uppercase;
    font-family: Roboto;
    text-shadow: 0px 0px 20px #00000060;
}

.page-heading h2 {
    font-size: 44px;
    line-height: 46px;
    font-weight: 500;
    text-align: right;
    color: #ffffff;
    text-transform: uppercase;
    font-family: Roboto;
    text-shadow: 0px 0px 20px #00000060;
}

.rental,
.printing,
.shipping {
    position: absolute;
    width: 150px;
    font-family: Roboto;
    color: #ffffff;
}

.rental h3,
.printing h3,
.shipping h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
}

.rental p,
.printing p,
.shipping p {
    font-size: 12px;
    font-weight: 300;
}

.containerBottom {
    background-color: #f5f5f5 !important;
}


.footerLinks ul li {
    list-style: none;
    line-height: 28px;
}

.footerLinks ul li a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.72);
    font-weight: 300;
    font-size: 0.9em;
}

.footerLinks ul li a:hover {
    text-decoration: underline;
}

.containerCopyright {
    background-color: #0071e3 !important;
}

.addressFooter {
    margin-bottom: 32px;
}

.addressFooter ul {
    margin: 0;
    padding: 0;
}

.footer-logo {
    height: 35px;
    margin-top: 10px;
}

.aboutFooter {
    font-weight: 300;
    font-size: 0.8em;
    color: rgba(0, 0, 0, 0.56);
    margin-top: 8px;
    line-height: 20px;
}

.addressFooter ul li {
    list-style: none;
    margin-left: 0;
    padding: 0;
    font-weight: 300;
    font-size: 0.8em;
    color: rgba(0, 0, 0, 0.56);
    margin-top: 8px;
    line-height: 20px;
}

.addressFooter a {
    color: #717171;
    font-weight: 300;
    font-size: 13px;
}

.track-field::placeholder {
    color: rgb(224, 224, 224);
    font-size: .9em;
    opacity: 1;
}

.mobile-view-off {
    display: flex;
}

.mobile-view-on {
    display: none;
}

.semi-mobile-on {
    display: none;
}


@media only screen and (max-width: 1400px) {
    .printing-content {
        font-size: 1.5em;
        margin-top: 43px;
    }

    .coming-soon .websiteBody {
        max-height: 580px;
        min-height: 580px;
    }

    .navbar-brand img {
        height: 64px;
    }

    .userMsg {
        line-height: 31px;
        font-size: 31px;
        line-height: 38px;
        padding: 0 48px;
    }

    .trackingCont {
        padding-right: 190px;
        margin-top: 32px;
        padding-left: 48px;
    }

    .bigger-circle {
        top: 84px;
        right: -30%;
    }

    .small-text {
        color: #919191;
        font-family: Roboto;
        font-weight: 300;
        padding-left: 48px;
        padding-right: 48px;
        margin-top: 16px;
        font-size: 12px !important;
    }

    .companyDetails {
        margin-top: 16px;
    }

    .companyDetails h2 {
        font-size: 24px;
    }

    .timings,
    .address {
        font-size: .7rem;
        margin-bottom: 10px;
    }

    .address {
        margin-top: 10px;
    }

    .address a {
        color: #0071e3;
        text-decoration: none;
    }

    .page-heading {
        font-size: 48px;
        line-height: 52px;
    }

    .rental {
        top: 16%;
    }

    .printing {
        top: 26%;
    }

    .shipping {
        top: 36%;
    }

    .reservation {
        margin-top: 18px !important;
        font-size: 13px !important;
        padding: 10px 30px !important;
        margin-left: 150px;
    }

    .reservation-noneborder {
        margin-top: 18px !important;
        font-size: 13px !important;
        padding: 10px 30px !important;
        margin-left: 150px;
    }

    .customersLogo {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 1199px) {
    .bigger-circle {
        width: 970px;
        height: 970px;
        right: -36%;
        top: 115px;
    }

    .clickable {
        color: #0071e3;
        text-decoration: none;
        font-weight: 600;
    }

    .big-circle {
        position: absolute;
        right: 0;
        width: 950px;
        height: 950px;
        bottom: 0;
        border-radius: 1000px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: 110%;
    }



    .small-circle {
        width: 500px;
        height: 500px;
        background-color: #ffffff;
        border-radius: 500px;
    }

    .userMsg {
        font-size: 26px;
        font-family: Roboto;
        line-height: 30px;
        text-transform: uppercase;
        padding: 0 20px;
        margin-top: 0;
    }

    .small-text {
        color: #919191;
        font-family: Roboto;
        font-weight: 300;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 16px;
        font-size: 12px !important;
    }

    .trackingCont {
        padding-right: 148px;
        padding-left: 20px;
    }

    .companyDetails {
        font-family: Roboto;
        font-weight: 300;
        margin-top: 30px;
        width: 88%;
    }

    .page-heading h1 {
        font-size: 40px;
        line-height: 40px;
        color: #ffecec;
    }

    .reservation {
        margin-top: 32px;
        margin-left: 64px;
        padding: 12px 12px;
        font-size: 20px !important;
        margin-left: 100px;
    }

    .reservation-noneborder {
        margin-top: 32px;
        margin-left: 64px;
        padding: 12px 12px;
        font-size: 20px !important;
        margin-left: 100px;
    }

    .customersLogo {
        margin-left: 40px;
        margin-top: 10px;
    }

    .track-field::placeholder {
        font-size: .9em;
    }
}

@media only screen and (max-width: 991px) {
    .circle-container {
        position: relative;
        height: 470px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .bigger-circle {
        right: 0% !important;
        top: 0px !important;
    }

    .navbar-toggler-icon {
        width: 1em;
        height: 1.2em;
    }

    .companyDetails {
        width: 98%;
    }

    .rental {
        top: 10% !important;
        left: 30%;
    }

    .printing {
        top: 16% !important;
        left: 17%;
    }

    .shipping {
        top: 27% !important;
    }

    .navbar-brand {
        margin: 0px;
    }

    .navbar-toggler {
        padding: 2px 5px;
    }

    .mobile-view-off {
        display: none !important;
    }

    .mobile-view-on {
        display: flex !important;
    }

    .navbar-collapse.in {
        display: block !important;
    }

    .tab-content .col-md-4 {
        margin-bottom: 15px;
    }

    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: absolute;
        z-index: 999;
        top: 80px;
        background: #fff;
        padding: 15px 0px;
        width: 100%;
    }

    .mobile-content {
        display: flex;
        flex-direction: column;
    }

    .bigger-circle {
        order: 1;
        position: relative;
    }

    .websiteBody {
        max-height: none !important;
        min-height: auto !important;
        padding: 0px 15px !important;
    }

    .containerBottom {
        padding: 15px 15px !important;
    }

    .body-container {
        display: block;
        order: 2;
        margin-bottom: 30px;
    }

    .userMsg {
        padding: 0px !important;
        margin-top: 0px !important;
    }

    .small-text {
        padding: 0px !important;
    }

    .trackingCont {
        padding: 0px !important;
        margin-top: 30px !important;
    }

    .footerLinks {
        margin-top: 25px;
    }

    .footerLinks ul {
        padding: 0px !important;
    }

    .reservation,
    .reservation-noneborder {
        font-size: 15px !important;
    }

}

.desktop-position {
    margin-left: -10px !important;
}

@media only screen and (max-width: 767px) {
    .contact {
        padding: 20px 15px;
    }

    .printing-content {
        font-size: 1em;
        margin-top: 93px;
    }

    .desktop-position {
        margin-left: 10px !important;
    }

    .reservation,
    .reservation-noneborder {
        font-size: 10px !important;
    }

    .companyDetails {
        width: 68%;
        margin-top: 50px;
    }

    .companyDetails h2 {
        font-size: 20px;
    }

    .timings,
    .address {
        font-size: .6rem;
        margin-bottom: 10px;
    }

    .page-heading {
        left: 200px;
    }

    .page-heading h1 {
        margin: 0px;
    }

    .companyDetails img {
        width: 220px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 540px) {

    .reservation,
    .reservation-noneborder {
        margin-left: 50px !important;
        padding: 10px !important;
        min-width: 140px;
    }

    .page-heading {
        left: 150px;
    }

    .page-heading h1 {
        margin: 0px;
        font-size: 19px;
        line-height: normal;
    }

    .page-heading h2 {
        margin: 0px;
        font-size: 21px;
        line-height: normal;
    }

    .companyDetails .customersLogo {
        width: 220px;
        margin-top: 30px;
    }

    .rental,
    .printing,
    .shipping {
        position: absolute;
        width: 110px;
    }

    .rental {
        left: 25%;
    }

    .printing {
        top: 16% !important;
        left: 14%;
    }

    .shipping {
        left: 6%;
        top: 30% !important;
    }

    .rental h3,
    .printing h3,
    .shipping h3 {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 2px;
    }

    .rental p,
    .printing p,
    .shipping p {
        font-size: 10px;
    }

    .circle-container {
        height: 350px;
    }

    .bigger-circle {
        width: 750px;
        height: 750px;
    }

    .big-circle {
        width: 745px;
        height: 745px;
        background-position: left -145px bottom -646px;
    }

    .semi-mobile-off {
        display: none;
    }

    .companyDetails {
        width: 45%;
        margin-top: 84px;
        margin-bottom: 30px;
    }

    .userMsg {
        font-size: 22px;
        font-family: Roboto;
        line-height: 28px;
    }

    .track-package {
        color: #595959;
        font-weight: 300;
        font-size: 19px !important;
    }

    .semi-mobile-on {
        display: block;
    }
}