.header {
    z-index: 10;
    position: relative;
    display: block;
    padding: 0px;
    background-color: #F5EFE6;
}
.header-fixed {
    position: fixed;
    top: 0px;
    width: 100%;
    /*
    box-shadow: 0px 0px 6px 1px #242424;
    -webkit-box-shadow: 0px 0px 6px 1px #242424;
    -moz-box-shadow: 0px 0px 6px 1px #242424;
    -o-box-shadow: 0px 0px 6px 1px #242424;
    */
}
.icon-badge {
    font-family: arial;
    font-size: .8em;
    font-weight: bold;
    padding: 2px;
    padding-top: 3px;
    text-align: center;
    background-color: red;
    color: white;
    border-radius: 12px;
    position: absolute;
    top: 4px;
    left: 4px;
    min-width: 20px;
    height: 20px;
    display: block;
}
.icon-badge:empty {
    display: none;
}
.header-control {
    font-size: 1em;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
    --text-transform: uppercase;
    color: inherit;
    text-decoration: none;
}
.header-control:hover {
    --background-color: #ddd;
    text-decoration: none !important;
}
.header-control > div {
    padding: 15px;
}
.header-control .glyphicon {
    padding-right: 5px;
}
.header-control-active,
.header-control-active:hover {
    background-color: #FAFAFA;
    --color: red;
}
.header-popup {
    display: none;
    position: absolute;
    top: 40px;
    right: 0px;
    width: 350px;
    z-index: 100;
    cursor: default;
    text-transform: initial;
}
.header-popup-left {
    right: none;
    left: 0px;
}
.header-popup-active {} .header-popup-visible {} .header-fixed > .header-popup-active {} .header-popup-content {
    background-color: #FAFAFA;
    border: 1px solid #EEEEEE;
    box-shadow: 0px 3px 4px 0 rgba(0, 0, 0, 0.03);
    color: #AAA;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 1050;
}
.carousel-indicators {
    z-index: 5 !important;
}
.header-popup-content .btn {
    color: white !important;

}

.header-popup-content .btn-default {
    background-color: #AFA896;
    border: none;
}
.header-popup-content .btn-default:hover,
.header-popup-content .btn-default:focus {
    background-color: #9E957F;
    color: white;
}
.header-popup-content input {
    background-color: #FFF;
    color: #888;
    border: none;
}
.header-popup-content input:focus {
    border: none;
    box-shadow: none;
}
.header-popup-content .input-group-addon {
    background-color: #909090;
    color: #eee;
    border: none;
}
.header-popup-content a {
    color: #AFA896;
    text-decoration: none;
}
.header-popup-content a:hover {
    --text-decoration: underline;
}
.header-popup-content .table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: #EEECE6;
    border-radius: 4px;
}
.header-popup-content .table-striped > tbody > tr > td {
    border: none;
}
.header-popup .row {
    padding: 8px;
}
.btn-label {
    position: absolute;
    left: 8px;
    width: 46px;
    height: 46px;
    display: inline-block;
    padding: 10px;
    margin-top: -11px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px 0 0 3px;
}
.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
}
.btn-facebook {
    background-color: #4862A3;
    color: white !important;
}
.btn-facebook:hover,
.btn-facebook:focus {
    background-color: #445A91;
    color: white !important;
    text-decoration: none;
}
.btn-google {
    background-color: #DD4B39;
    color: white !important;
}
.btn-google:hover,
.btn-google:focus {
    background-color: #C94B3C;
    color: white !important;
    text-decoration: none;
}
.hr-text {
    margin-top: 0;
    position: relative;
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: center;
}
.hr-text:before {
    content: "";
    display: block;
    border-top: solid 1px #eeeeee;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    z-index: 1;
}
.hr-text span {
    background-color: #fafafa;
    padding: 0 10px;
    position: relative;
    z-index: 5;
}
.login-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    z-index: 100;
    display: none;
}
.login-overlay-center {
    display: flex;
    margin: 0 auto;
    color: black;
    font-size: 18px;
    background-color: white;
    padding: 16px;
    border-radius: 8px;
}
.login-overlay-center img {
    margin-right: 16px;
}
.login-overlay-center span {
    margin-top: 6px;
}