/* ------ default ------ */
* {
    margin: 0px;
    padding: 0px;
    outline: none !important;
}

a,
a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

body {
    width: 100%;
    max-width: 500px;
    background: #242424;
    position: relative;
    display: block;
    color: #dfdfdf;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: normal;
    font-family: 'Bai Jamjuree', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
}

body, header {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.font-primary {
    color: #E8FF2A !important;
}
.font-white {
    color: #ffffff;
}
.font-black {
    color: #000000;
}
.font-gray {
    color: #7B7B7B;
}
.font-400 {
    font-weight: normal !important;
}
.font-700 {
    font-weight: 700 !important;
}

h1,h2 {
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
}
h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}
h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

b {
    font-weight: 700;
}

.btn{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: 'Bai Jamjuree', sans-serif;
    padding: 12px 20px;
    border-radius: 6px;
    background: #1C1C1C !important;
    color: #E8FF2A !important;
    border: 1px solid #1C1C1C !important;
}
.btn-round {
    border-radius: 25px;
}
.btn-primary {
    border-color: #E8FF2A !important;
    background: #E8FF2A !important;
    color: #1C1C1C !important;
}
.btn-minwidth {
    min-width: 220px;
}
.btn-minwidth2 {
    min-width: 120px;
}
.btn-icon {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.btn-action {
    padding: 0px;
    background: transparent !important;
    border-color: transparent !important;
    color: #fff !important;
}

.no-padding {
    padding: 0px;
}
.no-padding-top {
    padding-top: 0px;
}
.no-padding-bottom {
    padding-bottom: 0px;
}
.no-padding-left {
    padding-left: 0px;
}
.no-padding-right {
    padding-right: 0px;
}

.no-margin {
    margin: 0px !important;
}
.no-margin-top {
    margin-top: 0px;
}
.no-margin-bottom {
    margin-bottom: 0px;
}
.no-margin-left {
    margin-left: 0px;
}
.no-margin-right {
    margin-right: 0px;
}

.bg {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden !important;
}

/* ------ loading ------ */
#loading {
    text-align: center;
    padding-top: 42vh;
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
}
#loading .icon {
    border: 10px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top: 10px solid rgba(255, 255, 255, 0.8);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: 0 auto 20px;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ------ custom ------ */
#wrapper{
    position: relative;
    padding-bottom: 100px;
    overflow-x: hidden;
    width: 100%;
}
section {
    position: relative;
    padding: 35px 0px;
    overflow-x: hidden;
    width: 100%;
}

header {
    overflow-y: hidden;
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
}
header .navbar-toggle {
    display: block !important;
}
header #menu {
    position: fixed;
    height: 100vh !important;
    width: 400px;
    max-width: 80%;
    background: #fff;
    top: 0px;
    left: -400px;
    display: block !important;
    background: #191919 !important;
    margin: 0px;
    border: 0px;
    padding: 20px;
    overflow-y: auto;
    z-index: 2;
    transition: .3s ease 0s;
}
header #menu.in {
    left: 0px;
}
header #menu ul, header #menu ul li {
    width: 100%;
}
header #menu ul {
    margin: 15px 0px;
}
header #menu ul li a {
    background: #191919 !important;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #DFDFDF;
    padding: 18px 0px;
    border-bottom: 1px solid #3B3B3B;
}
header .navbar {
    border-radius: 0px;
    margin: 0px;
    border: 0px;
    background: #1C1C1C;
}
header .navbar .navbar-toggle {
    position: absolute;
    left: 0px;
    top: 0px;
    border: 0px;
    margin: 0px;
    padding: 18px;
}
header .navbar-header {
    width: 100%;
    text-align: center;
    margin:  0px !important;
}
header .navbar-header .navbar-brand {
    float: initial;
    margin: 0 auto;
    display: inline-block;
}
header .navbar-toggle {
    background: transparent !important;
}
header .navbar-toggle .icon-bar {
    background-color: #fff !important;
} 
header .navbar-toggle .icon-bar+.icon-bar {
    margin-top: 5px;
}
header .navbar-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 2px;
}

header.header-staff .navbar {
    background: #fff;
}
header.header-merchant .navbar {
    background: #E8FF2A;
}
header .header-overlay {
    width: 100vw;
    height: 100vh;
    background: #242424;
    z-index: 0;
    display: none;
}
header #menu.in + .header-overlay {
    display: block;
}
header .menu-logout {
    border: 0px !important;
    margin-top: 20px;
    display: flex !important;
    gap: 10px;
    align-items: center;
}

.title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #DFDFDF;
    display: inline-block;
}
.title h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    margin: 0px 0px 10px;
}

.container {
    width: 100%;
    padding: 0px 20px;
}

.pack-box {
    width: 100%;
    position: relative;
    display: inline-block;
}
.pack-box .item {
    width: 100%;
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
    color: #000;
    padding: 60px 20px 50px;
    overflow: hidden;
}
.pack-box .tag {
    position: absolute;
    top: 0px;
    left: 50%;
    margin: 0 auto;
    background: #1C1C1C;
    border-radius: 0px 0px 10px 10px;
    padding: 10px 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #E8FF2A;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.pack-box .detail {
    padding: 25px 0px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    width: 380px;
    max-width: 100%;
    margin: 0 auto;
}
.pack-box .name {
    position: relative;
}
.pack-box .name h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    margin: 0px;
    margin-top: 20px;
}
.pack-box .name h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    margin: 0px;
}
.pack-box .name img {
    object-fit: contain;
    object-position: center;
}
.pack-box .action {
    text-align: center;
    position: relative;
}

.bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}
.bg img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: center;
}

.select {
    width: 100%;
    position: relative;
    display: inline-block;
    background: transparent;
}
.select select {
    border: 0px;
    width: 100%;
    box-shadow: none;
    display: inline-block;
    overflow: visible;
    -webkit-appearance: none;
    background: transparent;
}
.select > span {
    top: 50%;
    right: 12px;
    margin-top: -10px;
    font-size: 18px;
    position: absolute;
}

.form-group {
    margin-bottom: 20px;
}
.form-group > label {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #DFDFDF;
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #464646 !important;
    background: #464646 !important;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    height: auto;
    padding: 10.5px 15px;
}
.form-control:focus {
    border-color: #e8ff2a;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgb(232 255 42 / 61%);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgb(232 255 42 / 61%);
}

.required {
    font-size: 14px;
    margin-top: 5px;
    color: #f14205;
    display: none;
}

.checkbox label {
    padding-left: 40px;
    background: url('../images/checkbox.png') no-repeat top left;
    background-size: 22px 22px;
    padding-top: 3px;
    background-position-y: 3px;
}
.checkbox > input {
    display: none;
}
.checkbox > input:checked + label {
    background-image: url('../images/checkbox-active.png');
}
.checkbox > input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    margin-left: 0px;
}

.upload{
    position: relative;
    display: inline-block;
    width: 100%;
}
.upload .preview {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.upload .preview img {
    height: 150px;
}
.upload .action input {
    opacity: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}
.upload .action .btn {
    padding: 7px 20px;
    min-width: 180px;
}
.upload .action {
    position: relative;
    display: inline-block;
}

.btn-box {
    text-align: center;
    margin: 50px 0px;
}
.back {
    margin-bottom: 30px;
}

.payment-box {
    width: 100%;
    position: relative;
}
.payment-box .head {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 5px;
}
.payment-box .head .item {
    flex: 1;
    background: #717171;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
}
.payment-box .head .item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}
.payment-box .head .item.active {
    background: #E8FF2A;
    color: #000;
}
.payment-box .head .item.active img {
    filter: none;
}
.payment-total {
    text-align: center;
    margin: 30px 0px 40px;
}
.payment-total h4 {
    margin: 0px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #DFDFDF;
}
.payment-total h3 {
    margin: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    color: #E8FF2A;
}
.payment-detail {
    border: 1px solid #5A5A5A;
    border-radius: 5px;
    padding: 20px;
}
.payment-qrcode {
    text-align: center;
    margin: 30px 0px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #DFDFDF;
}
.payment-qrcode p, .payment-qrcode img {
    margin-bottom: 20px;
}
.payment-box .body .item {
    display: none;
}
.payment-box .body .item.active {
    display: block;
}
.success-box {
    text-align: center;
    padding: 60px 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}
.success-box img {
    margin-bottom: 50px;
}

.input-otp-box {
    position: relative;
    display: inline-block;
    margin: 20px 0px;
    /* overflow: hidden; */
}
.input-otp-box:after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0px;
    height: 100%;
    width: 50px;
    background: #242424;
    z-index: 2;
    display: none;
}
.input-otp-box .input-otp {
    z-index: 0;
    color: #fff;
    position: relative;
    display: flex;
    gap: 10px;
}
.input-otp-box .input-otp input {
    text-align: center;
    font-size: 28px;
    line-height: 40px;
    color: #E8FF2A;
    font-weight: 700;
}
.input-otp-box .input-otp-full {
    z-index: 1;
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100% + 40px);
    height: 100%;
    font-weight: 700;
    font-size: 33px;
    line-height: 40px;
    color: #E8FF2A;
    background: transparent !important;
    border: 0px !important;
    box-sizing: border-box;
    box-shadow: none !important;
    -webkit-appearance: none;
    letter-spacing: 30px;
    padding: 0px 0px;
    text-indent: 16px;
}

.input-otp-box .input-otp-full::-webkit-outer-spin-button,
.input-otp-box .input-otp-full::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-otp-box .input-otp-full[type=number] {
  -moz-appearance: textfield;
}

.input-otp-box .input-otp input {
    width: 40px;
    border: 1px solid #525252;
    border-radius: 5px;
    background: transparent !important;
    padding: 0px;
    line-height: 58px;
}
.ref-code {
    margin: 20px 0px 0px;
}
.otp_refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-group-box .btn {
    border: 1px solid #C8C8C8 !important;
    background: #444444 !important;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF !important;
    padding: 15px 5px;
}
.btn-group-box .btn.active {
    border-color: #E8FF2A !important;
    background: #E8FF2A !important;
    color: #000 !important;
}

.card {
    width: 100%;
    position: relative;
    background: #404040;
    border-radius: 10px;
    padding: 20px;
}
.card.card-primary, .card-primary label {
    background: #E8FF2A;
    color: #000 !important;
}
.card-second, .card-second label {
    background: #F3FF8D !important;
    color: #000 !important;
}
.img-responsive {
    width: 100%;
}
img {
    max-width: 100%;
}

.pack-history {
    width: 100%;
    position: relative;
    display: inline-block;
}
.pack-history .item {
    width: 100%;
    position: relative;
    margin-top: 30px;
}
.pack-history .item:first-child {
    margin-top: 15px;
}
.pack-history .item .name {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.pack-history .form-group {
    margin-bottom: 15px;
}
.pack-history hr {
    border-color: rgba(0,0,0,0.5);
}
.pack-history .card {
    margin-bottom: 20px;
    background: #EBEBEB;
    color: #7A7A7A;
    border-radius: 10px;
}
.pack-history .card label {
    color: #7A7A7A;
}
.pack-history .card-more {
    text-align: center;
    padding: 15px;
    font-weight: 700;
}
.btn-group-sticky {
    position: sticky;
    top: 0px;
    left: 0px;
    background: #242424;
    z-index: 2;
    padding: 20px 0px;
    margin-top: -20px;
    margin-bottom: 10px;
}
.text-img {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.table {
    font-size: 14px;
    line-height: 20px;
}
.table>thead>tr>th {
    border: 0px;
    padding: 10px 10px;
}
.table>tbody>tr>td {
    border-color: #555555;
    padding: 10px 10px;
}
.imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.imgs img {
    height: 100px;
}
.imgs.size-md img {
    height: 145px;
}
.img-black {
    filter: brightness(0%);
}

.claim-history .form-group {
    margin-bottom: 30px;
}
.claim-history .form-group label {
    margin-bottom: 5px;
}

.upload2 {
    width: 100%;
    position: relative;
}
.upload2 .action {
    width: 125px;
    height: 125px;
    position: relative;
}
.upload2 .action img, .upload2 .action input {
    width: 100%;
    height: 100%;
}
.upload2 .action input {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    cursor: pointer;
}
textarea {
    resize: none;
}
.form-control-primary {
    background: #E8FF2A !important;
    color: #000 !important;
}
.input-map {
    width: 100%;
    position: relative;
}
.input-map .action {
    margin-top: 10px;
    text-align: center;
}
.input-map .map {
    width: calc(100% + 40px);
    height: 350px;
    background: #ccc;
    margin-left: -20px;
}
.input-map .item:not(:first-child) {
    display: none;
}
.hr-dash {
    border-top: 1px dashed #98AA00;
}

.merchant-profile {
    background: #000000;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}
.merchant-profile .name {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.61);
}
.merchant-profile .name .img {
    width: 120px;
    height: 120px;
    border: 5px solid #242424;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -50px;
}
.merchant-profile .name .text {
    width: calc(100% - 140px);
}
.merchant-card {
    background: url('../images/card-bg.png') no-repeat center center;
    background-size: cover;
    font-weight: 700;
    font-size: 36px;
    line-height: 38px;
    color: #000000;
    padding: 10px 30px;
    margin-bottom: 50px;
    margin-top: 30px;
}
.merchant-card label {
    color: #000;
    margin-bottom: 5px;
}

.filter-tag {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.filter-tag .item {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 18px;
    display: flex
;
    gap: 5px;
    align-items: center;
    padding: 7px 15px;
}
.filter-tag .item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    object-position: center;
}

.row.is-small {
    margin-left: -8px;
    margin-right: -8px;
}
.row.is-small > div {
    padding-left: 8px;
    padding-right: 8px;
}
.filter .form-control {
    background: #fff !important;
    color: #000 !important;
}
.filter .select > span {
    color: #555;
}
.filter {
    margin-top: -45px;
}
.filter .input-search {
    position: relative;
}
.filter .input-search > span {
    position: absolute;
    right: 10px;
    top: 12px;
    font-size: 22px;
    cursor: pointer;
    z-index: 1;
}
.filter .form-group {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}
.filter .input-search .form-control {
    width: 50px;
    float: right;
    background: transparent !important;
    transition: .3s ease 0s;
    border-color: transparent !important;
}
.filter .input-search.open .form-control {
    width: 100%;
    background: #fff !important;
    border-color: #fff !important;
}
.filter .input-search.open > span {
    color: #000;
}

.reward-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 15px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    margin: 30px 0px;
}
.reward-box .item {
    flex: calc(50% - 7.5px);
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}
.reward-box .img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    overflow: hidden;
}
.reward-box .text {
    background: url('../images/line.png') no-repeat top left;
    background-size: 100% 30px;
    margin-top: 10px;
    margin-left: -10px;
    width: calc(100% + 20px);
    padding: 35px 15px 0px;
}
.reward-box .text .name {
    height: 35px;
    overflow: hidden;
}

.reward-detail-box {
    width: 100%;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-bottom: 8px solid #E8FF2A;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin: 0px auto;
    max-width: 350px;
}
.reward-detail-box .img {
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
}
.reward-detail-box .text {
    padding: 20px;
}

.reward-form {
    width: 100%;
    position: relative;
}
.reward-form h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #DFDFDF;
    margin: 30px 0px;
}
.reward-form .detail {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.reward-form hr {
    border-color: #555555;
}
.reward-form .point-use {
    margin-top: 10px;
}

.input-qty {
    display: flex;
    gap: 10px;
    align-items: center;

}
.input-qty input {
    text-align: center;
    width: 50px;
    background: transparent !important;
    border: 0px !important;
}
.input-qty input::-webkit-outer-spin-button,
.input-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.input-qty input[type=number] {
    -moz-appearance:textfield;
}
.input-qty img {
    cursor: pointer;
}
.input-qty img:hover {
    opacity: 0.5;
}

.table-redeem .text-img {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #DFDFDF;
}
.table-redeem .text-img img {
    width: 60px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.table-redeem>tbody>tr>td {
    vertical-align: middle;
}

.camera {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2000;
    background: #000;
    color: #fff;
    padding: 0px 0px 25vh;
    display: none;
    overflow-y: auto;
}
.camera .camera-vdo {
    position: relative;
    width: 100%;
    height: 100%;
}
.camera .camera-box {
    width: 100%;
    height: 100%;
    position: relative;
    /* display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; */
}
.camera .camera-close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 5;
    background: #343434;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
}
.camera .camera-img {
    position: absolute;
    width: 90%;
    height: 80%;
    top: 50%;
    left: 50%;
    z-index: 100;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
}
.camera .camera-btn {
    margin: 15px auto;
    display: block;
    min-width: 180px;
}
.camera .camera-control {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.camera .form-group {
    width: 100%;
}
.camera-action {
    position: relative;
}
.camera-action .camera-btn-switch {
    position: absolute;
    right: 20px;
    top: 4px;
    width: 45px;
}

.capture {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.capture img {
    height: 150px;
    cursor: pointer;
}
.capture .capture-item {
    position: relative;
    display: inline-block;
}
.capture .capture-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e8ff2a;
    color: #000;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}
.modal {
    color: #000;
}
.modal .modal-header {
    border: 0px;
    padding-bottom: 0px !important;
}
.modal .modal-header .close {
    opacity: 1;
    position: absolute;
    right: 12px;
    top: 7px;
    font-size: 30px;
    z-index: 2;
}
.modal .modal-body, .modal .modal-header {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
}
.modal .modal-content {
    border-radius: 10px;
}