@font-face {
    font-family: "Coffee Signs";
    font-style: normal;
    font-weight: normal;
    src: local("Coffee Signs"), url("../fonts/CoffeeSigns.woff") format("woff");
}
@font-face {
    font-family: "Photoshoot";
    font-style: normal;
    font-weight: normal;
    src: local("Photoshoot"), url("../fonts/Photoshoot.woff") format("woff");
}
@font-face {
    font-family: "Saudagar";
    font-style: normal;
    font-weight: normal;
    src: local("Saudagar"), url("../fonts/Saudagar.woff") format("woff");
}
@font-face {
    font-family: "Harabara Bold";
    font-style: normal;
    font-weight: normal;
    src: local("Harabara Bold"), url("../fonts/Harabara.woff") format("woff");
}
@font-face {
    font-family: "Gilroy Medium";
    font-style: normal;
    font-weight: normal;
    src: local("Gilroy Medium"),
        url("../fonts/Gilroy-medium.ttf") format("truetype");
}
@font-face {
    font-family: "Gilroy Regular";
    font-style: normal;
    font-weight: normal;
    src: local("Gilroy Regular"),
        url("../fonts/Gilroy-regular.ttf") format("truetype");
}
@font-face {
    font-family: "Pompadour Bold";
    font-style: normal;
    font-weight: normal;
    src: local("Pompadour Bold"),
        url("../fonts/APompadourBoldSample.woff") format("woff");
}
@font-face {
    font-family: "Pompadour Text";
    font-style: normal;
    font-weight: normal;
    src: local("Pompadour Text"),
        url("../fonts/APompadourTextSample.woff") format("woff");
}
@font-face {
    font-family: "RetroSignature";
    font-style: normal;
    font-weight: normal;
    src: local("RetroSignature"),
        url("../fonts/RetroSignature.otf") format("opentype");
}
@font-face {
    font-family: "Cormorant Garamond Regular";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond Regular"),
        url("../fonts/CormorantGaramond-Regular.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond Italic";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond Italic"),
        url("../fonts/CormorantGaramond-Italic.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond Light";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond Light"),
        url("../fonts/CormorantGaramond-Light.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond Light Italic";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond Light Italic"),
        url("../fonts/CormorantGaramond-LightItalic.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond Medium";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond Medium"),
        url("../fonts/CormorantGaramond-Medium.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond Medium Italic";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond Medium Italic"),
        url("../fonts/CormorantGaramond-MediumItalic.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond SemiBold";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond SemiBold"),
        url("../fonts/CormorantGaramond-SemiBold.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond SemiBold Italic";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond SemiBold Italic"),
        url("../fonts/CormorantGaramond-SemiBoldItalic.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond Bold";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond Bold"),
        url("../fonts/CormorantGaramond-Bold.woff") format("woff");
}

@font-face {
    font-family: "Cormorant Garamond Bold Italic";
    font-style: normal;
    font-weight: normal;
    src: local("Cormorant Garamond Bold Italic"),
        url("../fonts/CormorantGaramond-BoldItalic.woff") format("woff");
}

@font-face {
    font-family: "SF Pro Semibold";
    font-style: normal;
    font-weight: normal;
    src: local("SF Pro Semibold"),
        url("../fonts/SFPRODISPLAYMEDIUM.OTF") format("opentype");
}

html {
    max-width: 575px;
    margin: auto;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

body {
    overflow-x: hidden;
}

/* COMMON */
.header {
    font-family: "RetroSignature";
    color: #2f1010;
    font-size: 70px;
    line-height: 0.5;
}
.btn-red {
    background-color: #951f1f;
    color: #fff;
}
.btn-brown {
    background: rgb(161, 115, 86);
    background: linear-gradient(
        270deg,
        rgba(161, 115, 86, 1) 0%,
        rgba(205, 154, 125, 1) 100%
    );
    color: #fff;
}
.btn {
    border-top-right-radius: 35px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 35px !important;
    border-bottom-right-radius: 0 !important;
    padding: 20px 25px;
}
#main-content {
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 1s;
}
#main-content.open {
    opacity: 1;
    visibility: visible;
}
#audio {
    opacity: 0;
    visibility: hidden;
}

/* OPENING */
#opening {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all ease-in-out 1s;
    height: 100vh;
    z-index: 999;
}
#opening .overlay {
    top: 0;
    width: 100%;
    height: 100vh;
    /* background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(9,9,121,0) 65%); */
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: #fff;
    padding: 50px 50px 130px;
}
#opening .logo {
    width: 25px;
    margin-bottom: 10px;
}
#opening .top {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 2px;
}
#opening .name {
    font-family: "Saudagar";
    font-size: 30px;
    letter-spacing: 2px;
    padding-top: 50px;
}
#opening .name div:first-child {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
#opening .name span {
    font-size: 20px;
    line-height: 0.5;
}
#opening .name .text {
    font-family: "Saudagar";
    font-size: 12px;
    margin-bottom: 15px;
}
#opening .text {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.5;
    font-family: "Quicksand", sans-serif;
}
#opening .and {
    font-size: 30px;
    line-height: 1;
}
#opening .bottom {
    font-family: "Quicksand", sans-serif;
    font-size: 12px;
    padding: 0 30px;
}
#opening .undangan {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 10px;
    margin: 5px 0;
    font-size: 17px;
    font-weight: 700;
}
#opening .btn-container {
    margin: 10px 0 !important;
    display: flex;
    justify-content: center;
}
#opening .btn-open {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
    background-color: #fff;
    color: #000;
}
#opening.open {
    height: 0;
    visibility: hidden;
    opacity: 0;
}
#opening .flower {
    position: absolute;
    top: -70px;
    left: -65px;
    width: 200px;
}
#opening .stalk-1 {
    position: absolute;
    top: 40px;
    left: -25px;
    width: 70px;
}
#opening .leaf {
    position: absolute;
    bottom: -10px;
    right: 5px;
    width: 100px;
}
#opening .stalk-2 {
    position: absolute;
    bottom: -25px;
    right: -20px;
    width: 75px;
    transform: rotate(-20deg);
}

/* NAVBAR */
#navbar {
    width: 100%;
    max-width: 575px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    background: #0f483d;
    align-items: center;
    /* padding: 15px 0; */
    /* border-top-right-radius: 15px;
  border-top-left-radius: 15px; */
    position: fixed;
    bottom: 0;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 1s;
}
#navbar.open {
    opacity: 1;
    visibility: visible;
}
#navbar .icon-container {
    height: 60px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: all ease-in-out 0.2s;
    position: relative;
}
#navbar .icon-container a {
    position: relative;
}
#navbar .icon-container.active {
    background-color: #bc2f12;
}
#navbar .icon {
    /* width: 25px; */
}

/* SLIDER */
#slider {
    position: relative;
    overflow-x: clip;
}
#slider .owl-item {
    /* height: 900px; */
}
#slider .img-slider-container {
    height: 100%;
}
#slider .img-slider {
    height: auto;
    width: 100%;
}
#slider .owl-dots {
    text-align: center;
    padding-top: 0px;
    position: absolute;
    bottom: 20px;
    width: 100%;
}
#slider .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
    transition: all ease-in-out 0.2s;
}
#slider .owl-dots button.owl-dot.active {
    width: 50px;
    border-radius: 10px;
}
#slider .owl-dots button.owl-dot:focus {
    outline: none;
}
#slider .pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 70%;
}

/* PEMBUKA */
#pembuka {
    position: relative;
    overflow-x: clip;
    background: #f4f4f4;
    margin-bottom: 50px;
    border-bottom-left-radius: 150px;
}
#pembuka .text-container {
    padding: 50px 4rem;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    color: #070707;
    font-family: "Cormorant Garamond Light";
}

/* PENGANTIN */
#pengantin {
    position: relative;
    overflow-x: clip;
    padding: 50px 0;
    background-color: #f4f4f4;
}
#pengantin .pengantin-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
#pengantin .pengantin-inner .w-55 {
    width: 60%;
}
#pengantin .pengantin-inner .w-45 {
    width: 40%;
}
#pengantin .pengantin-name {
    font-family: "Cormorant Garamond Bold";
    font-size: 30px;
    color: #29493c;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 10px;
}
#pengantin .pengantin-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#pengantin .pengantin-img.pria {
    margin-left: -10%;
    border-bottom-right-radius: 100px;
}
#pengantin .pengantin-img.wanita {
    margin-left: 10%;
    border-bottom-left-radius: 100px;
}
#pengantin .pengantin-img .pengantin-img-inner {
    height: auto;
    width: 100%;
    background-size: cover;
    background-position: center;
}
#pengantin .pengantin-desc {
    font-family: "Cormorant Garamond Light";
    font-size: 15px;
    color: #000;
}
#pengantin .pengantin-social {
    align-items: center;
    justify-content: center;
    display: flex;
    position: absolute;
    flex-direction: column;
    left: 0;
}
#pengantin .pengantin-social a {
    color: #fff;
    display: block;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
    background-color: #2f1010;
}
#pengantin .pengantin-social a i {
    font-size: 25px;
}
#pengantin .pengantin-social a:hover {
    background-color: #fff;
    color: #2f1010;
}
#pengantin .and {
    font-size: 60px;
    color: #2f1010;
    text-align: center;
    margin-bottom: 80px;
}
#pengantin .top {
    font-family: "Times", sans-serif;
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    padding: 0 40px;
}

/* ACARA */
#acara {
    text-align: center;
    padding: 50px 0px 0px;
    position: relative;
    overflow-x: clip;
}
#acara .inner {
    padding: 0 30px 50px 30px;
}
#acara .paragraf {
    font-family: "Cormorant Garamond Light";
    font-size: 18px;
    padding: 30px 3rem;
    color: #2f1010;
}
#acara .time {
    display: flex;
    font-family: "Cormorant Garamond Regular";
    align-items: center;
}
#acara .time .w-32 {
    width: 32%;
    font-size: 28px;
    line-height: 1;
}
#acara .time .w-33 {
    font-size: 130px;
    font-weight: 400;
    width: 33%;
    color: #1d5d43;
    font-family: "Times New Romans";
}
#acara .time .custom-border {
    height: 50px;
    width: 2px;
    background-color: #3b3b3b;
}
#acara .time-inner {
    font-size: 25px;
    font-family: "Times", sans-serif;
}
#acara .countdown-container {
    background-color: #0f483d;
    padding: 50px 0 30px 0px;
}
#acara .countdown {
    display: flex;
    justify-content: center;
}
#acara .box-count {
    margin: 0 10px;
}
#acara .box-count .value {
    padding: 0 10px;
    font-size: 50px;
    font-family: "Times";
    color: #fff;
}
#acara .box-count .text {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-family: "Cormorant Garamond Light";
}
#acara .box-dot {
    height: 5px;
    width: 5px;
    background: #fff;
    margin-top: 35px;
    border-radius: 100%;
}
#acara .location {
    padding-top: 20px;
    font-size: 22px;
    color: #2f1010;
    font-family: "Cormorant Garamond Bold";
}
#acara .btn-location {
    padding: 20px;
    background-color: #1d5d43;
    color: #fff;
    border-radius: 20px;
    width: 70%;
    font-family: "SF Pro Semibold";
    font-size: 17px;
}
#acara .btn-covid-container {
    border: 1px solid #951f1f;
    padding: 5px;
    background-color: #fff;
    border-top-right-radius: 40px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 40px !important;
    border-bottom-right-radius: 0 !important;
    width: fit-content;
    margin: 0 auto;
}
#acara .btn-covid {
    /* padding: 30px; */
    border-radius: 20px;
    font-family: "SF Pro Semibold";
}
#acara .img-om-1 {
    width: 100%;
    max-width: 120px;
}
#acara .img-om-2 {
    width: 100%;
    max-width: 400px;
}
#acara .flower-1 {
    position: absolute;
    left: -130px;
    top: -85px;
    width: 300px;
}

/* DIGITAL ENVELOPE  */
#digital-envelope {
    margin-top: 3rem;
    padding: 50px 0px 0px;
    position: relative;
    overflow-x: clip;
}
#digital-envelope .box {
    border: 1px solid #2f2f2f;
    max-width: 300px;
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 30px 10px;
    position: relative;
}
#digital-envelope .inner {
    padding: 0 30px 50px 30px;
}
#digital-envelope .paragraf {
    font-family: "Cormorant Garamond Light", sans-serif;
    font-size: 18px;
    padding: 0 3rem;
    color: #2f1010;
}
#modal-envelope .modal-body {
    background-color: #fff;
    /* background-image: url("../icon/bg.svg"); */
    padding: 1rem 2rem;
}
#modal-envelope .btn-copy {
    background-color: #1d5d43;
    color: white;
}

/* ADDITIONAL */
#additional {
    padding: 0 30px;
    position: relative;
    overflow-x: clip;
}
#additional .box {
    background-color: #f4f4f4;
    max-width: 300px;
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 30px 10px 10px;
    border-top-right-radius: 40px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 40px !important;
    border-bottom-right-radius: 0 !important;
}
#additional .title {
    font-family: "Cormorant Garamond Regular";
    font-size: 28px;
    color: #2f1010;
    margin-bottom: 10px;
}
#additional .custom-border {
    height: 2px;
    width: 100%;
    background-color: #2f1010;
    margin: 20px auto;
    padding: 0 10px;
    max-width: 80%;
}
#additional .time {
    font-family: "Cormorant Garamond Light";
    font-size: 18px;
    color: #2f1010;
    display: block;
}
#additional .time-inner {
    font-family: "Cormorant Garamond Light";
    font-size: 15px;
}
#additional .location-inner {
    font-family: "Cormorant Garamond Light";
    font-size: 15px;
}
#additional .btn-location {
    margin-top: 15px;
    width: 100%;
    background-color: #1d5d43;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}
#additional .decor-bottom {
    position: absolute;
    right: -20px;
    top: 0;
    transform: scaleX(-1);
}
#additional .decor-bottom img {
    position: absolute;
    left: 0;
    bottom: 0;
}
#additional .decor-bottom .leaf {
    width: 120px;
    transform: scaleX(-1) rotate(-20deg);
}
#additional .decor-bottom .stalk-1 {
    transform: rotate(-20deg);
    bottom: -60px;
    width: 80px;
}
#additional .decor-bottom .stalk-2 {
    transform: revert rotate(45deg);
    left: 0;
    bottom: 8px;
    transform: scaleX(-1) rotate(-40deg);
    width: 80px;
}
#additional .flower-2 {
    position: absolute;
    right: -130px;
    bottom: 0;
    width: 300px;
    transform: rotate(-90deg);
    z-index: 1;
}

/* GALERI */
#galeri {
    padding: 5px 0 50px 0px;
    /* background-color: #D9D9D9; */
}
#galeri .photo-container {
    padding: 0;
}
#galeri .img-gallery {
    padding: 2px;
}
.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    padding-left: 0;
    padding-right: 0;
    background-color: #fff;
}
.video-container .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* LIVE */
#live {
    padding: 50px 30px;
}
#live .video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}
#live .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 10px;
    border-radius: 25px;
}
#live .btn-live {
    width: 70%;
    padding: 20px 30px;
    background-color: #af0f0f;
    color: #fff;
    border-radius: 15px;
    font-family: "SF Pro Semibold";
}

/* KONFIRMASI */
#konfirmasi {
    padding: 70px 30px 50px;
    font-family: "Cormorant Garamond Light";
}
#konfirmasi .form-control {
    background-color: #d3d3d3;
}
#konfirmasi .form-control:focus {
    border-color: #d3d3d3;
    box-shadow: 0 0 0 0.2rem rgba(175, 135, 126, 0.5);
}
#konfirmasi .custom-control-label {
    color: #0f483d;
}
#konfirmasi .custom-control-label::before {
    border: 2px solid #0f483d;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #d3d3d3;
}
#konfirmasi .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #0f483d;
    border-color: #0f483d;
}
#konfirmasi .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(175, 135, 126, 0.5);
}
#konfirmasi .custom-control-label::after {
    top: 0.35rem;
    left: -1.37rem;
}
#konfirmasi .btn-submit {
    width: 50%;
    padding: 20px 30px;
    background-color: #0f483d;
    color: #fff;
    border-radius: 15px;
}

/* COMMENT */
#comment {
    padding: 30px 0px;
    color: #2f1010;
    font-family: "Cormorant Garamond Light";
}
#comment .box {
    padding: 20px 30px;
}
#comment .box:nth-child(2n + 1) {
    text-align: left;
}
#comment .box:nth-child(2n) {
    text-align: right;
}
#comment .box:nth-child(2n + 1) .text {
    border-left: 2px solid #2f1010;
    padding: 5px 5px 5px 20px;
}
#comment .box:nth-child(2n) .text {
    border-right: 2px solid #2f1010;
    padding: 5px 20px 5px 5px;
}
#comment .title {
    font-size: 20px;
}
#comment .text {
    margin: 10px 0;
}

/* FOOTER */
#footer {
    padding-bottom: 100px;
    color: #0f483d;
}
#footer .footer-social {
    align-items: center;
    justify-content: center;
    display: flex;
}
#footer .footer-social a {
    color: #0f483d;
    display: block;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-decoration: none;
}
#footer .footer-social a i {
    font-size: 25px;
}
#footer .copyright a {
    color: #0f483d;
}

@media screen and (max-width: 426px) {
    .header {
        font-size: 50px;
    }
    #opening .top {
        font-size: 12px;
    }
    #opening .bottom {
        font-size: 12px;
        padding: 0;
    }
    #opening .btn-container {
        margin: 20px 0 !important;
    }
    #opening .btn-open {
        font-size: 12px;
    }
    #opening .undangan {
        height: 50px;
    }
    #slider .owl-dots {
        /* bottom: 40px; */
    }
    #slider .owl-dots button.owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    #slider .owl-dots button.owl-dot.active {
        width: 30px;
        border-radius: 10px;
    }
    #pengantin .pengantin-img {
        /* width: 220px;
    height: 220px; */
    }
    #pengantin .pengantin-name {
        font-size: 16px;
    }
    #pengantin .pengantin-social a {
        width: 25px;
        height: 25px;
    }
    #pengantin .pengantin-social a i {
        font-size: 10px;
    }
    #pengantin .and {
        font-size: 20px;
    }
    #pengantin .pengantin-desc {
        font-size: 12px;
    }
    #pengantin .top {
        font-size: 13px;
    }
    #pengantin .img-om-1 {
        max-width: 100px;
    }
    #pengantin .pengantin-desc .putra-putri {
        font-size: 12px;
    }
    #pembuka .text-container {
        font-size: 12px;
    }
    #acara .time .w-32 {
        font-size: 17px;
    }
    #acara .time .w-33 {
        font-size: 80px;
    }
    #acara .time-inner {
        font-size: 18px;
    }
    #acara .location {
        font-size: 15px;
    }
    #acara .paragraf {
        font-size: 15px;
        padding: 30px 1rem;
    }
    #acara .time {
        font-size: 25px;
    }
    #acara .img-om-1 {
        max-width: 100px;
    }
    #acara .img-om-2 {
        max-width: 200px;
    }
    #acara .countdown-container {
        padding: 30px 0;
    }
    #acara .countdown {
        padding-top: 10px;
    }
    #acara .box-count .value {
        font-size: 35px;
    }
    #acara .box-dot {
        margin-top: 25px;
    }
    #acara .btn-location {
        font-size: 14px;
    }
    #acara .btn-covid {
        font-size: 14px;
        font-family: "SF Pro Semibold";
    }
    #digital-envelope .paragraf {
        font-size: 15px;
        padding: 0 1rem;
    }
    #additional .title {
        font-size: 25px;
    }
    #additional .time {
        font-size: 17px;
    }
    #additional .time-inner {
        font-size: 17px;
    }
    #additional .location-inner {
        font-size: 17px;
    }
    #additional .btn-location {
        border-top-right-radius: 25px !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 25px !important;
        border-bottom-right-radius: 0 !important;
        padding: 5px;
        font-size: 20px;
    }
    #live .btn-live {
        font-size: 17px;
    }
    #konfirmasi .custom-control:not(:first-child) {
        margin-left: 1rem !important;
    }
    #konfirmasi .btn-submit {
        font-size: 14px;
        font-family: "SF Pro Semibold";
    }
    #comment .title {
        font-size: 14px;
    }
    #comment .text {
        font-size: 12px;
    }
}

/* ANIMATION */
