.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 111;
}

.text-custom {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #4a3c67;
}

.overlay, .announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 99999;
    padding: 20px 15px;
    opacity: 0;
}

.overlay.sleep {
    animation: showCustom 10s ease-in-out;
    opacity: 1;
}

.custom-1, .custom-2 {
    opacity: 0;
}

.overlay .custom-1.show, .overlay .custom-2.show {
    animation: showCustom 1s ease-in-out;
    opacity: 1;
}

@keyframes showCustom {
    0% {
        opacity: 0;
    } 100% {
        opacity: 1;
    }
}

.img-rounded {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.navbar .navbar-brand .brand-logo {
    width: 40px;
    height: 40px;
}

.icon-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicators {
    position: relative;
}

.indicators .indicator-item {
    display: inline-block;
    padding: 10px 15px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #dfdfdf;
    color: #b7b7b7;
    transition: 1s ease-in-out;
}

.indicators .indicator-item:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 14%;
    width: 320px;
    height: 2px;
    background: #dfdfdf;
    z-index: -1;
    transition: 1s ease-in-out;
}

.indicators .indicator-item:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 14%;
    width: 320px;
    height: 2px;
    background: #dfdfdf;
    z-index: -1;
    transition: 1s ease-in-out;
}

.indicators .indicator-item:nth-child(1){
    margin-right: 300px;
}

.indicators .indicator-item:nth-child(3){
    margin-left: 300px;
}

.indicators .indicator-item.active {
    border: 3px solid #1154CD;
    color: #1154CD;
    transition: 1s ease-in-out;
}

.indicators .indicator-item.active:nth-child(2)::before, .indicators .indicator-item.active:nth-child(3)::before {
    background: #1154CD;
    transition: 1s ease-in-out;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
    animation: showCustom .8s ease-in-out;
}

.payments .card:hover {
    background: #ebebeb;
}

.payments .card.selected {
    background: #E9F1FF;
    border-left: 2px solid #1154CD!important;
}

::-webkit-scrollbar {
    width: 5px;
    background: #e9e9e9;
}

::-webkit-scrollbar-thumb {
    width: 5px;
    background: #b8b8b8;
}

#cash:checked ~ .cash .card, #transfer:checked ~ .transfer .card {
    background: #e7eefb;
    border-left: 2px solid #1154CD!important;
}

.nowrap {
    white-space: nowrap;
}

.select2-search__field {
    padding: 4px !important;
}

.select2-search__field:focus {
    outline: none;
}

.select2 {
    width: 98%;
    display: block;
}

.splash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
}

#carouselControls .carousel-control-prev, #carouselControls .carousel-control-next {
    display: block;
    padding: 15px;
    border-radius: 50%;
    top: 45%;
    bottom: unset;
    transform: translateY(-50%);
    width: unset;
    border: none;
    background: none;
}