.ui-datepicker-week-end .ui-state-default {
}

.by-start.datepicker-wrap .event-filter-date .the-datepicker__deselect a.the-datepicker__deselect-button {
    display: none;
}

.single-job-banner .job-form {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    width: 0;
    overflow: hidden;
}

.single-job-banner .job-form.active {
    width: auto;
    overflow: visible;
    transition: all 0.3s ease-in-out;
}

.job-form .form-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.job-form form {
    width: 100%;
    flex-direction: column;
    display: flex;
    gap: 10px;
    margin-right: 0;
    min-width: 300px;
    padding: 20px;
    background-color: rgba(28, 27, 27, 0.94);
    max-width: 500px;
}

@media (min-width: 720px) {
    .job-form .form-wrap {
        width: 90%;
        justify-content: flex-end;
    }

    .job-form form {
        width: 80%;
    }
}

@media (min-width: 900px){
    .job-form .form-wrap {
        width: 80%;
    }

    .job-form form {
        width: 60%;
    }
}

form .form-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-right: 0;
    margin-left: 0;
}

.form-input input {
    padding: 10px;
    width: 100%;
    flex-basis: 50%;
    margin-right: 0;
}

.form-input label {
    margin-left: 0;
    font-size: 15px;
    flex-basis: 40%;
}

.form-input textarea {
    padding: 10px;
    width: 100%;
}

.form-input button {
    padding: 8px 20px;
    margin-left: 0;
    margin-right: 0;
}

.form-input.submit {
    flex-direction: row;
    gap: 20px;
}

.file.form-input {
    flex-direction: row;
    align-items: center;
    padding: 5px;
    background-color: #1c0101;
}

.form-input.submit {
}

.form-input.button {
    display: flex;
    flex-direction: row;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 15px;
}

.button .cancel {
    flex-basis: 30%;
    background-color: #ddd5d5;
    color: #201e1e;
    border: none;
    border-radius: 3px;
    text-transform: capitalize;
}

.button .submit {
    flex-grow: 1;
    background-color: #68d73d;
    border: none;
    border-radius: 3px;
}

.select-wrap select {
    appearance: base-select;
    color: #0054a8;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #e4e4e7;
    border-radius: calc(0.5rem - 2px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

select > button {
    display: flex;
    width: 100%;
    font-family: inherit;
    color: currentColor;
}

select > button > svg {
    margin: 0 0 0 auto;
    width: 1.2rem;
    height: 1.2rem;
}

select::picker(select) {
    appearance: base-select;
    border: 1px solid #e4e4e7;
    padding: 0.25rem;
    margin-top: 0.25rem;
    border-radius: calc(0.5rem - 2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  0 2px 4px -2px rgba(0, 0, 0, 0.1);
    cursor: default;
    transition: opacity 225ms ease-in-out, transform 225ms ease-in-out;
    transform-origin: top;
    transform: translateY(0);
    opacity: 1;

    @starting-style {
        transform: translateY(-0.25rem) scale(0.95);
        opacity: 0;
    }
}

select:focus-visible {
    outline: 2px solid #a1a1aa;
    outline-offset: -1px;
}

select:has(option:not([hidden]):checked) {
    color: #18181b;
}

select option::after {
    content: "";
    width: 1rem;
    height: 1.5rem;
    margin-left: auto;
    opacity: 0;
    background: center / contain no-repeat
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2318181b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
}

select option:checked::after {
    opacity: 1;
}

select option {
    padding: 10px;
    color: #0054a8;
    cursor: pointer;
}

.job-filter-wrap .filter-form-wrap form {
    background-color: #ffffff;
}

.job-filter-wrap form .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-filter-wrap .form-buttons button {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    border-style: none;
    border-color: #ffffff;
    border-radius: 3px;
    background-color: #ffcc2a;
    font-size: 16px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.job-filter-wrap .form-buttons button:hover {
    transition: all 0.3s ease-in-out;
    background-color: #c69e1d;
}

.job-filter-wrap .form-buttons a {
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    border-style: none;
    border-color: #ffffff;
    border-radius: 3px;
    background-color: #d3d2cf;
    font-size: 16px;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.job-filter-wrap .form-buttons a:hover {
    transition: all 0.3s ease-in-out;
    background-color: #c1c0be;
}

.job-excerpt-listing .category {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.job-excerpt-listing .category span {
    color: #c69e1d;
}

.event-filter-wrap .filter-apply a {
    border-style: none;
    border-color: #ffffff;
    border-radius: 3px;
    background-color: #d3d2cf;
    font-size: 16px;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 10px;
    margin-top: 10px;
}

.event-filter-wrap .filter-apply {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-filter-wrap .filter-apply a:hover {
    transition: all 0.3s ease-in-out;
    background-color: #c1c0be;
}

.mentor-filter-wrap .filter-apply a {
    border-style: none;
    border-color: #ffffff;
    border-radius: 3px;
    background-color: #d3d2cf;
    font-size: 16px;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 15px;
    margin-top: 10px;
    text-transform: capitalize;
}

.filter-checkbox .forms {
    padding: 10px;
    border-radius: 3px;
    background-color: #e7eeec;
    border: none;
    outline: none;
}

.forms-label {
    font-size: 16px;
    color: #0054a8;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: capitalize;
}

.mentor-page .skills.categories {
    background-color: #dfece9;
}

.mentor-page .about-wrap .about-mentor {
    padding-top: 10px;
}

.mentorship-form-text textarea {
    outline: none;
    border: none;
    background-color: #f2f2f2;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #201e1e;
    border-radius: 3px;
}

.mentorship-form-submit button {
    outline: none;
    border: none;
    padding: 10px 20px;
    background-color: #dfece9;
    font-size: 16px;
    text-transform: capitalize;
    color: #0d2002;
    border-radius: 3px;
    cursor: pointer;
}

.mentorship-form {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
}

.mentorship-form-text {
    padding-top: 10px;
    padding-bottom: 10px;
}

.mentor-info-sub {
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    align-items: center;
}

.mentor-info-sub-quest {
    margin-left: 0;
    margin-right: 0;
    padding: 5px 10px;
    background-color: #f2f2f2;
}

.mentor-info-sub-ans {
    margin-left: 0;
    margin-right: 0;
    padding: 5px 10ps 5px 10px;
}

.mentor-info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.mentor-info-wrap p {
    margin-left: 0;
    margin-right: 0;
}

.mentor-info-sub-ans p {
    padding-left: 10px;
    padding-right: 10px;
}

.mentor-info {
    padding-top: 20px;
    padding-bottom: 20px;
}

p.ready-to-learn {
    font-weight: 700;
}

.mentees-comment .submit button {
    cursor: pointer;
}