* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

html {
    height: auto;
    min-height: 100%;
}


body {
    position: relative;
    background: #EAF2F8;
    font-family: sans-serif;
    min-height: 100%;
    height: auto;
}

header {

    width: 100%;
    height: auto;
    background: #fff;
    border-bottom: 2px solid #ccc;
    padding: 6px 6px;
    /*border-radius: 0 0 3px 3px;
    box-shadow: 0 0 20px rgba(77,184,255, 0.5);*/
    overflow: hidden;
    position: fixed;
    z-index: 100;
}

.logo {
    float: left;
    margin-left: 15px;
    width: 200px;
    font-size: 2.1rem;
    text-transform: lowercase;
    background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    cursor: pointer;
}

a.tag-links {
    margin: auto 20px;
}

/*Navigation Bar*/
.nav-menu {
    overflow: hidden;
    margin: 9px auto;
    padding-left: 100px;
}

.nav-menu a {
    float: left;
    display: block;
    color: #326C9C;
    text-align: center;
    margin-left: 10px;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    /* letter-spacing: 2px; */
    transition-duration: 0.5s;
}

.nav-menu a:hover {
    background-color: #ddd;
    transition-duration: 0.5s;
    color: black;
    cursor: pointer;
}

.nav-menu a.active {
    background-image: linear-gradient(105.3deg, rgba(30, 39, 107, 1) 21.8%, rgba(77, 118, 221, 1) 100.2%);
    box-shadow: 0 0 5px 1px #FADBD8;
    color: white;
}

.nav-menu .login-button {
    float: right;
    margin-right: 20px;
}

.nav-menu .user-profile {
    float: right;
    margin-right: 50px;
}

i#close {
    padding: 0px 2.5px;
}

@media screen and (max-width: 750px) {
    .nav-menu a {
        display: none;
    }

    .nav-menu .login-button {
        display: none;
    }

    header button.nav-button {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 750px) {
    .nav-menu.responsive {
        float: right;
        position: fixed;
        padding-left: 0px;
        margin-top: 60px;
        margin-left: 35%;
        width: 65%;
        z-index: 99;
        background: linear-gradient(to right, #FDFBFB, #EBEDEE 100%);
        box-shadow: 0 0 20px rgba(77, 184, 255, 0.5);
    }

    header.responsive .nav-button {
        position: absolute;
        right: 0;
        top: 0;
    }

    .nav-menu.responsive a {
        float: none;
        display: block;
        text-align: left;
        letter-spacing: 0px;
    }

    .nav-menu.responsive .login-button {
        float: left;
        display: block;
    }

    /*Navigation Bar END*/
}

main {
    width: 100%;
    padding-top: 70px;
}

.front-page {
    font-size: 30px;
    height: 752px;
    text-align: center;
    color: grey;
    /* background-image: url("https://www.w3schools.com/w3css/img_snow_wide.jpg"); */
    background-color: #CDDCDC;
    background-image: radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
    background-blend-mode: screen, overlay;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
}

.form-page {
    font-size: 30px;
    height: auto;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 100px auto 200px auto;
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 0px 40px 0px;
    border-radius: 20px;
}


.front-page-heading {
    font-size: 30px;
    padding-top: 16%;
    text-shadow: 0 0 10px white;
    color: #326C9C;
}

.heading {
    font-size: 15px;
}

.page-heading {
    margin: auto;
    text-align: center;
    font-weight: bolder;
    color: #fff;
    background-image: linear-gradient(109.6deg, rgba(62, 161, 219, 1) 11.2%, rgba(93, 52, 236, 1) 100.2%);
    background-size: 200% auto;
    position: fixed;
    z-index: 98;
    width: 100%;
    border-radius: 0 0 3px 3px;
    border-bottom: 2px solid #31A6BA;
    box-shadow: 0 0 20px rgba(77, 184, 255, 0.5);
}

.main-heading {
    font-size: 17px;

}

.sub-heading {
    font-size: 13px;
    font-style: italic;
}

.form-heading {
    font-size: 20px;
    text-shadow: 0 0 10px white;
    color: #326C9C;
    margin-bottom: 20px;
}

.form-tag {
    font-size: 15px;
    color: #326C9C;
    margin-top: 20px;
    font-style: italic;
    cursor: pointer;
}

.input-container {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    width: 80%;
    margin: auto;
    margin-bottom: 15px;
}

textarea {
    font-family: sans-serif;
}

.icon-form {
    padding: 10px;
    background-image: linear-gradient(to right, #30CFD0 0%, #330867 100%);
    color: white;
    min-width: 50px;
    text-align: center;
    font-size: 20px;
}

.input-field {
    width: 100%;
    padding: 10px;
    border: 0.5px solid grey;
    outline: none;
}

.input-field:focus {
    border: 2px solid #30CFD0;
}

.input-field.required:focus {
    border: 2px solid red;
}

button.nav-button {
    background: none;
    box-shadow: none;
    border: 2px solid #ccc;
    color: #326C9C;
    font-size: 20px;
    margin: 4px 12px;
    display: none;
    padding: 8px 16px;
    transition-duration: 0.5s;
}

button {
    background-image: linear-gradient(105.3deg, rgba(30, 39, 107, 1) 21.8%, rgba(77, 118, 221, 1) 100.2%);
    color: white;
    border-radius: 2px;
    border: none;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    display: block;
    cursor: pointer;

}

button.small {
    font-size: 15px;
    padding: 5px 10px;
}

button.large {
    font-size: 18px;
    padding: 10px 10px;
    width: 60%;
    max-width: 300px;
}

.medium-size {
    padding: 12px 10px;
    width: 80%;
    max-width: 400px;
    margin: 10px auto;
}

a {
    color: var(--moving-dot-color);
    text-decoration: none;
}

.input-alert {
    color: red;
    display: block;
    font-size: 14px;
}

.tags {
    font-size: 15px;
    color: #326C9C;
    margin: 15px auto;
}

.is-invalid {
    border: 1px solid red;
}
/* .invalid-feedback {
    color: red;
    font-size: 14px;
} */

.description-small {
    color: #404248;
    font-size: 10px;
    width: 80%;
    margin: auto;
    padding: 20px 10px;
    text-align: center;

}

.description-medium {
    font-size: 12px;
    font-style: italic;
    text-align: left;
    width: 80%;
    margin: auto;
    padding: 10px 0px 10px 0px;
}

.credits p {
    font-size: 0.8rem;
    letter-spacing: 0.03rem;
    margin-top: 10px;
}

footer {
    /* position: absolute;*/
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px 0px 10px 0px;
    width: 100%;

    background-image: linear-gradient(105.3deg, rgba(30, 39, 107, 1) 21.8%, rgba(77, 118, 221, 1) 100.2%);
    background-size: 200% auto;
    color: #FFF;
    text-align: center;
}

.highlights {
    font-size: 0.8rem;
    margin-top: 20px;
    color: #85c1e9;
}

/* Base Table */
.application-table {
  width: 100%;
  max-width: 1100px;
  border-collapse: collapse;
  margin: 20px auto;
  font-size: 15px;
  font-family: Arial, sans-serif;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.application-table thead {
  background-color: #2c3e50;
  color: #fff;
}

.application-table thead th {
  padding: 12px 15px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.application-table tbody td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.application-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.application-table tbody tr:hover {
  background-color: #f1f7ff;
  transition: background 0.2s ease-in-out;
}

.application-table td.action {
  font-weight: 600;
  cursor: pointer;
}

.application-table td:last-child:hover {
  text-decoration: underline;
}

/* -------- Responsive Styles -------- */
@media (max-width: 768px) {
  .application-table {
    width: 100%;
    margin: 10px 0;
    border: none;
  }

  .application-table thead {
    display: none; /* hide table header */
  }

  .application-table, 
  .application-table tbody, 
  .application-table tr, 
  .application-table td {
    display: block;
    width: 100%;
  }

  .application-table tr {
    margin-bottom: 0px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .application-table td {
    padding: 10px 15px;
    text-align: right;
    position: relative;
  }

  .application-table td::before {
    content: attr(data-label); /* label comes from HTML */
    position: absolute;
    left: 15px;
    font-weight: bold;
    text-transform: capitalize;
    color: #333;
    text-align: left;
  }
}


.social {
    font-size: 25px;
    padding: 10px 10px;
    cursor: pointer;
}

.smallfare_footer {
    /*font-family: quango;*/
    font-size: 16px;
}

.sf-powered {
    height: 16px;
}

.powered {
    font-size: 8px;
    font-weight: lighter;
}

/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    width: 100%;
    font-size: 14px;
    padding: 12px auto 12px auto;
}

.custom-select.required {
    outline: 2px solid red;
}

.custom-select select {
    display: none;
    /*hide original SELECT element:*/
}

.select-selected {
    background-color: #fff;
    color: #000;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    border: 0.5px solid silver;
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 19px;
    right: 12px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #000 transparent;
    top: 10px;
}

/*style the items (options), including the selected item:*/
.select-items div {
    color: grey;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 97;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}


.container1 {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    margin-top: 10px;
    margin-left: 11.5%;
    margin-right: 10%;
    max-width: 500px;
    color: grey;
    font-weight: bolder;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: justify;
}

/* Hide the browser's default checkbox */
.container1 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 0 5px skyblue;
}

.checkmark1.required {
    border: 2px solid red;
}

/* On mouse-over, add a grey background color */
.container1:hover input~.checkmark1 {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.container1 input:checked~.checkmark1 {
    background-image: linear-gradient(-225deg, #473B7B 0%, #3584A7 51%, #30D2BE 100%);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark1:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container1 input:checked~.checkmark1:after {
    display: block;
}

/* Style the checkmark/indicator */
.container1 .checkmark1:after {
    left: 6px;
    top: 4px;
    width: 2px;
    height: 5px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.powered-by {
    margin: 20px auto;
}

.note {
    font-size: 10px;
    width: 80%;
    margin: 10px auto;
    text-align: left;
}


.btnloader {
    width: 16px;
    margin: auto;
    aspect-ratio: 1;
    --c: no-repeat linear-gradient(#fff 0 0);
    background:
        var(--c) 0% 50%,
        var(--c) 50% 50%,
        var(--c) 100% 50%;
    background-size: 20% 100%;
    animation: l1 1s infinite linear;
}

@keyframes l1 {
    0% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }

    33% {
        background-size: 20% 10%, 20% 100%, 20% 100%
    }

    50% {
        background-size: 20% 100%, 20% 10%, 20% 100%
    }

    66% {
        background-size: 20% 100%, 20% 100%, 20% 10%
    }

    100% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }
}

.previewloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 102;
}

.mainloader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    aspect-ratio: 1;
    --c: linear-gradient(#2E86C1 0 0);
    --m: radial-gradient(farthest-side, #2E86C1 92%, #0000);
    background:
        var(--c), var(--m),
        var(--c), var(--m),
        var(--c), var(--m);
    background-size: 8px 12px, 8px 8px;
    background-repeat: no-repeat;
    animation: l17 1s infinite linear;
}

@keyframes l17 {

    0%,
    5% {
        background-position: 0 50%, 0 0, 50% 50%, 50% 0, 100% 50%, 100% 0
    }

    12.5% {
        background-position: 0 50%, 0 calc(50% - 10px), 50% 50%, 50% 0, 100% 50%, 100% 0
    }

    25% {
        background-position: 0 calc(50% + 10px), 0 50%, 50% 50%, 50% 0, 100% 50%, 100% 0
    }

    37.5% {
        background-position: 0 calc(50% + 10px), 0 50%, 50% 50%, 50% calc(50% - 10px), 100% 50%, 100% 0
    }

    50% {
        background-position: 0 50%, 0 0, 50% calc(50% + 10px), 50% 50%, 100% 50%, 100% 0
    }

    62.5% {
        background-position: 0 50%, 0 0, 50% calc(50% + 10px), 50% 50%, 100% 50%, 100% calc(50% - 10px)
    }

    75% {
        background-position: 0 50%, 0 0, 50% 50%, 50% 0, 100% calc(50% + 10px), 100% 50%
    }

    87.5% {
        background-position: 0 50%, 0 0, 50% 50%, 50% 0, 100% calc(50% + 10px), 100% 50%
    }

    95%,
    100% {
        background-position: 0 50%, 0 0, 50% 50%, 50% 0, 100% 50%, 100% 0
    }
}

/*Slider CSS*/
.mySlides {
    display: none
}

.sf-left,
.sf-right,
.sf-badge {
    cursor: pointer;
}

.sf-badge {
    height: 13px;
    width: 13px;
    padding: 0;
}

.sf-content {
    margin: auto;
    max-width: 1200px;
    width: 100%;
}

.sf-display-container {
    position: relative
}

.sf-display-container:hover {
    display: block
}

.sf-display-container:hover {
    display: inline-block
}

.sf-center {
    display: inline-block;
    width: auto
}

.sf-center {
    text-align: center
}

.sf-block {
    display: block;
    width: 100%
}

.sf-center {
    text-align: center !important
}

.sf-container:after,
.sf-container:before {
    content: "";
    display: table;
    clear: both
}

.sf-container {
    padding: 0.01em 16px
}

.sf-section {
    margin-top: 16px !important;
    margin-bottom: 16px !important
}

.sf-large {
    font-size: 18px !important
}

.sf-text-white {
    color: #fff !important
}

.sf-display-bottommiddle {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%)
}

.sf-left {
    float: left !important
}

.sf-hover-text-khaki:hover {
    color: #b4aa50 !important
}

.sf-right {
    float: right !important
}

.sf-badge {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center
}

.sf-badge {
    border-radius: 50%
}


.sf-border {
    border: 1px solid #ccc !important
}

.sf-transparent,
.sf-hover-none:hover {
    background-color: transparent !important
}

.sf-white,
.sf-hover-white:hover {
    color: #000 !important;
    background-color: #fff !important
}

/* Text scrolling CSS*/
.scroll-left {
    height: 28px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-left p {
    position: absolute;
    width: 790px;
    height: 100%;
    margin: 0;
    line-height: 25px;
    text-align: left;
    font-size: 15px;
    color: #000;
    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: scroll-left 20s linear infinite;
    -webkit-animation: scroll-left 20s linear infinite;
    animation: scroll-left 20s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        /* Browser bug fix */
        -webkit-transform: translateX(100%);
        /* Browser bug fix */
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
        /* Browser bug fix */
        -webkit-transform: translateX(-100%);
        /* Browser bug fix */
        transform: translateX(-100%);
    }
}