body {
    /* background-color: #E6E6E6; */
    /* background-color: black; */
    background-image: url(images/paperpattern.jpg) !important;
    background-repeat: repeat;
    color: black;
    font-family: "Montserrat", Sans-serif;
}

table {
    color: white !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding: 0px !important;
}

.container {
    background-color: #E6E6E6;
    margin: 0px !important;
}

.gradien-black-to-white {
    background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.1), rgba(230, 230, 230, 1))
}

.gradien-white-to-black {
    background-image: linear-gradient(to bottom, rgba(230, 230, 230, 1), rgba(245, 246, 252, 0.01))
}

.jumbotron {
    min-height: 105vh;
    background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.1), rgba(230, 230, 230, 1)),
        url(images/image-top.jpg) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.bg-image-schedule {
    min-height: 100%;
    background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.1), rgba(0, 0, 0, 1)),
        linear-gradient(to top, rgba(245, 246, 252, 0.1), rgba(0, 0, 0, 1)),
        url(images/image-top.jpg) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* VIDEO BACKGROUND */
#myVideo {
    position: fixed;
    right: 0;
    top: 0vh;
    min-width: 100%;
    width: 100% !important;
    /* min-height: 105vh; */

    /* Gradient mask for fade to transparent at the bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    z-index:-2;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with opacity */
  z-index: -1; /* Above video, below content */
}

.jumbotron-video {
    min-height: 105vh;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: auto 100%; */
    position: relative;
    /* object-fit: contain; */
    z-index: 2;
}

/* This used to work for the parent element of button divs */
/* But it does not work with newer browsers, the below doesn't hide the play button parent div */

*::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works! */

*::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

/* END VIDEO BAKCGROUND */

.bg-image-guest-book {
    min-height: 100%;
    background-image:
        url(images/bg-floe.png) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.guest-book {
    background-color: #F5F3EE;
    color: #8B774E !important;
}

.btn-primary {
    background-color: #8B774E !important;
    border-radius: 0px !important;
    border: 0px solid transparent !important;
}

.btn-secondary {
    background: #00000050; 
    font-weight:600;
    color:black;
}

.font-handwriting {
    font-family: handwriting;
}

.font-handwriting2 {
    font-family: handwriting2;
}

.font-handwriting3 {
    font-family: handwriting3;
}

.font-handwriting4 {
    font-family: handwriting4;
}

.font-mermaid {
    font-family: mermaid;
}

.font-ants {
    font-family: ants;
}

.font-lemonjelly {
    font-family: lemonjelly;
}

.font-darlington {
    font-family: darlington;
}

.font-sans-serif {
    font-family: Sans-serif;
}

.font-clock {
    font-family: clock;
}

.title-invitation {
    font-size: 32pt;
}

.text-invitation {
    padding: 0px 20px 0px 20px;
    font-size: 14px;
}

.text-section-header {
    padding: 0px 20px 0px 20px;
    font-size: 62px;
    color: #E59C0C;
}

.text-gold {
    color: #E59C0C;
}

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.outlined-text {
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.image-cyrcle {
    border-radius: 50% 50% 50% 50% !important;
    object-fit: cover;
}

.white-image {
  filter: brightness(0) invert(1);
}

.img-thumbnail {
    background-color: #E59C0C;
}

.pagination {
    --bs-pagination-color: #8B774E !important;
}

/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 100%;
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0, 1);
    /* Black fallback color */
    /* background-image: url(images/bg-overlay.jpg) !important; */
    background-repeat: repeat;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: -1; /* Put the overlay behind the content */
}

.overlay-content {}

.welcomescreen {
    background-image: url(images/welcome-bg.jpg) !important;
    background-size: cover;
    /* <------ */
    background-repeat: no-repeat;
    background-position: center center;
}

/* --------- FONT FACE ----------- */
@font-face {
    font-family: handwriting;
    src: url(font/Riochi.otf);
}

@font-face {
    font-family: mermaid;
    src: url(font/Mermaid1001.ttf);
}

@font-face {
    font-family: ants;
    src: url(font/AntsValley-PersonalUse.otf);
}

@font-face {
    font-family: handwriting2;
    src: url(font/GreatVibes-Regular.ttf);
}

@font-face {
    font-family: handwriting3;
    src: url(font/MonteCarlo-Regular.ttf);
}

@font-face {
    font-family: handwriting4;
    src: url(font/Stalemate-Regular.ttf);
}

@font-face {
    font-family: clock;
    src: url(font/DS-DIGIB.TTF);
}

@font-face {
    font-family: lemonjelly;
    src: url(font/LemonJellyPersonalUse-dEqR.ttf);
}

@font-face {
    font-family: darlington;
    src: url(font/DarlingtonDemo-z8xjG.ttf);
}


/* ------------- TIMER ---------------- */
#timerx {
    font-size: 12pt;
    font-weight: 100;
    color: white;
    text-shadow: 0 0 20px #48C8FF;

    div {
        display: inline-block;
        width: 90%;

        span {
            color: #B1CDF1;
            display: block;
            font-size: 12pt;
            font-weight: 400;
        }
    }
}

.timer-counter {
    font-weight: bolder;
    font-family: mermaid;
    font-size: 45pt;
    padding: 1px !important;
    color: #000000;
}

.timer-counter-detail {
    border-bottom: 1px solid #999999;
}

.timer-counter-border-left {
    border-left: 1px solid #999999;
}

.border-gold {
    border-color: #E59C0C !important;
}

.border-black {
    border-color: #000000 !important;
}

.bg-black {
    background-color: #000000 !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-white-1 {
    background-color: #EEEEEE !important;
}

.card-header {
    background-color: #00000080 !important;
    color: white;
}

.timer-label {
    color: #000000;
    /* background-color: #E59C0C; */
    /* font-weight: bolder; */
    /* border: 1px solid #e2e3e5; */
}

.timer-label-detail {
    font-style: italic;
}

.table {
    border: 1px solid grey !important;
}

/* Background Circle*/

.circles {
    position: absolute;
    height: 270px;
    width: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 {
    position: absolute;
    top: -50px;
    border-radius: 50%;
    background: radial-gradient(#006db3, #29b6f6);
    left: 10px;
    height: 160px;
    width: 160px;
}

.circle-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(#006db3, #29b6f6);
    right: 40px;
    top: 80px;
    opacity: 0.8;
    height: 160px;
    width: 160px;
}

/* Card */

.card-atm {
    width: 380px;
    height: 230px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
}

.visa_logo {
    float: right;
    padding: 10px;
}

.visa_logo img {
    width: 70px;
    height: 40px;
}

.visa_info {
    padding: 10px;
    margin: 30px 0;
}

.visa_info img {
    width: 60px;
    height: 45px;
}

.visa_info p {
    font-size: 22px;
    padding: 10px 0;
    letter-spacing: 2px;
    color: #ffffff;
}

.visa_crinfo {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    color: #ffffff;
}

/* FLOATING BUTTON */
.btn-audio-container {
    position: fixed;
    width: 30px;
    height: 30px;
    bottom: 20px;
    right: 20px;
    background-color: #E59C0C;
    color: #FFF;
    border-radius: 30px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 8888;
}

.btn-audio-content {
    margin-top: 22px;
}

.btn-audio-icon {
    position: inherit;
    width: 20px;
    margin: 5px;
}

.border-top {
    border-top: 2px solid #ffffff !important;
}

.border-bottom {
    border-bottom: 2px solid #ffffff !important;
}

.no-rounded {
    border-radius: 0% !important;
}

.rounded-10 {
    border-radius: 10% !important;
}

.label-confirmation {
    margin-right: 10px !important;
}

.input-norek {
    border: none;
    outline: none;
    text-align: center;
    font-size: 12pt;
    font-weight: 600;
}

.card-comment {
    border: solid #8B774E 1px;
    padding: 5px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-radius: 10px;

    background-image: url(images/paperpattern.jpg) !important;
    background-repeat: repeat;
    text-align: center;
}

.c_nama {
    font-size: 11pt !important;
}

.c_komentar {
    padding-top: 20px;
    padding-bottom: 20px;
}

.c_kehadiran {}

.c_tanggal {
    font-size: 9pt !important;
}

/* LOADER CSS */
.lds-heart {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    transform-origin: 40px 40px;
    margin-bottom: 10px;
}

.lds-heart div {
    top: 32px;
    left: 32px;
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffffff;
    animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lds-heart div:after,
.lds-heart div:before {
    content: " ";
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    background: #ffffff;
}

.lds-heart div:before {
    left: -24px;
    border-radius: 50% 0 0 50%;
}

.lds-heart div:after {
    top: -24px;
    border-radius: 50% 50% 0 0;
}

@keyframes lds-heart {
    0% {
        transform: scale(0.95);
    }

    5% {
        transform: scale(1.1);
    }

    39% {
        transform: scale(0.85);
    }

    45% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(0.9);
    }
}

/* END LOADER CSS */


/* SWALL */
div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 0px !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    border-radius: 0px !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    font-size: 24px !important;
}

div:where(.swal2-container) button:where(.swal2-styled) {
    padding: 5px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: #8B774E !important;
}

/* END SWALL */