   textarea::placeholder {
        color: var(--main-color-new-theme);
    }

    .form-select {
        color: var(--main-color-new-theme);
    }



    .asdfradio {
        --text: #414856;
        --radio: #7C96B2;
        --radio-checked: #0080A1;
        --radio-size: 20px;
        --width: 150px;
        --height: 140px;
        --border-radius: 10px;
        border-radius: var(--border-radius);
        color: var(--text);
        position: relative;
        padding: 6px 0px;
        display: grid;
        grid-template-columns: auto var(--radio-size);
        align-items: center;
        display: -webkit-inline-box;
    }

    .asdfradio label {
        cursor: pointer;
    }

    .asdfradio input[type="radio"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        position: relative;
        height: var(--radio-size);
        width: var(--radio-size);
        outline: none;
        margin: 0;
        cursor: pointer;
        border: 2px solid var(--radio);
        background: transparent;
        border-radius: 50%;
        display: grid;
        justify-self: end;
        justify-items: center;
        align-items: center;
        overflow: hidden;
        transition: border .5s ease;
    }

    .asdfradio input[type="radio"]::before,
    .asdfradio input[type="radio"]::after {
        content: "";
        display: flex;
        justify-self: center;
        border-radius: 50%;
    }

    .asdfradio input[type="radio"]::before {
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--background);
        z-index: 1;
        opacity: var(--opacity, 1);
    }

    .asdfradio input[type="radio"]::after {
        position: relative;
        width: calc(100% /2);
        height: calc(100% /2);
        background: var(--radio-checked);
        top: var(--y, 100%);
        transition: top 0.5s cubic-bezier(0.48, 1.97, 0.5, 0.63);
    }

    .asdfradio input[type="radio"]:checked {
        --radio: var(--radio-checked);
    }

    .asdfradio input[type="radio"]:checked::after {
        --y: 0%;
        animation: stretch-animate .3s ease-out .17s;
    }

    .asdfradio input[type="radio"]:checked::before {
        --opacity: 0;
    }

    .asdfradio input[type="radio"]:checked~input[type="radio"]::after {
        --y: -100%;
    }

    .asdfradio input[type="radio"]:not(:checked)::before {
        --opacity: 1;
        transition: opacity 0s linear .5s;
    }

    @keyframes stretch-animate {
        0% {
            transform: scale(1, 1);
        }

        28% {
            transform: scale(1.15, 0.85);
        }

        50% {
            transform: scale(0.9, 1.1);
        }

        100% {
            transform: scale(1, 1);
        }
    }

    .socials {
        position: fixed;
        display: block;
        left: 20px;
        bottom: 20px;
    }

    .socials>a {
        display: block;
        width: 30px;
        opacity: .2;
        transform: scale(var(--scale, 0.8));
        transition: transform 0.3s cubic-bezier(0.38, -0.12, 0.24, 1.91);
    }

    .socials>a:hover {
        --scale: 1;
    }

    .select2-container--default .select2-selection--single {
        border: 0px !important;
    }


    /* Common Popup Styles */
    .custom-volunteer-popup,
    .custom-parent-popup {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        /* height: 100%; */
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    #volunteerAcceptBtn:disabled,
    #parentAcceptBtn:disabled {
        background-color: #4B4B4B !important;
        cursor: not-allowed;
    }

    #volunteerAcceptBtn,
    #parentAcceptBtn {
        background-color: #198754 !important;
        color: white;
        cursor: pointer;
    }

    /* Volunteer Popup Specific Styles */
    .custom-volunteer-content {
        background-color: #fff;
        /* margin: 10% auto; */
        margin: 4% 10%;
        padding: 20px;
        border-radius: 8px;
        /* width: 50%; */
        width: 80%;
        max-height: 80vh;
        overflow-y: auto;
        /* border: 2px solid #28a745; */
    }

    .custom-volunteer-body {
        margin-bottom: 15px;
        text-align: left;
    }

    .custom-volunteer-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        cursor: pointer;
    }

    .custom-volunteer-buttons {
        text-align: center;
        margin-top: 15px;
    }

    /* Parent Popup Specific Styles */
    .custom-parent-content {
        background-color: #fff;
        /* margin: 10% auto; */
        margin: 4% 10%;
        padding: 20px;
        border-radius: 8px;
        /* width: 50%; */
        width: 80%;
        max-height: 80vh;
        overflow-y: auto;
        /* border: 2px solid #dc3545;  */
    }

    .custom-parent-body {
        margin-bottom: 15px;
        text-align: left;
    }

    .custom-parent-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        cursor: pointer;
    }

    .custom-parent-buttons {
        text-align: center;
        margin-top: 15px;
    }

    /* Warning Text */
    .popup-warning {
        color: red !important;
        font-weight: bold;
    }

    /* dropdown */

    .ui-timepicker-container {
        position: absolute;
        overflow: hidden;
        box-sizing: border-box
    }

    .ui-timepicker,
    .ui-timepicker-viewport {
        box-sizing: content-box;
        height: 205px;
        display: block;
        margin: 0
    }

    .ui-timepicker {
        list-style: none;
        padding: 0 1px;
        text-align: center
    }

    .ui-timepicker-viewport {
        padding: 0;
        overflow: auto;
        overflow-x: hidden
    }

    .ui-timepicker-standard {
        font-size: 12px;
        font-family: sans-serif;
        list-style: none;
        background-color: #fff;
        background-clip: padding-box;
        border-radius: 0 0 3px 3px;
        box-shadow: 0 0 0 .75px #bbb, 2px 1.5px 3px rgba(0, 0, 0, .16);
        margin: 0;
        padding: 0;
    }

    .ui-timepicker-standard a {
        display: block;
        background: transparent;
        filter: none;
        border: none;
        width: 100%;
        text-align: left;
        border-radius: 0;
        font-size: 11.5px;
        padding: 5px 10px;
        line-height: 18px;
        white-space: nowrap;
        text-decoration: none;
        color: inherit;
    }

    /*Note: do not delete - breaks arrow keys (wut wut) */
    .ui-timepicker-standard .ui-state-hover {
        box-shadow: none;
        border: none;
        text-decoration: none;
        background-color: #555;
        color: #fff;
    }

    .ui-timepicker-standard .ui-menu-item {
        margin: 0;
        padding: 0
    }

    .ui-timepicker-hidden {
        display: none
    }

    .ui-timepicker-no-scrollbar .ui-timepicker {
        border: none
    }

    /* For radio buttons when checked */
    .form-check-input:checked[type="radio"] {
        background-color: #005d4b;
        border-radius: 11px;
        font-size: 22px;
        border: 2px solid #ffc107;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23ffc107' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3 6-6'/%3E%3C/svg%3E");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 60%;
        padding: 16px;
    }


    /* For unchecked state */
    .form-check-input[type="radio"] {
        background-color: transparent;
        border-radius: 11px;
        font-size: 18px;
        border: 2px solid #ffc107;
        padding: 16px;
    }

    .text-p {
        font-size: 22px !important;
        line-height: 1.5;
        /* margin-bottom: 0rem!important; */
    }

    .form-control::placeholder {
        color: var(--main-color-new-theme) !important;
    }

    .form-select::placeholder {
        color: var(--main-color-new-theme) !important;
    }

    .form-outline {
        position: relative;
    }

    .form-outline .form-control {
        /* padding-right: 50px; */
        /* Adjust this value to fit the button */
    }

 

    .verifySignupEmailbtn {
        position: absolute;
        right: -23px;
        top: 25%;
        transform: translateY(-50%);
        padding: 17px 10px;
        border: none;
        /* background-color: var(--main-color-new-theme);
        color: white; */
            background: #ffffff;
    color: var(--main-color-new-theme);
        border-radius: 0 5px 5px;
        cursor: pointer;
     z-index: 9999;
    }


    .verifySignupEmailbtn1 {
        position: absolute;
        right: -23px;
        top: 25%;
        transform: translateY(-50%);
        padding: 17px 10px;
        border: none;
        /* background-color: var(--main-color-new-theme);
        color: white; */
            background: #ffffff;
    color: var(--main-color-new-theme);
        border-radius: 0 5px 5px;
        cursor: pointer;
     z-index: 9999;
    }

    /* .verifySignupEmailbtn1 {
        position: absolute;
        right: -23px;
        top: 30%;
        transform: translateY(-50%);
        padding: 14px 10px;
        border: none;
        background-color: var(--main-color-new-theme);
        color: white;
        border-radius: 0 5px 5px;
        cursor: pointer;
     z-index: 9999;
    } */

    .form-label {
        margin-bottom: 0px !important;
    }

    .manadatenew {
        font-weight: bold;
        font-size: 21px !important;
        color:red!important;
    }

    * {
        margin: 0;
        padding: 0
    }

    html {
        height: 100%
    }

    p {
        color: grey
    }

    #heading {
        text-transform: uppercase;
        color: var(--main-color-new-theme);
        font-weight: normal
    }



    fieldset {
        background: white;
        border: 0 none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding-bottom: 11px;
        position: relative;
        padding-right: 20px;
    }

    .form-card {
        text-align: left
    }

    fieldset:not(:first-of-type) {
        display: none
    }



    .action-button {
        width: auto;
        background: var(--main-color-new-theme);
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 5px;
        cursor: pointer;
        padding: 11px 32px;
        margin: 10px 0px 10px 5px;
    }

    .action-button:hover,
    .action-button:focus {
        background-color: var(--main-color-new-theme);
    }

    .action-button-previous {
        width: auto;
        background: #616161;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 5px;
        cursor: pointer;
        padding: 11px 32px;
        margin: 10px 0px 10px 5px;
    }

    .action-button-previous:hover,
    .action-button-previous:focus {
        background-color: #000000
    }

    .card {
        z-index: 0;
        border: none;
        position: relative
    }

    .fs-title {
        font-size: 25px;
        color: var(--main-color-new-theme);
        margin-bottom: 15px;
        font-weight: normal;
        text-align: left
    }

    .purple-text {
        color: var(--main-color-new-theme);
        font-weight: normal
    }



    .fieldlabels {
        color: gray;
        text-align: left
    }

    #progressbar {
        margin-bottom: 8px;
        overflow: hidden;
        color: lightgrey;
        padding-left: 0;
    }

    #progressbar .active {
        /* color: var(--main-color-new-theme) */
        color: #000000;
    }

    #progressbar li {
        list-style-type: none;
        /* font-size: 15px; */
        font-size: 22px !important;
        width: 33.33%;
        float: left;
        position: relative;
        font-weight: 400
    }


    #progressbar #account:before {
        font-family: FontAwesome;
        content: "\f14b"
    }

    #progressbar #personal:before {
        font-family: FontAwesome;
        content: "\f274"
    }

    #progressbar #payment:before {
        font-family: FontAwesome;
        content: "\f0f6"
    }

    #progressbar #confirm:before {
        font-family: FontAwesome;
        content: "\f00c"
    }

    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 22px;
        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: var(--main-color-new-theme)
    }

    .progress {
        height: 20px
    }

    .progress-bar {
        background-color: var(--main-color-new-theme)
    }

    .fit-image {
        width: 100%;
        object-fit: cover
    }


    .fa2 {
        margin-top: 7px;

    }

    .fa {
        padding-top: 3px;
    }

    .form-control {
        font-size: 22px;
    }

    .form-control2 {
        border: 0 !important;
    }

    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 0%) !important;
    }


    .table-inputs {
        border-spacing: 0;
        border-collapse: collapse;
    }

    .table-inputs th {
        padding: 0 0.75rem;
        line-height: 1.75rem;
        font-weight: normal;
        font-size: 12px;
        border: 1px solid #d2d2d2;
    }

    .table-inputs td {
        background-color: #fff;
        border-right: 1px solid #d2d2d2;
        padding: 0;
    }

    .table-inputs input {
        border: 0;
        background-color: transparent;
    }

    .ui-timepicker-container {
        position: absolute;
        overflow: hidden;
        box-sizing: border-box
    }

    .ui-timepicker,
    .ui-timepicker-viewport {
        box-sizing: content-box;
        height: 205px;
        display: block;
        margin: 0
    }

    .ui-timepicker {
        list-style: none;
        padding: 0 1px;
        text-align: center
    }

    .ui-timepicker-viewport {
        padding: 0;
        overflow: auto;
        overflow-x: hidden
    }

    .ui-timepicker-standard {
        font-size: 12px;
        font-family: sans-serif;
        list-style: none;
        background-color: #fff;
        background-clip: padding-box;
        border-radius: 0 0 3px 3px;
        box-shadow: 0 0 0 .75px #bbb, 2px 1.5px 3px rgba(0, 0, 0, .16);
        margin: 0;
        padding: 0;
    }

    .ui-timepicker-standard a {
        display: block;
        background: transparent;
        filter: none;
        border: none;
        width: 100%;
        text-align: left;
        border-radius: 0;
        font-size: 11.5px;
        padding: 5px 10px;
        line-height: 18px;
        white-space: nowrap;
        text-decoration: none;
        color: inherit;
    }

    .ui-timepicker-standard .ui-state-hover {
        box-shadow: none;
        border: none;
        text-decoration: none;
        background-color: #555;
        color: #fff;
    }

    .ui-timepicker-standard .ui-menu-item {
        margin: 0;
        padding: 0
    }

    .ui-timepicker-hidden {
        display: none
    }

    .ui-timepicker-no-scrollbar .ui-timepicker {
        border: none
    }
    .font-size-responsive,.font-size-responsive2{
  font-size: 22px!important;
}
.mother-father-h{
    font-size: 1.25rem!important;
}
@media only screen and (max-width:760px) {

  .font-size-responsive{
    font-size: 14px!important;
  }
  .font-size-responsive2{
    font-size: 19px!important;
  }
  .mother-father-h{
    font-size: 16px!important;
}
.minus-btn, .plus-btn {
    padding: 12px 12px 12px 12px;
    height: 36px;
}
#progressbar li {
        font-size: 16px !important;
    }

}
@media only screen and (max-width:465px) {
	#setp1,#mother-details-container,#father-details-container {
    padding-inline-start: 2px!important;
	padding-right: 3px!important;
	}
}
@media only screen and (max-width:360px) {
	.action-button {
    padding: 9px 22px;
    margin: 10px 0px 10px 5px;
}

.action-button-previous
 {
    padding: 9px 22px;
    margin: 10px 0px 10px 5px;
}
}

#mother_email, #father_email{
   padding-right: 60px !important;
}

.form-select
 {
    min-height: 37px;
    color: #000000 !important;
    font-weight: 800;
    width: 100% !important;
    font-size: 16px;
}