/*
Template Name: Halping - Online Find Caregiving Jobs Mobile Template
Author: Askbootstrap
Author URI: https://themeforest.net/user/askbootstrap
Version: 0.1
*/

/*
- Body
- Scroll bar
- Color
- Index
- Step-1
- Welcome
- Home
- Upgrade
- My favorites
- Notification
- Booking-step-1
- Booking step 4
- Profile
- Chat
- Video call
- More
- Map
*/

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

/* :root {
    --dark: #4a5568;
    --white: #ffffff;
    --light: #f5f1ed;
    --lighter: #faf8f6;
    --primary: #7FA99B;
    --light-primary: #a8c5ba;
    --secondary: #9ca3af;
    --danger: #e07a7a;
    --warning: #d4a574;
    --success: #7FA99B;
    --light-success: #a8c5ba;
    --lighter-success: #e8f2ef;
    --earth-mint: #7FA99B;
    --rose-sand: #c9a89a;
    --golden-aura: #d4a574;
    --olive-sage: #a8b89f;
    --cloud-white: #f5f1ed;
}
 */
:root {
    --dark: #4a5568;
    --dark-rgb: 74, 85, 104;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;
    --light: #f5f1ed;
    --light-rgb: 245, 241, 237;
    --lighter: #faf8f6;
    --lighter-rgb: 250, 248, 246;
    --primary: #66ae98;
    --primary-rgb: 102, 174, 152;
    --light-primary: #a8c5ba;
    --light-primary-rgb: 168, 197, 186;
    --secondary: #9ca3af;
    --secondary-rgb: 156, 163, 175;
    --danger: #e07a7a;
    --danger-rgb: 224, 122, 122;
    --warning: #d4a574;
    --warning-rgb: 212, 165, 116;
    --success: #7fa99b;
    --success-rgb: 127, 169, 155;
    --light-success: #a8c5ba;
    --light-success-rgb: 168, 197, 186;
    --lighter-success: #e8f2ef;
    --earth-mint: #7fa99b;
    --rose-sand: #c9a89a;
    --golden-aura: #d4a574;
    --olive-sage: #a8b89f;
    --cloud-white: #f5f1ed;
    --placeholder-color: #6c757d;
    --facebook-color: #1877f2;
    --dark-primary: #3e9278;
    --primary-gradient: linear-gradient(
        90deg,
        #3e9278 0%,
        #66ae98 75%,
        #51a98e 100%
    );

    /* teacher */

    --teacher-primary: "#95b8ac";
    --teacher-primary-dark: "#72a89a";
    --teacher-primary-gradient: linear-gradient(
        90deg,
        #72a89a 0%,
        #7fa99a 25%,
        #8ab7a7 75%,
        #72a89a 100%
    );
    --teacher-light-primary-gradient: linear-gradient(
        90deg,
        #ebecf0 0%,
        #eef1f4 25%,
        #f0f2f6 75%,
        #edf0f4 100%
    );

    /* Bootstrap theme bridge */
    --bs-dark: var(--dark);
    --bs-dark-rgb: var(--dark-rgb);
    --bs-light: var(--light);
    --bs-light-rgb: var(--light-rgb);
    --bs-primary: var(--primary);
    --bs-primary-rgb: var(--primary-rgb);
    --bs-secondary: var(--secondary);
    --bs-secondary-rgb: var(--secondary-rgb);
    --bs-success: var(--success);
    --bs-success-rgb: var(--success-rgb);
    --bs-warning: var(--warning);
    --bs-warning-rgb: var(--warning-rgb);
    --bs-danger: var(--danger);
    --bs-danger-rgb: var(--danger-rgb);
    --bs-link-color: var(--primary);
    --bs-link-hover-color: var(--primary);
    --bs-focus-ring-rgb: var(--primary-rgb);
}

/* body */

*,
*::before,
*::after {
    box-sizing: border-box !important;
}

body {
    font-family: "Rubik", sans-serif;
    font-size: 13px;
    background-color: var(--lighter);
    color: var(--dark);
}

a {
    text-decoration: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.2) !important;
}

/* Placeholder styling */
::placeholder {
    color: var(--placeholder-color) !important;
    opacity: 1;
}

.form-control::placeholder {
    color: var(--placeholder-color) !important;
}

/* Select placeholder - only empty value option */
.form-select option[value=""] {
    color: var(--placeholder-color);
}

/* Normal options should have dark color */
.form-select option:not([value=""]) {
    color: var(--dark);
}

/* Selected placeholder state */
.text-placeholder {
    color: var(--placeholder-color) !important;
}

/* When select has value, show normal color */
.form-select:not(.text-placeholder) {
    color: var(--dark);
}

/* scroll bar */

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid transparent;
    background-clip: padding-box;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.15);
    -webkit-box-shadow:
        inset -1px -1px 0 rgba(0, 0, 0, 0.05),
        inset 1px 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow:
        inset -1px -1px 0 rgba(0, 0, 0, 0.05),
        inset 1px 1px 0 rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar {
    width: 4px;
    background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background: hsla(0, 0%, 53.3%, 0.4);
}

h1 {
    font-size: 48px;
    font-weight: 500;
}

h2 {
    font-size: 40px;
    font-weight: 500;
}

h3 {
    font-size: 32px;
    font-weight: 500;
}

h4 {
    font-size: 24px;
    font-weight: 500;
}

h5 {
    font-size: 20px;
    font-weight: 500;
}

h6 {
    font-size: 15px;
    font-weight: 500;
}

.fs-15 {
    font-size: 15px;
    font-weight: 400;
}

small {
    font-size: 11px;
    font-weight: 400;
}

/* color */

.bg-light {
    background-color: var(--light) !important;
}

.bg-lighter {
    background-color: var(--lighter);
}

.light-bg-primary {
    background-color: var(--light-primary);
}

.bg-danger {
    background-color: var(--danger) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.fa-google {
    background: conic-gradient(
            from -45deg,
            #ea4335 110deg,
            #4285f4 90deg 180deg,
            #34a853 180deg 270deg,
            #fbbc05 270deg
        )
        73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.light-bg-success {
    background-color: var(--light-success) !important;
}

.bg-golden-aura {
    background-color: var(--golden-aura) !important;
}

.bg-cloud-white {
    background-color: var(--cloud-white) !important;
}

.progress.bg-cloud-white {
    background-color: white !important;
}

/* Password Strength Colors */
.bg-pw-red {
    background-color: #e74c3c !important;
}

.bg-pw-orange {
    background-color: #e67e22 !important;
}

.bg-pw-yellow {
    background-color: #f1c40f !important;
}

.bg-pw-green {
    background-color: #2ecc71 !important;
}

.text-pw-red {
    color: #e74c3c !important;
}

.text-pw-orange {
    color: #e67e22 !important;
}

.text-pw-yellow {
    color: #f1c40f !important;
}

.text-pw-green {
    color: #2ecc71 !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-muted {
    color: #8292b4 !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    box-shadow: 0px 6px 10px 2px rgba(var(--primary-rgb), 0.25);
    border: 1px solid var(--primary) !important;
    color: #fff !important;
}

.btn-outline-primary {
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: transparent !important;
    color: var(--primary) !important;
}

.btn-outline-primary:focus {
    color: var(--primary) !important;
}

.btn-warning {
    background-color: var(--warning) !important;
    color: var(--white) !important;
    border: none;
}

.btn-danger {
    background-color: var(--danger) !important;
    border: none;
}

.btn {
    border-radius: 5rem;
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 500;
}

.btn-sm {
    border-radius: 8px;
    padding: 8px 10px;
    font-weight: 500;
    font-size: 14px;
}

.btn-lg {
    border-radius: 0.5rem;
    padding: 15px 14px;
    font-size: 16px;
    font-weight: 500;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-top-4 {
    border-radius: 2rem 2rem 0 0 !important;
}

.icon-sm {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-lg {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-35 {
    width: 35%;
}

.offcanvas-footer {
    padding: 1rem;
}

.fw-bold {
    font-weight: 600 !important;
}

.border {
    border: 1px solid #eaf1f5 !important;
}

.border-bottom {
    border-bottom: 1px solid #eaf1f5 !important;
}

.shadow {
    -webkit-box-shadow: 0px 4px 10px rgb(0 77 255 / 4%) !important;
    box-shadow: 0px 4px 10px rgb(0 77 255 / 4%) !important;
}

.duration-box .btn {
    padding: 0px !important;
    height: 23px;
    width: 23px;
    font-size: 11px !important;
    border: none !important;
    border-radius: 6px;
}

.duration-box input {
    width: 33px;
    text-align: center;
    border: none;
}

.duration-box {
    background: #fff;
    border-radius: 7px;
    padding: 2px;
    border: 1px solid #eaf1f6;
}

.favorites-item img {
    margin: auto;
    width: 75px;
    background: #fff;
    padding: 4px;
    -webkit-box-shadow: 0px 4px 10px rgb(0 77 255 / 4%) !important;
    box-shadow: 0px 4px 10px rgb(0 77 255 / 4%) !important;
}

.favorites-item small {
    font-size: 9px;
}

.favorites-item .lh-1 {
    line-height: 10px !important;
    margin-top: 3px !important;
}

/* index */

.logo-img {
    width: 150px;
}

.card-osahan-box .form-check-input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0px;
    background: transparent !important;
    background-image: none !important;
}

.card-osahan-box {
    position: relative;
}

/* step-1 */

.osahan-box {
    height: 90px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* welcome */

.blue-logo {
    width: 150px;
}

/* home */

.profile {
    width: 40px;
}

.notification-icon {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.create-job-background {
    background-image: url(../img/create-job-background.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile-img {
    width: 80px;
}

.profile-detail {
    position: relative;
}

.osahan-card {
    display: flex;
    gap: 1rem;
}

.osahan-card .profile-img {
    margin-bottom: auto;
    width: 70px;
    height: 70px;
}

.osahan-card .d-flex.align-items-end.gap-4 {
    width: 100%;
}

.osahan-card .d-flex.align-items-end.gap-4 p i {
    margin-right: 8px !important;
}

.osahan-card .d-flex.align-items-end.gap-4 p {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #8292b4;
}

.osahan-card .d-flex.align-items-end.gap-4 p span {
    margin-left: 5px !important;
    margin-top: auto;
}

.osahan-card .d-flex.align-items-end.gap-4 p.fw-bold {
    font-weight: 500 !important;
    color: #000;
}

.osahan-card
    .d-flex.align-items-end.gap-4
    .d-flex.align-items-center.justify-content-between.mb-3 {
    margin-bottom: 7px !important;
}

.osahan-card
    .d-flex.align-items-end.gap-4
    .d-flex.align-items-center.justify-content-between.mb-3
    i.bx {
    background: #e0ebf3;
    padding: 3px;
    border-radius: 12px;
    color: #8092b9;
}

.osahan-header-tab .nav-tabs .nav-link {
    margin: 0px;
    padding: 15px 14px 15px 14px;
    text-align: center;
    width: 100%;
    color: #fff !important;
    font-size: 13px;
    letter-spacing: 0.4px;
    border-bottom: 3px solid #0e6dfd;
}

.osahan-header-tab .nav-tabs .nav-link.active {
    color: #ffc325 !important;
    border-bottom: 3px solid;
}

.osahan-footer {
    border-top: 1px solid #eaf1f6;
}

.osahan-footer a {
    border-bottom: 3px solid transparent;
    border-top: 3px solid transparent;
    padding: 8px 8px;
}

.osahan-footer a.text-primary {
    border-bottom: 3px solid #2474ff;
}

.form-check .form-check-label {
    font-size: 13px;
    line-height: 25px;
}

.form-check-input {
    width: 20px;
    margin-top: 2px;
    height: 20px;
    accent-color: var(--primary);
    border: 1px solid var(--light-primary) !important;
    -webkit-box-shadow: 0px 4px 10px rgb(127 169 155 / 12%) !important;
    box-shadow: 0px 4px 10px rgb(127 169 155 / 12%) !important;
    border-radius: 6px !important;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary) !important;
    background-size: 14px;
}

.form-switch .form-check-input {
    border-radius: 50px !important;
}

.form-switch.form-check-reverse .form-check-input:checked {
    background-size: auto;
}

/* upgrade */

.upgrade-background {
    background-image: url(../img/upgrade-background.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* my favorites */

.btn-filter {
    position: absolute;
    bottom: 12%;
    right: 5%;
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-tabs .btn-outline-primary {
    color: var(--secondary) !important;
    border: none !important;
}

.custom-tabs .btn-check:checked + .btn-outline-primary {
    color: var(--white) !important;
}

.favorites-slider,
.personal-img,
.landing-slider {
    display: none;
}

.favorites-slider.slick-initialized,
.personal-img.slick-initialized,
.landing-slider.slick-initialized {
    display: unset;
}

/* notification */

.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
}

.nav-tabs .nav-link {
    background: transparent !important;
    color: var(--secondary) !important;
    border-radius: 0;
    padding: 4px 0;
    margin: 4px 0px;
    font-weight: 600;
    border: none;
}

.nav-tabs .nav-link.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
}

.profile-sm {
    width: 50px;
}

.profile-lg {
    width: 80px;
}

/* booking-step-1 */

.custom-check .btn-outline-primary {
    border: none !important;
    background: var(--light);
    color: var(--secondary) !important;
}

.custom-check .btn-check:checked + .btn-outline-primary {
    color: var(--white) !important;
    box-shadow: 0px 6px 10px 2px rgba(127, 169, 155, 0.25);
}

/* booking step 4 */

.nav-pills .nav-link {
    color: var(--secondary);
}

/* profile */

.personal-img {
    position: relative;
}

.profile-navbar {
    position: absolute;
    z-index: 1;
}

.profile-content {
    position: relative;
    margin-top: -40px;
}

.personal-profile-img {
    margin-top: -38px;
}

.border-warning {
    border-color: 1px solid var(--warning) !important;
}

/* chat */

.rounded-left-0 {
    border-radius: 0.5rem 0.5rem 0.5rem 0;
}

.rounded-right-0 {
    border-radius: 0.5rem 0.5rem 0 0.5rem;
}

/* video call */

.video-background {
    background-image: url(../img/child-paying.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* more */

.edit-icon {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

/* map */

.map-close {
    position: absolute;
}
