/* #header,
.header-container {
    height: 70px;
} */
#app-header-section {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: var(--app-header-height);
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}
.header-container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100%;
    color: rgba(var(--rw-rgb-header-text-color),1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
#app-header-section.bg .header-container:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to right, rgba(var(--rw-rgb-header-bg-1), 0.5), rgba(var(--rw-rgb-header-bg-2), 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -webkit-backdrop-filter: saturate(100%) blur(50px);
    -moz-backdrop-filter: saturate(100%) blur(50px);
    -ms-backdrop-filter: saturate(100%) blur(50px);
    -o-backdrop-filter: saturate(100%) blur(50px);
    backdrop-filter: saturate(100%) blur(50px);
    z-index: 1;
}
#app-header-section.bg.bg-show .header-container:before {
    opacity: 1;
}
#app-header-section .header-ref {
    position: relative;
    height: 25px;
    text-align: center;
    font-size: 11px;
    line-height: 25px;
    letter-spacing: 0.2px;
    color: rgba(var(--rw-rgb-color-white), 1);
    background-color: rgba(var(--rw-rgb-color-3), 1);
    /* background: linear-gradient(to right, rgba(var(--rw-rgb-color-1), 1), rgba(var(--rw-rgb-color-3), 1)); */
}

.header-container>.container {
    position: relative;
    padding: 0;
    z-index: 2;
}
.header-row,
.header-row>.header-col {
    position: relative;
}
.header-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100%;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0.2px;
}
.header-row>.header-col {
    display: flex;
    flex-wrap: nowrap;  
    align-items: center; 
}

.header-row>.header-col.this-col-left+.header-col.this-col-center {
    padding-left: 0;
}
.header-row>.header-col.this-col-center {
    display: flex;
    flex-wrap: nowrap;
    flex: 1 0 0;
    padding: 0 20px;
    /* width: calc(100% - var(--app-header-column-lr-width)*2 ); */
}
.header-row>.header-col.this-col-center>.title {
    display: flex;
    flex: 1 0 0;
}
.header-row>.header-col.this-col-center>.title.text-center {
    justify-content: center;
}
.header-row>.header-col.this-col-center>.title.text-left {
    justify-content: flex-start;
}
.header-row>.header-col.this-col-center>.title.text-right {
    justify-content: flex-end;
}
.header-row>.header-col.this-col-left,
.header-row>.header-col.this-col-right {
    width: var(--app-header-column-lr-width);
    align-items: center;
    justify-content: center;
    /* background-color: rgba(255,255,0,0.5); */
}
.header-row .title {
    /* font-family: 'Montserrat';
    font-size: 11px;
    line-height: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase; */
}
.header-row .title>.t1 {
    font-size: 13px;
    line-height: 20px;
}
.header-row .title>.t2 {
    font-size: 18px;
    line-height: 25px;
}
/* .header-row .icon-btn {
    position: relative;
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    padding-top: 6px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    border: none !important;
    text-decoration: none !important;
    color: rgba(var(--rw-rgb-header-text-color),1) !important;
    background-color: rgba(var(--rw-rgb-color-black),0) !important;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.header-row .icon-btn:hover {
    background-color: rgba(var(--rw-rgb-color-black),0.5) !important;
} */


/* xxl */
@media (min-width: 1400px) {}

/* xxl - 1 */
@media (min-width:1500px) and (max-width: 1599.98px) {}

/* xxl - 2 */
@media (min-width: 1400px) and (max-width: 1499.98px) {}

/* xl */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* lg */
@media (min-width: 992px) and (max-width: 1199.98px) {}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* sm - xs */
@media (max-width: 767.98px) {}

/* sm */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* xs */
@media (max-width: 575.98px) {

#app-header-section {
    height: var(--app-header-height-mobile);
}
.header-row>.header-col.this-col-left,
.header-row>.header-col.this-col-right {
    width: var(--app-header-column-lr-width-mobile);
    /* width: var(--app-header-height-mobile) - 10px; */
}

}

/* xs custom */
@media (max-width: 399.98px) {}