a {
    text-decoration-line: none;
    -moz-text-decoration-line: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'AvenirLTStdBook';
    background: linear-gradient(135deg, #3498f2 0%, #73b5f8 30%, #a66dfc 65%, #c898ff 100%);
    color: #000;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    appearance: textfield;
    -moz-appearance: textfield;
}

header {
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 8px 0;
    text-align: center;
}

header .header-logo {
    max-width: 280px;
}

.main-section {
    min-height: calc(100vh - 108px);
    display: flex;
    align-items: center;
}

.main-section-inner {
    width: 95%;
    margin: 0 auto;
}

.main-section-title {
    color: #ffffff;
    font-family: 'AvenirLTStdHeavy';
    font-weight: 800;
    font-size: 38px;
    line-height: 1.2;
    text-align: center;
    /* margin-bottom: 18px; */
    margin-bottom: 15px;
}

.main-section-desc {
    color: #ffffff;
    font-family: 'AvenirLTStdBook';
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    /* margin-bottom: 20px; */
    margin-bottom: 15px;
}

.main-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.btn-common {
    color: #000F08;
    font-family: 'AvenirLTStdBook';
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    border: 1.5px solid #000000;
    border-radius: 5px;
    padding: 9px 0;
    text-align: center;
    width: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-yellow {
    background-color: #FFFF88;
    margin-right: 15px;
}

.btn-green {
    background-color: #B3FF88;
}

.card-custom {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 10px;
    padding: 20px 20px;
}

.card-custom .card-icon {
    text-align: center;
    /* margin-bottom: 15px; */
    margin-bottom: 10px;
}

.card-custom .card-icon img {
    max-width: 52px;
}

.card-custom h5 {
    color: #000000;
    font-family: 'AvenirLTStdHeavy';
    font-weight: 800;
    font-size: 22px;
    line-height: 142%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    min-height: 62px;
}

.card-custom p {
    color: #000000;
    font-family: 'AvenirLTStdBook';
    font-weight: 400;
    font-size: 16px;
    line-height: 142%;
    text-align: center;
    margin-bottom: 0;
}

.card-custom p a {
    color: #000000;
}

.card-custom .input-group-custom {
    background-color: #DFD1F9;
    border-radius: 5px;
    padding: 10px 20px;
    /* margin: 15px 0 18px; */
    margin: 12px 0 15px;
}

.card-custom .input-group-custom label {
    color: #000F08;
    font-family: 'AvenirLTStdBook';
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    display: block;
}

.card-custom .input-group-custom input {
    background-color: transparent;
    border: none;
    border-bottom: 2.5px solid #000000AD;
    color: #000F08;
    font-family: 'AvenirLTStdBook';
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    display: block;
    width: 100%;
    outline: none;
}

.card-custom .input-group-custom input::placeholder {
    color: #000F08B2;
}

.card-custom form .cancel-btn {
    border: 1.5px solid #000000;
    border-radius: 5px;
    background-color: #FFFF88;
    color: #000F08;
    font-family: 'AvenirLTStdBook';
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    padding: 7px 21px;
    display: block;
    margin: 0 auto;
}

footer {
    background-color: #5527AA;
    padding: 8px 0;
}

footer .footer-text {
    color: #FFFFFF;
    font-family: 'AvenirLTStdBook';
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 0;
}

.card-custom p.err-msg {
    color: #FF0000;
    font-family: 'AvenirLTStdHeavy';
    font-weight: 800;
    margin-bottom: 14px;
}

input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #DFD1F9 inset !important;
    -webkit-box-shadow: 0 0 0px 1000px #DFD1F9 inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.swal2-confirm {
    background-color: #9362EC !important;
}

.swal2-title {
    font-family: 'AvenirLTStdHeavy';
    font-weight: 800;
    font-size: 38px;
    line-height: 1.2;
}

.swal2-html-container {
    font-family: 'AvenirLTStdBook';
    font-weight: 400;
}


/* Loader styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.loader-wrapper.show{
    /* display: flex; */
    opacity: 1;
    visibility: visible;
}
.loader-box {
    width: 100%;
    max-width: 510px;
    height: auto;
    min-height: 300px;
    background: linear-gradient(140deg, #933BEE 32.66%, #6D38EB 56.62%, #3F1FCF 84.21%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 30px 40px 0;
}
.loader-imgbox{
    text-align: center;
}
.loader-box img {
    width: 100%;
    max-width: 326px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    /* display: none; */
    margin-top: -25px;
}

.loader-msg {
    text-align: center;
    color: #FFFFFF;
    /* font-family: "Avenir", sans-serif; */
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    z-index: 9;
    position: relative;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
}