/* New Year Hat for Logo */
.header_bottom_inner--logo .col1 {
    position: relative;
    width: fit-content;
}

.header_bottom_inner--logo .col1.has-santa-hat::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -15px;
    width: 50px;
    height: 50px;
    background-image: url("https://be1st.pro/sites/default/files/images/artage-io-thumb-alt.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none; /* Чтобы шапка не мешала кликам */
}




/*ADAPTIVE*/
@media (max-width: 850px) {
	.header_bottom_inner--logo .col1.has-santa-hat::after {
    display: none;
	}
}
