/* wastech-guide-panel */
.wastech-guide-panel {
    border-radius: 8px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 130px;
    transition: height 0.6s ease;
    overflow: hidden;
}

.wastech-guide-panel .guide-panel-bar {
    padding-top: 2.5rem !important;
    position: relative;
    z-index: 1;
}

.wastech-guide-panel .panel-title,
.wastech-guide-panel .close-guide-btn {
    color: #FFFFFF;
}

.wastech-guide-panel #guide-btn-url {
    border: solid 1px #FFFFFF;
    border-radius: 50px;
    color: #222222;
    background-color: #FFFFFF !important;
    width: auto;
    padding: 12px 24px;
    font-weight: 700;
    font-family: 'Nunito Sans';
}

.wastech-guide-panel .guide-btn {
    border: solid 1px rgba(255, 255, 255, 0.6);
    border-radius: 50px !important;
    color: #3a3a2a;
    background-color: rgba(240, 238, 220, 0.75) !important;
    width: auto;
    padding: 12px 28px;
    font-weight: 500;
    font-family: 'Nunito Sans';
    backdrop-filter: blur(4px);
}

.wastech-guide-panel .guide-btn:hover {
    color: #222222;
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.wastech-guide-panel.guide-active #guide-btn-url,
.wastech-guide-panel.guide-active #guide-btn-url.guide-btn-dark,
.wastech-guide-panel #guide-btn-url.guide-btn-dark:hover{
    background-color: #FFFFFF !important;
    color: #222222 !important;
    border-color: #222222 !important;
}

.wastech-guide-panel.guide-active #guide-btn-url.guide-btn-dark:hover,
.wastech-guide-panel #guide-btn-url:hover{
    background-color: #222222 !important;
    border-color: #222222 !important;
    color: #FFFFFF !important;
}

.wastech-guide-panel #guide-btn-url.guide-btn-dark{
    background-color: #222222 !important;
    color: #FFFFFF !important;
    padding: 12px 24px;
    font-weight: 700;
    font-family: 'Nunito Sans';
}

.wastech-guide-panel .guide-btn:hover {
    color: #222222;
    background-color: #FFFFFF;
}

.wastech-guide-panel .guide-btn.selected {
    color: #FFFFFF !important;
    background-color: #222222 !important;
}

.wastech-guide-panel .guide-btn.guide-btn-dark {
    border: solid 1px #222222;
    color: #222222;
}

.wastech-guide-panel .guide-btn.guide-btn-dark:hover {
    color: #FFFFFF;
    background-color: #404040;
}

.wastech-guide-panel .guide-btn.guide-btn-dark.selected {
    color: #FFFFFF;
    background-color: #222222;
}

.wastech-guide-panel .guide-btn.search:hover svg path,
.wastech-guide-panel .guide-btn.search.guide-btn-dark svg path {
    stroke: #222222;
}

.wastech-guide-panel .guide-btn.search i,
.wastech-guide-panel .guide-btn.search.guide-btn-dark:hover i,
.wastech-guide-panel .guide-btn.search.guide-btn-dark.selected i {
    border-bottom: solid 1px #FFFFFF;
}

.wastech-guide-panel .guide-btn.search:hover i,
.wastech-guide-panel .guide-btn.search.guide-btn-dark i {
    border-bottom: solid 1px #222222;
}

.wastech-guide-panel .guide-btn.search.guide-btn-dark:hover svg path,
.wastech-guide-panel .guide-btn.search.selected svg path {
    stroke: #FFFFFF;
}

.wastech-guide-panel .expand-guide-btn-row {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translate(0%, -50%);
    display: flex;
    justify-content: end;
}

.wastech-guide-panel .expand-guide-btn-row.expanded {
    position: relative;
    right: auto;
    transform: translate(0, 0);
    justify-content: start;
}

.wastech-guide-panel .expand-guide-btn-row.expanded .btn-primary {
    border-color: #222222 !important;
}

.wastech-guide-panel .close-guide-btn {
    border-bottom: solid 1px #FFFFFF;
    font-weight: 300;
}

.wastech-guide-panel .close-guide-btn:hover {
    color: #FFFFFF;
    opacity: 0.75;
}

.wastech-guide-panel .close-guide-btn.close-btn-dark {
    color: #222222;
    border-bottom: solid 1px #222222;
}

.wastech-guide-panel .close-guide-btn svg {
    transition: margin-left 0.2s;
}

.wastech-guide-panel .close-guide-btn:hover svg {
    margin-left: 5px;
}

.wastech-guide-panel .close-guide-btn.close-btn-dark:hover {
    color: #222222;
    opacity: 0.75;
}

.wastech-guide-panel .close-guide-btn.close-btn-dark:hover svg path {
    fill: #222222;
    opacity: 0.75;
}

.wastech-guide-panel-search-form-container {
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    padding: 0 15%;
}

.wastech-guide-panel-search-form-container.active {
    opacity: 1;
    visibility: visible;
}

.wastech-guide-panel-search-form,
.wastech-guide-panel-search-form .wastech-guide-panel-search-form-input {
    width: 100% !important;
    display: block !important;
    transition: 0.2s !important;
    border-radius: 0 !important;
}

.wastech-guide-panel-search-form .wastech-guide-panel-close-search {
    background: transparent;
    border: none;
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 18px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991.98px) {
    .wastech-guide-panel .expand-guide-btn-row {
        right: 20px;
    }
}

@media (max-width: 767.98px) {

    .wastech-guide-panel {
        height: 190px;
        background-position: right center;
    }

    .wastech-guide-panel .guide-panel-bar {
        padding-top: 1.5rem !important;
    }

    .wastech-guide-panel .expand-guide-btn-row {
        position: relative;
        right: 0;
        transform: translate(0);
        justify-content: center;
        margin-top: 20px;
    }

    .wastech-guide-panel .expand-guide-btn-row.expanded {
        justify-content: start;
        margin-top: 0;
    }

    .wastech-guide-panel-search-form .wastech-guide-panel-close-search {
        top: 10%;
    }

    .wastech-guide-panel .guide-btn {
        background-color: #FFFFFF;
        color: #222222;
        width: 100%;
    }

    .wastech-guide-panel .guide-btn.search i,
    .wastech-guide-panel .guide-btn.search.guide-btn-dark:hover i,
    .wastech-guide-panel .guide-btn.search.guide-btn-dark.selected i {
        border-bottom: solid 1px #222222;
    }

    .wastech-guide-panel .guide-btn.search path {
        stroke: #222222;
    }
}

.row, .columns_wrap, .trx_addons_columns_wrap {
    margin-right: calc(-.5 * var(--bs-gutter-x)) !important;
    margin-left: calc(-.5 * var(--bs-gutter-x)) !important;
}