* {
    margin: 0;
    padding: 0
}

body {
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
}

p {
    color: grey
}

.agreement-content ul {
    margin-left: 20px;
}

ul li {
    color: gray;
}

.table {
    color: gray !important;
}

.table td{
    font-weight: 400;
}

p span {
    font-weight: 400;
}

#heading {
    text-transform: uppercase;
    color: #673AB7;
    font-weight: bold;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none !important;
}

#msform input,
#msform textarea,
#msform select {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px
}

#msform input:focus,
#msform textarea:focus,
#msform select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673AB7;
    outline-width: 0
}

.action-button {
    width: 100px;
    background: #673AB7;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right
}

.action-button:hover,
.action-button:focus {
    background-color: #311B92
}

.action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right
}

.action-button-previous:hover,
.action-button-previous:focus {
    background-color: #000000
}

.card {
    z-index: 1;
    border: none;
    position: relative
}

.fs-title {
    font-size: 25px;
    color: #673AB7;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left
}

.purple-text {
    color: #673AB7;
    font-weight: normal
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #673AB7
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "1"
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "2"
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "3"
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "4"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #673AB7
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #673AB7
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.terms,
.radio input {
    width: auto !important;
}

.sticky-carousel {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 20px 0;
    /* Adjust this value based on your layout */
}

/* Hide the carousel indicators */
.carousel-indicators {
    display: none;
}

/* Hide the carousel control buttons */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.img-fluid {
    height: 95vh !important;
    object-fit: cover;
    border-radius: 12px;

}

.carousel-item {
    text-align: center;
}

.app_details,
.contact_info,
.add_info p {
    font-weight: 600;
    text-transform: capitalize;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    padding: 10px;
    background-color: #fff;
    z-index: 9;
}

fieldset {
    padding: 25px;
}

li::marker {
    text-align: center !important;
}

/* Example CSS for error highlighting */
.error {
    border: 1px solid red !important;
    /* Red border */
    background-color: #ffeeee !important;
    /* Light red background */
    /* You can add more styles to make it stand out */
}

/* This is the space for the spinner to appear, applied to the button */
.spin {
    padding-left: 2.5em;
    display: block;
}

/* position of the spinner when it appears, you might have to change these values */
.spin .spinner {
    top: .6em;
    left: .2em;
    width: 2.5em;
    display: block;
    position: absolute;
}

/* spinner animation */
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* The actual spinner element is a pseudo-element */
.spin .spinner::before {
    content: "";
    width: 1.5em;
    /* Size of the spinner */
    height: 1.5em;
    /* Change as desired */
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: solid .35em #999;
    /* Thickness/color of spinner track */
    border-bottom-color: #555;
    /* Color of variant spinner piece */
    animation: .8s linear infinite spinner;
    /* speed of spinner */
    transform: translate(-50%, -50%);
    will-change: transform;
}