/* -----Header Auth Buttons----- */

.auth-buttons {
    margin-left: -16px;
    width: 100%;
    display: flex;
    gap: 12px;
}

.login-button {
    padding-left: 16px;
    padding-right: 16px;
    height: 48px;
    border-radius: 12px;
    background-color: transparent;
    font-size: 14px;
}

.register-button {
    padding-left: 16px;
    padding-right: 16px;
    height: 48px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
}

.login-icon {
    margin-right: 6px;
    width: 16px;
    height: 16px;
}

.login-button:hover .icon-color {
    fill: white !important;
    transition: 0.4s cubic-bezier(0.29, 0.13, 0.27, 0.74);
}


/* -----Home Cards Buttons */

.doctor-card-loadmore-button {
    padding-left: 8px;
    padding-right: 8px;
    height: 36px;
    border: 1px solid #000000;
    background-color: transparent;
    border-radius: 10px;
    font-size: 12px;
    color: #000000;
}

.doctor-card-loadmore-button:hover {
    border: none;
    background-color: #00000060;
    color: #fff;
    transition: 0.4s cubic-bezier(0.29, 0.13, 0.27, 0.74);
}

.blog-card-loadmore-button {
    padding-left: 8px;
    padding-right: 8px;
    height: 36px;
    background-color: transparent;
    border-radius: 10px;
    font-size: 12px;
}

.blog-card-loadmore-button:hover {
    border: none;
    color: #fff;
    transition: 0.4s cubic-bezier(0.29, 0.13, 0.27, 0.74);
}

.toggle {
    cursor: pointer;
    display: inline-block;
}

.toggle-switch {
    display: inline-block;
    background: #e8e8e8;
    border-radius: 16px;
    width: 40px;
    height: 24px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

.toggle-switch:before,
.toggle-switch:after {
    content: "";
}

.toggle-switch:before {
    display: block;
    background: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
    transition: 0.4s cubic-bezier(0.29, 0.13, 0.27, 0.74);
}

.toggle-checkbox:checked+.toggle-switch {
    background: #1abb68;
}

.toggle-checkbox:checked+.toggle-switch:before {
    left: 20px;
}

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.request-onsite-meet {
    background-color: transparent;
}

.p-p-button {
    margin-top: 32px;
}

.dr-card__mobile-button__button {
    display: none;
}

@media (max-width: 480px) {
    .login-button,
    .register-button,
    .doctor-card-loadmore-button,
    .dr-card__mobile-button__button {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
        margin-bottom: 16px;
        height: 42px;
    }
}