* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #24A19D #ffffff;
}

body {
    background-color: #FAFAFA;
}

:root {
    --color-green: #24A19D;
    --color-white: #ffffff;
    --color-gray: #E5E5E5;
    --color-black: #000000;
}

.clr-green {
    background-color: var(--color-green) !important;
}

.clr-white {
    color: var(--color-white) !important;
}

.clr-gray {
    background-color: var(--color-gray) !important;
}

.clr-black {
    color: var(--color-black) !important;
}

input.form-control:focus {
    box-shadow: unset;
    border-color: #CECECE;
}

@media only screen and (min-width:1500px) {
    .container {
        max-width: 1470px;
    }
}

label {
    color: black;
    font-family: "Poppins", sans-serif;
}

.login_container {
    background-size: 100vw 100vh;
    height: 100vh;
    min-height: 100vh;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    background-position: center;
}

.login_container .logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 0;
}

.login_container .login_details h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}

.login_container .login_details {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 59px #00000029;
    border-radius: 23px;
    opacity: 1;
    min-width: 400px;
    width: 525px;
    padding: 43px 33px;
}

.login_container .login_details .login_options {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.login_container .login_details .login_options .radio_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.login_container .login_details .login_options label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
}

/* .login_container .form_container .login_options input[type="radio"] {
    accent-color: #24A19D;
    border-color: #24A19D;
    background-color: #24A19D;
    transform: scale(1.3);
} */

.login_container .form_container .login_options [type="radio"]:checked,
.login_container .form_container .login_options[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.login_container .form_container .login_options [type="radio"]:checked,
.login_container .form_container .login_options[type="radio"]:not(:checked) {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #24A19D;
}

.login_container .form_container .login_options [type="radio"]:checked+label:before,
.login_container .form_container .login_options [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: -1px;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 1px solid #24A19D;
    border-radius: 100%;
    background: #fff;
}

.login_container .form_container .login_options [type="radio"]:checked+label:after,
.login_container .form_container .login_options [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #24A19D;
    position: absolute;
    top: 9px;
    left: 2px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.login_container .form_container .login_options [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.login_container .form_container .login_options [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.login_container .form_container .form-group {
    width: 100%;
    margin-top: 30px;
}

.login_container .login_details form .form-group:nth-child(4) {
    margin-top: 20px;
}

.login_container .login_details .form-group input {
    line-height: 30px;
    border-color: #D8D8D8;
}

.login_container .login_details .form-group input:focus {
    outline: none !important;
    box-shadow: none;
    border-color: #D8D8D8;
}

.login_container .login_details form div:nth-child(5) {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}

.login_container .login_details form div:nth-child(5) button {
    padding: unset;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: underline;
    color: black;
    transition: all 0.5s;
}

.login_container .login_details form div:nth-child(5) button:focus {
    outline: none;
    border-color: #ffffff;
}

.login_container .form_container .login_details a {
    display: inline-block;
    text-align: center;
    text-decoration: underline;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-top: 35px;
    font-size: 19px;
    transition: all 0.5s;
}

.login_container .login_details form div:nth-child(5) button:hover,
.login_container .form_container .login_details a:hover {
    opacity: 0.7;
}

.login_container .login_details form .submit_button {
    width: 100%;
    margin-top: 35px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 15px;
    font-size: 20px;
    transition: all 0.5s;
}

.login_container .login_details form .submit_button:hover {
    padding-right: 24px;
    padding-left: 8px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
    opacity: 0.7;
}

.form-control {
    display: block;
    width: 100%;
    padding: 1px 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    height: 58px;
    box-shadow: none;
    outline: none;
}

.login_container .login_details form .form-group label {
    font-weight: 500;
    margin-bottom: 6px;
}

.login_container .anchor_click_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup_container .form_container .login_details form .row {
    margin-top: -30px;
}

/* dashboard css starts */

.header {
    width: calc(100% - 280px);
    margin-left: 280px;
    padding: 10px 30px;
    height: 70px;
    background-color: #ffffff;
}

.header .header_items {
    display: flex;
    justify-content: end;
}

.header .header_items .dashboard_user {
    position: relative;
    display: flex;
    align-items: center;
    /* -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; */
    transition: opacity 0.3s ease;
}

.header .header_items .dashboard_user:hover {
    cursor: pointer;
}

.header .header_items .dashboard_user .user_dropdown {
    position: absolute;
    flex-direction: column;
    width: 180px;
    padding: 10px 9px 23px 10px;
    top: 61px;
    color: white;
    justify-content: start;
    align-items: baseline;
    gap: 10px;
    font-size: 15px;
    display: flex;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: -1;
    right: 0;
}

/* .header .header_items .dashboard_user .user_dropdown:hover{
  display: flex;
} */

.header .header_items .dashboard_user .user_dropdown p {
    margin-bottom: unset;
    font-family: "Poppins", sans-serif;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 15px;
}

.header .header_items .dashboard_user .user_dropdown p:hover {
    cursor: pointer;
    opacity: 0.7;
}

.header .header_items .dashboard_user .user_dropdown p i {
    margin-right: 7px;
}

.header .dashboard_user h6 {
    margin: 0 3px 0 7px;
    font-family: "Poppins", sans-serif;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.header .dashboard_user h6:hover {
    opacity: 0.7;
}

.header .dashboard_user img:nth-child(3) {
    margin-top: 3px;
}

.dashboard_user img:nth-child(1) {
    width: 50px;
    height: 50px;
}

.main_sidebar {
    background-color: #24A19D;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    padding: 20px 10px;
}

.main_sidebar .sidebar_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_sidebar .sidebar_components {
    padding-left: 31px;
    margin-top: 50px;
}

.main_sidebar .sidebar_components a {
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    text-decoration: none;
    color: #FFFFFF;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 25px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.main_sidebar .sidebar_components p {
    margin-bottom: unset;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.main_sidebar .sidebar_components img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.main_sidebar .sidebar_components a:hover {
    opacity: 0.7;
}

.counselling_container {
    width: calc(100% - 280px);
    height: 100%;
    margin-left: 280px;
}

.table_container .table_data {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px;
}

.table_container .table_data table {
    border: 1px solid #E8E8E8;
    font-family: "Poppins", sans-serif;
    width: 100%;
}

.table_container .table_data table thead {
    border: 1px solid #E8E8E8;
}

.table_container table thead tr th,
.table_container table tbody tr td {
    border-right: 1px solid #E8E8E8;
    padding: 12px 20px;
}

.table_container table tbody tr td:nth-child(1),
.table_container table tbody tr td:nth-child(2) {
    font-weight: 500;
}

.table_container table tbody tr td:nth-child(3) {
    color: #5F5F5F;
    font-size: 14px;
}

.table_container table tbody tr td:nth-child(4) {
    font-size: 15px;
    text-align: center;
    min-width: 150px;
}

.table_container table tbody tr td:nth-child(5) {
    text-align: center;
    min-width: 150px;
}

.table_container table tbody tr td:nth-child(5) small {
    font-size: 14px;
    text-align: center;
    color: #24A19D;
    background-color: #f0f8f8;
    padding: 5px 10px;
    border-radius: 25px;
}


.table_container table tbody tr td:nth-child(4) button {
    border: unset;
    background-color: #24A19D;
    color: #ffffff;
    border-radius: 25px;
    padding: 5px 15px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    min-width: 90px;
}

.table_container table tbody tr td:nth-child(4) button:hover {
    background-color: #E8E8E8;
    color: #808080;
}

.table_container .table_data table thead tr th:nth-child(4),
.table_container .table_data table thead tr th:nth-child(5) {
    text-align: center;
}

.table_container thead tr th:nth-child(1) {
    min-width: 85px;
}

.table_container tbody tr:first-child td {
    padding-top: 22px !important;
}

tbody tr:last-child td {
    padding-bottom: 30px !important;
}

.counselling_table_container table tbody tr td {
    padding: 12px;
}

/* credit card css */

.counselling_credit_details .credit_container .login_options {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 50px;
    margin-bottom: 25px;
}

.counselling_credit_details .credit_container .login_options .radio_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.counselling_credit_details .credit_container .login_options [type="radio"]:checked,
.counselling_credit_details .credit_container .login_options[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.counselling_credit_details .credit_container .login_options [type="radio"]:checked,
.counselling_credit_details .credit_container .login_options[type="radio"]:not(:checked) {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #24A19D;
}

.counselling_credit_details .credit_container .login_options [type="radio"]:checked+label:before,
.counselling_credit_details .credit_container .login_options [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: -1px;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #24A19D;
    border-radius: 100%;
    background: #fff;
}

.counselling_credit_details .credit_container .login_options [type="radio"]:checked+label:after,
.counselling_credit_details .credit_container .login_options [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #24A19D;
    position: absolute;
    top: 6px;
    left: 2px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.counselling_credit_details .credit_container .login_options [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.counselling_credit_details .credit_container .login_options [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.counselling_card_section .counselling_form_container {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px 100px 40px 40px;
    font-family: "Poppins", sans-serif;
}

.counselling_card_section .login_container .login_details .login_options label {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: unset;
}

.counselling_card_section .counselling_form_container label {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.counsel_heading h1 {
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 600;
}

.counselling_card_section form .form-group {
    margin-bottom: 25px;
}

.counselling_card_section form label {
    margin-bottom: 10px;
}

.counselling_card_section .counselling_credit_details label {
    font-weight: 500;
}

.counselling_credit_details .login_options label {
    margin-bottom: unset;
}

.counselling_card_section form button {
    border-radius: 31px;
    padding: 10px 45px;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.5s;
    width: 165px;
    min-width: 165px;
}

.counselling_card_section form button:hover {
    padding-right: 24px;
    padding-left: 8px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
    opacity: 0.7;
}

.counselling_card_section .counselling_credit_details label:nth-child(1) {
    font-weight: 600;
}

/* settings page css */

.settings_section .counselling_settings_container {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px 40px 80px;
    font-family: "Poppins", sans-serif;
}

.settings_section p {
    margin-bottom: unset;
}

.settings_section .counsel_first_last_name {
    display: flex;
    align-items: center;
    gap: 130px;
    margin-top: 20px;
}

.settings_section h5 {
    font-weight: 600;
}

.settings_section .counsel_first_last_name .counsel_name p:nth-child(1) {
    font-weight: 300;
    font-size: 15px;
}

.settings_section .counsel_first_last_name .counsel_name p:nth-child(2) {
    font-weight: 500;
}

.counsel_email_phone {
    gap: 49px !important;
}

.settings_section .counsel_edit_button {
    position: relative;
}

.settings_section .counsel_edit_button .editable_items {
    position: absolute;
    top: 10px;
    left: 300px;
}

.settings_section .counsel_edit_button .editable_items .user_name p:nth-child(1) {
    font-weight: 300;
    font-size: 15px;
}

.settings_section .counsel_edit_button .editable_items .user_name p:nth-child(2) {
    font-weight: 500;
}

.settings_section .counsel_edit_button button {
    padding: 5px 20px;
    border-radius: 31px;
    transition: all 0.5s;
    width: 72px;
    min-width: 72px;
}

.settings_section .counsel_edit_button button:hover {
    padding-right: 18px;
    padding-left: 8px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
    opacity: 0.7;
}

.settings_section .counsel_visa_card {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid #D0D0D0;
    width: fit-content;
    border-radius: 19px;
    padding: 19px 19px 69px;
    margin-top: 20px;
}

.settings_section .counsel_visa_card .card_text p:nth-child(1) {
    font-weight: 700;
    margin-bottom: 3px;
}

.settings_section .counsel_visa_card .card_text p:nth-child(2) {
    font-weight: 600;
    position: relative;
    padding-left: 70px;
    font-size: 12px;
}

span.stars {
    position: absolute;
    color: black;
    top: 1px;
    left: 0;
    font-size: 14px;
}

.settings_section .counsel_visa_card img {
    width: 70px;
}

/* user bio css */

.counselling_bio_section .counselling_bio_container {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px 40px 80px;
    font-family: "Poppins", sans-serif;
}

.counselling_bio_section .counselling_bio_form form .form-group {
    margin-bottom: 35px;
}

.counselling_bio_section h5 {
    font-weight: 600;
}

.counselling_bio_section .counselling_bio_buttons button {
    border-radius: 31px;
    padding: 10px 45px;
    font-weight: 500;
    transition: all 0.5s;
    width: 165px;
    min-width: 165px;
    font-size: 20px;
}

.counselling_bio_section .counselling_bio_buttons button:nth-child(1) {
    margin-right: 10px;
}

.counselling_bio_section .counselling_bio_buttons button:nth-child(1):hover {
    padding-right: 24px;
    padding-left: 8px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
    opacity: 0.7;
}

.counselling_bio_section .counselling_bio_buttons button:nth-child(2):hover {
    padding-right: 24px;
    padding-left: 8px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
    opacity: 0.7;
}

.counselling_bio_section .counselling_bio_form form .form-group label {
    margin-bottom: 5px;
    font-size: 15px;
}

.counselling_bio_section .counselling_bio_form {
    width: 900px;
    min-width: 500px;
}

.counselling_bio_section .user_image {
    position: relative;
}

.counselling_bio_section .user_image:nth-child(2) img {
    width: 40px;
    height: 40px;
}

.counselling_bio_section .user_image label img {
    width: 14px;
    height: 14px;
    position: absolute;
    left: 43px;
    top: 6px;
    cursor: pointer;
}

.counselling_bio_form form .row div:nth-child(6) {
    position: relative;
}

.counselling_bio_form form .row div:nth-child(6) i {
    position: absolute;
    right: 26px;
    top: 47px;
    color: #C1C1C1;
}

/* appointment table css */

.counselling_table_container .counselling_appointment_tables {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px;
}

.counselling_table_container h2 {
    font-weight: 600;
}


.counselling_table_container .counselling_appointment_tables {
    font-family: "Poppins", sans-serif;
}

.counselling_table_container .counselling_appointment_tables table {
    font-family: "Poppins", sans-serif;
    width: 100%;
    border-collapse: collapse;
}

.counselling_table_container table thead tr th {
    padding: 12px;
    border-bottom: 1px solid #e8e8e8;
    border-collapse: collapse;
}

.counselling_table_container table thead {
    border-bottom: 1px solid #E8E8E8;
}

.counselling_appointment_tables table thead tr th:first-child,
.counselling_appointment_tables table tbody tr td:first-child {
    padding-left: 20px;
}

.past_appointment_table table tbody tr:nth-child(1) td:nth-child(2) {
    text-decoration: underline;
    text-decoration-color: #7f7f7f;
}

.upcoming_appointment_table table thead tr th:nth-child(3) {
    width: 236px;
}

.upcoming_appointment_table table thead tr th:nth-child(8) {
    width: 190px;
}

.past_appointment_table table thead tr th:nth-child(9) {
    width: 135px;
}

.past_appointment_table table tbody tr td:nth-child(9) small {
    font-size: 13px;
    text-align: center;
    color: #24A19D;
    background-color: #f0f8f8;
    padding: 5px 10px;
    border-radius: 25px;
}

.past_appointment_table table tbody tr:nth-child(3) small {
    font-size: 14px;
    text-align: center;
    color: #7E6920 !important;
    background-color: #FFF8E0 !important;
    padding: 5px 10px;
    border-radius: 25px;
}

.counselling_table_container form .table_data {
    border: 1px solid #E8E8E8;
    border-radius: 22px;
}

/* profile css */

.profile_section .counselling_profile_container {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px 40px 70px;
    font-family: "Poppins", sans-serif;
}

.profile_section .counselling_basic_info {
    display: flex;
    gap: 50px;
    margin-bottom: 25px;
    border-bottom: 1px solid #707070;
}

.profile_section .counselling_basic_info_container {
    width: 994px;
}

.profile_section .counselling_basic_info div {
    margin-bottom: 25px;
}

.profile_section .counselling_education {
    display: flex;
    align-items: center;
    gap: 120px;
}

.profile_section .counselling_basic_info p,
.profile_section .counselling_education p {
    margin-bottom: unset;
}

.profile_section .counselling_basic_info div p:first-child,
.profile_section .counselling_education div p:first-child {
    font-weight: 700;
}

.profile_section h5 {
    font-weight: 600;
}

/* dashboard appointment */

.dashboard_appointment_container .dashboard_appointment_tables .dashboard_boxes {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dashboard_appointment_container .dashboard_appointment_tables .dashboard_boxes .counsel_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 300px;
    height: 179px;
    background-color: #F7F7F7;
    border-radius: 20px;
    justify-content: center;
}

.counsel_box .image_box {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.counsel_box small {
    color: #676767;
}

.dashboard_appointment_tables h1 {
    font-size: 32px;
    font-weight: 600;
}

.dashboard_appointment_container .dashboard_appointment_tables .upcoming_appointment_table td a {
    color: black;
}

.dashboard_appointment_container .dashboard_appointment_tables .upcoming_appointment_table table thead tr th:nth-child(3),
.dashboard_appointment_container .upcoming_appointment_table table thead tr th:nth-child(8) {
    width: unset;
}

.dashboard_appointment_container .dashboard_appointment_tables .past_appointment_table table tbody tr:nth-child(3) small,
.past_appointment_container .past_appointment_table table tbody tr:nth-child(3) small {
    color: #24A19D !important;
    background-color: #f0f8f8 !important;
}

.dashboard_appointment_container .counsel_table_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard_appointment_container .counsel_table_heading a {
    color: black;

}

.dashboard_appointment_container .dashboard_appointment_tables a {
    transition: opacity 0.3s ease;
}

.dashboard_appointment_container .dashboard_appointment_tables a:hover {
    opacity: 0.7;
}

.upcoming_appointment_container .upcoming_appointment_table {
    margin-bottom: 110px !important;
}

.upcoming_appointment_container .upcoming_appointment_table table thead tr th:nth-child(7) {
    width: 211px;
}

/* total revenue css */

.total_revenue_container .revenue_appointment_table table tbody tr:nth-child(1) td:nth-child(2) {
    text-decoration: unset;
}

/* payment page css */

.payment_section .counselling_profile_container {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px 40px 60px;
    font-family: "Poppins", sans-serif;
}

.payment_section textarea.form-control {
    min-height: unset;
    height: 120px;
}

.payment_section textarea.form-control:focus {
    box-shadow: unset;
    border-color: #CECECE;
}

.payment_section .user_image {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment_section .user_image h5 {
    font-weight: 700;
}

.payment_section .counselling_basic_info {
    margin-bottom: unset;
    border-bottom: unset;
}

.payment_section .payment_form form .form-group {
    margin-bottom: 30px;
}

.payment_section .payment_form form .form-group label {
    margin-bottom: 5px;
}

.payment_section form button {
    border-radius: 31px;
    padding: 10px 45px;
    font-weight: 500;
    transition: all 0.5s;
    width: 165px;
    min-width: 165px;
    font-size: 20px;
}

.payment_section form button:hover {
    padding-right: 24px;
    padding-left: 8px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .7);
    opacity: 0.7;
}

.payment_section .payment_form form .eap_box {
    position: relative;
    width: 150px;
    min-width: 150px;
}

.payment_section .payment_form form .eap_box img {
    position: absolute;
    right: 15px;
    top: 55px;
}

.payment_section select.form-control:focus {
    box-shadow: unset;
    border-color: #CECECE;
}

.payment_section .form-select {
    background-size: 12px 8px;
}

/* payment details page */

.payment_details_section p small {
    width: 600px;
    display: block;
    margin-top: -5px;
    margin-bottom: 25px;
    font-weight: 300;
}

.payment_details_section select {
    background-color: #F4F4F4;
}

.payment_details_section select:focus {
    background-color: #F4F4F4;
}

/* user bio settings */

.user_settings_section .counselling_bio_container {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px 40px 50px;
    font-family: "Poppins", sans-serif;
}

.user_settings_section .counselling_bio_form form .row div:nth-child(8) {
    position: relative;
}

.user_settings_section .counselling_bio_form form .row div:nth-child(8) i {
    position: absolute;
    right: 26px;
    top: 47px;
    color: #C1C1C1;
}

/* basic info css */

.basic-info-section .counselling_settings_container {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px 40px 250px;
    font-family: "Poppins", sans-serif;
}

/* consent css */

.dashboard_links {
    background-color: #ffffff;
    margin: 20px;
    border-radius: 34px;
    padding: 40px;
    font-family: "Poppins", sans-serif;
}

.dashboard_links.consent_info h1 {
    font-size: 32px;
    font-weight: bold;
    color: #31859B;
    text-align: center;
}

section.consent_container.counselling_container h6 {
    text-align: center;
}

section.dashboard_links.consent_info p {
    font-size: 15px;
}

section.consent_container.counselling_container h4 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
}

section.consent_container.counselling_container h5 {
    font-weight: 600;
    text-decoration: underline;
}

.dashboard_links .acknowledgement_form form .form-control {
    border: unset;
    border-bottom: 1px solid black;
    border-radius: unset;
    height: 40px;
}

.dashboard_links .acknowledgement_form form label {
    text-align: center;
    width: 100%;
    margin-top: 3px;
}

.dashboard_links .acknowledgement_section p:nth-child(2) {
    text-align: center;
}

.dashboard_links section.acknowledgement_section .fee_schedule {
    margin-top: 30px;
}

.dashboard_links section.acknowledgement_section .fee_schedule p {
    text-align: left;
}

.dashboard_links section.acknowledgement_section .fee_schedule p b {
    font-style: italic;
}

.dashboard_links section.acknowledgement_section .fee_schedule h6 {
    text-align: left;
    font-weight: bold;
    font-size: 15px;
}

.dashboard_links .fee_points small {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

.dashboard_links .fee_points p:nth-child(6) {
    margin-bottom: 5px;
}

.dashboard_links .fee_points p:nth-child(7) {
    margin-bottom: 5px;
}

.dashboard_links .cancellation_section h6{
    text-decoration: underline;
    margin-bottom: 20px;
}

.dashboard_links .cancellation_section small {
    font-size: 13px;
    font-weight: 600;
}

.dashboard_links section.cancellation_section ul li {
    font-size: 13px;
    margin-bottom: 7px;
}

.dashboard_links section.cancellation_section ul li:first-child {
    margin-top: 15px;
}

.dashboard_links section.cancellation_section ul li:last-child {
    font-size: 15px;
}

/* youth intake css */

.youth_container .youth_info h1{
    font-size: 32px;
}

.youth_container .youth_info .youth_form .row{
    padding: 0 18px;
}


.dashboard_links .youth_form form label {
    text-align: left;
    width: unset;
    margin-top: unset;
}

.youth_container .youth_info .youth_form h5 {
   text-decoration: none;
   margin-bottom: 15px;
   margin-top: 25px;
}

.youth_container .youth_info .youth_form .form-control {
    margin-bottom: 15px;
}

.youth_container .youth_info .youth_form .youth_buttons .options {
    display: flex;
    gap: 2px 15px;
    flex-wrap: wrap;
}

.request_buttons .options {
    display: flex;
    flex-direction: column;
}

.request_options {
    display: flex;
    gap: 2px 15px;
    flex-wrap: wrap;
}

.youth_container .youth_info p{
    margin-bottom: unset;
}

.youth_container .youth_form textarea {
    /* padding: 0 18px !important; */
    height: 100px;
}

.youth_container .youth_form textarea:focus {
    outline: none !important;
    box-shadow: unset !important;
}

.youth_container .youth_form .short_message{
    display: flex;
}

.youth_container .youth_form .short_message textarea {
    height: 30px !important;
}

.youth_container .acknowledgement_form.youth_form h4 {
    text-align: left;
    text-decoration: unset;
    font-size: 26px;
    font-weight: 500;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
}

.youth_container .youth_form p.inner_heading {
    font-size: 1.25rem;
    font-weight: 600;
}

.youth_container .youth_form .medication_youth{
    display: flex;
} 

.youth_container .youth_form .medication_youth div{
    width: 100%;
} 

.youth_container .youth_form .medication_youth i:hover{
    cursor: pointer;
} 

.youth_container .youth_form span{
    font-size: 1.25rem;
    font-weight: 600;
} 

/* responsive css */

@media only screen and (max-width: 1499px) {
    .container {
        max-width: 1080px;
    }

    .header {
        width: calc(100% - 240px);
        margin-left: 240px;
        padding: 10px 30px;
        height: 60px;
    }

    .main_sidebar {
        width: 240px;
        padding: 20px 10px;
    }

    .counselling_container {
        width: calc(100% - 240px);
        height: 100%;
        margin-left: 240px;
    }

    .main_sidebar .sidebar_logo img {
        width: 179px;
    }

    .logo_box a img {
        width: 300px;
    }

    .login_container .login_details {
        padding: 33px;
        width: 450px;
    }

    .login_container .login_details h1 {
        font-size: 30px;
    }

    .login_container .login_details .login_options label,
    .login_container .form_container .login_details a,
    .settings_section .counsel_first_last_name .counsel_name p:nth-child(2),
    .payment_details_section .counselling_profile_container h6 {
        font-size: 15px;
    }

    .login_container .form_container .login_options [type="radio"]:checked+label:before,
    .login_container .form_container .login_options [type="radio"]:not(:checked)+label:before {
        width: 14px;
        height: 14px;
        top: 4px;
    }

    .login_container .form_container .login_options [type="radio"]:checked+label:after,
    .login_container .form_container .login_options [type="radio"]:not(:checked)+label:after {
        top: 6px;
        left: 1px;
        width: 10px;
        height: 10px;
    }

    .login_container .login_details form .form-group label,
    .login_container .login_details form div:nth-child(5) button,
    .counselling_card_section .counselling_form_container label,
    .settings_section .counsel_first_last_name .counsel_name p:nth-child(1),
    .settings_section .counsel_edit_button .editable_items .user_name p:nth-child(1),
    .counselling_bio_section .counselling_bio_form form .form-group label,
    .header .header_items .dashboard_user .user_dropdown p {
        font-size: 14px;
    }

    .login_container .login_details form .submit_button {
        font-size: 18px;
        padding: 10px;
        margin-top: 25px;
    }

    .form-control {
        height: 50px;
    }

    .login_container .login_details form div:nth-child(5) {
        margin-top: 10px;
    }

    .login_container .login_details form .form-group label {
        font-weight: 400;
        margin-bottom: 5px;
    }

    .main_sidebar .sidebar_components p {
        margin-bottom: unset;
        font-size: 14px;
    }

    .main_sidebar .sidebar_components div img {
        width: 17px;
        height: 17px;
    }

    .table_container .table_data thead th,
    .table_container table tbody tr td:nth-child(1),
    .table_container table tbody tr td:nth-child(2),
    .settings_section .counsel_edit_button .editable_items .user_name p:nth-child(2),
    .counselling_table_container table thead tr th,
    .counselling_table_container table tbody tr td,
    .profile_section .counselling_basic_info div p:first-child,
    .profile_section .counselling_education div p:first-child {
        font-size: 15px;
    }

    .table_container table tbody tr td:nth-child(3),
    .payment_details_section p small {
        font-size: 13px;
    }

    .table_container table tbody tr td:nth-child(4) button,
    .table_container table tbody tr td:nth-child(5) small {
        padding: 4px 15px;
        font-size: 14px;
    }

    .header .dashboard_user h6 {
        font-size: 16px;
    }

    .dashboard_user img:nth-child(1) {
        width: 40px;
        height: 40px;
    }

    .counselling_card_section form button,
    .counselling_bio_section .counselling_bio_buttons button,
    h5,
    .payment_section form button {
        font-size: 18px;
    }

    .counselling_credit_details .credit_container .login_options [type="radio"]:checked+label:before,
    .counselling_credit_details .credit_container .login_options [type="radio"]:not(:checked)+label:before {
        top: 4px;
        width: 14px;
        height: 14px;
    }

    .counselling_credit_details .credit_container .login_options [type="radio"]:checked+label:after,
    .counselling_credit_details .credit_container .login_options [type="radio"]:not(:checked)+label:after {
        width: 10px;
        height: 10px;
        left: 1px;
    }

    .counselling_card_section .counselling_form_container {
        padding: 40px;
    }

    .counselling_bio_section .counselling_bio_form {
        width: 600px;
        min-width: 500px;
    }

    .table_container form .table_data {
        overflow-x: auto;
    }

    .table_container form .table_data table {
        width: 1400px;
    }

    .counselling_table_container form .table_data {
        overflow-x: auto;
    }

    .counselling_table_container .upcoming_appointment_table form table {
        width: 1400px;
    }

    .counselling_table_container .past_appointment_table form table {
        width: 1800px;
    }

    .profile_section .counselling_basic_info_container {
        width: 100%;
    }

    .profile_section .counselling_basic_info div p:last-child,
    .profile_section .counselling_education div p:last-child {
        font-size: 15px;
    }

    .counselling_table_container h1,
    h2 {
        font-size: 30px;
    }

    .payment_section .payment_form form .col-xl-4 {
        flex: 0 0 auto;
        width: 47.333333%;
    }
}

@media only screen and (max-width: 991px) {
    .container {
        max-width: 780px;
    }
}

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

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