@font-face {
    font-family: "Manrope";
    src: url("/fonts/manrope/Manrope-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/fonts/manrope/Manrope-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/fonts/manrope/Manrope-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/fonts/manrope/Manrope-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/fonts/manrope/Manrope-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/fonts/manrope/Manrope-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --c-primary: #e59924;
    /*Gold/Orange*/
    --c-secondary: #231f20;
    /*Black*/
    --c-white: #f4f4f4;
    /*White*/
    --c-black: #000000;
    /*Pure Black*/
    --c-grey: #636363;
    /* Grey */
    --c-tertiary: #959da3;
    /* Second Grey */
    --bg-form: #161415;
    /*Semi Black Background*/
    --c-white: #ffffff;
    /* White */
    --c-transparent: transparent;
    /* Transparent */
    --trans-cubic: all 0.3s cubic-bezier(0.47, 0.71, 0.66, 0.84);
}

*,
::before,
::after,
hr,
hr::before,
hr::after,
input[type="search"],
input[type="search"]::before,
input[type="search"]::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    background: var(--c-primary);
}

html,
body {
    /*font-family: 'SamsungMedium', sans-serif;*/
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: normal;
    background-color: var(--c-black);
    color: var(--c-white);
    font-weight: 400;
    width: 100%;
    height: 100%;
    transition: ease 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 16px;
}

p:last-child {
    margin-bottom: 0px;
}

small {
    font-size: 12px;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0;
}

ul {
    list-style: none;
    padding: 0px;
    margin-left: 15px;
}

a {
    color: var(--c-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-font-smoothing: antialiased;
}

a:focus,
a:hover {
    color: var(--c-primary);
    text-decoration: none;
    color: inherit !important;
}

span,
i {
    transition: ease-in-out 0.3s;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

img.icon-16 {
    width: 16px;
    height: 16px;
}

img.icon-24 {
    width: 24px;
    height: 24px;
}

img.icon-32 {
    width: 32px;
    height: 32px;
}

img.icon-48 {
    width: 48px;
    height: 48px;
}

.img-rounded {
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

i {
    transition: all 0.3s;
}

.section-pad {
    padding: 75px 0;
}

.ab-btn {
    outline: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: 1.5;
    align-items: center;
    position: relative;
    display: inline-flex;
    border: 0;
    border-radius: 10px;
    padding: 8px 24px;
    background-color: transparent;
    -webkit-box-pack: center;
    vertical-align: middle;
    justify-content: center;
    -webkit-box-align: center;
    transition-timing-function: cubic-bezier(0.33, 0, 0.3, 1);
    transition-duration: 0.3s;
    text-decoration: none;
    outline: 0;
}

.btn-primary {
    border: 0;
    color: var(--c-secondary);
    background-color: var(--c-primary);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    box-shadow: none;
    background-color: var(--c-primary);
}

.btn-primary-gradient {
    border: 0;
    color: var(--c-secondary);
    background: transparent
        linear-gradient(
            45deg,
            #dd9124 0%,
            #e29b35 11%,
            #f1b762 32%,
            #ffd28e 51%,
            #f7c576 61%,
            #e6a63e 87%,
            #e09b29 100%
        )
        0% 0% no-repeat padding-box;
    background-size: 100%;
    transition: ease-in-out 0.4s;
}

.btn-primary-gradient:hover {
    box-shadow: 0px 0 9px 0 #f7c576ab;
    background-size: 200%;
}

.btn-secondary {
    color: var(--c-primary);
    border: 1px solid var(--c-primary);
    padding: 8px 24px;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    background-color: transparent;
    /* box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, .5); */
    border: 1px solid var(--c-primary);
    color: var(--c-primary) !important;
}

.btn--secondary {
    color: var(--c-white);
    border: 1px solid var(--c-white);
    padding: 8px 16px;
}

.btn-tertiary {
    color: var(--c-primary);
    padding: 8px 16px;
}

.btn-google {
    background-color: var(--c-white);
    color: var(--c-black) !important;
}

.btn-google:hover {
    color: var(--c-black) !important;
}

.btn-fb {
    background-color: #4267b2;
    color: var(--c-white) !important;
}

.btn-wa {
    background-color: #25d366;
    color: var(--c-white) !important;
}

.cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    vertical-align: middle;
    -webkit-transition-property:
        color, background-color, border-color, border-bottom-color;
    transition-property:
        color, background-color, border-color, border-bottom-color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.33, 0, 0.3, 1);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
}

.wa-bg {
    background-color: #25d366;
}

/* ========================== FORM FIELD ==========================*/

.form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus,
.has-success .form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    color: #fff;
}

.form-control[disabled] {
    border: 0;
    background-color: #dedede;
}

.form-control[disabled]:hover {
    border: 0;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.has-error .form-control {
    box-shadow: none;
}

input.form-control {
    position: relative;
    height: 50px;
    padding: 0 15px;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #ffffff;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0) 0px 2px 4px;
    text-transform: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    transition: all 0.3s;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #ffffff39;
}

input.form-control:hover,
input.form-control:focus,
input.form-control:active {
    border-color: #ffffff;
}

input.form-control[readonly] {
    background-color: transparent;
    cursor: default;
    border: 0;
}

select.form-control {
    /*color: #08284b;*/
    cursor: pointer;
    height: auto;
    padding: 15px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 500;
    padding: 15px 30px 15px 15px;
    /*background-color: 08284b;*/
    color: var(--c-black);
    border: 1px solid var(--c-white);
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    background-image: url("../images/general/chevron-select.svg");
    background-size: 12px;
    box-shadow: none;
}
select.form-control:hover,
select.form-control:focus,
select.form-control:active {
    background-color: var(--c-white);
    border-color: var(--c-white);
    color: var(--c-black);
}

.select2-container--default .select2-selection--single {
    height: 40px !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: var(--c-black) !important;
    font-size: 16px !important;
    font-weight: 600;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 5px !important;
}

ul.select2-results__options > li:hover {
    color: var(--c-black) !important;
    background-color: #ffe3b8 !important;
}

.select2-container--default .select2-results__option--selected {
    color: var(--c-white) !important;
    background-color: var(--c-primary) !important;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected.select2-results__option--highlighted {
    color: var(--c-white) !important;
    background-color: var(--c-primary) !important;
}

li.select2-results__option--selectable {
    color: var(--c-black) !important;
}

.select2-container,
.select2-dropdown,
.select2-search,
.select2-results {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

textarea.form-control {
    background-color: transparent;
    height: 50px;
    position: relative;
    display: block;
    width: 100%;
    padding: 5px;
    text-transform: none;
    border: 0;
    border-radius: 0;
    color: #fff;
    border-bottom: 1px solid #fff;
    box-shadow: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    transition: all 0.3s;
    /*resize: none;*/
}

textarea.form-control:hover,
textarea.form-control:focus,
textarea.form-control:active {
    border-bottom: 1px solid #fff;
}

label.control-label {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 0;
    margin-left: 0;
    margin-bottom: 5px;
}

.underline {
    text-decoration: underline;
}

/*====================================== SECTION MODAL SECTION ======================================*/
.modal-content {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
}

.modal-header {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.modal-header .modal-logo {
    max-width: 125px;
    margin: 0 auto 15px auto;
}

.modal-header .close {
    opacity: 0.5;
    position: absolute;
    top: 15px;
    right: 10px;
    background-color: transparent;
    border: 1px solid #f54036;
    color: #f54036;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-header .close span {
    font-size: 20px;
    color: #fff;
    position: relative;
}

.modal-header .close:hover {
    opacity: 1;
    background-color: #f54036;
}

.modal-body {
    padding: 2rem 1rem;
}

.modal-footer {
    border-top: 1px solid var(--c-white);
    padding: 15px;
    /*border: 0;*/
    text-align: center;
}

/*====================================== SECTION COMPONENT BUTTON ======================================*/
#select-dropdown {
    margin-top: 5px;
    background: transparent;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    outline: 0;
    display: block;
    text-align: left;
    font-size: 16px;
    width: 100%;
    color: #5a5957;
    text-decoration: none;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

#select-dropdown.open {
    opacity: 0;
}

.button-group {
    position: relative;
    width: 215px;
}

.button-group .marka {
    position: absolute;
    right: 8px;
    top: 10px;
    z-index: 9999;
}

.button-group .marka i {
    background: grey !important;
}

.marka-icon-times {
    border: 1px solid grey;
    border-radius: 50%;
    top: 5px !important;
    right: 5px !important;
}

#dropdown-menu {
    position: absolute;
    top: -1em;
    right: 0;
    left: 0;
    margin: 1em auto;
    padding: 15px 20px;
    width: 100%;
    list-style: none;
    text-align: left;
    border-radius: 5px;
    background: #fff;
    transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: box-shadow 0.5s ease-out;
    box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

#dropdown-menu li {
    position: relative;
    line-height: 24px;
    margin-bottom: 15px;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    opacity: 0;
}

#dropdown-menu li:nth-last-child(1) {
    margin-bottom: 0;
}

#dropdown-menu li:hover {
    background-color: #33b8c41a;
}

#dropdown-menu li a {
    color: #5a5957;
    text-decoration: none;
    font-size: 1em;
}

#dropdown-menu.open {
    -webkit-transform: scale(1);
    transform: scale(1);
}

#dropdown-menu.open li {
    transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.open li:nth-child(1) {
    transition-delay: 0.07s !important;
}

.open li:nth-child(2) {
    transition-delay: 0.14s !important;
}

.open li:nth-child(3) {
    transition-delay: 0.21s !important;
}

.open li:nth-child(4) {
    transition-delay: 0.28s !important;
}

.open li:nth-child(5) {
    transition-delay: 0.35s !important;
}

/*====================================== SECTION COMPONENT WORDING ======================================*/
.ab-head {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    color: #fff;
    transition: all 0.3s;
}

.ab-body,
.ab-font {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    color: #fff;
    transition: all 0.3s;
}

.ab-ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.ab-break {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.c-md {
    font-size: 14px;
}

.c-small {
    font-size: 12px;
}

.xxs-small {
    font-size: 10px;
}

.c-white {
    color: #ffffff !important;
}

.c-black {
    color: #1d1d1b !important;
}

.c-primary {
    color: #f8ab28 !important;
}

.c-secondary {
    color: #959da3 !important;
}

.c-blue {
    color: #1847a7 !important;
}

.c-red {
    color: #f54036 !important;
}

.c-grey {
    color: var(--c-grey) !important;
}

.c-tertiary {
    color: var(--c-tertiary);
}

.c-green {
    color: #64a336 !important;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}

.bold {
    font-weight: 700 !important;
}

.x-bold {
    font-weight: 800 !important;
    letter-spacing: 1;
}

.xx-bold {
    font-weight: 900;
}

.box-shadow {
    -webkit-transition: box-shadow 0.5s ease-out;
    box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.5s ease-out;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.no-pad {
    padding: 0;
}

.rd-10 {
    border-radius: 10px;
}

.rd-15 {
    border-radius: 15px;
}

.rd-20 {
    border-radius: 20px;
}

.rd-30 {
    border-radius: 30px;
}

.rd-50 {
    border-radius: 50%;
}

.full {
    max-width: 100% !important;
    width: 100% !important;
}

.no-transform {
    text-transform: none !important;
}

.bg-primary {
    background-color: var(--c-primary) !important;
}

.bg-secondary {
    background-color: var(--c-secondary) !important;
}

.bg-black {
    background-color: var(--c-black) !important;
}

.bg-white {
    background-color: var(--c-white) !important;
}

.bg-form {
    background-color: var(--bg-form);
}

.bg-wa {
    background-color: #25d366 !important;
}

.bg-fb {
    background-color: #4267b2 !important;
}

.bg-form {
    background-color: var(--bg-form);
}

.max-24 {
    max-width: 24px !important;
}

.max-80 {
    max-width: 80px !important;
}

.max-128 {
    max-width: 128px !important;
}

.max-140 {
    max-width: 140px !important;
}

.max-160 {
    max-width: 160px !important;
}

.max-200 {
    max-width: 200px !important;
}

.max-240 {
    max-width: 240px !important;
}

.max-320 {
    max-width: 320px !important;
}

.max-480 {
    max-width: 480px !important;
}

.max-640 {
    max-width: 640px !important;
}

.max-720 {
    max-width: 720px !important;
}

.max-1024 {
    max-width: 1024px !important;
}

.subject-title {
    max-width: 1440px;
    margin: 0 auto;
}

.subject-desc {
    max-width: 1440px;
    margin: 0 auto;
}

.subject-info {
    max-width: 720px;
    margin: 0 auto;
}

.sticky-subhead {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hid {
    overflow: hidden;
}

.no-result {
    background-color: #08284b69;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cover {
    object-fit: cover;
}

.pointer {
    cursor: pointer !important;
}

.c-default {
    cursor: default;
}

.line-clamp-2 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
}

.line-clamp-3 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    overflow-wrap: break-word;
}

.checkbox-custom,
.radio-custom {
    opacity: 0;
    position: absolute;
}

.checkbox-custom,
.checkbox-custom-label,
.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.checkbox-custom-label,
.radio-custom-label {
    position: relative;
}

.checkbox-custom-label {
    line-height: 24px;
    padding-left: 40px;
}

.checkbox-custom + .checkbox-custom-label:before,
.radio-custom + .radio-custom-label:before {
    position: absolute;
    left: 0;
    top: -2px;
    content: "";
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.24);
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    padding: 0;
    margin-right: 10px;
    text-align: center;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
    content: "\f00c";
    font-family: "FontAwesome";
    background: #000000;
    color: #fff;
    border-color: #fff;
}

/*====================================== SECTION NAVBAR ======================================*/
header {
    background-color: var(--c-white);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 99;
    will-change: transform;
    border-bottom: 2px solid #d4d2d4;
    transition:
        background 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
    transition:
        transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
        background 0.3s;
    transition:
        transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
        background 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

header nav {
    position: relative;
    /* overflow: hidden; */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-cubic);
}

header nav#navigation.scrolled {
    position: relative;
    /* background-color: #000000; */
}

header nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.close-menu {
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 85%;
}

.close-menu span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 20px;
    color: #000233;
    text-align: center;
    box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

.container-nav {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.container-nav .nav-logo {
    padding-right: 15px;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    margin-right: auto;
}

.container-nav .nav-logo a img {
    width: 175px;
}

.container-nav .nav-search {
    height: 48px;
    justify-content: flex-start;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    -ms-flex-negative: 2;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    margin-right: 24px;
}

.nav-search .nav-search-bar select.form-control {
    height: 100%;
    font-size: 14px;
    padding: 0 8px 0 8px;
    border-radius: 0;
    border: 0;
    border-right: 1px solid var(--c-secondary);
    /* background-color: var(--white); */
    box-shadow: none;
    max-width: 120px;
    cursor: pointer;
}

.nav-search .nav-search-bar input.form-control {
    font-size: 14px;
    padding-right: 16px;
}

.nav-search .nav-search-bar button.btn-search {
    background-color: var(--c-secondary);
    box-shadow: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-image: url("../images/general/icon-search.svg") !important;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center center;
}

.nav-search .nav-search-bar input.form-control:has(input:focus),
.nav-search .nav-search-bar input.form-control:focus,
.nav-search .nav-search-bar input.form-control:focus-within,
.nav-search .nav-search-bar input.form-control:-moz-user-focus {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 50px;
}

select.form-control:has(+ input:focus),
select.form-control:has(+ input:focus-within) {
    opacity: 0;
}

.search-bar-button {
    position: absolute;
    right: 0;
}

.container-nav .nav-menu {
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
    /* flex-grow: 1; */
    /* flex-shrink: 1; */
    /* flex-basis: 55%; */
    flex-basis: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
}

.container-nav .nav-menu ul {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    text-align: center;
}

.container-nav .nav-menu li.active a {
    color: var(--c-primary);
    border-bottom: 2px dashed var(--c-primary);
}

.language-switcher-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--c-white);
    border-radius: 8px;
    padding: 4px;
    border: 2px dashed var(--c-primary);
}

.language-switcher-wrapper-m {
    display: none;
}

.container-nav .nav-menu .language-switcher-wrapper .lang-switcher:hover {
    color: var(--c-black) !important;
}

.container-nav
    .nav-menu
    .language-switcher-wrapper
    .lang-switcher.active:hover {
    color: var(--c-white) !important;
}

.language-switcher-wrapper .lang-switcher.active {
    background-color: var(--c-primary);
    color: var(--c-white);
    border-radius: 4px;
}

.container-nav .nav-menu li.li-login {
    width: 35px;
    height: 35px;
    border: 1px solid var(--c-secondary);
}

.container-nav .nav-menu li.li-login:hover {
    background-color: var(--c-white);
    border-color: transparent;
}

.container-nav .nav-menu li.li-login i {
    transform: translateY(9px);
    font-size: 24px;
}

.container-nav .nav-menu li.li-login:hover i {
    color: var(--c-primary);
    transform: scale(1.1) translateY(7px);
}

.container-nav .nav-menu li a {
    font-size: 14px;
    font-weight: 700;
    padding: 8px;
    color: var(--c-black);
}

.container-nav .nav-menu li button {
    font-size: 14px;
}

.container-nav .nav-menu li a:hover {
    color: var(--c-primary) !important;
}

.container-nav .nav-menu li a.ab-btn.btn-secondary,
.container-nav .nav-menu li a.ab-btn.btn-primary-gradient {
    padding: 8px 24px;
}

.container-nav .nav-menu li a.ab-btn.btn-primary-gradient:hover {
    color: var(--c-black) !important;
}

.container-nav .nav-menu .menu-cta {
    gap: 16px;
}

.nav-toggle {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    display: none;
    z-index: 10;
    position: relative;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    box-shadow: none;
    border: none;
    background-color: var(--c-transparent);
}

.nav-toggle span {
    display: block;
    opacity: 1;
    width: 20px;
    height: 2px;
    border-radius: 20px;
    background-color: var(--c-primary);
    font-size: 16px;
    transition: var(--trans-cubic);
}

.nav-toggle span:nth-child(2) {
    width: 15px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
}

.nav-toggle.active span:nth-child(2) {
    transform: translateX(-30px);
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
}

@media only screen and (min-width: 1056px) and (max-width: 1225px) {
    .container-nav .nav-logo a img {
        width: 150px;
        padding-right: 8px;
    }

    .container-nav .nav-search {
        margin-right: 12px;
    }

    .container-nav .nav-menu ul {
        gap: 12px;
    }

    .container-nav .nav-menu li a,
    .container-nav .nav-menu li button {
        font-size: 12px;
    }
}

.swiper-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background: transparent;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-wrapper .swiper-slide > a {
    width: 100%;
}

.swiper-button-wrapper {
    position: absolute;
    top: 22px;
    text-align: center;
}

.swiper-button-next {
    background-color: var(--c-black);
    background-image: url("../images/general/chevron-c-right.svg") !important;
    opacity: 1;
    transition: all 0.3s;
    right: 20px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%);
}

.swiper-button-prev {
    background-color: var(--c-black);
    background-image: url("../images/general/chevron-c-left.svg") !important;
    opacity: 1;
    transition: all 0.3s;
    left: 20px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%);
}

.swiper-button-next,
.swiper-button-prev {
    top: 45%;
    width: 48px !important;
    height: 48px !important;
    background-size: contain;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    opacity: 0;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.1;
}

@media only screen and (max-device-width: 1248px) {
    header #navigation .logo img.navbar-logo {
    }

    .menu-right li {
    }

    .menu-right li a {
    }
}

/*====================================== SECTION HOME PAGE ======================================*/
section.section-hero.hero-home {
    background-image: url("../images/bg-hero.jpeg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.subject-title .hero-logo {
    margin: 48px 0;
}

.nav-choose-container {
    margin-top: -57px;
}

.nav-choose-category .nav-tabs {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-bottom: 0;
}

.nav-choose-category .nav-tabs li.nav-item {
    border-radius: 0;
}

.nav-choose-category .nav-tabs li.nav-item .nav-link {
    border: 0;
    font-size: 1rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #dedcdc;
    color: var(--c-grey);
    border-bottom: 1px solid #f4f4f4;
}

.nav-choose-category .nav-tabs li.nav-item .nav-link.active {
    font-weight: 600;
    color: var(--c-primary);
}

.nav-choose-category .nav-tabs li.nav-item .nav-link:hover {
    background-color: #f4f4f4;
    color: var(--c-primary) !important;
}

.nav-choose-category .nav-tabs li.nav-item .nav-link.active:hover {
    color: var(--c-primary) !important;
}

.nav-choose-category .nav-tabs .nav-link.active,
.nav-choose-category .nav-tabs .show > .nav-link {
    background: var(--c-white) !important;
    cursor: default;
}

.nav-choose-category .nav-tabs .nav-link.active:focus,
.nav-choose-category .nav-tabs .nav-link.active:hover,
.nav-choose-category .nav-tabs .nav-link.active:active,
.nav-choose-category .nav-tabs .nav-link.active:target {
    color: var(--c-primary) !important;
}

section.section-home-about .search-wrapper {
    z-index: 2;
    max-width: 820px;
    /* padding: 16px 16px 24px 16px; */
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    /* box-shadow: 0 8px 18px 0 rgb(255 255 255 / 39%); */
}

section.section-home-about .search-wrapper .search-wrapper-inside {
    padding: 16px 16px 24px 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 8px 18px 0 rgb(255 255 255 / 39%);
}

section.section-home-about
    .search-wrapper
    .search-wrapper--inside.search-button {
    flex: 1;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 100%;
    /* padding: 0 16px; */
}

section.section-home-about {
    background: transparent linear-gradient(180deg, #da9529 0%, #000000 100%) 0%
        0% no-repeat padding-box;
}

.home-road-image {
    position: absolute;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 100%;
    right: 45%;
}

.home-road-image img {
    max-width: 100%;
    max-height: 100%;
}

.row-departure {
    margin-top: 64px;
}

.table-departure {
    position: relative;
    gap: 4px;
}

.schedule-button .swiper-button-prev,
.schedule-button .swiper-button-next {
    top: 16px;
    width: 36px !important;
    height: 36px !important;
}

.table-departure-head {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 0.4em;
    border-radius: 10px;
    opacity: 1;
}

.table-dbdy-wrapper {
    /* width: 50vw; */
}

.table-departure-body {
    /* padding: 0.5rem 1rem; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 0.4em;
}

.departure-header-content {
    max-width: 254px;
    width: 254px;
    padding: 1em 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .departure-header-content > .image-bus-wrapper {
    width: 271px;
} */

.departure-header-content.line {
    border-right: 1px solid white;
}

.departure-header-content.line:nth-last-child(1) {
    border-right: none;
}

.departure-body-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 104px;
    max-width: 254px;
    width: 254px;
    padding: 1em 1.5em;
    position: relative;
    /* margin-right: 0.2em; */
}

.departure-body-content.bus {
    background: transparent linear-gradient(90deg, #e5a938 0%, #facf86 100%) 0%
        0% no-repeat padding-box;
    opacity: 1;
}

.departure-body-content.schedule {
    background-color: var(--c-white);
}

.departure-body-content.head {
    background: transparent linear-gradient(90deg, #e5a938 0%, #facf86 100%) 0%
        0% no-repeat padding-box;
}

.arrow-slides-wrapper {
    display: none;
}

.arrow-slides-wrapper:hover {
    cursor: pointer;
}

.home-about-image {
    z-index: 3;
}

section.section-home-armada {
    margin-top: -130px;
    padding-top: 150px;
    padding-bottom: 150px;
    background: transparent linear-gradient(116deg, #3b3b3b 0%, #6b6b6b 100%) 0%
        0% no-repeat padding-box;
    opacity: 1;
}

.home-armada-feature .feature-list {
    max-width: 225px;
    width: 100%;
}

.home-armada-feature .feature-list .icon {
    flex-shrink: 0;
    flex-grow: 0;
    width: 48px;
    height: 48px;
    padding: 8px;
}

.home-armada-bus {
    bottom: 0;
    right: 0;
    max-width: 55%;
}

section.section-home-paket {
    background: transparent
        radial-gradient(
            closest-side at 28% 55%,
            #575757 0%,
            #4b4b4b 14%,
            #000000 100%
        )
        0% 0% no-repeat padding-box;
}

.home-paket-image {
    max-width: 50%;
    width: 100%;
}

section.section-contact {
    background: transparent
        radial-gradient(
            closest-side at 28% 55%,
            #575757 0%,
            #4b4b4b 14%,
            #000000 100%
        )
        0% 0% no-repeat padding-box;
}

.cta-choose-order {
    height: 128px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    border: 1px solid var(--c-primary);
    transition: all 6s;
}

.cta-choose-order:hover {
    background-size: 200%;
}
.partner-list {
    max-width: 100%;
    width: 100%;
    height: 80px;
}

.row-gap-5 {
    row-gap: 2rem;
}
/*====================================== SECTION ABOUT PAGE ======================================*/
.about-hero .subject-title {
    top: 100px;
    left: 100px;
}

.about-hero .subject-title .image {
    max-width: 200px;
}

section.section-about-intermezo {
    padding: 100px 0 0 0;
    margin-top: -20px;
    background: transparent linear-gradient(0deg, #d08a29 0%, #000000 100%) 0%
        0% no-repeat padding-box;
}

section.section-about-vm {
    margin-top: -100px;
    background: transparent linear-gradient(0deg, #444444 0%, #000000 100%) 0%
        0% no-repeat padding-box;
}

.vm-container {
    margin: 64px 0;
}

.service-card {
    max-width: 480px;
    height: 340px;
    background: transparent linear-gradient(0deg, #444444 0%, #000000 100%) 0%
        0% no-repeat padding-box;
    padding: 32px 24px;
    padding-bottom: 100px;
}

.service-card .image {
    max-width: 240px;
    bottom: -80px;
    right: -60px;
}

section.section-about-armada {
    padding-top: 75px;
    padding-bottom: 75px;
    /* background: transparent linear-gradient(116deg, #3B3B3B 0%, #6B6B6B 100%) 0% 0% no-repeat padding-box; */
}

.about-class .about-class-list {
    max-width: 128px;
}

.label-comingsoon {
    background-color: var(--c-primary);
    padding: 4px 8px;
    font-size: 8px;
    /* border-radius: 20px */
}
/*====================================== SECTION JADWAL RUTE PAGE ======================================*/
section.section-busrut-hero {
    background: transparent linear-gradient(180deg, #da9529 0%, #000000 100%) 0%
        0% no-repeat padding-box;
}

.busrut-content .form-control:focus,
.busrut-content .has-warning .form-control:focus,
.busrut-content .has-error .form-control:focus,
.busrut-content .has-success .form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--c-white);
    color: #fff;
}

.busrut-content select option:first-child {
    color: #9999991e;
}

.busrut-content label.control-label {
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.busrut-content .search-wrapper .image {
    height: 60px;
}

.busrut-schedule-head {
    border-bottom: 1px solid var(--c-white);
}

.schedule-card-terminal .terminal-map-link {
    position: absolute;
    top: 4px;
    right: 12px;
    transition: all 0.3s;
}

.schedule-card-terminal .terminal-map-link:hover {
    opacity: 0.8;
}

.schedule-card-terminal .terminal-map-link .image {
    width: 16px;
    height: fit-content;
}

.bustrut-content-schedule .schedule-card-terminal {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url(../images/terminal-placeholder.png);
    background-size: 100% 100%;
    padding: 0.75rem 4rem 2.5rem 4rem;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
}

.bustrut-content-schedule .schedule-bus-desc {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/bus-placeholder.png);
    background-size: 100% 100%;
    padding: 2rem 2.5rem 2rem 2rem;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    white-space: nowrap;
}

.schedule-card-time {
    padding: 1.5rem;
}

/*====================================== SECTION ARMADA KAMI PAGE ======================================*/
section.section-armada-hero {
    background: transparent
        linear-gradient(180deg, #ffffff 0%, #d38d29 51%, #000000 100%) 0% 0%
        no-repeat padding-box;
}

section.section-armada-seat {
    background: transparent
        linear-gradient(
            172deg,
            #000000 0%,
            #4b4b4b 44%,
            #4b4b4b 55%,
            #000000 100%
        )
        0% 0% no-repeat padding-box;
    padding-bottom: 25px;
}

section.section-armada-route {
    background-color: #000000;
}

.route-notice {
    padding: 16px 32px;
    width: fit-content;
    background: transparent linear-gradient(116deg, #3b3b3b 0%, #6b6b6b 100%) 0%
        0% no-repeat padding-box;
}

section.section-armada-gallery {
    padding-top: 25px;
    padding-bottom: 75px;
}

.carousel-gallery {
    margin: 16px 0;
    padding: 0 16px;
}

.carousel-gallery .swiper-slide a {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
}

.carousel-gallery .swiper-slide a:hover .image .overlay {
    opacity: 1;
}

.carousel-gallery .swiper-slide a .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.carousel-gallery .swiper-slide a .image .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.8);
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.carousel-gallery .swiper-slide a .image .overlay i {
    color: #fff;
    font-size: 26px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
}

.carousel-gallery .swiper-pagination {
    position: relative;
    bottom: auto;
    text-align: center;
    margin-top: 25px;
}

.carousel-gallery .swiper-pagination .swiper-pagination-bullet {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.carousel-gallery .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 0.7;
}

.carousel-gallery
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #d63031;
    transform: scale(1.1, 1.1);
}

.seat-class-spec {
    margin-right: -50px;
    z-index: 2;
    max-width: 350px;
    background: transparent linear-gradient(180deg, #444444 0%, #000000 100%) 0%
        0% no-repeat padding-box;
    padding: 24px 16px;
}

.seat-class-container {
    margin-bottom: 48px;
}

.seat-class-container.flex-row-reverse .seat-class-spec {
    margin-left: -50px;
    margin-right: 0;
}

.seat-class-gallery .swiper-button-prev {
    left: 60px;
}

.seat-class-container.flex-row-reverse .swiper-button-prev {
    left: 20px;
}

.seat-class-container.flex-row-reverse .swiper-button-next {
    right: 60px;
}

.seat-gallery {
    cursor: grab;
    height: 360px;
    width: 100%;
}

.seat-class-spec .class-spec-seat .image {
    max-width: 76px;
}

.about-armada-image {
}

/*====================================== SECTION FAQ PAGE ======================================*/
section.section-faq,
section.section-cekresi {
    padding-top: 75px;
    background: transparent linear-gradient(180deg, #ffffff 0%, #da9529 100%) 0%
        0% no-repeat padding-box;
}

.faq-wrapper-head a {
    font-size: 18px;
    padding: 8px 18px 0 0px;
}

.faq-wrapper-head a span {
    right: 8px;
}

.faq-wrapper-head a[aria-expanded="false"] {
    border-bottom: 1px solid var(--c-black);
}

.faq-wrapper-head a[aria-expanded="true"] {
    /* background-color: var(--c-black); */
    color: var(--c-black) !important;
    padding: 8px 24px 8px 12px;
    border-bottom: 1px solid var(--c-black);
}

.faq-wrapper-head a[aria-expanded="false"]:hover {
    background-color: var(--c-black);
    padding: 8px 12px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.faq-wrapper-head a[aria-expanded="false"]:focus {
    color: var(--c-black) !important;
}
.faq-wrapper-head a[aria-expanded="false"]:focus:hover {
    color: var(--c-white) !important;
}

.faq-wrapper-head a[aria-expanded="true"] > span {
    transform: rotate(90deg);
}

.faq-wrapper-body {
    padding: 8px 12px;
    color: var(--c-black);
}

/*====================================== SECTION CEK RESI PAGE ======================================*/
.cekresi-container {
    background-color: #9e9c9b94;
    background: transparent linear-gradient(61deg, #00000080 0%, #6b6b6b80 100%)
        0% 0% no-repeat padding-box;
    padding: 16px;
}

.cekresi-timeline {
    padding: 16px;
    background-color: #7f7f7fad;
}

.cekresi-timeline .timeline-wrapper {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #fff;
}

.cekresi-timeline .timeline-wrapper:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cekresi-timeline .timeline-wrapper .timeline-info p:nth-child(1) {
    flex-basis: 35%;
}

.timeline-activity .activity-wrapper .point {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--c-primary);
}

.timeline-activity .activity-wrapper:nth-child(1) .point:before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--c-white);
    position: absolute;
    left: 8px;
    top: 8px;
}

.timeline-activity .activity-wrapper {
    z-index: 1;
}

.timeline-activity .activity-wrapper:before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 24px;
    left: 13px;
    width: 5px;
    height: 100%;
    border-left: 2px dashed var(--c-white);
}

.timeline-activity .activity-wrapper:last-child:before {
    display: none;
}

/*====================================== SECTION KIRIM PAKET PAGE ======================================*/
section.section-home-about .tab-content #kirim_paket {
    /* margin-bottom: 280px; */
}

.packet-container-home {
    bottom: -248px;
    left: 0;
    margin: 0 auto;
    width: 100%;
}

.divider-package {
    width: 160px;
    height: 24px;
    margin: 0 auto;
    border-left: 2px solid var(--c-white);
    border-right: 2px solid var(--c-white);
}

.packet-desc-container {
    padding: 0.25rem 1rem 1rem 1rem;
    box-shadow: 0 8px 18px 0 rgb(255 255 255 / 39%);
}

.packet-desc .image {
    height: 128px;
}

.package-disclaimer {
    width: fit-content;
    border: 1px solid var(--c-white);
}

/*====================================== SECTION BOOKING PAGE ======================================*/
.trans-ease-inout-03 {
    transition: ease-in-out 0.3s;
}

section.section-heading {
    height: 13.75rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
}

.backto-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backto-container .cta {
    position: absolute;
    top: 30px;
    left: 30px;
}

.subject-heading span {
    display: inline-block;
}

.clipped-path {
    padding: 5px 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path 1s;
}

.subject-heading .image-head {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 60px;
}

.search-container {
    position: relative;
    margin-top: -40px;
}

.search-container .nav-pills .nav-link {
    font-weight: 500;
    border-radius: 10px 10px 0 0;
    transition: ease-in-out 0.3s;
}

.search-container .nav-pills .nav-link.active,
.search-container .nav-pills .show > .nav-link {
    transition: ease-in-out 0.3s;
    background-color: var(--c-white);
    color: var(--c-black);
}

.search-container .nav-pills .nav-link.active {
    transform: scale(1.1);
}

.search-container .nav-pills .nav-link.active {
    font-weight: 700;
}

.search-container .nav-pills .nav-link {
    background-color: var(--c-primary);
    color: var(--c-white);
}

.schedule-filter select.form-control {
    background-color: var(--c-white);
    color: var(--c-black);
    padding: 8px 24px 8px 16px;
}

.filter-container {
    margin-bottom: 16px;
}

.filter-container .filter-container-inside .head {
    flex-basis: 100%;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--c-grey);
}

.filter-container .filter-container-inside .filter-wrapper {
    flex-basis: 23%;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}

.filter-container .filter-container-inside .filter-wrapper label {
    margin-top: -6px;
}

.search-container .search-wrapper {
    max-width: 1024px;
    background-color: var(--c-white);
    width: 100%;
    padding: 16px 16px 24px 16px;
    box-shadow: 0 8px 18px 0 rgb(255 255 255 / 39%);
}

.countdown-container .tick {
    font-size: 42px;
}

.countdown-container .tick a {
    display: none;
    transition: all 0.3s;
}

.tick-label {
    font-size: 0em;
    text-align: center;
}

.countdown-container .tick .tick-group {
    transform: scale(0.8);
    display: flex;
    margin: 0;
    text-align: center;
    margin-bottom: 24px;
}

.search-wrapper .search-wrapper-inside {
    flex-direction: row;
    row-gap: 24px;
}

.search-wrapper .search-wrapper--inside {
    flex-basis: 33%;
    flex-direction: row;
    gap: 8px;
    padding-right: 16px;
    /* gap: 8px; */
}

.search-wrapper .search-wrapper--inside input.form-control {
    font-size: 14px;
    font-weight: 500;
}

.search-wrapper .search-wrapper--inside label.control-label {
    margin-bottom: 0;
}

.label-package {
    background-color: #e8e8e8;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 4px;
    flex-shrink: 0;
    flex-grow: 0;
}

.search-wrapper .search-wrapper--inside .icon-image,
.search-wrapper .search-wrapper--paket .icon-image {
    flex-shrink: 0;
    flex-grow: 0;
    width: 32px;
    height: 32px;
    display: flex;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid #000000;
    /*width: 100%;*/
}

.search-wrapper .search-wrapper--inside .form-group select,
.search-wrapper .search-wrapper--paket .form-group select {
    border: 0;
    border-radius: 0;
    background-color: transparent;
    padding: 0 16px 4px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
}

.search-wrapper .search-wrapper--inside .form-group input,
.search-wrapper .search-wrapper--paket .form-group input {
    height: auto;
    padding: 0 0 4px 0;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
    background-color: transparent;
}

.search-wrapper-inside-row .search-wrapper--inside {
    flex-basis: 50%;
}

.search-wrapper .search-wrapper--inside.search-button {
    flex: 1;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 100%;
    /* padding: 0 16px; */
}

.modal-passenger {
    display: none;
    z-index: 7;
    position: absolute;
    top: 55px;
    left: 0;
    width: 320px;
    padding: 16px 12px;
    background-color: var(--c-white);
    box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
    border: 2px solid var(--c-primary);
}

.modal-passenger.active {
    display: block;
}

.passenger-wrapper .passenger-cta {
    height: 40px;
    align-items: center;
}

.passenger-wrapper .passenger-cta .button-psg {
    width: 24px;
    height: 24px;
    padding: 4px;
    border: 1px solid var(--c-primary);
    border-radius: 50%;
    font-size: 14px;
}

.ab-btn.button-psg.button-dec.c-primary.disabled,
.ab-btn.button-psg.button-inc.c-primary.disabled {
    cursor: not-allowed;
    border-color: var(--c-grey) !important;
    color: var(--c-grey) !important;
    opacity: 0.3;
}

.passenger-wrapper .passenger-cta input.form-control {
    width: 32px;
    height: 32px;
    font-size: 15px;
    text-align: left;
    text-align: -webkit-left;
    border-bottom: 0;
}

.passenger-wrapper .passenger-cta input::-webkit-date-and-time-value,
.passenger-wrapper .passenger-cta input[type="date"] {
    text-align: left;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-results__option {
    color: var(--c-black);
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #e5992454 !important;
}

.schedule-booking-card {
    background-color: var(--c-primary);
    border-radius: 20px;
}

.schedule-booking-card .schedule-booking-discount {
    padding: 0.25rem 1rem;
}

.schedule-booking-card .schedule-booking-discount .sd-icon {
    max-width: 1.5rem;
    animation: sd-icon-anim 0.8s ease-in-out infinite;
}

@keyframes sd-icon-anim {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(6deg);
    }
}

.schedule-list {
    /*background-color: #231f20a6;*/
    flex-direction: column;
    border: 2px solid var(--c-white);
    padding: 15px 30px;
    border-radius: 20px;
    background: rgb(22, 20, 21);
    background: -moz-linear-gradient(
        325deg,
        rgba(22, 20, 21, 1) 15%,
        rgba(22, 20, 21, 1) 50%,
        rgba(74, 74, 74, 1) 100%
    );
    background: -webkit-linear-gradient(
        325deg,
        rgba(22, 20, 21, 1) 15%,
        rgba(22, 20, 21, 1) 50%,
        rgba(74, 74, 74, 1) 100%
    );
    background: linear-gradient(
        325deg,
        rgba(22, 20, 21, 1) 15%,
        rgba(22, 20, 21, 1) 50%,
        rgba(74, 74, 74, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#161415", endColorstr="#4a4a4a", GradientType=1);
    background-size: 100%;
}

.schedule-list:hover {
    background-size: 500%;
}

.schedule-list-fromto {
    margin-top: 16px !important;
}

.schedule-list-fromto.list-fromto-package {
    margin-top: 0 !important;
}

.schedule-list-from .list-from-inside a {
    display: block;
    line-height: 12px;
}

.schedule-list-date p.ab-body {
    display: inline-block;
    background-color: #fff;
    padding: 4px 12px;
}

.schedule-list-from .list-from-inside span.terminal-place {
    width: 100%;
    height: 100%;
    font-size: 8px;
    line-height: 12px;
    transition: all 0.3s;
}

.schedule-list-from .list-from-inside:hover span.terminal-place {
    color: var(--c-primary) !important;
}

.schedule-list-fromto .schedule-list-divider {
    display: flex;
    flex: 0.9;
    align-items: center;
    flex-direction: column;
}
.schedule-list-fromto .schedule-list-divider .category {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    justify-content: center;
}

.schedule-list-fromto .schedule-list-divider .category span {
    display: inline-block;
    font-size: 12px;
    background-color: var(--c-secondary);
    padding: 4px 8px;
    border-radius: 8px;
}

.schedule-list-fromto .schedule-list-divider .category svg {
    width: 16px;
    height: 16px;
}
.schedule-list-from .c-map-link i {
    margin-right: 0.125rem;
}
.schedule-list-from .c-map-link:hover {
    color: var(--c-primary) !important;
}

.ribbon-best-deal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 200px;

    text-align: center;
    padding: 4px 8px;

    transform: translate(-18px, 100px) rotate(-45deg);
    transform-origin: 0% 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.fromto-divider {
    position: relative;
    margin: 16px 0 12px 0;
    width: 100%;
    height: 1px;
    border-top: 3px dashed var(--c-primary);
}

.fromto-divider:before {
    content: "";
    position: absolute;
    left: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--c-primary);
    top: -7px;
}

.fromto-divider:after {
    content: "";
    position: absolute;
    right: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--c-primary);
    top: -7px;
}

.fromto-divider .bus-trip-wrapper {
    position: absolute;
    top: -7px;
    left: 0;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.bus-trip-modal {
    top: -14.5px !important;
}

.fromto-divider .bus-trip-animation {
    /*background-color: #161415;*/
    border-radius: 24px;
    background-color: var(--c-secondary);
    border: 2px solid var(--c-primary);
    padding: 2px 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-out 0.4s;
}
body.modal-open>section,
/* body.modal-open > section.section-heading,
body.modal-open > section.section-booking-form,
body.modal-open > section.section-dashboard, */
body.modal-open>header,
body.modal-open>footer,
.modal-backdrop.fade.show {
    z-index: 1;
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

.modal-detail-booking .schedule-list:hover {
    background-size: 100%;
}

.category-choose {
    display: none;
}

.category-choose-card {
    background-color: #231f20a6;
    border: 2px solid var(--c-primary);
    padding: 15px;
    border-radius: 10px;
}

.category-icon .category-icon-wrapper img {
    width: 64px;
    height: 64px;
}

.category-choose-card .category-feature ul li i {
    width: 16px;
    text-align: center;
    margin-right: 4px;
}

.category-choose-card .category-cta,
.row-booking-passenger .payment-cta {
    max-width: 320px;
}

.sticky-payment {
    z-index: 7;
    position: sticky;
    top: 100px;
    margin: 0 auto;
    transition: ease-in-out 0.5s;
}

#modalDetail .modal-footer {
    padding: 8px 16px;
}

.list-transit .timeline-wrapper-head {
    border-top: 1px solid var(--c-grey);
    border-bottom: 1px solid var(--c-grey);
}

.list-transit .timeline-wrapper {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.list-transit .timeline-wrapper:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.list-transit .timeline-wrapper .timeline-info p:nth-child(1) {
    flex-basis: 35%;
}

.list-transit .timeline-activity .activity-wrapper .point {
    width: 28px;
    height: 28px;
    background-color: var(--c-primary);
}

.list-transit .timeline-activity .activity-wrapper:nth-child(1) .point:before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--c-white);
    position: absolute;
    left: 8px;
    top: 8px;
}

.list-transit .timeline-activity .activity-wrapper .point .point-line {
    width: 2px;
    /* border-left: 2px dashed; */
    height: 375%;
    margin: 29px auto 0 auto;
    background: linear-gradient(to bottom, transparent 50%, var(--c-white) 50%);
    background-size: 100% 10px;
    background-repeat: repeat-y;
    animation: none;
}

.list-transit
    .timeline-activity
    .activity-wrapper:last-child
    .point
    .point-line {
    display: none;
}

.list-transit .timeline-activity .activity-wrapper {
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
}

.list-transit .timeline-activity .activity-wrapper .desc-time,
.list-transit .timeline-activity .activity-wrapper .desc {
    flex-shrink: 1;
    /* min-width: 148px;
    max-width: 148px; */
    min-width: 165px;
    max-width: 165px;
}

.list-transit .timeline-activity .activity-wrapper:before {
    display: none;
}

.list-transit .timeline-activity .activity-wrapper:last-child:before {
    display: none;
}

.list-transit .timeline-activity .activity-wrapper .desc .ab-body {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-word;
    line-height: 1.1;
}

.activity-wrapper-est {
    transform: translateX(-52px);
}

.list-transit .timeline-wrapper-transit {
    background-color: #474747;
    padding: 1rem;
    border-radius: 8px;
}

/*====================================== SECTION BOOKING FORM PAGE ======================================*/
ul li.wizard-step {
    cursor: not-allowed;
    position: relative;
    z-index: 1;
    padding-right: 36px;
}

ul li.wizard-step:before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 12px;
    left: 34px;
    width: 100%;
    height: 5px;
    border-bottom: 2px dashed var(--c-white);
}

ul li.wizard-step:first-child:before {
    left: 42px;
}

ul li.wizard-step:nth-child(2):before {
    left: 53px;
}

ul li.wizard-step:nth-child(3):before {
    left: 75px;
    width: 90%;
}
ul li.wizard-step:nth-child(4):before {
    left: 60px;
    width: 85%;
}

ul li.wizard-step:last-child:before {
    left: 0;
    width: 0;
}

ul li.wizard-step .number {
    background-color: var(--c-white);
    width: 30px;
    height: 30px;
    color: var(--c-black);
}

ul li.wizard-step .step-name {
    max-width: 150px;
    width: 100%;
}

ul li.wizard-step .step-name p {
    color: grey;
    line-height: 14px;
}

ul li.wizard-step a {
    cursor: not-allowed;
}

ul li.wizard-step.active .number {
    background-color: var(--c-primary);
    color: var(--c-white);
    font-weight: 800;
}

ul li.wizard-step.active a {
    cursor: pointer;
}

ul li.wizard-step.active .step-name p {
    color: var(--c-primary);
    font-weight: 800;
}

ul li.wizard-step.active:before {
    border-color: var(--c-primary);
}

section.section-thankyou ul li.wizard-step.active a {
    cursor: not-allowed;
}

.section-thankyou .wizard-timeline ul li.wizard-step:nth-child(3):before {
    left: 34px;
    width: 100%;
}

.sticky-schedule {
    z-index: 7;
    background-color: #000000;
    position: sticky;
    top: 70px;
    width: 60% !important;
    margin: 0 auto;
    background-size: 500%;
    padding: 0 8px 4px 8px;
    transition: ease-in-out 0.5s;
}

.schedule-list.sticky-schedule .schedule-list-date,
.schedule-list.sticky-schedule .trip-hour,
.schedule-list.sticky-schedule .seat-left,
.schedule-list.sticky-schedule .category {
    z-index: -1;
    /*display: none;*/
    margin-top: -15px;
    visibility: hidden;
    opacity: 0;
}

.schedule-list .seat-left {
    margin-top: 4px;
}

.schedule-list.sticky-schedule .schedule-list-date {
    /* margin-top: -35px; */
    height: 15px;
    margin-top: 0;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    transform: translateY(8px);
}
.schedule-list.sticky-schedule .schedule-list-date p.ab-body {
    font-size: 14px;
}

.schedule-list.sticky-schedule .schedule-list-fromto .schedule-list-divider {
    margin-top: 16px;
}

.booking-form-login {
    background-color: var(--bg-form);
    border-radius: 10px;
    padding: 15px 15px 0 15px;
}

section.section-booking-form .custom-checkbox {
    display: none;
}

section.section-booking-form .custom-checkbox + label {
    font-weight: normal;
    cursor: pointer;
}

section.section-booking-form .custom-checkbox + label span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--c-primary);
}

section.section-booking-form .custom-checkbox + label span::before {
    content: "";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    width: 9px;
    height: 9px;
    border-radius: 4px;
    background-color: var(--c-primary);
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

section.section-booking-form .custom-checkbox:checked + label span::before {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
}

section.section-booking-form .custom-checkbox:disabled + label {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
}

section.section-booking-form .custom-checkbox:disabled + label,
.custom-checkbox:disabled + label span {
    cursor: default;
}

.section-booking-form input.form-control {
    color-scheme: dark;
}

.promo-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0.25rem;
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
}

.promo-wrapper .promo-diskon {
    font-size: 8px;
}

.promo-wrapper .promo-content {
    font-size: 10px;
    font-weight: bold;
}

.modal-body-luggage {
    position: relative;
    height: 60vh;
    overflow-y: auto;
}

.modal-footer-luggage:before {
    content: "";
    height: 40px;
    position: absolute;
    top: -41px;
    left: 0;
    width: 100%;
    background-image: -webkit-gradient(
        linear,
        left bottom,
        right bottom,
        from(rgba(0, 0, 0, 0)),
        to(#000)
    );
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
}

.row-luggage {
    border-bottom: 1px solid var(--c-secondary);
    padding-bottom: 16px;
}

.row-luggage:nth-last-child(1) {
    border-bottom: 0;
    padding-bottom: 0;
}

.custom-radio {
    margin: 0 0 8px 0;
}

.custom-radio input {
    display: none;
}

.custom-radio input:checked + label:after {
    content: "";
    position: absolute;
    top: 16px;
    left: 12px;
    width: 10px;
    height: 10px;
    background: var(--c-primary);
    border-radius: 10px;
    display: block;
}

.custom-radio label {
    cursor: pointer;
    border: 1px solid #2c2c2c;
    position: relative;
    padding: 10px 15px 10px 40px;
    border-radius: 10px;
    display: flex;
}

.custom-radio input:checked + label {
    border: 1px solid var(--c-primary);
}

.custom-radio label:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 8px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 18px;
    display: block;
    border: 2px solid #dedede;
    transition: ease-in-out 0.3s;
}

.custom-radio__label {
    color: var(--c-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    color: #fff;
    transition: all 0.3s;
}

/*====================================== SECTION SEAT PAGE ======================================*/
.booking-seat-wrapper {
    margin: 16px 0 32px 0;
    padding-top: 16px;
    border-top: 1px solid var(--c-white);
}
.container-seat {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-seat .container-seat-wrapper,
.row-choose-seat .container-bottom-deck,
.row-choose-seat .container-top-deck {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.row-choose-seat .container-bottom-deck {
    max-width: 480px;
    width: 100%;
    padding: 16px;
    padding-top: 260px;
    background-image: url("../images/bus-steer.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}
.lang-en .row-choose-seat .container-bottom-deck {
    background-image: url("../images/en/bus-steer.png");
}

.row-choose-seat .container-bottom-deck:before {
    content: "";
    border-top: 1px solid var(--c-white);
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
}

.row-choose-seat .container-top-deck {
    margin-top: 16px;
    max-width: 480px;
    width: 100%;
    padding: 24px 16px;
    padding-top: 130px;
    padding-bottom: 200px;
    background-image:
        url("../images/bus-front.png"), url("../images/bus-back.png");
    background-repeat: no-repeat;
    background-position:
        top center,
        bottom center;
    background-size: contain;
}

.lang-en .row-choose-seat .container-top-deck {
    background-image:
        url("../images/en/bus-front.png"), url("../images/en/bus-back.png");
}

.row-choose-seat .container-bottom-deck .container-seat-wrapper,
.row-choose-seat .container-top-deck .container-seat-wrapper {
    padding: 0 8px;
    position: relative;
    border-left: 1px solid var(--c-white);
    border-right: 1px solid var(--c-white);
}

.row-choose-seat .container-bottom-deck .container-seat-wrapper {
    padding-top: 24px;
}

.row-choose-seat .container-top-deck .container-seat-wrapper {
    padding: 16px 8px 0 8px;
}

.bus-part {
    position: absolute;
    top: 35%;
    right: -40px;
}

.bus-part h4 {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.seat-normal {
    position: relative;
    overflow: hidden;
    /* width: 100%; */
    width: 80px;
    height: 120px;
    margin: 0 auto;
    border: 1px solid var(--c-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.seat-space {
    height: 64px;
    padding: 10px;
    width: 100%;
    border: solid 1px #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.seat-space .seat-number {
    font-size: 12px !important;
    font-weight: 700;
}

.seat-normal.seat-unavailable .seat-number {
    opacity: 0.3;
}

.container-sleeper .seat-number,
.container-wrap-executive .seat-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.seat-sleeper:before,
.container-wrap-executive:before {
    z-index: 9;
    font-size: 10px;
    color: var(--c-grey);
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align: center;
    font-style: italic;
    padding: 0 8px;
}

.seat-sleeper:before {
    content: "Sleeper";
}

.container-wrap-executive:before {
    content: "Executive";
}

.seat-space:before {
    display: none;
}

.container-seat-wrapper .form-group {
    text-align: center;
}

.container-seat-wrapper input[type="checkbox"] {
    display: none;
}

.container-seat-wrapper input[type="checkbox"] + .seat-number,
.container-seat-wrapper input[type="checkbox"]:not(checked) + .seat-number {
    background-color: var(--c-primary);
    cursor: pointer;
    padding: 8px;
    /* border-radius: 10px; */
    text-align: center;
    transition: all ease-in-out 0.3s;
}

.container-seat-wrapper input[type="checkbox"]:checked + .seat-number {
    position: relative;
    border: solid 1px var(--c-transparent);
    background: var(--c-white);
    color: var(--c-primary);
    transition: all ease-in-out 0.3s;
}

.container-seat-wrapper input[disabled]:not(checked) + .seat-number {
    width: 100%;
    height: 100%;
    cursor: not-allowed;
    background-color: var(--c-grey);
    opacity: 0.3 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.seat-normal.seat-unavailable,
label[data-seat-unavailable-temporary="true"],
.seat-taken {
    background-color: #1e1e1e;
    cursor: not-allowed !important;
}

.seat-notice {
    position: sticky;
    top: 64px;
    padding-top: 64px;
}

.seat-notice-wrapper .color-notice span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--c-white);
    border-radius: 8px;
}

.seat-notice-wrapper .color-notice span.color-taken {
    /* background-color: var(--c-transparent); */
    background-color: #1e1e1e;
}

.seat-notice-wrapper .color-notice span.color-you {
    background-color: var(--c-white);
}

.seat-notice-wrapper .color-notice span.color-empty {
    background-color: var(--c-primary);
}

.seat-notice-wrapper .color-notice span.color-discon {
    background-color: #ff0000;
    height: 20px;
    border-radius: 6px;
}

.cta-to-checkout {
    border-top: 1px solid var(--c-white);
    padding-top: 16px;
    margin-top: 24px;
}

/*====================================== SECTION CHECKOUT PAGE ======================================*/
.checkout-passenger .checkout-passenger-timer {
    background-color: #e59924;
    padding: 15px 15px 15px 15px;
}

.checkout-passenger-list {
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid #fff;
}

.checkout-passenger-list ul li {
    border-bottom: 1px solid var(--c-secondary);
    padding-bottom: 8px;
}

.checkout-passenger-list ul li label.control-label {
    font-weight: 300;
}

.checkout-passenger-list > ul > li:nth-last-child(1) {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.passenger-detail-wrapper span.passenger-detail-button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout-passenger-list .checkout-passenger-category {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    justify-content: center;
}

.checkout-passenger-list .checkout-passenger-category span {
    display: inline-block;
    font-size: 12px;
    background-color: var(--c-secondary);
    padding: 4px 8px;
    border-radius: 8px;
}
.checkout-passenger-list .checkout-passenger-category .seat-divider {
    background-color: #636363;
    width: 1px;
    height: 24px;
}

.checkout-passenger-list .checkout-passenger-category svg {
    width: 16px;
    height: 16px;
}

.booking-form-login .payment-list {
    border-bottom: 1px solid var(--c-secondary);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.trigger-modal-ocr {
    height: 40px !important;
    width: 40px !important;
}

.modal-ocr-wrapper .camera-wrapper {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.modal-ocr-wrapper .camera-wrapper #video-camera-ocr {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
    background-color: var(--c-white);
    transform-origin: center center;
}

.modal-ocr-wrapper .camera-wrapper .ocr-ktp-border {
    top: 15%;
    left: 5%;
    width: 90%;
    height: 70%;
    border: 2px dashed var(--c-white);
    pointer-events: none;
    border-radius: 12px;
}
/*====================================== SECTION TICKET PAGE ======================================*/
section.section-ticket {
    background-color: var(--c-white);
    background-image: url("../images/bg-ticket.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 32px 0;
}

.ticket-head .cta {
    display: flex;
    gap: 16px;
}

.ticket-head .image {
    max-width: 320px;
    margin: 32px auto;
}

.ticket-notice {
    width: 100%;
    background-color: var(--c-primary);
    padding: 8px 0;
    text-align: center;
}

.ticket-fyi {
    margin: 48px auto 48px auto;
    border-top: 2px solid #d8d8d8;
    border-bottom: 2px solid #d8d8d8;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
}

.ticket-fyi .ticket-fyi-wrapper {
    max-width: 320px;
    width: 100%;
    display: flex;
    gap: 24px;
}

.ticket-fyi .ticket-fyi-wrapper .image {
    width: 48px;
    height: 48px;
    flex-grow: 0;
    flex-shrink: 0;
}

.ticket-body {
    max-width: 1024px;
    margin: 48px auto 0 auto;
}

.ticket-body .ticket-passenger {
    display: flex;
}

.ticket-body .ticket-passenger .ticket-left-side {
    position: relative;
    /* background-image: url("../images/favicon.png"); */
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    display: flex;
    flex-direction: column;
    max-width: 70%;
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 2px solid var(--c-primary);
    border-right: 3px dashed var(--c-primary);
}

.ticket-body .ticket-passenger .ticket-left-side:before {
    content: "";
    z-index: 2;
    position: absolute;
    top: 50%;
    left: -10px;
    width: 50px;
    height: 50px;
    background-color: var(--c-white);
    border: 2px solid transparent;
    border-top-color: var(--c-primary);
    border-right-color: var(--c-primary);
    border-bottom-color: var(--c-primary);
    border-radius: 100%;
    pointer-events: none;
}

.ticket-body .ticket-passenger .ticket-left-side:after {
    content: "";
    z-index: 2;
    position: absolute;
    bottom: -8px;
    right: -20px;
    width: 36px;
    height: 36px;
    background-color: var(--c-white);
    border: 2px solid transparent;
    border-top-color: var(--c-primary);
    border-left-color: var(--c-primary);
    border-right-color: var(--c-primary);
    border-radius: 100%;
    pointer-events: none;
}

.ticket-body .ticket-passenger .ticket-right-side {
    position: relative;
    display: flex;
    max-width: 30%;
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    flex-direction: column;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 2px solid var(--c-primary);
    border-left: 0;
}

.ticket-body .ticket-passenger .ticket-right-side:before {
    overflow: hidden;
    content: "";
    z-index: 2;
    position: absolute;
    top: 50%;
    right: -10px;
    width: 50px;
    height: 50px;
    background-color: var(--c-white);
    border: 2px solid transparent;
    border-top-color: var(--c-primary);
    border-left-color: var(--c-primary);
    border-bottom-color: var(--c-primary);
    border-radius: 100%;
    pointer-events: none;
}

.ticket-body .ticket-passenger .ticket-left-side .top,
.ticket-body .ticket-passenger .ticket-right-side .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: var(--c-primary);
    padding: 16px 32px;
}

.ticket-body .ticket-passenger .ticket-left-side .top {
    border-top-left-radius: 15px;
}

.ticket-left-side .middle,
.ticket-left-side .bottom {
    padding: 16px 32px 16px 48px;
}

.ticket-left-side .middle .mid-wrapper-top {
    display: flex;
    justify-content: flex-start;
    gap: 72px;
}

.ticket-left-side .middle .mid-wrapper-top {
    padding: 0 16px 16px 16px;
    border-bottom: 2px solid var(--c-primary);
}

.ticket-left-side .middle .mid-wrapper-container {
    display: flex;
    justify-content: space-between;
}

.ticket-left-side .middle .mid-wrapper-mid {
    display: flex;
    gap: 48px;
    padding: 8px 16px 0 16px;
}

.ticket-left-side .middle .mid-wrapper-container .mid-barcode {
    width: 150px;
    height: 150px;
}

.ticket-left-side .bottom-wrapper {
    border-top: 2px solid var(--c-primary);
    display: flex;
    padding: 0 0 16px 16px;
}

.ticket-left-side .bottom-wrapper .wrapper-group,
.ticket-right-side .bottom-wrapper .wrapper-group {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.ticket-left-side .bottom-wrapper .wrapper-group {
    border-right: 1px solid var(--c-primary);
    padding-right: 24px;
    padding-left: 24px;
}

.ticket-left-side .bottom-wrapper .wrapper-group:nth-child(1) {
    padding-left: 0;
}

.ticket-left-side .bottom-wrapper .wrapper-group:last-child {
    background-color: var(--c-primary);
    width: 100%;
}

.ticket-left-side .bottom-wrapper .wrapper-group:last-child p {
    font-size: 18px;
}

.ticket-body .ticket-passenger .ticket-right-side .top {
    position: relative;
    padding-top: 17px;
    border-top-right-radius: 15px;
}

.ticket-body .ticket-passenger .ticket-right-side .top:before {
    content: "";
    z-index: 2;
    position: absolute;
    top: -8px;
    left: -20px;
    width: 36px;
    height: 36px;
    background-color: var(--c-white);
    border: 2px solid transparent;
    border-bottom-color: var(--c-primary);
    border-left-color: var(--c-primary);
    border-right-color: var(--c-primary);
    border-radius: 100%;
    pointer-events: none;
}

.ticket-body .ticket-passenger .ticket-right-side .top .image {
    max-width: 240px;
    width: 100%;
}

.ticket-right-side .middle {
    padding: 16px 24px 16px 24px;
}

.ticket-right-side .middle .mid-wrapper-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-right-side .middle .mid-wrapper-point {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.ticket-right-side .bottom-wrapper {
    margin-top: 16px;
    display: flex;
    justify-content: space-around;
    border-top: 2px solid var(--c-primary);
}

.ticket-right-side .bottom-wrapper .wrapper-group {
    padding-top: 8px;
    width: 100%;
    text-align: center;
    border-right: 1px solid var(--c-primary);
}

.ticket-right-side .bottom-wrapper .wrapper-group:last-child {
    border-right: 0;
}

.ticket-snk ol {
    margin: 32px 0;
}

.ticket-snk ol li {
    color: #000000;
}

.ticket-footer {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
}

.ticket-footer .footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticket-footer .footer-left .image {
    max-width: 240px;
    width: 100%;
}

.ticket-footer .footer-right .footer-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.ticket-footer .footer-right .footer-wrapper .icon {
    width: 32px;
    height: 32px;
}

/*====================================== SECTION SNK PAGE & PRIVACY PAGE ======================================*/
section.section-snk-privacy,
section.section-notfound,
section.section-thankyou {
    background: transparent
        linear-gradient(177deg, #000000 0%, #4b4b4b 56%, #000000 100%) 0% 0%
        no-repeat padding-box;
}

section.section-snk-privacy .subject-title h2 {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-white);
}

.snk-wrapper {
    height: 65vh;
    overflow-y: scroll;
}

.snk-wrapper ol li {
    margin-bottom: 8px;
}

/*====================================== SECTION LOGIN PAGE ======================================*/
section.section-login {
    background-image: url("../images/bg-login.jpg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    min-height: 100vh;
}

.login-container,
.forget-container {
    background-color: rgb(54 54 54 / 75%);
    padding: 32px 32px 32px 32px;
}

.forget-container {
    padding: 16px 32px 32px 32px;
}

.login-container.active,
.forget-container {
    display: none;
    z-index: -1;
    opacity: 0;
}

.forget-container.active {
    display: block;
    z-index: 1;
    opacity: 1;
}

/*====================================== SECTION REGISTER PAGE ======================================*/

section.section-register {
    background-image: url("../images/bg-regis.jpg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    min-height: 100vh;
}

.divider {
    background-color: var(--c-white);
    margin-top: 24px;
    width: 100%;
    height: 1px;
}

/*====================================== SECTION DASHBOARD PAGE ======================================*/
section.section-dashboard {
    background: transparent
        linear-gradient(
            172deg,
            #000000 0%,
            #4b4b4b 44%,
            #4b4b4b 55%,
            #000000 100%
        )
        0% 0% no-repeat padding-box;
}

.menu-mobile {
    display: none;
}

.dashboard-menu {
    position: sticky;
    top: 100px;
    margin: 32px 0;
    /* background: transparent linear-gradient(0deg, #444444 0%, #000000 100%) 0% 0% no-repeat padding-box; */
    background: transparent linear-gradient(180deg, #020202 0%, #444444 100%) 0%
        0% no-repeat padding-box;
    border: 1px solid var(--c-white);
}

.dashboard-menu .dashboard-menu-wrapper {
    padding: 16px 8px;
    background-image: url("../images/bg-road-grey.png");
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.dashboard-menu .menu-logout {
    top: 10px;
    right: 10px;
}

.dashboard-menu .menu-logout button.btn-primary {
    padding: 0;
    width: 32px;
    height: 32px;
    background-color: red;
}

.dashboard-menu .dashboard-name {
    margin: 0 0 16px 16px;
    max-width: 80%;
}

.dashboard-menu ul li a {
    color: var(--c-white);
}

.dashboard-menu ul li a.c-default .icon {
    background-color: transparent;
    color: var(--c-white);
}

.dashboard-menu ul li a .icon {
    width: 32px;
    height: 32px;
    background-color: var(--c-white);
    color: var(--c-black);
    border-radius: 50%;
}

.dashboard-menu ul li.active a .icon {
    background-color: var(--c-primary);
    color: var(--c-white);
}

.dashboard-menu ul li.active a {
    color: var(--c-primary);
    font-weight: 700;
}

.dashboard-menu ul li ul {
    margin: 8px 16px 0 32px;
}

.dashboard-menu ul li a.menu-disabled {
    color: #626262 !important;
    cursor: not-allowed;
}

.dashboard-menu ul li a.menu-disabled span {
    display: inline-block;
    padding: 4px 8px;
    font-size: 8px;
}

.dashboard-menu ul li a span.ticket-counter {
    width: 24px;
    height: 24px;
    font-size: 14px;
}

.dashboard-container {
    margin: 32px auto 64px 0;
}

table.table-dashboard {
    border: 1px solid var(--c-white);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 16px;
}

table.table-dashboard thead tr th {
    color: var(--c-primary);
    font-weight: 700;
    text-align: center;
}

table.table-dashboard tbody {
    padding: 16px 0 !important;
}

table.table-dashboard tbody tr td {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    color: #fff;
    color: var(--c-white);
    font-weight: 500;
    padding: 16px 12px;
    border-bottom: 1px solid #fff;
    transition: all 0.3s;
}

table.table-dashboard th,
table.table-dashboard td {
    vertical-align: middle;
}

table.dataTable.no-footer {
    border-bottom: 1px solid var(--c-white) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    border-radius: 10px;
    background-color: var(--c-primary) !important;
    color: var(--c-white) !important;
}

textarea.text-feedback {
    min-height: auto;
    height: auto;
    font-weight: 500;
}

/*====================================== SECTION FOOTER ======================================*/
footer {
    padding: 48px 0 0 0;
    border-top: 1px solid var(--c-white);
    /* background: rgb(0, 0, 0);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 15%, rgba(102, 102, 102, 1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 15%, rgba(102, 102, 102, 1) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 15%, rgba(102, 102, 102, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#666666", GradientType=1); */
    background: transparent
        linear-gradient(
            closest-side at 28% 55%,
            #575757 0%,
            #4b4b4b 14%,
            #000000 100%
        )
        0% 0% no-repeat padding-box;
}

.footer-contact li a img {
    width: 24px;
    height: 24px;
}

.wa-floating {
    z-index: 999;
    position: fixed;
    bottom: 1%;
    right: 8px;
    transition: all 0.3s;
}

.wa-floating:hover {
    transform: translateY(-10px);
    /*box-shadow: 0 8px 18px 0 rgba(0,0,0,.18);*/
}

.wa-floating a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
}

.wa-floating p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 16px;
    color: #0303c6;
}

.wa-floating .image {
    max-width: 60px;
}

.footer-menu ul {
    margin: 0;
}

.footer-menu ul li {
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-menu ul li a {
    display: inline-block;
    width: auto;
    color: #fff;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.footer-menu ul li:hover a {
    transform: translateY(-3px);
    color: #fff !important;
    border-bottom: 1px solid #fff;
}

.footer-logo .image a {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-logo .image:hover a {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px 0 rgb(255 255 255 / 39%);
}

.footer-copyright .copyright {
    margin-top: 10px;
}

@keyframes maka {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

footer.footer .footer-copyright span {
    display: inline-block;
    margin-right: 1px;
}

footer.footer .footer-copyright span a {
    color: #8bd1d2 !important;
}

footer.footer .footer-copyright:hover span:nth-child(1) {
    animation: maka 0.9s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(2) {
    animation: maka 1.1s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(3) {
    animation: maka 1.3s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(4) {
    animation: maka 1.5s ease-in-out;
}

.mb0 {
    margin-bottom: 0px;
}

.mb4 {
    margin-bottom: 4px;
}

.mb8 {
    margin-bottom: 8px;
}

.mb16 {
    margin-bottom: 16px;
}

.mb24 {
    margin-bottom: 24px;
}

.mb32 {
    margin-bottom: 32px;
}

.mb48 {
    margin-bottom: 48px;
}

.mb64 {
    margin-bottom: 64px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb100 {
    margin-bottom: 100px;
}

.mt0 {
    margin-top: 0px;
}

.mt8 {
    margin-top: 8px;
}

.mt16 {
    margin-top: 16px;
}

.mt24 {
    margin-top: 24px;
}

.mt32 {
    margin-top: 32px;
}

.mt48 {
    margin-top: 48px;
}

.mt64 {
    margin-top: 64px;
}

.mt80 {
    margin-top: 80px;
}

.mt100 {
    margin-top: 100px;
}

.mt140 {
    margin-top: 140px;
}
