/************************** FONT **************************/

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Light.ttf');
    font-display: block;
    font-weight: 300;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Regular.ttf');
    font-display: block;
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-SemiBold.ttf');
    font-display: block;
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Bold.ttf');
    font-display: block;
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-ExtraBold.ttf');
    font-display: block;
    font-weight: 700;
}

* {
    font-family: 'Montserrat';
    box-sizing: border-box;
    line-height: 1.5;
    font-weight: 400;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/************************** ROOT **************************/

:root {
    --primary-color: #d31145;
    --secondary-color: #ba0362;
    --aia-orange-color: #ffb24d;
    --aia-charcoal-color : #333d47;
    --aia-charcoal-color-a50 : rgba(51, 61, 71, 0.5);

}

/************************** HTML **************************/

html {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
}

/************************** PAGE **************************/

#page-title {
    padding-bottom: 30px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

/************************** IMG **************************/

img {
    display: block;
}

/************************** BLUE HIGHLIGHT **************************/

input,
textarea,
button,
select,
a,
img,
div
{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  outline: none;
}

a,a:visited  {
    text-decoration: none;
    color:var(--secondary-color);
}

/* Remove link underline on hover */
a:hover {
    text-decoration: none;
    color:var(--primary-color);

}

/************************** HREF **************************/

.href {
    color: #0000EE;
    cursor: pointer;
}

.href:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.href:active {
    opacity: 1;
}

/************************** WRAPPER **************************/

.wrapper {
    margin: 0px auto;
}

@media only screen and (min-width: 600px) {
    .wrapper {
        max-width: 600px;
    }
}

/************************** BOX **************************/

#box-center {
    width: 100%;
}

@media only screen and (min-width: 600px) {
    #box-center {
        display: grid;
        justify-content: center;
    }
}

#box {
    width: 100%;
    margin-bottom: 80px;
}

#box.no-tab {
    margin-bottom: 0px;
}

@media only screen and (min-width: 600px) {
    #box {
        max-width: 600px;
        min-width: 600px;
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
        overflow: hidden;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        border: 1px solid lightgrey;
    }
}

#box #banner img {
    width: 100%;
}
.box-title
{
    width: 100%;
    text-align: center;
    padding:10px 0;
    font-weight: 500;
    font-size: 1.5em;
    text-transform: uppercase;

}
.box-content
{
    padding: 0 10px;
}

.box-content strong
{
    font-weight: 500;
    text-decoration: underline;
}

.box-content p{
    margin: 5px 0 20px 0;
}


ul.travel_info {
    list-style: none;
    padding: 0;
}

/* Style for list items */
ul.travel_info li {
    height: 150px; /* Set the fixed height */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    /* Add drop shadow with black color */
    /*-webkit-text-stroke: 1px black; !* Add black outline *!*/
    /*text-stroke: 1px black;*/
}

ul.travel_info li a{
    font-size:1.6em !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    color: white; /* Set text color to white */
    text-shadow: 2px 2px 4px black;
}
ul.travel_info li:nth-child(1) {
    background: url('/assets/images/malaysia.jpg') center/cover;
}

ul.travel_info li:nth-child(2) {
    background: url('/assets/images/interest-place.jpg') center/cover;
}

#app{
    min-height:  100vh;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}

.text-center
{
    text-align: center;
}


.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 99999;
    bottom: 130%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.long-tooltip .tooltiptext
{
    width: 250px !important;
    margin-left: -110px;

}

.long-tooltip .tooltiptext::after {
    left: 50% !important;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.btn-tooltip
{
    padding:0 5px;
}

.tooltip-right {
    position: relative;
    display: inline-block;
}

.tooltip-right .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 99999;
    top: -5px;
    left: 110%;
}

.tooltip-right .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}
.tooltip-right:hover .tooltiptext {
    visibility: visible;
}

#top-menu {
    height: 50px;
    background-color: white;
    z-index: 99 !important;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom: 1px solid #CCC;
    position: relative;
    display: flex;
    flex-direction: row;
    padding-top: 10px;
}

#box-content
{
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top: 1px solid #CCC;
    position: relative;
    top:-35px;
    background-color: white;
    z-index: 99 !important;
    padding-top: 30px;
}
#top-menu .menu-left
{
    flex:1;
    text-align: center;
}
#top-menu .menu-center
{
    flex:6;
    text-align: center;
}
#top-menu .menu-right
{
    flex:1;
    text-align: center;
}
.btn-top-menu svg path {
    fill: var(--secondary-color);
}
    /*font-size: 30px;*/

#banner {
    z-index: 2;
    position: relative;
    top:-20px !important;
}

.menu-item
{
    margin: 0 auto;
}

#txt-top-menu-center
{
    line-height: 30px;
}

.txt-primary
{
    color:var(--primary-color);
}

.txt-bold
{
    font-weight:500;
}

input::placeholder, textarea::placeholder {
    color: #AAA;
    font-style: italic;
}

#sidebar {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 199;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    visibility: hidden;
}

#sidebar #sidebar-content {
    width: 0;
    max-width: 400px;
    height: 100%;
    background-color: #3c3c3c;
    color: white;
    transition: 0.2s;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

#sidebar #sidebar-content #sidebar-grid {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 30px 25px 40px 25px;
    box-sizing: border-box;
}

#sidebar #sidebar-menu .sidebar-menu-block {
    padding: 18px 0px;
}

#sidebar #sidebar-menu .sidebar-menu-block a {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

#sidebar #sidebar-menu .sidebar-menu-block a .sidebar-icon-label {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

#sidebar #sidebar-menu .sidebar-menu-block a .sidebar-icon img {
    width: 25px;
}

#sidebar #sidebar-menu .sidebar-menu-block a .sidebar-icon svg {
    width: 25px;
}

#sidebar #sidebar-menu .sidebar-menu-block a .sidebar-icon svg path {
    fill: white;
}

#sidebar #sidebar-menu .sidebar-menu-block a .sidebar-label {
    font-size: 17px;
    font-weight: 500;
}

#sidebar .sidebar-menu-sub {
    padding: 15px 0px 0px 0px;
}

#sidebar .sidebar-menu-sub .sidebar-menu-sub-block a {
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 15px 10px 15px 45px;
    white-space: nowrap;
    font-weight: 400 !important;
}

#sidebar .sidebar-menu-sub .sidebar-menu-sub-block a .bullet {
    font-size: 40px;
    line-height: 0px;
    margin-top: -5px;
}

#sidebar #sidebar-content #sidebar-grid #sidebar-footer #logout {
    display: grid;
    justify-content: flex-start;
}

#sidebar #sidebar-content #sidebar-grid #sidebar-footer #logout .block {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    cursor: pointer;
    column-gap: 20px;
}

#sidebar #sidebar-content #sidebar-grid #sidebar-footer #logout .block img {
    width: 30px;
}

#sidebar #sidebar-modal-logout-confirmation .modal-body {
    padding-top: 20px;
}