@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --black: #212529;
    --white: #ffffff;
    --gray: #555;
    --light-gray: #adb5bd;
}

body {
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Nunito', sans-seri; */
}

small,
.fs-7 {
    font-size: 12px;
}

.bg-gray {
    background-color: #f4f4f4;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    cursor: pointer;
}

#overlay #text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    color: white;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.header-top {
    background-color: #001b39;
}

.bg-maps {
    background-image: url(../img/bg-maps.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100px;
}

.pay-list {
    position: relative;
}

.pay-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 60px;
}

.pay-list.selected {
    background-color: rgb(229, 253, 209);
}

.pay-list input {
    display: none;
}

.pay-list label img {
    position: absolute;
    left: 20px;
    height: 35px;
    width: 35px;
    object-fit: contain;
    margin-right: 16px;
}

.spinner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.spinner input {
    height: 32px !important;
    margin: 0px !important;
}

.spinner .number-style span {
    width: 32px;
    height: 32px;
}

.feather.feather-12 {
    width: 12px;
    height: 12px;
}

.feather.feather-16 {
    width: 16px;
    height: 16px;
}

.list-ticket {
    display: flex;
    cursor: pointer;
}

.list-ticket .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f4f4f4;
    border-radius: 10px;
    margin-right: 10px;
}

.list-ticket .icon .feather {
    color: #fff;
}

.list-ticket .icon.red {
    background-color: #F16767;
}

.list-ticket .icon.green {
    background-color: #36AE7C;
}

.list-ticket .icon.blue {
    background-color: #4AA3BA;
}

.list-ticket .desc {
    padding-top: 3px;
}

.list-ticket .desc small {
    color: #ccc;
}

.list-ticket .price {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6E31;
    font-weight: bold;
}

.list-ticket .price span {
    color: #555;
    font-weight: normal;
}

.dt-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 5px 5px 5px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.dt-person:last-child {
    margin-bottom: 0px;
}

.icon-ticket {
    display: inline-block;
    background-image: url(../img/ticket.png);
    background-position: center;
    background-size: contain;
    width: 16px;
    height: 16px;
}

.icon-menu {
    display: inline-block;
    background-image: url(../img/dots.png);
    background-position: center;
    background-size: contain;
    width: 16px;
    height: 16px;
}

.icon-wa {
    display: inline-block;
    background-image: url(../img/whatsapp.png);
    background-position: center;
    background-size: contain;
    width: 16px;
    height: 16px;
}

.s-24 {
    width: 24px;
    height: 24px;
}

.no-icon .dropdown-toggle::before {
    display: none;
}

.no-icon .dropdown-toggle {
    border: none;
}

.open-qr {
    display: block;
    position: relative;
}

.open-qr::after {
    content: 'Buka QR';
    position: absolute;
    left: 0;
    bottom: 0px;
    padding: 3px;
    border-radius: 5px 5px 0 0;
    text-align: center;
    background-color: #454545;
    color: #fff;
    width: 100%;
    font-size: 8px;
    font-weight: normal;
}

.input-search+.result-input-search {
    position: absolute;
    display: none;
    border: 1px solid #ccc;
    max-height: 105px;
    width: 100%;
    z-index: 9;
    background: var(--white);
    overflow: auto;
    -webkit-box-shadow: 0px 2px 10px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 20px -7px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 10px -7px rgba(0, 0, 0, 0.75);
}

.input-search+.result-input-search span {
    display: block;
    padding: 5px 10px;
    color: #555;
}

.input-search+.result-input-search span:hover {
    background: #f4f4f4;
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    .list-ticket {
        font-size: 76%;
    }
}