.google-maps-marker {
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    padding: 10px 15px;
    position: relative
}

.google-maps-marker:after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 100%;
    transform: translate(-50%);
    width: 0;
    border-top-width: 8px;
    border-top-style: solid;
    border-top-color: inherit;
}

/* Form */
:focus-visible {
    outline: none;
}

input,
select {
    height: 40px;
    padding: 0 16px;
}

textarea {
    padding: 16px;
}

input,
textarea,
select {
    line-height: 18px;
    font-weight: 400;
    color: var(--bs-gray-900);
    border: 1px solid #C6C6C6;
    border-radius: 0px;
    resize: none;
    margin: 0;
    cursor: pointer;
}

input::placeholder,
textarea::placeholder,
select,
label {
    font-size: 12px;
}

small {
    font-size: 12px;
}

@media (min-width: 992px) {
    input::placeholder,
    textarea::placeholder,
    select,
    label {
        font-size: 14px;
    }
}

option {
    cursor: pointer;
}

option:disabled {
    color: #33333350;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    border: 1px solid #333333;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--bs-gray-900);
}

input[type="checkbox"] {
    all: unset;
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:before {
    display: block;
    content: "";
    width: 22px;
    height: 22px;
    border: 1px solid var(--bs-gray-600);
    border-radius: 0px;
}

input[type="checkbox"]:hover:before,
input[type="checkbox"]:focus:before,
input[type="checkbox"]:checked:before {
    border: 1px solid var(--bs-gray-600);
}

input[type="checkbox"]:after {
    content: "✓";
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
}

input[type="checkbox"]:checked:after {
    opacity: 1;
}

/* Card */
.consultation-request-card {
    width: 300px;
    transition: all 0.5s ease;
}

.consultation-request-card:hover,
.consultation-request-card:has(.collapse.show) {
    background-color: #33333315;
}

.consultation-request-card .hide-icon {
    display: none;
}

.consultation-request-card:has(.collapse.show) .show-icon {
    display: none;
}

.consultation-request-card:has(.collapse.show) .hide-icon {
    display: block;
}


.offcanvas.offcanvas-bottom {
    height: auto !important;
}

.modal-backdrop{
    z-index: 1 !important;
}