:root {
    --greenoak-black2: #5e3918;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #5e3918;
}

.service-details__text {
    margin-bottom: 15px;
}

.floens-breadcrumb.list-unstyled {
    display: none;
}

.page-header {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-header h2.page-header__title {
    margin: 0;
    font-size: 36px;
}

.services-page .service-card-two__bottom {
    justify-content: end;
}

.service-card-two__title {
    font-size: 20px;
    margin: 0;
    text-align: center;
}

.topbar-one {
    background-color: #5e3918;
}

.topbar-one__info__item {
    color: #eee;
}

.topbar-one__info__item a:hover {
    color: #fff;
}

.topbar-one__social a {
    color: #eee;
}

.topbar-one__social a:hover {
    color: #fff;
}

.preloader {
    background-color: #fff;
}

.preloader__image {
    background-size: auto 100px;
}

.sidebar-one__item:not(:last-child) img {
    background: #fff;
    padding: 8px;
}

.mobile-nav__content .logo-box img {
    background: #fff;
    padding: 8px;
}

.form-one input[type="number"] {
    display: block;
    width: 100%;
    background-color: transparent;
    color: var(--greenoak-text, #7a736a);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    border: none;
    outline: none;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--greenoak-border-color, #ded8d3);
    transition: all 300ms ease;
}

.site-notifications {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    transform: translateY(120px);
    transition: all 0.3s;
}

.site-notifications .inner-notify {
    background: #fff;
    border-radius: 5px;
    border-left: 3px solid #219a00;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-notifications .inner-notify .message-container {}

.site-notifications .inner-notify .message-container p {
    margin: 0;
    padding-left: 10px;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.site-notifications .inner-notify .svg-container svg.ft-green-tick {
    width: 30px;
    height: 30px;
}


/* @supports ((-webkit-animation: grow 0.5s cubic-bezier(0.25, 0.25, 0.25, 1) forwards) or (animation: grow 0.5s cubic-bezier(0.25, 0.25, 0.25, 1) forwards)) {} */

.site-notifications .inner-notify .svg-container .tick {
    stroke-opacity: 0;
    stroke-dasharray: 29px;
    stroke-dashoffset: 29px;
}

.site-notifications .inner-notify .svg-container .circle {
    fill-opacity: 0;
    stroke: #219a00;
    stroke-width: 16px;
    transform-origin: center;
    transform: scale(0);
}

.site-notifications.show .inner-notify .svg-container .circle {
    -webkit-animation: grow 1s cubic-bezier(0.25, 0.25, 0.25, 1.25) forwards;
    animation: grow 1s cubic-bezier(0.25, 0.25, 0.25, 1.25) forwards;
}

.site-notifications.show .inner-notify .svg-container .tick {
    -webkit-animation: draw 0.5s cubic-bezier(0.25, 0.25, 0.25, 1) forwards;
    animation: draw 0.5s cubic-bezier(0.25, 0.25, 0.25, 1) forwards;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.site-notifications.show {
    transform: translateY(0);
}

@-webkit-keyframes grow {
    60% {
        transform: scale(0.8);
        stroke-width: 4px;
        fill-opacity: 0;
    }
    100% {
        transform: scale(0.9);
        stroke-width: 8px;
        fill-opacity: 1;
        fill: #219a00;
    }
}

@keyframes grow {
    60% {
        transform: scale(0.8);
        stroke-width: 4px;
        fill-opacity: 0;
    }
    100% {
        transform: scale(0.9);
        stroke-width: 8px;
        fill-opacity: 1;
        fill: #219a00;
    }
}

@-webkit-keyframes draw {
    0%,
    100% {
        stroke-opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes draw {
    0%,
    100% {
        stroke-opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.site-notifications .inner-notify .svg-container svg.error circle.solid {
    stroke: #ddd;
}

.site-notifications .inner-notify .svg-container svg.error circle.animation {
    transition: stroke-dashoffset 200ms linear 260ms, stroke-dasharray 200ms linear 260ms;
    stroke: #f56060;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 2;
}

.site-notifications .inner-notify .svg-container svg.error line {
    stroke: #f56060;
}

.site-notifications .inner-notify .svg-container svg.error line {
    stroke-dashoffset: -50px;
    stroke-dasharray: 50px;
}

.site-notifications .inner-notify .svg-container svg.error line.left {
    transition: stroke-dashoffset 120ms linear 0ms;
}

.site-notifications .inner-notify .svg-container svg.error line.right {
    transition: stroke-dashoffset 120ms linear 160ms;
}

.site-notifications .inner-notify .svg-container svg.error {
    width: 25px;
    height: 25px;
}

.site-notifications .inner-notify.errors {
    border-color: #f56060;
}

.site-notifications.show .inner-notify .svg-container svg.error circle.animation {
    transition: stroke-dashoffset 200ms linear 260ms, stroke-dasharray 200ms linear 260ms;
    stroke-dasharray: 200, 0;
    stroke-dashoffset: 0;
}

.site-notifications.show .inner-notify .svg-container svg.error line.left {
    transition: stroke-dashoffset 120ms linear 520ms;
    stroke-dashoffset: 0;
}

.site-notifications.show .inner-notify .svg-container svg.error line.right {
    transition: stroke-dashoffset 120ms linear 700ms;
    stroke-dashoffset: 0;
}

.site-notifications .inner-notify.errors .svg-container.successsvg {
    display: none;
}

.site-notifications .inner-notify .svg-container.successsvg {
    display: block;
}

.site-notifications .inner-notify .svg-container.errorsvg {
    display: none;
}

.site-notifications .inner-notify.errors .svg-container.errorsvg {
    display: block;
}

.greenoak-btn[disabled] {
    opacity: 0.5;
}