.admin-panel{
    position: fixed;
    width: 55px;
    height: 150px;
    top: 20%;
    right: 10px;
    color: #FFF;
    border-radius: 5px;
    text-align: center;
    writing-mode: vertical-rl;
    padding: 10px;
    background-image: linear-gradient(to right,#29A2D4, #15a2d3, #0182b2, #004d6e);
    background-size: 150% 100%;
    font-weight: bold;
    z-index: 99999999;
    line-height: 2.25em;
}

.admin-panel:hover{
    /*background-color: var(--color-2);*/
    color: #fff;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #004d6e, #0182b2, #15a2d3, #29A2D4);
    box-shadow: 0 1px 6px 0 rgba(21, 162, 211, 0.8);
    background-size: 300% 100%;
}
.img-wrap {
    position: relative;
    overflow: hidden;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap img {
    pointer-events: none;
    -webkit-user-drag: none;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}



.img-wrap .protection-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}



.article-card-img-wrapper {
    -webkit-user-drag: none;
    user-drag: none;
}

.img-wrap,
.img-wrap * {
    -webkit-user-drag: none;
    user-drag: none;
}

/* header live-search autocomplete */
.header-bottom .ui-autocomplete {
    position: absolute !important;
    z-index: 20;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 20px) !important;
    max-width: 500px !important;
    box-sizing: border-box !important;
    list-style: none;
    padding: 10px 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    max-height: 400px;
    overflow-y: auto;
    text-align: center;
}
.header-bottom .ui-autocomplete li {
    text-align: center;
}
.header-bottom .ui-autocomplete li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
}
.header-bottom .ui-autocomplete li a:hover,
.header-bottom .ui-autocomplete li a.ui-state-focus {
    background: rgba(0, 0, 0, 0.04);
}
.header-bottom .ui-autocomplete li a img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
}

/* home slider + 2 side banners */
.hometop-section {
    padding-top: 20px;
}
.hometop-section, .about-hero {
	padding: 20px 0;
}
/* before slick.js initializes, all slides stack in normal flow and inflate the
   height of both the slider and (via the absolute-fill) the side banners;
   showing only the first slide until init keeps the initial paint the right size */
.slideshow-active:not(.slick-initialized) {
    overflow: hidden;
}
.slideshow-active:not(.slick-initialized) .slide-item {
    display: none;
}
.slideshow-active:not(.slick-initialized) .slide-item:first-child {
    display: block;
}
.hometop-row {
    row-gap: 20px;
}
.hometop-side-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
@media (min-width: 992px) {
    /* percentage-height on a stretched flex item is inconsistently honored across
       browsers, which left the side banners a bit short of the slider's height;
       absolute-filling the positioned column sidesteps that entirely */
    .hometop-row .col-lg-4 {
        position: relative;
    }
    .hometop-side-banners {
        position: absolute;
        inset: 0;
        height: auto;
    }
}
.hometop-side-banner-item {
    position: relative;
    flex: 1 1 50%;
    min-height: 140px;
    overflow: hidden;
}
.hometop-side-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}
.hometop-side-banner-item .img-wrap {
    width: 100%;
    height: 100%;
}
.hometop-side-banner-item .img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.hometop-side-banner-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, var(--primary-color), var(--third-color), var(--third-color), var(--dark-color));
    background-size: 300% 100%;
    padding: 10px 18px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.hometop-side-banner-caption span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
}
.hometop-side-banner-item:hover .img-wrap img {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -ms-transition: -ms-transform 0.4s ease;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}
.hometop-side-banner-item:hover .hometop-side-banner-caption {
    background-position: 100% 0;
}
@media (max-width: 991px) {
    .hometop-side-banners {
        flex-direction: row;
        height: auto;
    }
    .hometop-side-banner-item {
        min-height: 160px;
    }
}
@media (max-width: 575px) {
    .hometop-side-banners {
        flex-direction: column;
    }
}

