﻿
/**new search part*/

.search .mobile-filter-overlay {
    position: fixed;
    z-index: 342;
    inset: 0;
    background-color: #fff;
    height: 100%;
    overflow: scroll;
    overflow-x: hidden;
    max-width: 100vw;
    display: none;
    padding-bottom: 80px;
}

    .search .mobile-filter-overlay.active {
        display: block;
    }

.search .mobile-filter-overlay__submit {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: inherit;
    display: none;
}

    .search .mobile-filter-overlay__submit.active {
        display: block;
    }

.search .mobile-filter-overlay__top {
    height: 151px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
}

.search .mobile-filter-overlay__bottom {
    padding-top: 32px;
}

.search .mobile-filter-overlay select {
    border-radius: 100px;
}

.search .mobile-filter-overlay .search__params {
    border: 0;
}

.search .mobile-filter-overlay .search__params__container {
    border: 1px solid #ccc;
    border-radius: 100px;
}

.search .mobile-filter-overlay .search__dropdown {
    border-radius: 0;
    box-shadow: none;
    padding: 10px 10px 0;
    position: relative;
    z-index: 0;
}

.search .mobile-filter-overlay .search__input__field {
    padding: 0 20px;
}

.search .mobile-filter-overlay .search__clear {
    right: 15px;
}

.search .mobile-filter-overlay .form-check {
    padding-left: 0;
}

.search .search__dropdown__actions__clear {
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    color: #212529;
    width: auto;
}

.search .search__dropdown__actions__confirm {
    border-radius: 0.2rem;
}

.search button {
    text-transform: none;
}

.search .search__dropdown__actions button{
    width: auto;
}

body.offcanvasActive {
    position: fixed;
    width: 100vw;
    height: 100%;
    margin-top: 0;
}

.navigation {
    border-bottom: 1px solid #ccc;
    /*position: sticky;*/
    top: 0;
    background-color: #fff;
    z-index: 11;
}

@media (min-width: 992px) {
    .navigation {
        z-index: 13;
    }
}

body.offcanvasActive .navigation {
    position: fixed;
    width: 100%;
}

.navigation a {
    text-decoration: none;
    color: #000;
}

    .navigation a:hover {
        color: #454545;
    }

.navigation__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.25s linear;
    transform: translateX(100%);
}

body.offcanvasActive .navigation__backdrop {
    visibility: visible;
    opacity: 0.7;
    transform: translateX(0);
}

.navigation__container {
    position: relative;
    display: flex;
    gap: 10px;
    height: 80px;
}

.navigation__offcanvas {
    position: fixed;
    overflow: hidden;
    top: 0;
    height: 100vh;
    background-color: #fff;
    width: 100%;
    transform: translateX(100%);
    transition: 0.25s ease;
    z-index: 13;
    right: 0;
    max-width: 380px;
}

body.offcanvasActive .navigation__offcanvas {
    transform: translateX(0);
}

.navigation__offcanvas__close {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
    position: absolute;
    z-index: 13;
    cursor: pointer;
}

.navigation__panel {
    transform: translateX(0);
    transition: transform 0.25s ease;
    position: absolute;
    z-index: 1;
    overflow-x: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    padding: 125px 50px 10px;
}

.navigation__panel__active {
    transform: translateX(0);
}

.navigation__panel__pre {
    transform: translateX(100%);
}

.navigation__panel__post {
    transform: translateX(-100%);
}

.navigation__panel__back a {
    margin-bottom: 30px;
    padding-left: 20px;
    background-position: left 3px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    display: block;
}

.navigation__panel__title {
    margin-bottom: 30px;
}

.navigation__panel__links {
    margin-bottom: 6rem;
}

.navigation__panel__links a {
    font-weight: 700;
    font-size: 16px;
    color: #656565;
}

.navigation__panel .has-arrow a {
    display: block;
    padding-right: 30px;
    background-position: right 6px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.navigation__panel li {
    margin-bottom: 36px;
}

.navigation__logo {
    display: flex;
    width: 145px;
    align-self: center;
}

    .navigation__logo img {
        width: 100%;
    }

.navigation__nav {
    display: none;
}

@media (min-width: 992px) {
    .navigation__nav {
        display: flex;
        flex: 1 1 auto;
        justify-content: flex-end;
    }

        .navigation__nav .inline-list {
            display: flex;
        }

        .navigation__nav .list-inline-item {
            display: flex;
        }

        .navigation__nav .col {
            flex: 0 1 200px;
        }

    .navigation__nav__link {
        padding: 10px;
        text-decoration: none;
        color: #000;
        display: flex;
        align-items: center;
        position: relative;
        color: #000 !important;
        font-size: 15px !important;
        font-weight: 400;
    }

        .navigation__nav__link::after {
            content: "";
            border-bottom: 3px solid;
            left: 0;
            bottom: -1px;
            width: 0;
            position: absolute;
            transition: width 0.25s linear;
        }
}

.navigation__nav__item:hover a::after {
    width: 100%;
}

.navigation__nav__item {
    --fadeIn-duration: 0.7s;
}

    .navigation__nav__item:hover .navigation__dropdown {
        /*display: flex;*/
        opacity: 1;
        visibility: visible;
        transition: opacity var(--fadeIn-duration);
        animation: none;
    }

.navigation__dropdown {
    /*display: none;*/
    position: absolute;
    top: calc(100% + 1px);
    z-index: 14;
    background-color: #fff;
    left: 0;
    right: 0;
    box-shadow: 0 30px 20px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--fadeOut-duration) var(--fadeOut-delay), visibility calc(var(--fadeOut-duration) + var(--fadeOut-delay));
    animation: aa-dropdown-delay var(--fadeOut-delay) linear, aa-dropdown-duration var(--fadeOut-duration) linear var(--fadeOut-delay);
}

.navigation__dropdown__title {
    min-height: 50px;
}

.navigation__dropdown__links li {
    margin-bottom: 0.5rem !important;
}

.navigation__dropdown__links a {
    color: #656565;
    font-size: 14px;
    font-weight: 400;
    /*line-height: 27px;*/
}

.navigation__actions {
    display: flex;
    flex: 0 0 215px;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0 20px auto;
}

@media (min-width: 992px) {
    .navigation__actions {
        border-left: 1px solid #ccc;
        flex: 0 0 185px;
    }
}

.navigation__actions a {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    height: 30px;
    width: 30px;
    fill: #000;
    color: #000;
}

    .navigation__actions a:hover {
        background-color: #f7f7f7;
        fill: #000;
        color: #000;
    }

.navigation .toggleMobileNav {
    border: 0;
    background-color: transparent;
    display: flex;
    flex: 1;
    align-items: center;
    align-self: stretch;
    margin: 0;
    padding: 0;
    justify-content: center;
}

@media (min-width: 992px) {
    .navigation .toggleMobileNav {
        display: none;
    }
}

.navigation .language-select {
    display: block;
    width: 100%;
    padding: 3px 28px 3px 7px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 12px;
    border: 2px solid #ccc;
    border-radius: 3px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 33px;
    margin-bottom: 0;
}

.navigation .language-select {
    border-radius: 100px;
    width: 102px;
    margin-left: 10px;
}


@media (min-width: 992px) {
    .navigation .language-select {
        margin-left: 5px;
    }
}

.bar {
    color: black;
}

    .bar .text {
        color: grey;
    }

.scroll-to-top {
    display: none;
}

@media (min-width: 992px) {
    .scroll-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        opacity: 0;
        transition: opacity 0.2s ease;
        z-index: 20;
    }

        .scroll-to-top.active {
            opacity: 1;
        }
}

.scroll-to-top svg {
    color: #008276;
    fill: #008276;
}

.search {
    background-color: #004071;
    /*position: sticky;*/
    top: 81px;
    padding: 0 !important;
    z-index: 12;
    height: 70px;
}

body.filterPanelOpen .search {
    z-index: 10;
}

body.offcanvasActive .search {
    position: fixed;
    width: 100%;
}

.search form {
    margin: 0;
}

.search .row {
    max-width: 100%;
    --bs-gutter-x: 0 !important;
}

.search .form-check {
    display: flex;
    min-height: 1.5rem;
    margin: 0;
    padding: 0 0 0 10px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

    .search .form-check .form-check-input {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
        margin: 0;
        padding: 10px;
    }

        .search .form-check .form-check-input:checked[type=checkbox] {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' stroke='%23fff' fill='currentColor' cviewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
        }

        .search .form-check .form-check-input:focus, .search .form-check .form-check-input:active {
            box-shadow: none;
            border-color: rgba(0, 0, 0, 0.15) !important;
        }

        .search .form-check .form-check-input:checked {
            box-shadow: none;
            background-color: #00ae9e;
            border-color: #00ae9e;
        }

.search label {
    display: flex;
    flex: 1;
    padding: 12px 10px 12px 0;
    text-transform: none;
    margin-left: 0 !important;
}

.search .rounded-search {
    border-top-left-radius: inherit;
    border-top-right-radius: 0;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: 0;
}

.search__container {
    display: flex;
    margin: 10px 0;
    position: relative;
    z-index: 1;
    border-radius: 100px;
    border: 1px solid #ccc;
    background-color: #fff;
    height: 50px;
}

.search [data-search-field] {
    display: none;
}

    .search [data-search-field].active {
        display: flex;
    }

.search__params {
    display: none;
    flex: 1 1 15%;
    background-color: transparent;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0px 10px;
    position: relative;
}

@media (min-width: 992px) {
    .search__params {
        border-left: 1px solid #ccc;
    }
}

.search__params.is-open .search__dropdown {
    display: flex;
}

.search__params.has-count .search-term-layout__count {
    display: flex;
}

.search__params.has-clear .search__clear {
    display: flex;
}

.search__params__container {
    display: flex;
    flex: 1;
    align-items: center;
    position: relative;
    padding-right: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-position: right center;
    background-repeat: no-repeat;
    cursor: pointer;
}

    .search__params__container.no-dd {
        background-image: none;
        cursor: default;
        padding-right: 0;
    }

.search__category {
    background-color: #f7f7f7;
    position: relative;
    width: auto;
    min-width: 100px;
    max-width: 235px;
    z-index: 15;
    display: none;
    flex: initial;
}

@media (min-width: 992px) {
    .search__category {
        display: flex;
    }
}

.search__category__button {
    color: #454545;
    display: flex;
    background-color: transparent;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    border: 0;
    gap: 10px;
    padding: 0 5px 0 10px;
    height: 100%;
    margin: 0;
}

    .search__category__button:hover, .search__category__button:focus {
        background-color: transparent !important;
        color: #454545 !important;
    }

    .search__category__button span {
        flex: 1;
        font-size: 0.8125rem;
        text-transform: none;
    }

    .search__category__button svg {
        flex: 0 0 16px;
    }

.search__input {
    flex: 3 1 250px;
    display: flex;
}

.search__input__field {
    border-radius: inherit !important;
    color: #000 !important;
    /*padding: 0 10px !important;*/
    background-color: transparent !important;
    border: 0 !important;
    width: 100% !important;
    height: 100% !important;
    height: 46px !important;
    line-height: inherit;
}

    .search__input__field:focus {
        outline: 0;
    }

.search__actions {
    display: flex;
    flex: 0 0 auto;
    background-color: #fff;
    padding: 6px;
    border-radius: inherit;
}

@media (min-width: 992px) {
    .search__actions {
        flex: 0 0 100px;
    }
}

.search__actions button {
    border: 0;
    border-radius: 100px;
    background-color: #00ae9e;
    width: 36px;
    color: #fff;
    height: 36px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0;
}

    .search__actions button span {
        display: none;
    }

    .search__actions button svg {
        display: flex;
    }

@media (min-width: 992px) {
    .search__actions button {
        width: 100px;
    }

        .search__actions button span {
            display: flex;
            justify-content: center;
            font-size: 16px;
        }

        .search__actions button svg {
            display: none;
        }
}

.search__clear {
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 100px;
    background-color: #ccc;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
}

.search__dropdown {
    position: absolute;
    top: 100%;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    box-shadow: 0 9px 13px 0px rgba(0, 0, 0, 0.15);
    right: 0;
    left: 0;
    z-index: 14;
    display: none;
    flex-direction: column;
}

    .search__dropdown ul {
        flex: 1;
        max-height: 680px;
        overflow-y: auto;
        scrollbar-width: thin;
    }

.search__dropdown__item:hover {
    background-color: #f7f7f7;
}

.search__dropdown__actions {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 9px;
}

    .search__dropdown__actions .btn {
        font-size: 13px;
        padding: 3px 9px;
    }

.search__results {
    display: flex;
    flex-direction: column;
    padding: 0 0 16px 0;
}

.search__results__result a {
    padding: 10px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: initial;
    text-decoration: none;
}

.search__results__icon {
    flex: 0 0 30px;
}

.search__results__text {
    flex: 1;
    font-size: 14px;
}

#mobile-search-underlay {
    position: fixed;
    inset: 0;
    background: #f7f7f7;
    z-index: 11;
    padding-top: 37px;
}

    #mobile-search-underlay select {
        border-radius: 100px;
        border-width: 1px;
        max-width: 50vw;
    }

.search-term-layout {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.search-term-layout__term {
    margin-right: 5px;
    white-space: nowrap;
    font-size: 13px;
}

.search-term-layout__count {
    border-radius: 100px;
    background-color: #00ae9e;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 2px 7px;
    font-size: 13px;
}

.search-category__dropdown {
    width: 300px;
    right: auto;
    box-shadow: 0px 0 10px 6px rgba(0, 0, 0, 0.25);
    top: 10px;
    left: 10px;
    border-radius: 6px;
    padding: 0;
}

    .search-category__dropdown span {
        white-space: nowrap;
        display: flex;
        padding: 15px 20px;
        cursor: pointer;
    }

        .search-category__dropdown span:hover {
            background-color: #f7f7f7;
        }

        .search-category__dropdown span.active {
            color: #00ae9e;
            font-weight: 600;
        }

@media (max-width: 991.98px) {
    .search__container [data-search-field] {
        display: none !important;
    }

    .search__container [data-search-field=query] {
        display: flex !important;
    }
}

.table thead th {
    background-color: #f7f7f7;
    border-bottom: 0 !important;
}

.table:not(.table-sm) > :not(caption) > * > * {
    border-bottom-color: #ccc;
    padding: 24px;
}

.nav-tabs .nav-link {
    border-left: 0;
    border-top: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    color: #000;
    margin-right: 36px;
}

    .nav-tabs .nav-link.active {
        color: #6faa32;
        position: relative;
        background-color: transparent;
    }

        .nav-tabs .nav-link.active:after {
            border-bottom: 3px solid currentColor;
            content: "";
            bottom: 0;
            left: 0;
            right: 0;
            position: absolute;
        }

        .nav-tabs .nav-link.active.active-ptg-green {
            color: #00ae9e;
        }

        .nav-tabs .nav-link.active.active-ptg-darkblue {
            color: #004071;
        }

.nav-pills .nav-link {
    border-radius: 100px;
    background-color: #ccc;
    color: #000;
    margin-right: 15px;
    white-space: nowrap;
}

    .nav-pills .nav-link.active {
        background-color: #00ae9e;
        color: #fff;
    }

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1320px;
    }
}

.container .row, .container-xl .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

    .container .row > *, .container-xl .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    }

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333% !important;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667% !important;
}

.col-3 {
    flex: 0 0 auto;
    width: 25% !important;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333% !important;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667% !important;
}

.col-6 {
    flex: 0 0 auto;
    width: 50% !important;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333% !important;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667% !important;
}

.col-9 {
    flex: 0 0 auto;
    width: 75% !important;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333% !important;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667% !important;
}

.col-12 {
    flex: 0 0 auto;
    width: 100% !important;
}

.p-5 {
    padding: 3rem !important;
}

.large {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.justify-content-center {
    justify-content: center !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.ptg-green {
    color: #00ae9e;
}

/**new search part end*/
