
/* ================================== FONT ================================== */


@font-face {
    font-family: 'Inter Regular';
    src: url(../Assets/Font/Inter/Inter-Regular.ttf)format('truetype');
}
@font-face {
    font-family: 'Inter Italic';
    src: url(../Assets/Font/Inter/Inter-Italic.otf)format('truetype');
}
@font-face {
    font-family: 'Inter Medium';
    src: url(../Assets/Font/Inter/Inter-Medium.ttf)format('truetype');
}
@font-face {
    font-family: 'Inter Medium Italic';
    src: url(../Assets/Font/Inter/Inter_18pt-MediumItalic.ttf)format('truetype');
}
@font-face {
    font-family: 'Inter Bold';
    src: url(../Assets/Font/Inter/Inter_24pt-SemiBold.ttf)format('truetype');
}
@font-face {
    font-family: 'Inter Bold Italic';
    src: url(../Assets/Font/Inter/Inter_24pt-SemiBoldItalic.ttf)format('truetype');
}
@font-face {
    font-family: 'Inter Extreme Bold';
    src: url(../Assets/Font/Inter/Inter-Bold.otf)format('truetype');
}

@font-face {
    font-family: 'MontSerrat Regular';
    src: url(../Assets/Font/Montserrat/Montserrat-Regular.ttf)format('truetype');
}
@font-face {
    font-family: 'MontSerrat Bold';
    src: url(../Assets/Font/Montserrat/Montserrat-Medium.ttf)format('truetype');
}
@font-face {
    font-family: 'MontSerrat Italic';
    src: url(../Assets/Font/Montserrat/Montserrat-Italic.ttf)format('truetype');
}

@font-face {
    font-family: 'Roboto Regular';
    src: url(../Assets/Font/Roboto/Roboto-Regular.ttf)format('truetype');
}
@font-face {
    font-family: 'Roboto Italic';
    src: url(../Assets/Font/Roboto/Roboto-Italic.ttf)format('truetype');
}
@font-face {
    font-family: 'Roboto Bold';
    src: url(../Assets/Font/Roboto/Roboto-Medium.ttf)format('truetype');
}
@font-face {
    font-family: 'Roboto Bold Italic';
    src: url(../Assets/Font/Roboto/Roboto-MediumItalic.ttf)format('truetype');
}

@font-face {
    font-family: 'Poppins Light';
    src: url(../Assets/Font/Poppins/Poppins-Light.ttf)format('truetype');
}
@font-face {
    font-family: 'Poppins Regular';
    src: url(../Assets/Font/Poppins/Poppins-Regular.ttf)format('truetype');
}
@font-face {
    font-family: 'Poppins Italic';
    src: url(../Assets/Font/Poppins/Poppins-Italic.ttf)format('truetype');
}
@font-face {
    font-family: 'Poppins Medium';
    src: url(../Assets/Font/Poppins/Poppins-Medium.ttf)format('truetype');
}
@font-face {
    font-family: 'Poppins Bold';
    src: url(../Assets/Font/Poppins/Poppins-SemiBold.ttf)format('truetype');
}
@font-face {
    font-family: 'Poppins Bold Italic';
    src: url(../Assets/Font/Poppins/Poppins-SemiBoldItalic.ttf)format('truetype');
}
@font-face {
    font-family: 'Poppins Extreme Bold';
    src: url(../Assets/Font/Poppins/Poppins-Bold.ttf)format('truetype');
}
@font-face {
    font-family: 'Baloo Bhai';
    src: url(../Assets/Font/BalooBhai-Regular.ttf)format('truetype');
}

.InterRegularTextFont
{
    font-family: 'Inter Regular';
}
.InterItalicTextFont
{
    font-family: 'Inter Italic';
}
.InterMediumTextFont
{
    font-family: 'Inter Medium';
}
.InterMediumItalicTextFont
{
    font-family: 'Inter Medium Italic';
}
.InterBoldTextFont
{
    font-family: 'Inter Bold';
}
.InterBoldItalicTextFont
{
    font-family: 'Inter Bold Italic';
}
.InterExBoldTextFont
{
    font-family: 'Inter Extreme Bold'
}

.MontSerratRegularTextFont
{
    font-family: 'MontSerrat Regular';
}
.MontSerratBoldTextFont
{
    font-family: 'MontSerrat Bold';
}
.MontSerratItalicTextFont
{
    font-family: 'MontSerrat Italic';
}


.RobotoTextFont
{
    font-family: 'Roboto Regular';
}
.RobotoItalicTextFont
{
    font-family: 'Roboto Italic';
}
.RobotoBoldTextFont
{
    font-family: 'Roboto Bold';
}
.RobotoBoldItalicTextFont
{
    font-family: 'Roboto Bold Italic';
}


.PoppinsLightTextFont
{
    font-family: 'Poppins Light';
}
.PoppinsRegularTextFont
{
    font-family: 'Poppins Regular';
}
.PoppinsItalicTextFont
{
    font-family: 'Poppins Italic';
}
.PoppinsMediumTextFont
{
    font-family: 'Poppins Medium';
}
.PoppinsBoldTextFont
{
    font-family: 'Poppins Bold';
}
.PoppinsBoldItalicTextFont
{
    font-family: 'Poppins Bold Italic';
}
.PoppinsExBoldTextFont
{
    font-family: 'Poppins Extreme Bold';
}
.BalooBhaiTextFont
{
    font-family: 'Baloo Bhai';
}


/* --------------------------- BASIC UI ----------------------------------- */

p
{
    margin: 0;
}

.basic{
    width: 100%;
    height: auto;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.MainTopButtonWrapper
{
    width: 100%;
    height: fit-content;
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    z-index: 2;
}

.TopMenuPanel
{
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    background: linear-gradient(to bottom, #ffffff, #f0f7fd);
    /* background-color: rgba(255, 255, 255, 0.8); */
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}
.TopMenuSectionWrapper
{
    max-width: 1500px;
    position: relative;
}
.PinginGoLogo
{
    margin: auto 0;
    width: fit-content;
}
.TopBermitraButtonsWrapper
{
    height: fit-content !important;
    display: flex;
    position: relative;
}
.BasicTextButton
{
    font-family: 'Inter Medium';
    border: 0;
    position: relative;
}
.TopBermitraButton
{
    background-color: #E9F4FB;
    color: #3A9FDD;
    box-shadow: 0 0 0 !important;
}
.Selectable:hover, .Selectable:active, .Selectable2:hover, .Selectable2:active, .SelectableButton:hover, .SelectableButton:active, .SelectableButton2:hover, .SelectableButton2:active, .SelectableButton3:hover, .SelectableButton3:active
{
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; 
}
.SignInButtonTop, .LoadMoreButton, .SeeAllPhotosButton, .SelectRoomButton, .PaddingExtendedButton, .GabungSekarangButton, .TopBermitraButtonsWrapper, .ContinueBermitraButton
{
    width: fit-content;
    height: fit-content;
    margin: auto;
    margin-right: 0;
    box-shadow: 0 0 0 !important;
}

@media screen and (max-width: 560px)
{
    .TopMenuSectionWrapper
    {
        width: 95%;
        margin: 3vw auto;
    }
    .PinginGoLogo
    {
        height: 5vw;
    }
    .BasicTextButton
    {
        border-radius: 0.8vw;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
    }
    .TopBermitraButton
    {
        padding: 1.5vw 2vw;
        font-size: 2.2vw;
        margin-right: 0.5vw;
    }
    .TopBermitraButton img
    {
        width: 2vw;
        height: 2vw;
        margin: auto 0;
        margin-right: 1vw;
    }
    .SignInButtonTop, .LoadMoreButton, .SeeAllPhotosButton, .RedWarningContainer, .ContinueBermitraButton
    {
        padding: 1.5vw 2.5vw;
        font-size: 2.2vw;
    }
}

@media screen  and (max-width: 1200px)  and (min-width: 561px)
{
    .TopMenuSectionWrapper
    {
        width: 95%;
        margin: calc(10px + 0.5vw) auto;
    }
    .PinginGoLogo
    {
        height: calc(22px + 0.5vw);
    }
    .BasicTextButton
    {
        border-radius: 0.5vw;
        box-shadow: 0 0.5vw calc(5px + 0.5vw) rgba(0, 0, 0, 0.2);
    }
    .TopBermitraButton
    {
        padding: calc(5px + 0.5vw) calc(8px + 0.5vw);
        font-size: calc(7px + 0.5vw);
        margin-right: calc(1px + 0.5vw);
    }
    .TopBermitraButton img
    {
        width: calc(7px + 0.5vw);
        height: calc(7px + 0.5vw);
        margin: auto 0;
        margin-right: calc(3px + 0.5vw);
    }
    .SignInButtonTop, .LoadMoreButton, .SeeAllPhotosButton, .RedWarningContainer
    {
        padding: calc(5px + 0.5vw) calc(10px + 0.5vw);
        font-size: calc(7px + 0.5vw);
    }
}

@media screen  and (min-width: 1201px)
{
    .TopMenuSectionWrapper
    {
        width: 95%;
        margin: 18px auto;
    }
    .PinginGoLogo
    {
        height: 25px;
    }
    .BasicTextButton
    {
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    .TopBermitraButton
    {
        padding: 9px 15px;
        font-size: 13px;
        margin-right: 5px;
    }
    .TopBermitraButton img
    {
        width: 12px;
        height: 12px;
        margin: auto 0;
        margin-right: 5px;
    }
    .SignInButtonTop, .LoadMoreButton, .SeeAllPhotosButton, .SelectRoomButton, .RedWarningContainer
    {
        padding: 9px 15px;
        font-size: 13px;
    }
}

/* ------------------------------- HREF CONTAINER ------------------------------- */

.HREFInsideContainer
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* =============================================== MAIN LISTING SECTION =================================== */
div:has(.ImageFullCover)
{
    position: relative;
}
.MainTopButtonWrapper
{
    width: 100%;
    height: fit-content;
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    z-index: 2;
}

.TopMenuPanel
{
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    background: linear-gradient(to bottom, #ffffff, #f0f7fd);
    /* background-color: rgba(255, 255, 255, 0.8); */
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}
.TopMenuPanelBlueGrad
{
    background: linear-gradient(to bottom, #1D76AE, #18618e);
}
.TopCornerButtonContainerScrolled
{
    background-color: rgba(255, 255, 255, 1);
}
.BottomMenuTextWrapper
{
    width: fit-content;
    height: fit-content;
}
.ContainerFlex
{
    left: 0;
    width: 100%;
    height: 0;
    position: absolute;
    display: flex;
}
.ContainerFlex2
{
    width: fit-content;
    right: 0;
    left: auto;
}
.MoreThanOneButtonFlexWrapper
{
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: fit-content;
}
.BasicTextButton
{
    font-family: 'Inter Medium';
    border: 0;
    position: relative;
}
.GreyBorderBlackTextButton
{
    background-color: white;
    color: #344054;
}
.BlueButtonLight
{
    background-color: #D3EAF7;
    color: #3A9FDD;
}
.RedWarningContainer
{
    flex: 1;
    height: fit-content;
    background-color: rgb(214, 0, 0);
    color: white;
    text-align: center;
}

.SignInButtonTop, .LoadMoreButton, .SeeAllPhotosButton, .SelectRoomButton, .PaddingExtendedButton, .GabungSekarangButton, .TopBermitraButtonsWrapper, .ContinueBermitraButton
{
    width: fit-content;
    height: fit-content;
    margin: auto;
    margin-right: 0;
    box-shadow: 0 0 0 !important;
}
.TopBermitraButton
{
    background-color: #E9F4FB;
    color: #3A9FDD;
    box-shadow: 0 0 0 !important;
}

.TopBermitraButtonsWrapper
{
    height: fit-content !important;
    display: flex;
    position: relative;
}
.PinginGoLogo
{
    margin: auto 0;
    width: fit-content;
}
.BottomEndSection
{
    width: 100%;
    height: fit-content;
    /* background: linear-gradient(to bottom, #1D76AE, #196696); */
    background-color: #0B4A6F !important;
}
.CopyrightEndText
{
    margin: 0 auto;
    color: white;
}
.swiper-button-disabled
{
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.swiper-wrapper
{
    display: flex;
}
.BasicBlackBlocker, .FilterBlocker
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}
.TopMenuSectionWrapper
{
    max-width: 1500px;
    position: relative;
}
.NoFeaturedPropertyFoundContainer
{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.CollapsibleContent
{
    max-height: 0;
    overflow: hidden;
}
.CollapsibleCheckBoxContainer:has(.FilterCheckBox:checked) + .CollapsibleContent
{
    max-height: none;
    padding-top: 10px;
    /* -webkit-transition: max-height 0.3s ease;
    -moz-transition: max-height 0.3s ease;
    -o-transition:  max-height 0.3s ease;
    -ms-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease; */
}
.UserTopInfoWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
    margin: auto 0;
    margin-left: auto;
    position: relative;
}
.UserTopProfileIcon
{
    position: relative;
    border-radius: 100%;
    overflow: hidden;
    background: url(../Assets/ProfilePicture.jpg);
    background-position: center !important;
    background-size: cover !important;
}
.UserTopProfileName
{
    width: fit-content;
    height: fit-content;
    color: #1D76AE;
}

.WhitePanelContentMainWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
    position: relative;
}
.WhitePanelContentWrapper
{
    width: 100%;
    height: fit-content;
    display: flex;
    position: relative;
}
.WhitePanelContentWrapper .BasicInputTextTop
{
    margin: auto 0;
}
.RoomButtonAndInputContainer
{
    width: fit-content;
    height: fit-content;
    position: relative;
    display: flex;
    margin: auto 0;
    margin-left: auto;
}
.RoomButtonAndInputContainer .InputFieldInsideSmallPanel
{
    background-color: rgb(244, 244, 244);
    text-align: center;
}
.InputPasswordWithButton[type="password"] + .BasicIconInsideInput, .InputPasswordWithButton[type="password"] + .BasicIconInsideInput2
{
    content: url("../Assets/ButtonIcon/showpassword.svg"); /* Change to closed eye icon */
}
.InputPasswordWithButton[type="text"] + .BasicIconInsideInput, .InputPasswordWithButton[type="text"] + .BasicIconInsideInput2
{
    content: url("../Assets/ButtonIcon/hidepassword.svg"); /* Change to open eye icon */
}

.IncreaseReduceRoomButton
{
    margin: auto 0;
}

.BasicRadioButtonContainer
{
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    border-radius: 100%;
    display: flex;
}

.BasicRadioButtonContainer .RadioButtonSpan
{
    display: block;
    width: 100%;
    height: 90%;
    position: relative;
    background-color: white;
    border-radius: 100%;
    cursor: pointer;
}

.BasicBlueRadioButton
{
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
}

.BasicRadioButtonContainer .RadioButtonSpan::after
{
    content:"";
    background-color: #50A9E1;
    background-size: 100% 100%;
    display: block;
    position: relative;
    width: 0;
    height: 0;
    opacity: 0;
    border-radius: 100%;
    scale: 0%;
    transition: opacity 0.3s, scale 0.3s;
}

.BasicBlueRadioButton:checked ~ .RadioButtonSpan::after
{
    width: 100%;
    height: 100%;
    scale: 50%;
    opacity: 1;
}

.BasicBlueRadioButton:checked ~ .RadioButtonSpan
{
    background-color: #D3EAF7;
}
.ImageFullCover
{
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center !important;
    position: absolute;
    top: 0;
    left: 0;
}
.RoomPanelContainer:hover .ImageFullCover, .RoomPanelContainer:active .ImageFullCover, .PingExprezyPanel:hover .ImageFullCover, .PingExprezyPanel:active .ImageFullCover
{
    scale: 120%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.TopBottomIndexSection, .BottomIndexContainer
{
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
}
.MainBackgroundAnimateContainer, .MainBackgroundAnimate
{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover !important;
    object-position: center !important;
    overflow: hidden;
}
.MainBackgroundAnimateContainer
{
    width: 100%;
}
.BottomMenuSection
{
    width: 100%;
    height: fit-content;
    background-color: #0B4A6F;
    /* background-color: #F0F9FF; */
}
.TopTextQuotes, .BottomTextQuotes
{
    margin: 0 auto;
    color: white;
    z-index: 1;
}
.BottomButtonBermitraWrapper
{
    display: flex;
}
.BottomMenuSectionWrapper
{
    display: flex;
    color: white;
}
@media screen and (max-width: 560px)
{
    .TopCornerButtonContainerScrolled
    {
        box-shadow: 0 0.2vw 0.2vw rgba(0, 0, 0, 0.2);
    }
    .BottomMenuSectionWrapper
    {
        width: 92%;
        margin: 5vw auto;
        border-top: 0.1vw solid rgba(255, 255, 255, 0.5);
    }
    .TopMenuSectionWrapper
    {
        width: 95%;
        margin: 3vw auto;
    }
    .BottomMenuTextWrapper
    {
        margin-top: 2.5vw;
    }
    .BottomMenuText
    {
        font-size: 3vw;
        margin-bottom: 2vw;
    }
    .BasicTextButton
    {
        border-radius: 0.8vw;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
    }
    .WhiteOuterHover:hover, .WhiteOuterHover:active
    {
        box-shadow: 0 0 0.5vw 0.5vw #ffffff !important;
    }
    .BasicIconInsideButton
    {
        width: 3.2vw;
        height: 3.2vw;
        margin: -0.5vw 1.2vw;
    }
    .SignInButtonTop, .LoadMoreButton, .SeeAllPhotosButton, .RedWarningContainer, .ContinueBermitraButton
    {
        padding: 1.5vw 2.5vw;
        font-size: 2.2vw;
    }
    .ContinueBermitraButton
    {
        padding: 1.8vw 10vw;
        font-size: 2.2vw;
        margin: 0 auto;
        margin-top: 2vw;
    }
    .BottomButtonBermitraWrapper
    {
        margin-top: 2vw;
    }
    .BottomButtonBermitraWrapper button:not(:last-child)
    {
        margin-right: 2vw;
    }
    .TopBermitraButton
    {
        padding: 1.5vw 2vw;
        font-size: 2.2vw;
        margin-right: 0.5vw;
    }
    .TopBermitraButton img
    {
        width: 2vw;
        height: 2vw;
        margin: auto 0;
        margin-right: 1vw;
    }
    .GabungSekarangButton
    {
        padding: 2vw 2vw;
        font-size: 2.2vw;
    }
    .PaddingExtendedButton
    {
        padding: 1.5vw 6vw;
        font-size: 2.2vw;
    }
    .SelectRoomButton
    {
        padding: 1.5vw 2vw;
        font-size: 2vw;
        white-space: nowrap;
    }
    .PinginGoLogo
    {
        height: 5vw;
    }
    .SocialIconButton
    {
        width: 5vw;
        height: 5vw;
        margin-right: 0.2vw;
    }
    .CopyrightEndText
    {
        font-size: 2.5vw;
        margin-top: 1vw;
    }
    .NoFeaturedPropertyFoundContainer
    {
        margin: 4vw 0;
    }
    .BasicRoundRadius
    {
        border-radius: 0.8vw;
    }
    .UserTopProfileIcon
    {
        width: 4.2vw;
        height: 4.2vw;
    }
    .UserTopProfileName
    {
        margin: auto 1.5vw;
        font-size: 2.7vw;
    }
    .WhitePanelContentMainWrapper
    {
        padding: 2vw 2.2vw;
    }
    .WhitePanelContentWrapper
    {
        min-width: 35vw;
    }
    .WhitePanelContentWrapper .BasicInputTextTop
    {
        margin-right: 2vw;
    }
    .RoomButtonAndInputContainer .SmallPanelDropDownContainer
    {
        width: 9vw !important;
        min-width: 9vw !important;
        height: 5vw;
        margin: auto 1vw;
    }
    .IncreaseReduceRoomButton
    {
        width: 4vw;
        height: 4vw;
    }
    .BasicRadioButtonContainer
    {
        width: 2.8vw;
        height: 3vw;
        /* margin-right: 2vw; */
    }
    .BasicRadioButtonContainer .RadioButtonSpan
    {
        outline: 0.2vw solid #D0D5DD;
        outline-offset: -0.2vw;
    }
    .BasicBlueRadioButton:checked ~ .RadioButtonSpan
    {
        outline: 0.2vw solid #50A9E1;
        outline-offset: -0.2vw;
    }
    .GreyBorderBlackTextButton
    {
        outline: 0.2vw solid #D0D5DD;
        outline-offset: -0.2vw;
    }
    .BottomIndexSection
    {
        margin-top: 10vw;
    }
    .MainBackgroundAnimate
    {
        width: 100%;
        height: 100%;
    }
    .MainBackgroundAnimateContainer
    {
        height: 40vw;
    }
    .TopTextQuotes, .BottomTextQuotes
    {
        font-size: 3.8vw;
    }
    .TopTextQuotes
    {
        margin-top: 25vw;
        margin-bottom: 5vw;
    }
    .BottomTextQuotes
    {
        margin-top: 12vw;
        margin-bottom: 11vw;
    }
}

@media screen  and (max-width: 1200px)  and (min-width: 561px)
{
    .TopCornerButtonContainerScrolled
    {
        box-shadow: 0 0.5vw calc(5px + 0.5vw) rgba(0, 0, 0, 0.2);
    }
    .BottomMenuSectionWrapper
    {
        width: 95%;
        margin: 20px auto;
        border-top: 2px solid rgba(255, 255, 255, 0.5);
    }
    .TopMenuSectionWrapper
    {
        width: 95%;
        margin: calc(10px + 0.5vw) auto;
    }
    .BottomMenuTextWrapper
    {
        margin-top: calc(10px + 0.5vw);
    }
    .BottomMenuText
    {
        font-size: calc(9px + 0.5VW);
        margin-bottom: calc(5px + 0.5vw);
    }
    .BasicTextButton
    {
        border-radius: 0.5vw;
        box-shadow: 0 0.5vw calc(5px + 0.5vw) rgba(0, 0, 0, 0.2);
    }
    .WhiteOuterHover:hover, .WhiteOuterHover:active
    {
        box-shadow: 0 0 0.2vw 0.2vw #ffffff !important;
    }
    .BasicIconInsideButton
    {
        width: calc(14px + 0.5vw);
        height: calc(14px + 0.5vw);
        margin: -1px calc(2px + 0.5vw);
    }
    .SignInButtonTop, .LoadMoreButton, .SeeAllPhotosButton, .RedWarningContainer
    {
        padding: calc(5px + 0.5vw) calc(10px + 0.5vw);
        font-size: calc(7px + 0.5vw);
    }
    .ContinueBermitraButton
    {
        padding: calc(5px + 0.5vw) calc(60px + 0.5vw);
        font-size: calc(7px + 0.5vw);
        margin: 0 auto;
    }
    .BottomButtonBermitraWrapper
    {
        margin-top: calc(10px + 0.5vw);
    }
    .BottomButtonBermitraWrapper button:not(:last-child)
    {
        margin-right: calc(5px + 0.5vw);
    }
    .TopBermitraButton
    {
        padding: calc(5px + 0.5vw) calc(8px + 0.5vw);
        font-size: calc(7px + 0.5vw);
        margin-right: calc(1px + 0.5vw);
    }
    .TopBermitraButton img
    {
        width: calc(7px + 0.5vw);
        height: calc(7px + 0.5vw);
        margin: auto 0;
        margin-right: calc(3px + 0.5vw);
    }
    .GabungSekarangButton
    {
        padding: calc(6px + 0.5vw) calc(8px + 0.5vw);
        font-size: calc(7px + 0.5vw);
    }
    .PaddingExtendedButton
    {
        padding: calc(5px + 0.5vw) calc(35px + 0.5vw);
        font-size: calc(7px + 0.5vw);
    }
    .SelectRoomButton
    {
        padding: 0.7vw 1vw;
        font-size: 1.2vw;
    }
    .PinginGoLogo
    {
        height: calc(22px + 0.5vw);
    }
    .SocialIconButton
    {
        width: calc(18px + 0.5vw);
        height: calc(18px + 0.5vw);
        margin-right: calc(5px + 0.5vw);
    }
    .CopyrightEndText
    {
        font-size: calc(8px + 0.5vw);
        margin-top: calc(2px + 0.5vw);
        margin-bottom:  calc(6px + 0.5vw);
    }
    .NoFeaturedPropertyFoundContainer
    {
        margin: calc(10px + 0.5vw) 0;
    }
    .BasicRoundRadius
    {
        border-radius: 0.5vw;
    }
    .UserTopProfileIcon
    {
        width: calc(20px + 0.5vw);
        height: calc(20px + 0.5vw);
    }
    .UserTopProfileName
    {
        margin: auto calc(2px + 0.5vw);
        font-size: calc(10px + 0.5vw);
    }
    .WhitePanelContentMainWrapper
    {
        padding: calc(5px + 0.5vw) calc(10px + 0.5vw);
    }
    
    .WhitePanelContentWrapper
    {
        min-width: calc(200px + 0.5vw);
    }
    .WhitePanelContentWrapper .BasicInputTextTop
    {
        margin-right: 20px;
    }
    .RoomButtonAndInputContainer .SmallPanelDropDownContainer
    {
        width: calc(40px + 0.5vw) !important;
        min-width: calc(40px + 0.5vw) !important;
        height: calc(22px + 0.5vw);
        margin: auto 6px;
    }
    .IncreaseReduceRoomButton
    {
        width: calc(18px + 0.5vw);
        height: calc(18px + 0.5vw);
    }
    .BasicRadioButtonContainer
    {
        width: calc(11px + 0.5vw);
        height: calc(13px + 0.5vw);
        /* margin-right: calc(12px + 0.5vw); */
    }
    .BasicRadioButtonContainer .RadioButtonSpan
    {
        outline: 1px solid #D0D5DD;
        outline-offset: -1px;
    }
    .BasicBlueRadioButton:checked ~ .RadioButtonSpan
    {
        outline: 1px solid #50A9E1;
        outline-offset: -1px;
    }
    .GreyBorderBlackTextButton
    {
        outline: 1px solid #D0D5DD;
        outline-offset: -1px;
    }
    .BottomIndexSection
    {
        margin-top: 80px;
    }
    .MainBackgroundAnimate
    {
        width: 100%;
        height: 100%;
    }
    .MainBackgroundAnimateContainer
    {
        height: calc(250px + 0.5vw);
    }
    .TopTextQuotes, .BottomTextQuotes
    {
        font-size: calc(20px + 0.5vw);
    }
    .TopTextQuotes
    {
        margin-top: calc(120px + 0.5vw);
        margin-bottom: calc(20px + 0.5vw);
    }
    .BottomTextQuotes
    {
        margin-top: calc(70px + 0.5vw);
        margin-bottom: calc(60px + 0.5vw);
    }
}

@media screen  and (min-width: 1201px)
{
    .FilterBlocker
    {
        display: none;
    }
    .TopCornerButtonContainerScrolled
    {
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    }
    .BottomMenuSectionWrapper
    {
        width: 95%;
        max-width: 1500px;
        margin: 20px auto;
        border-top: 2px solid rgba(255, 255, 255, 0.5);
    }
    .TopMenuSectionWrapper
    {
        width: 95%;
        margin: 18px auto;
    }
    .BottomMenuTextWrapper
    {
        margin-top: 15px;
    }
    .BottomMenuText
    {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .BasicTextButton
    {
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    .WhiteOuterHover:hover, .WhiteOuterHover:active
    {
        box-shadow: 0 0 2px 2px #ffffff !important;
    }
    .BasicIconInsideButton
    {
        width: 18px;
        height: 18px;
        margin: -2px 6px;
    }
    .SignInButtonTop, .LoadMoreButton, .SeeAllPhotosButton, .SelectRoomButton, .RedWarningContainer
    {
        padding: 9px 15px;
        font-size: 13px;
    }
    .ContinueBermitraButton
    {
        padding: 9px 70px;
        font-size: 13px;
        margin: 0 auto;

    }
    .BottomButtonBermitraWrapper
    {
        margin-top: 20px;
    }
    .BottomButtonBermitraWrapper button:not(:last-child)
    {
        margin-right: 10px;
    }
    .TopBermitraButton
    {
        padding: 9px 15px;
        font-size: 13px;
        margin-right: 5px;
    }
    .TopBermitraButton img
    {
        width: 12px;
        height: 12px;
        margin: auto 0;
        margin-right: 5px;
    }
    .GabungSekarangButton
    {
        padding: 10px 12px;
        font-size: 13px;
    }
    .PaddingExtendedButton
    {
        padding: 9px 50px;
        font-size: 13px;
    }
    .PinginGoLogo
    {
        height: 25px;
    }
    .SocialIconButton
    {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }
    .CopyrightEndText
    {
        font-size: 13px;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .NoFeaturedPropertyFoundContainer
    {
        margin: 30px 0;
    }
    .BasicRoundRadius
    {
        border-radius: 5px;
    }
    .UserTopProfileIcon
    {
        width: 28px;
        height: 28px;
    }
    .UserTopProfileName
    {
        margin: auto 8px;
        font-size: 17px;
    }
    .WhitePanelContentMainWrapper
    {
        padding: 10px 15px;
    }
    .WhitePanelContentWrapper
    {
        min-width: 230px;
    }
    .WhitePanelContentWrapper .BasicInputTextTop
    {
        margin-right: 20px;
    }
    .RoomButtonAndInputContainer .SmallPanelDropDownContainer
    {
        width: 50px !important;
        min-width: 50px !important;
        height: 30px;
        margin: auto 6px;
    }
    .IncreaseReduceRoomButton
    {
        width: 22px;
        height: 22px;
    }
    .BasicRadioButtonContainer
    {
        width: 18px;
        max-width: 18px;
        height: 20px;
        max-height: 20px;
        /* margin-right: 8px; */
    }
    .BasicRadioButtonContainer .RadioButtonSpan
    {
        outline: 1px solid #D0D5DD;
        outline-offset: -1px;
    }
    .BasicBlueRadioButton:checked ~ .RadioButtonSpan
    {
        outline: 1px solid #50A9E1;
        outline-offset: -1px;
    }
    .GreyBorderBlackTextButton
    {
        outline: 1px solid #D0D5DD;
        outline-offset: -1px;
    }
    .BottomIndexSection
    {
        margin-top: 80px;
    }
    .MainBackgroundAnimate
    {
        width: 120%;
        height: 120%;
        left: -5px;
        top: -5px;
        filter: blur(3px);
        -webkit-filter: blur(3px);
    }
    .MainBackgroundAnimateContainer
    {
        height: 270px;
    }
    .TopTextQuotes, .BottomTextQuotes
    {
        font-size: 25px;
    }
    .TopTextQuotes
    {
        margin-top: 140px;
        margin-bottom: 40px;
    }
    .BottomTextQuotes
    {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}


.ListingMitraMainContentSection
{
    width: 100%;
    margin: 0 auto;
    height: fit-content;
}
.ListingWrapper1, .ListingWrapper2, .ListingWrapper3, .ListingWrapper4, .ListingWrapper5, .ListingWrapper6, .ListingWrapper7, .ListingWrapper8, .ListingWrapper9, .ListingWrapper10, .ListingWrapper11
{
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    overflow: hidden;
}
.ListingWrapper2, .ListingWrapper3, .ListingWrapper6, .ListingWrapper7, .ListingWrapper8, .ListingWrapper9, .ListingWrapper11
{
    flex-direction: column;
}
.ListingWrapper3
{
    background-color: #F5FBFF;
}
.ListingWrapper5
{
    background-color: #F5FBFF;
}
.ListingWrapper7, .ListingWrapper11
{
    background: linear-gradient(to right, #1D76AE, #50A9E1);
}
.ListingWrapper7, .ListingWrapper11
{
    background: linear-gradient(to right, #1D76AE, #50A9E1);
}
.ListingWrapper7 .HeaderTextSection, .ListingWrapper11 .HeaderTextSection
{
    color: white;
    z-index: 1;
}
.ListingWrapper8
{
    background-color: #F5FBFF;
    overflow: hidden;
}
.BergabunglahFlexContainer
{
    width: 100%;
    height: 0;
    display: flex;
    position: relative;
}
.ListingWrapper9
{
    height: fit-content;
    overflow: hidden;
}
.ListingWrapper9 .BenefitsTextDescription
{
    text-align: center;
    margin: 0 auto;
}
.ListingWrapper10
{
    height: fit-content;
}
.ListingWrapper11 p
{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: white;
    z-index: 1;
}
.ListingWrapper11 .BenefitsTextDescription
{
    margin-top: 0px;
}
.ListingWrapper11 .BergabunglahContainer
{
    background: #FFFFFF !important;
    z-index: 1;
}
.ListingWrapper11 .BenefitsTextHeader
{
    color: #065986;
    margin: auto 0;
}
.ListingWrapper11 .GabungSekarangButton
{
    background-color: #3790C8;
    white-space: nowrap;
}
.ListingMitraTopImage
{
    background-color: rgb(188, 188, 188);
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    overflow: hidden;
}
.ListingMitraTopRightSide
{
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
    height: fit-content;
}
.ListingWrapper1 .TextToAnimateType
{
    width: fit-content;
    margin-left: auto !important;
    margin-right: 0 !important;
}
.SubTopHeaderWrapper
{
    width: fit-content;
    height: fit-content;
    margin-left: auto;
}
.TopMessageHeaderText
{
    text-align: end;
}
.SmallBatikTopImage
{
    position: absolute;
    top: 0;
    left: 0;
}
.TextBlueHighlighted
{
    background-color: #2494D9;
    color: white;
}
.TopMessageDescriptionText
{
    margin-left: auto !important;
    color: #667085;
    text-align: end;
}
.ImageRotating3D
{
    margin: 0px auto;
    animation-name: imagerotatepanel;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
.ImageRotating3DContainer
{
    width: fit-content;
    height: fit-content;
}
.HeaderTextBasic
{
    margin: 0 auto;
    color: #344054;
}
.TextToAnimateType
{
    width: fit-content;
    margin: 0 auto;
}
.TentangTextWrapper
{
    height: fit-content;
    text-align: center;
    margin-right: auto !important;
}
.MemilihPinginGoMainWrapper
{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.MemilihPinginGoHeader
{
    width: fit-content;
    height: fit-content;
    display: flex;
}
.MemilihTextHeader
{
    margin: auto 0;
}
.SmallBatikTentang, .SmallBatikChannelBroadcast, .SmallBatikChannelBroadcast2
{
    position: absolute;
    top: 0;
    left: 0;
}
.SmallBatikChannelBroadcast2
{
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    rotate: 180deg;
}
.CircleQuarterCutTop
{
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
}
.BenefitsMainContainer
{
    width: fit-content;
    background-color: white;
    margin: 0 auto;
    height: fit-content;
    z-index: 1;
}
.BenefitsStepsWrapper
{
    width: fit-content;
    height: 100%;
    margin: 0 auto;
    display: flex;
}
.BenefitsIconHeaderWrapper
{
    width: 100%;
    height: fit-content;
    display: flex;
}
.BenefitsIcon
{
    object-fit: contain !important;
    object-position: center !important;
}
.BenefitsTextHeader
{
    margin: auto 0;
    color: #101828;
}
.BenefitsTextDescription
{
    color: #667085;
}
.HeaderTextSection
{
    color: #1D76AE;
}
.Section4TextWrapper
{
    flex: 0 0 1;
    margin: auto 0;
    position: relative;
}
.ListingWrapper5 .SmallBatikTentang
{
    left: auto;
    right: 0;
    transform: scale(-1, 1);
}
.TeamWorkImg
{
    z-index: 1;
}
.Section5TextWrapper
{
    flex: 1;
    height: fit-content;
    margin: auto 0;
    position: relative;
    text-align: end;
}
.SwiperAccomodationMainTypeContainer
{
    width: 60%;
    /* padding-left: 20px; */
    height: fit-content;
    position: relative;
}
.SwiperAccomodationTypeContainer
{
    flex: 1;
    height: fit-content;
    position: relative;
    overflow: hidden;
}
.AccomodationTypeSwiper
{
    background: #F2F4F7;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.AccomodationTypeImage
{
    object-fit: cover !important;
    object-position: center !important;
}
.SwiperNextPrevButtonContainer
{
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
}
.SwiperNextPrevButton
{
    margin: auto 0;
}
.PrevButtonSwiper .SwiperNextPrevButton, .PrevButton
{
    rotate: 180deg;
}
.SwiperOurProgramMainWrapper, .SwiperOurProgramcontainer
{
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.SwiperOurProgramSwiper, .SwiperOurProgramcontainer
{
    display: flex;
    background-color: #1D76AE;
    overflow: hidden;
}
.SwiperOurProgramSwiper p
{
    color: white;
    z-index: 1;
}
.SwiperOurProgramWrapper
{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.OurProgramNextPrevButton
{
    width: fit-content;
    height: fit-content;
    position: absolute;
    z-index: 2;
}

.OurProgramSwiper1TextWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
    margin-top: auto;
}
.OurProgramSwiper1TextWrapper img
{
    height: fit-content;
}
.OurProgramsTitle
{
    color: white;
    margin: auto 0;
}
.GiftAtEdgePanel
{
    height: fit-content;
    position: absolute;
    right: 0;
    bottom: 0;
}
.OurProgramSwiper2TextWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
    margin-top: auto;
}
.OurProgramSwiper2TextWrapper img
{
    height: fit-content;
    margin: auto 0;
}
.NginepGratisEdge
{
    height: fit-content;
    position: absolute;
    bottom: 0;
}
.OurProgramSwiper3TextWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
    margin-top: auto;
}
.OurProgramSwiper3TextWrapper img
{
    height: fit-content;
    margin: auto 0;
}
.GirlLoudSpeakerEdge
{
    height: fit-content;
    position: absolute;
}
.OurProgramSwiper4TextWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
    margin-top: auto;
}
.OurProgramSwiper4TextWrapper img
{
    height: fit-content;
    margin: auto 0;
}
.SocialMediaEdge
{
    height: fit-content;
    position: absolute;
}
.BlueCircleEdge
{
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}
.DaftarAkomodasiStepMainContainer
{
    height: fit-content;
    background-color: white;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.DaftarAkomodasiStepWrapper
{
    display: flex;
    flex-direction: column;
}
.DaftarAkomodasiStepIcon
{
    margin: 0 auto;
}
.DaftarAkomodasiStepText
{
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
    text-align: center;
}
.ExpandingCircleOrangeContainer
{
    margin: 0 auto;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.CircleEdgeBlueAtur
{
    width: fit-content;
    position: absolute;
    right: 0;
    bottom: 0;
    object-fit: fill;
}
.AturAkomodasiWrapper
{
    margin-left: auto;
    z-index: 1;
}
.AturAkomodasiStepPreviewWrapper
{
    width: 100%;
    height: fit-content;
    display: flex;
}
.AturAkomodasiStepWrapper
{
    height: fit-content;
}
.AturAkomodasiPreviewWrapper
{
    flex: 1;
}
.AturAkomodasiStepPreviewContainer
{
    flex: 1;
    height: fit-content;
    display: flex;
}
.AturAkomodasiStepPreview
{
    object-fit: contain !important;
    object-position: left !important;
    width: fit-content !important;
    margin: 0 auto;
}
.AturAkomodasiStepPanel
{
    width: auto;
    height: fit-content;
    display: flex;
    background-color: white;
}

@media screen and (max-width: 560px)
{
    .AturAkomodasiPreviewWrapper
    {
        display: none;
    }
    .ListingMitraMainContentSection
    {
        max-width: 1550px;
    }
    .ListingWrapper1
    {
        padding-top: 11.5vw;
        padding-bottom: 15vw;
    }
    .ListingWrapper2
    {
        padding-bottom: 6vw;
    }
    .ListingWrapper3
    {
        padding: 8vw 0;
        padding-bottom: 11vw;
    }
    .ListingWrapper5
    {
        padding: 6vw 0;
    }
    .ListingWrapper4
    {
        padding: 6vw 0;
    }
    .ListingWrapper6
    {
        padding: 8vw 0;
    }
    .ListingWrapper6 .HeaderTextSection
    {
        margin-bottom: 2vw !important;
    }
    .ListingWrapper7, .ListingWrapper11
    {
        padding: 7vw 0;
        padding-bottom: 10vw;
    }
    .ListingWrapper7 .HeaderTextSection, .ListingWrapper11 .HeaderTextSection
    {
        margin-bottom: 1.5vw !important;
    }
    .ListingWrapper8
    {
        padding: 8vw 0;
        height: 120vw;
    }
    .ListingWrapper9
    {
        padding: 14vw 0;
        padding-bottom: 15vw;
    }
    .ListingWrapper9 .BenefitsTextDescription
    {
        max-width: 80vw;
    }
    .ListingWrapper10
    {
        padding: 2vw 0;
        padding-bottom: 4vw;
    }
    .ListingWrapper11 p
    {
        width: 90%;
        max-width: 1150px;
    }
    .ListingWrapper11 .HeaderTextSection
    {
        margin-top: 2vw;
    }
    .ListingWrapper11 .BenefitsTextDescription
    {
        width: 80%;
    }
    .ListingWrapper11 .BergabunglahContainer
    {
        margin-top: 6vw;
    }
    .BergabunglahContainer
    {
        width: 85vw !important;
    }
    .BergabunglahContainer .BenefitsTextHeader 
    {
        text-align: start;
    }
    .BergabunglahContainer .BasicTextButton 
    {
        white-space: nowrap;
    }
    .ListingMitraTopImage
    {
        width: 50%;
        border-radius: 3vw;
        background-color: red;
    }
    .ListingMitraTopRightSide
    {
        padding: 2vw 0;
        padding-right: 2vw;
    }
    .TopMessageHeaderText
    {
        font-size: 4vw;
        line-height: 5.5vw;
        /* margin-top: 3vw;
        margin-bottom: 2vw; */
    }
    .ListingWrapper1 .TextToAnimateType
    {
        margin-top: 3vw;
        margin-bottom: 2vw;
    }
    .SmallBatikTopImage
    {
        width: 25vw;
        height: 25vw;
    }
    .TextBlueHighlighted
    {
        padding: 0 1.5vw;
    }
    .TopMessageDescriptionText
    {
        width: 90%;
        font-size: 2.3vw;
        line-height: 3.5vw;
        margin: 2vw 0;
    }
    .ImageRotating3D
    {
        width: 65vw;
        border-radius: 2vw;
        box-shadow: 0px -4vw 10vw 0px #34405424;
    }
    
    .ImageRotating3DContainer
    {
        margin: 1vw auto;
        margin-bottom: 2vw;
        perspective: 150vw;
    }
    .HeaderTextBasic
    {
        font-size: 2.2vw;
    }
    .PinginGoLogoTentang
    {
        width: 20vw;
        margin: 0.5vw auto;
        margin-bottom: 2vw;
    }
    .TentangTextWrapper
    {
        width: 90%;
        margin-bottom: 3vw;
    }
    .MemilihTextHeader
    {
        font-size: 2.5vw;
    }
    .MemilihPinginGoIcon
    {
        width: 18vw;
        height: fit-content;
        margin-left: 1vw;
    }
    .SmallBatikTentang, .SmallBatikChannelBroadcast, .SmallBatikChannelBroadcast2
    {
        width: 30vw;
        height: 30vw;
    }
    .CircleQuarterCutTop
    {
        width: 35vw;
    }
    .BenefitsMainContainer
    {
        border-radius: 2vw;
        padding: 4vw 3.5vw;
        margin-top: 4vw;
    }
    .BenefitsStepsContainer
    {
        width: 27vw;
    }
    .BenefitsStepsWrapper2 .BenefitsStepsContainer
    {
        width: 36vw;
    }
    .BenefitsMainContainer .BenefitsStepsWrapper:not(:last-child)
    {
        margin-bottom: 3vw;
    }
    .BenefitsStepsWrapper .BenefitsStepsContainer:not(:last-child)
    {
        margin-right: 2vw;
    }
    .BenefitsIconHeaderWrapper
    {
        width: 100%;
        margin-bottom: 1.5vw;
    }
    .BenefitsIcon
    {
        width: 3.5vw;
        height: 3.5vw;
        margin-right: 1vw;
    }
    .BenefitsTextHeader
    {
        font-size: 2.2vw;
        line-height: 3vw;
    }
    .BergabunglahContainer .BenefitsTextHeader
    {
        white-space: normal;
    }
    .BenefitsTextDescription
    {
        font-size: 2vw;
        line-height: 2.5vw;
    }
    .HeaderTextSection
    {
        font-size: 4vw;
        line-height: 5vw;
        margin-bottom: 2vw;
    }
    .Section4TextWrapper
    {
        margin-left: 6vw;
        margin-right: 2vw;
    }
    .TeamWorkImg
    {
        width: 50vw;
        margin-left: -12vw;
        filter: drop-shadow(0 2vw 4vw rgba(0, 0, 0, 0.1));
    }
    .Section5TextWrapper
    {
        margin-left: 8vw;
        margin-right: 6vw;
    }
    .SwiperAccomodationMainTypeContainer
    {
        width: 50%;
    }
    .AccomodationTypeSwiper
    {
        width: 35vw !important;
        padding: 2vw;
        margin-right: 10px;
        border-radius: 1vw;
    }
    .AccomodationTypeImage
    {
        width: 35vw;
        height: 35vw;
    }
    .CategoryNameText
    {
        font-size: 3vw;
        margin: 1vw 0;
        margin-bottom: 0.5vw;
    }
    .SwiperNextPrevButtonContainer
    {
        width: 8vw;
    }
    .SwiperNextPrevButton
    {
        width: 8vw;
        height: 8vw;
        filter: drop-shadow(0 -0.1vw 1vw rgba(0, 0, 0, 0.2));
    }
    .PrevButtonSwiper
    {
        left: -1vw;
    }
    .NextButtonSwiper
    {
        right: 1vw;
    }
    .SwiperOurProgramSwiper, .SwiperOurProgramcontainer
    {
        width: 85vw !important;
        height: 50vw !important;
        border-radius: 1.8vw;
    }
    .SwiperOurProgramWrapper
    {
        margin: 2vw 3vw;
    }
    .OurProgramNextPrevButton
    {
        top: 2vw;
        right: 2vw;
    }
    .OurProgramNextPrevButton .PrevButton
    {
        margin-right: 1vw;
    }

    .OurProgramSwiper1 .BenefitsTextDescription
    {
        width: 70%;
        margin-top: 2vw;
        margin-bottom: 3vw;
    }
    .OurProgramSwiper1TextWrapper img
    {
        width: 12vw;
        margin-right: 1.5vw;
    }
    .OurProgramsTitle
    {
        font-size: 5.5vw;
        line-height: 5.5vw;
    }
    .OurProgramsTitle2
    {
        max-width: 35vw;
    }
    .GiftAtEdgePanel
    {
        width: 40vw;
    }
    .OurProgramSwiper2 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 1.5vw;
        margin-bottom: 4vw;
    }
    .OurProgramSwiper2TextWrapper img
    {
        width: 15vw;
        margin-right: 1.5vw;
    }
    .NginepGratisEdge
    {
        width: 45vw;
        right: -20vw;
    }
    .OurProgramSwiper3 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 2vw;
        margin-bottom: 3vw;
    }
    .OurProgramSwiper3TextWrapper img
    {
        width: 35vw;
    }
    .GirlLoudSpeakerEdge
    {
        width: 38vw;
        right: -10vw;
        bottom: -2vw;
    }
    .OurProgramSwiper4 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 2vw;
        margin-bottom: 5vw;
    }
    .OurProgramSwiper4TextWrapper img
    {
        width: 25vw;
    }
    .SocialMediaEdge
    {
        width: 40vw;
        right: -15vw;
        bottom: -18vw;
    }
    .DaftarAkomodasiStepMainContainer
    {
        width: 80%;
        max-width: 1000px;
        column-gap: 1vw;
        padding: 3vw 3vw;
        border-radius: 3vw;
    }
    .DaftarAkomodasiStepWrapper
    {
        row-gap: 1vw;
    }
    .DaftarAkomodasiStepIcon
    {
        width: 7.5vw;
        height: 7.5vw;
    }
    .DaftarAkomodasiStepText
    {
        font-size: 2vw;
        line-height: 2.7vw;
    }
    .ExpandingCircleOrangeContainer
    {
        margin-bottom: 4vw;
    }
    .CircleEdgeBlueAtur
    {
        height: 80%;
    }
    .AturAkomodasiWrapper
    {
        width: 90%;
        margin: 0 auto;
    }
    .AturAkomodasiHeader
    {
        font-size: 3.5vw;
    }
    .PinginGoAturAkomodasiLogo
    {
        width: 18vw;
        margin-top: 0.5vw;
        margin-bottom: 2vw;
    }
    .AturAkomodasiStepWrapper
    {
        width: 100%;
        margin-top: 2.5vw;
    }
    .AturAkomodasiStepPreview
    {
        max-height: 420px;
    }
    .AturAkomodasiStepPreview2, .AturAkomodasiStepPreview4, .AturAkomodasiStepPreview5, .AturAkomodasiStepPreview6
    {
        box-shadow: 0px 3.88px 5.82px -1.94px #10182808;
        box-shadow: 0px 11.63px 15.51px -3.88px #10182814;
    }
    .AturAkomodasiStepPanel
    {
        border-radius: 1vw;
        margin-bottom: 8px;
        padding: 10px;
        box-shadow: 0px 2px 4px -2px #1018280F;
        box-shadow: 0px 4px 8px -2px #1018281A;
    }
}
@media screen and (max-width: 1200px) and (min-width: 561px)
{
    .ListingMitraMainContentSection
    {
        max-width: 1550px;
    }
    .ListingWrapper1
    {
        padding-top: calc(50px + 1.5vw);
        padding-bottom: calc(70px + 0.5vw);
    }
    .ListingWrapper2
    {
        padding-bottom: calc(50px + 0.5vw);
    }
    .ListingWrapper3
    {
        padding:  calc(60px + 0.5vw) 0;
        padding-bottom:  calc(90px + 0.5vw);
    }
    .ListingWrapper5
    {
        padding: calc(35px + 0.5vw) 0;
    }
    .ListingWrapper4
    {
        padding: calc(50px + 0.5vw) 0;
    }
    .ListingWrapper6
    {
        padding: calc(60px + 0.5vw) 0;
    }
    .ListingWrapper6 .HeaderTextSection
    {
        margin-bottom: calc(8px + 0.5vw) !important;
    }
    .ListingWrapper7, .ListingWrapper11
    {
        padding: calc(40px + 0.5vw) 0;
        padding-bottom: calc(60px + 0.5vw);
    }
    .ListingWrapper7, .ListingWrapper11
    {
        padding: calc(30px + 0.5vw) 0;
    }
    .ListingWrapper7 .HeaderTextSection, .ListingWrapper11 .HeaderTextSection
    {
        margin-bottom: 10px !important;
    }
    .ListingWrapper8
    {
        padding: calc(40px + 0.5vw) 0;
        height: calc(500px + 0.5vw);
    }
    .ListingWrapper9
    {
        padding: calc(70px + 0.5vw) 0;
        padding-bottom: calc(80px + 0.5vw);
    }
    .ListingWrapper9 .BenefitsTextDescription
    {
        width: 70vw;
        max-width: 700px;
    }
    .ListingWrapper10
    {
        padding: calc(10px + 0.5vw) 0;
        padding-bottom: calc(40px + 0.5vw);
    }
    .ListingWrapper11 .BenefitsTextDescription
    {
        width: 80%;
        max-width: 1150px;
    }
    .ListingWrapper11 .HeaderTextSection
    {
        margin-top: calc(5px + 0.5vw);
    }
    .ListingWrapper11 .BenefitsTextDescription
    {
        width: 80%;
    }
    .ListingWrapper11 .BenefitsTextHeader
    {
        /* max-width: 40vw; */
        white-space: normal !important;
        text-align: start;
    }
    .ListingWrapper11 .BergabunglahContainer
    {
        margin-top: calc(30px + 0.5vw);
    }
    .BergabunglahContainer
    {
        max-width: 85vw;
    }
    .ListingWrapper11 .BenefitsTextHeader
    {
        white-space: nowrap;
    }
    .BergabunglahContainer .BasicTextButton 
    {
        white-space: nowrap;
    }
    .ListingMitraTopImage
    {
        width: 55%;
        border-radius: calc(10px + 0.5vw);
    }
    .ListingMitraTopRightSide
    {
        padding: calc(15px + 0.5vw) 0;
        padding-right: calc(20px + 0.5vw);
    }
    .TopMessageHeaderText
    {
        font-size: calc(22px + 0.5vw);
        line-height: calc(32px + 0.5vw);
        /* margin-top: calc(10px + 0.5vw);
        margin-bottom: calc(5px + 0.5vw); */
    }
    .ListingWrapper1 .TextToAnimateType
    {
        margin-top: calc(10px + 0.5vw);
        margin-bottom: calc(5px + 0.5vw);
    }
    .SmallBatikTopImage
    {
        width: calc(150px + 0.5vw);
        height: calc(150px + 0.5vw);
    }
    .TextBlueHighlighted
    {
        padding: 0 calc(1px + 0.5vw);
    }
    .TopMessageDescriptionText
    {
        width: 70%;
        font-size: calc(10px + 0.5vw);
        line-height: calc(18px + 0.5vw);
        margin: 10px 0;
    }
    .ImageRotating3D
    {
        width: calc(400px + 0.5vw);
        box-shadow: 0px -33px 150px 0px #34405424;
    }
    .ImageRotating3DContainer
    {
        margin: calc(20px + 0.5vw) auto;
        margin-bottom: calc(10px + 0.5vw);
        perspective: 1000px;
    }
    .HeaderTextBasic
    {
        font-size: calc(9px + 0.5vw);
    }
    .PinginGoLogoTentang
    {
        width: calc(100px + 0.5vw);
        margin: 4px auto;
        margin-bottom: calc(10px + 0.5vw);
    }
    .TentangTextWrapper
    {
        width: 85%;
        margin-bottom: calc(10px + 0.5vw);
    }
    .MemilihTextHeader
    {
        font-size: calc(11px + 0.5vw);
    }
    .MemilihPinginGoIcon
    {
        width: calc(110px + 0.5vw);
        height: fit-content;
        margin-left: calc(2px + 0.5vw);
    }
    .SmallBatikTentang, .SmallBatikChannelBroadcast, .SmallBatikChannelBroadcast2
    {
        width: calc(200px + 0.5vw);
        height: calc(200px + 0.5vw);
    }
    .CircleQuarterCutTop
    {
        width: calc(200px + 0.5vw);
    }
    .BenefitsMainContainer
    {
        border-radius: 10px;
        padding: 2.5vw 3vw;
        margin-top: 30px;
    }
    .BenefitsStepsContainer
    {
        width: 25vw;
    }
    .BenefitsMainContainer .BenefitsStepsWrapper:not(:last-child)
    {
        margin-bottom: 3vw;
    }
    .BenefitsStepsWrapper .BenefitsStepsContainer:not(:last-child)
    {
        margin-right: 2vw;
    }
    .BenefitsIconHeaderWrapper
    {
        width: 100%;
        margin-bottom: calc(2px + 0.5vw);
    }
    .BenefitsIcon
    {
        width: calc(18px + 0.5vw);
        height: calc(18px + 0.5vw);
        margin-right: calc(2px + 0.5vw);
    }
    .BenefitsTextHeader
    {
        font-size: calc(9px + 0.5vw);
        line-height: calc(13px + 0.5vw);
    }
    .BenefitsTextDescription
    {
        font-size: calc(7px + 0.5vw);
        line-height: calc(13px + 0.5vw);
    }
    .HeaderTextSection
    {
        font-size: calc(20px + 0.5vw);
        line-height: calc(25px + 0.5vw);
        margin-bottom: 10px;
    }
    .Section4TextWrapper
    {
        margin-left: calc(30px + 0.5vw);
        margin-right: calc(20px + 0.5vw);
    }
    .TeamWorkImg
    {
        width: calc(300px + 0.5vw);
        margin-left: calc(20px + 0.5vw);
        filter: drop-shadow(0 calc(5px + 0.5vw) calc(15px + 0.5vw) rgba(0, 0, 0, 0.1));
    }
    .Section5TextWrapper
    {
        margin-left: calc(40px + 0.5vw);
        margin-right: calc(40px + 0.5vw);
    }
    .SwiperAccomodationMainTypeContainer
    {
        width: 50%;
    }
    .AccomodationTypeSwiper
    {
        width: calc(220px + 0.5vw) !important;
        padding: calc(7px + 0.5vw);
        margin-right: calc(4px + 0.5vw);
        border-radius: 0.5vw;
    }
    .AccomodationTypeImage
    {
        width: calc(220px + 0.5vw);
        height: calc(220px + 0.5vw);
    }
    .CategoryNameText
    {
        font-size: calc(11px + 0.5vw);
        margin: calc(1px + 0.5vw) 0;
        margin-bottom: 0.5vw;
    }
    .SwiperNextPrevButtonContainer
    {
        width: calc(40px + 0.5vw);
    }
    .SwiperNextPrevButton
    {
        width: calc(40px + 0.5vw);
        height: calc(40px + 0.5vw);
        filter: drop-shadow(0 -2px 5px rgba(0, 0, 0, 0.2));
    }
    .PrevButtonSwiper
    {
        left: -1vw;
    }
    .NextButtonSwiper
    {
        right: 0.5vw;
    }
    .SwiperOurProgramSwiper, .SwiperOurProgramcontainer
    {
        width: 70vw !important;
        max-width: 700px;
        height: 40vw !important;
        max-height: calc(400px + 0.5vw);
        border-radius: 10px;
    }
    .SwiperOurProgramWrapper
    {
        margin: calc(20px + 0.5vw) calc(20px + 0.5vw);
    }
    .OurProgramNextPrevButton
    {
        top: calc(10px + 0.5vw);
        right: calc(10px + 0.5vw);
    }
    .OurProgramNextPrevButton .PrevButton
    {
        margin-right: calc(2px + 0.5vw);
    }
    .OurProgramSwiper1 .BenefitsTextDescription
    {
        width: 70%;
        margin-top: 1vw;
        margin-bottom: 1vw;
    }
    .OurProgramSwiper1TextWrapper img
    {
        width: 8vw;
        margin-right: 1vw;
    }
    .OurProgramsTitle
    {
        font-size: 4.5vw;
        line-height: 4vw;
        /* font-size: calc(32px + 0.5vw);
        line-height: calc(30px + 0.5vw); */
    }
    .OurProgramsTitle2
    {
        max-width: 25vw;
        font-size: 4vw;
    }
    .GiftAtEdgePanel
    {
        width: 35vw;
        /* width: calc(280px + 0.5vw); */
    }
    .OurProgramSwiper2 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 2vw;
        margin-bottom: 1vw;
    }
    .OurProgramSwiper2TextWrapper img
    {
        width: 14vw;
        margin-right: 1vw;
    }
    .NginepGratisEdge
    {
        width: 35vw;
        max-width: 320px;
        right: -12vw;
        bottom: -2vw;
    }
    .OurProgramSwiper3 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 2vw;
        margin-bottom: 1vw;
    }
    .OurProgramSwiper3TextWrapper img
    {
        width: 25vw;
    }
    .GirlLoudSpeakerEdge
    {
        width: 30vw;
        right: -5vw;
        bottom: -0.5vw;
    }
    .OurProgramSwiper4 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 1.5vw;
        margin-bottom: 1vw;
    }
    .OurProgramSwiper4TextWrapper img
    {
        width: 18vw;
    }
    .SocialMediaEdge
    {
        width: 30vw;
        right: -10vw;
        bottom: -12vw;
    }
    .DaftarAkomodasiStepMainContainer
    {
        width: 75%;
        max-width: 1000px;
        column-gap: calc(8px + 0.5vw);
        padding: calc(20px + 0.5vw) calc(10px + 0.5vw);
        border-radius: calc(10px + 0.5vw);
    }
    .DaftarAkomodasiStepWrapper
    {
        row-gap: 0.5vw;
    }
    .DaftarAkomodasiStepIcon
    {
        width: calc(45px + 0.5vw);
        height: calc(45px + 0.5vw);
    }
    .DaftarAkomodasiStepText
    {
        font-size: calc(8px + 0.5vw);
        line-height: calc(12px + 0.5vw);
    }
    .ExpandingCircleOrangeContainer
    {
        margin-bottom: calc(20px + 0.5vw);
    }
    .CircleEdgeBlueAtur
    {
        height: 80%;
    }
    .AturAkomodasiWrapper
    {
        width: 94%;
    }
    .AturAkomodasiHeader
    {
        font-size: calc(18px + 0.5vw);
    }
    .PinginGoAturAkomodasiLogo
    {
        width: calc(100px + 0.5vw);
        margin-top: 0.5vw;
        margin-bottom: calc(5px + 0.5vw);
    }
    .AturAkomodasiStepWrapper
    {
        min-width: 45vw;
        max-width: 45vw;
        margin-top: calc(30px + 0.5vw);
    }
    .AturAkomodasiStepPreview
    {
        max-height: 33vw;
    }
    .AturAkomodasiStepPreview2
    {
        max-height: 31vw;
    }
    .AturAkomodasiStepPreview3
    {
        max-height: 60vw;
    }
    .AturAkomodasiStepPreview4
    {
        max-height: 31vw;
    }
    .AturAkomodasiStepPreview5
    {
        max-height: 39vw;
    }
    .AturAkomodasiStepPreview6
    {
        max-height: 40vw;
    }
    .AturAkomodasiStepPreview2, .AturAkomodasiStepPreview4, .AturAkomodasiStepPreview5, .AturAkomodasiStepPreview6
    {
        box-shadow: 0px 3.88px 5.82px -1.94px #10182808;
        box-shadow: 0px 11.63px 15.51px -3.88px #10182814;
    }
    .AturAkomodasiStepPanel
    {
        border-radius: 0.5vw;
        margin-bottom: calc(2px + 0.5vw);
        padding: calc(3px + 0.5vw) calc(4px + 0.5vw);
        box-shadow: 0px 2px 4px -2px #1018280F;
        box-shadow: 0px 4px 8px -2px #1018281A;
    }    
}

@media screen and (min-width: 1201px)
{
    .ListingMitraMainContentSection
    {
        max-width: 1550px;
    }
    .ListingWrapper1
    {
        padding-bottom: 80px;
        padding-top: 70px;
    }
    .ListingWrapper2
    {
        padding-bottom: 60px;
    }
    .ListingWrapper3
    {
        padding: 80px 0;
        padding-bottom: 100px;
    }
    .ListingWrapper5
    {
        padding: 40px 0;
    }
    .ListingWrapper4
    {
        padding: 80px 0;
    }
    .ListingWrapper6
    {
        padding: 80px 0;
    }
    .ListingWrapper6 .HeaderTextSection
    {
        margin-bottom: 10px !important;
    }
    .ListingWrapper7, .ListingWrapper11
    {
        padding: 60px 0;
        padding-bottom: 80px;
    }
    .ListingWrapper7, .ListingWrapper11
    {
        padding: 45px 0;
    }
    .ListingWrapper7 .HeaderTextSection, .ListingWrapper11 .HeaderTextSection
    {
        margin-bottom: 10px !important;
    }
    .ListingWrapper8
    {
        padding: 80px 0;
        height: 500px;
    }
    .ListingWrapper9
    {
        padding: 80px 0;
        padding-bottom: 100px;
    }
    .ListingWrapper9 .BenefitsTextDescription
    {
        max-width: 700px;
    }
    .ListingWrapper10
    {
        padding: 30px 0;
        padding-bottom: 70px;
    }
    .ListingWrapper11 p
    {
        width: 80%;
        max-width: 1150px;
    }
    .ListingWrapper11 .HeaderTextSection
    {
        margin-top: 15px;
    }
    .ListingWrapper11 .BenefitsTextDescription
    {
        width: 50%;
    }
    .ListingWrapper11 .BergabunglahContainer
    {
        margin-top: 40px;
    }
    .ListingWrapper11 .BenefitsTextHeader
    {
        white-space: nowrap;
    }
    .ListingMitraTopImage
    {
        width: 55%;
        border-radius: 20px;
    }
    .ListingMitraTopRightSide
    {
        padding: 30px 0;
        padding-right: 80px;
    }
    .TopMessageHeaderText
    {
        font-size: 33px;
        line-height: 46px;
        /* margin-top: 35px;
        margin-bottom: 10px; */
    }
    .ListingWrapper1 .TextToAnimateType
    {
        margin-top: 35px;
        margin-bottom: 10px;
    }
    .SmallBatikTopImage
    {
        width: 150px;
        height: 150px;
    }
    .TextBlueHighlighted
    {
        padding: 0 8px;
    }
    .TopMessageDescriptionText
    {
        width: 70%;
        font-size: 15px;
        line-height: 23px;
        margin: 10px 0;
    }
    .ImageRotating3D
    {
        width: 450px;
        box-shadow: 0px -33px 150px 0px #34405424;
    }
    
    .ImageRotating3DContainer
    {
        margin: 80px auto;
        margin-bottom: 10px;
          perspective: 1000px;
    }
    .HeaderTextBasic
    {
        font-size: 16px;
    }
    .PinginGoLogoTentang
    {
        width: 140px;
        margin: 4px auto;
        margin-bottom: 30px;
    }
    .TentangTextWrapper
    {
        width: 70%;
        margin-bottom: 20px;
    }
    .MemilihTextHeader
    {
        font-size: 18px;
    }
    .MemilihPinginGoIcon
    {
        width: 120px;
        height: fit-content;
        margin-left: 6px;
    }
    .SmallBatikTentang, .SmallBatikChannelBroadcast, .SmallBatikChannelBroadcast2
    {
        width: 320px;
        height: 320px;
    }
    .CircleQuarterCutTop
    {
        width: 340px;
    }
    .BenefitsMainContainer
    {
        border-radius: 10px;
        padding: 30px 28px;
        margin-top: 30px;
    }
    .BenefitsStepsContainer
    {
        width: 320px;
    }
    .BenefitsMainContainer .BenefitsStepsWrapper:not(:last-child)
    {
        margin-bottom: 40px;
    }
    .BenefitsStepsWrapper .BenefitsStepsContainer:not(:last-child)
    {
        margin-right: 30px;
    }
    .BenefitsIconHeaderWrapper
    {
        width: 100%;
        margin-bottom: 8px;
    }
    .BenefitsIcon
    {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .BenefitsTextHeader
    {
        font-size: 15px;
    }
    .BenefitsTextDescription
    {
        font-size: 13px;
        line-height: 20px;
    }
    .HeaderTextSection
    {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    .Section4TextWrapper
    {
        margin-left: 100px;
        margin-right: 80px;
    }
    .TeamWorkImg
    {
        width: 420px;
        margin-left: 100px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    }
    .Section5TextWrapper
    {
        margin-left: 180px;
        margin-right: 80px;
    }
    .SwiperAccomodationMainTypeContainer
    {
        width: 60%;
    }
    .AccomodationTypeSwiper
    {
        width: 250px !important;
        padding: 12px;
        margin-right: 10px;
        border-radius: 5px;
    }
    .AccomodationTypeImage
    {
        width: 250px;
        height: 250px;
    }
    .CategoryNameText
    {
        font-size: 15.5px;
        margin: 8px 0;
        margin-bottom: 5px;
    }
    .SwiperNextPrevButtonContainer
    {
        width: 45px;
    }
    .SwiperNextPrevButton
    {
        width: 45px;
        height: 45px;
        filter: drop-shadow(0 -2px 5px rgba(0, 0, 0, 0.2));
    }
    .PrevButtonSwiper
    {
        left: -20px;
    }
    .NextButtonSwiper
    {
        right: 10px;
    }
    .SwiperOurProgramSwiper, .SwiperOurProgramcontainer
    {
        width: 760px !important;
        height: 420px !important;
        border-radius: 10px;
    }
    .SwiperOurProgramWrapper
    {
        margin: 30px 50px;
    }
    .OurProgramNextPrevButton
    {
        top: 15px;
        right: 15px;
    }
    .OurProgramNextPrevButton .PrevButton
    {
        margin-right: 8px;
    }
    .OurProgramSwiper1 .BenefitsTextDescription
    {
        width: 70%;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .OurProgramSwiper1TextWrapper img
    {
        width: 90px;
        margin-right: 10px;
    }
    .OurProgramsTitle
    {
        font-size: 40px;
        line-height: 40px;
    }
    .OurProgramsTitle2
    {
        max-width: 290px;
    }
    .GiftAtEdgePanel
    {
        width: 320px;
    }
    .OurProgramSwiper2 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .OurProgramSwiper2TextWrapper img
    {
        width: 130px;
        margin-right: 10px;
    }
    .NginepGratisEdge
    {
        width: 380px;
        right: -150px;
    }
    .OurProgramSwiper3 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .OurProgramSwiper3TextWrapper img
    {
        width: 300px;
        margin-right: 10px;
    }
    .GirlLoudSpeakerEdge
    {
        width: 320px;
        right: -60px;
        bottom: -5px;
    }
    .OurProgramSwiper4 .BenefitsTextDescription
    {
        width: 65%;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .OurProgramSwiper4TextWrapper img
    {
        width: 200px;
        margin-right: 10px;
    }
    .SocialMediaEdge
    {
        width: 340px;
        right: -100px;
        bottom: -105px;
    }
    .DaftarAkomodasiStepMainContainer
    {
        width: 65%;
        max-width: 1000px;
        column-gap: 25px;
        padding: 30px 25px;
        border-radius: 20px;
    }
    .DaftarAkomodasiStepWrapper
    {
        row-gap: 5px;
    }
    .DaftarAkomodasiStepIcon
    {
        width: 65px;
        height: 65px;
    }
    .DaftarAkomodasiStepText
    {
        font-size: 14px;
        line-height: 20px;
    }
    .ExpandingCircleOrangeContainer
    {
        margin-bottom: 30px;
    }
    .CircleEdgeBlueAtur
    {
        height: 80%;
    }
    .AturAkomodasiWrapper
    {
        width: 92%;
    }
    .AturAkomodasiHeader
    {
        font-size: 22px;
    }
    .PinginGoAturAkomodasiLogo
    {
        width: 100px;
        margin-top: 8px;
        margin-bottom: 10px
    }
    .AturAkomodasiStepWrapper
    {
        width: 680px;
        margin-top: 40px;
    }
    .AturAkomodasiStepPreview
    {
        max-height: 420px;
    }
    .AturAkomodasiStepPreview2, .AturAkomodasiStepPreview4, .AturAkomodasiStepPreview5, .AturAkomodasiStepPreview6
    {
        box-shadow: 0px 3.88px 5.82px -1.94px #10182808;
        box-shadow: 0px 11.63px 15.51px -3.88px #10182814;
    }
    .AturAkomodasiStepPanel
    {
        border-radius: 5px;
        margin-bottom: 8px;
        padding: 10px;
        box-shadow: 0px 2px 4px -2px #1018280F;
        box-shadow: 0px 4px 8px -2px #1018281A;
    }
    
}

@keyframes imagerotatepanel
{
    0%
    {
        -webkit-transform: rotate3d(0, 1, 0, 15deg);
        transform: rotate3d(0, 1, 0, 15deg);
    }
    50% 
    {
        -webkit-transform: rotate3d(0, 1, 0, -15deg);
        transform: rotate3d(0, 1, 0, -15deg);
    }
    100%
    {
        -webkit-transform: rotate3d(0, 1, 0, 15deg);
        transform: rotate3d(0, 1, 0, 15deg);
    }
}



  /* --------------------------------------- CHECK BOX ----------------------------------------------- */

.CheckBoxText, .CheckBoxAturDescription
{
    width: fit-content;
    height: fit-content;
    margin: auto 0;
    position: relative;
    text-overflow: ellipsis;
    color: #1D2939;
}
.CheckBoxAturDescription
{
    color: #667085;
}
.AturAkomodasiCheckBoxClickable
{
    display: none;
}
.AturAkomodasiCheckBox
{
    height: fit-content;
    content: url("../Assets/ListingAssets/BenefitJoin/check-atur-akomodasi.svg");
}
.AturAkomodasiCheckBoxWrapper:has(.AturAkomodasiCheckBoxClickable:checked) .AturAkomodasiStepPanel .AturAkomodasiCheckBox
{
    content: url("../Assets/ListingAssets/BenefitJoin/check-atur-akomodasi-checked.svg");
}
.CollapsibleTextBoxAtur
{
    width: 100%;
    height: fit-content;
    max-height: 0;
    overflow: hidden;
}
.AturAkomodasiCheckBoxWrapper:has(.AturAkomodasiCheckBoxClickable:checked) .CollapsibleTextBoxAtur
{
    max-height: 999;
    -webkit-transition: max-height 1s ease;
    -moz-transition: max-height 1s ease;
    -o-transition: max-height 1s ease;
    -ms-transition: max-height 1s ease;
    transition: max-height 1s ease;
}
.BergabunglahFlexWrapper
{
    width: 100%;
    height: fit-content;
    position: absolute;
    display: flex;
    z-index: 1;
    transform: translateY(-50%);
}
.BergabunglahContainer
{
    width: fit-content;
    margin: 0 auto;
    display: flex;
    background: linear-gradient(63.44deg, #2494D9 16.72%, #50A9E1 83.39%);
}
.SocialMediaButtonWrapper
{
    width: fit-content;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    z-index: 1;
}
.SocialMediaButton
{
    background-color: white;
    border: 0;
}
.SocialMediaButton img
{
    margin: 0 auto;
}
.SocialMediaButton p
{
    width: fit-content;
    color: #667085;
    margin: 0 auto;
}
.SocialMediaWrapperDescSec
{
    width: 50%;
    height: fit-content;
}
.SocialIcDecSectionWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
}
.SocialIcDecSectionWrapper p
{
    width: fit-content;
    height: fit-content;
    margin: auto 0;
}
.SocialMediaWrapperDescSec .BenefitsTextDescription
{
    color: #667085;
}
.SocialMediaWrapperImageSec
{
    flex-grow: 1;
    display: flex;
}
.Listing10CenterizeWrapper
{
    width: 75%;
    margin: 0 auto;
}
.SocialMediaWrapperSection10
{
    width: 100%;
    height: fit-content;
    display: flex;
}
.InstagramSC, .TiktokSC, .PingShareSC
{
    height: fit-content;
    margin-left: auto;
}
.FacebookSC, .BlogSC
{
    height: fit-content;
    margin-right: auto;
}

@media screen and (max-width: 560px)
{
    .CheckBoxText
    {
        font-size: 2.7vw;
    }
    .CheckBoxTextContainer
    {
        margin-top: 0vw;
        margin-left: 2vw;
    }
    .CheckBoxAturDescription
    {
        font-size: 2.4vw;
        line-height: 3.4vw;
        margin-top: 1vw;
        margin-bottom: 2vw;
    }
    .AturAkomodasiCheckBox
    {
        width: 3vw;
    }
    .BergabunglahContainer
    {
        padding: 2vw 2vw;
        border-radius: 2vw;
        background: linear-gradient(63.44deg, #2494D9 16.72%, #50A9E1 83.39%);
    }
    .BergabunglahContainer button
    {
        margin-left: 2vw;
        margin-right: 0.1vw;
    }
    .SocialMediaButtonWrapper
    {
        column-gap: 2vw;
        row-gap: 2vw;
        margin-top: 5vw;
    }
    
    .SocialMediaButton
    {
        width: 18vw;
        height: 18vw;
        border-radius: 10px;
        box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
        -webkit-box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
        -moz-box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
    }
    .SocialMediaButton img
    {
        width: 5vw;
        height: 5vw;
    }
    .SocialMediaButton p
    {
        font-size: 2vw;
        margin-top: 0.5vw;
    }
    .SocialMediaWrapperDescSec
    {
        margin-top: 4vw;
    }
    .SocialIcDecSectionWrapper
    {
        margin-bottom: 1.5vw;
    }
    .SocialIcDecSectionWrapper img
    {
        width: 3.2vw;
        height: 3.2vw;
        margin-right: 1vw;
    }
    .SocialIcDecSectionWrapper p
    {
        font-size: 2.6vw;
    }
    .BigDownWrapperStep
    {
        margin-bottom: 2vw;
    }
    .SmallDownWrapperStep
    {
        /* margin-bottom: 0.5vw; */
    }
    .StepPadding
    {
        /* margin-left: 0.5vw; */
    }
    .Listing10CenterizeWrapper
    {
        width: 90%;
    }
    .SocialMediaWrapperSection10
    {
        margin-top: 5vw;
    }
    .InstagramSC, .TiktokSC, .PingShareSC
    {
        margin-right: 1vw;
    }
    .FacebookSC, .BlogSC
    {
        margin-left: 1vw;
    }
    .InstagramSC
    {
        width: 40vw;
    }
    .FacebookSC
    {
        width: 40vw;
    }
    .TiktokSC
    {
        width: 38vw;
    }
    .BlogSC
    {
        width: 40vw;
    }
    .PingShareSC
    {
        width: 40vw;
    }
    .BottomPinginGoSectionWrapper:not(:last-child)
    {
        margin-right: 3vw;
    }
    .BottomPinginGoSectionWrapper:first-child
    {
        max-width: 25vw;
    }
}

@media screen and (max-width: 1200px) and (min-width: 561px)
{
    .CheckBoxText
    {
        font-size: calc(9px + 0.5vw);
    }
    .CheckBoxTextContainer
    {
        margin-top: 0.2vw;
        margin-left: calc(5px + 0.5vw);
    }
    .CheckBoxAturDescription
    {
        font-size: calc(8px + 0.5vw);
        line-height: calc(14px + 0.5vw);
        margin-top: calc(1px + 0.5vw);
        margin-bottom: calc(7px + 0.5vw);
    }
    .AturAkomodasiCheckBox
    {
        width: calc(10px + 0.5vw);
    }
    .BergabunglahContainer
    {
        padding: calc(8px + 0.5vw) calc(5px + 0.5vw);
        border-radius: calc(5px + 0.5vw);
        background: linear-gradient(63.44deg, #2494D9 16.72%, #50A9E1 83.39%);
    }
    .BergabunglahContainer button
    {
        margin-left: calc(5px + 0.5vw);
        margin-right: 0.5vw;
    }
    .SocialMediaButtonWrapper
    {
        column-gap: calc(12px + 0.5vw);
        row-gap: calc(12px + 0.5vw);
        margin-top: calc(30px + 0.5vw);
    }
    
    .SocialMediaButton
    {
        width: calc(110px + 0.5vw);
        height: calc(110px + 0.5vw);
        border-radius: 10px;
        box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
        -webkit-box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
        -moz-box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
    }
    .SocialMediaButton img
    {
        width: calc(40px + 0.5vw);
        height: calc(40px + 0.5vw);
    }
    .SocialMediaButton p
    {
        font-size: calc(6px + 0.5VW);
        margin-top: 0.2vw;
    }
    .SocialMediaWrapperDescSec
    {
        margin-top: calc(20px + 0.5vw);
    }
    .SocialIcDecSectionWrapper
    {
        margin-bottom: calc(1px + 0.5vw);
    }
    .SocialIcDecSectionWrapper img
    {
        width: calc(12px + 0.5vw);
        height: calc(12px + 0.5vw);
        margin-right: 0.5vw;
    }
    .SocialIcDecSectionWrapper p
    {
        font-size: calc(9px + 0.5vw);
    }
    .BigDownWrapperStep
    {
        margin-bottom: calc(5px + 0.5vw);
    }
    .SmallDownWrapperStep
    {
        margin-bottom: 0.5vw;
    }
    .StepPadding
    {
        margin-left: 0.5vw;
    }
    .Listing10CenterizeWrapper
    {
        width: 85%;
    }
    .SocialMediaWrapperSection10
    {
        margin-top: calc(30px + 0.5vw);
    }
    .InstagramSC, .TiktokSC, .PingShareSC
    {
        /* margin-right: calc(20px + 0.5vw); */
    }
    .FacebookSC, .BlogSC
    {
        /* margin-left: calc(20px + 0.5vw); */
    }
    .InstagramSC
    {
        width: calc(240px + 0.5vw);
    }
    .FacebookSC
    {
        width: calc(260px + 0.5vw);
    }
    .TiktokSC
    {
        width: calc(240px + 0.5vw);
    }
    .BlogSC
    {
        width: calc(260px + 0.5vw);
    }
    .PingShareSC
    {
        width: calc(280px + 0.5vw);
    }
    .BottomPinginGoSectionWrapper:not(:last-child)
    {
        margin-right: calc(30px + 0.5vw);
    }
}

@media screen and (min-width: 1201px)
{
    .CheckBoxText
    {
        font-size: 13.5px;
    }
    .CheckBoxTextContainer
    {
        margin-top: 1px;
        margin-left: 10px;
    }
    .CheckBoxAturDescription
    {
        font-size: 12.5px;
        line-height: 20px;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    .AturAkomodasiCheckBox
    {
        width: 19px;
    }
    .BergabunglahContainer
    {
        padding: 15px 15px;
        border-radius: 15px;
        background: linear-gradient(63.44deg, #2494D9 16.72%, #50A9E1 83.39%);
    }
    .BergabunglahContainer button
    {
        margin-left: 20px;
        margin-right: 5px;
    }
    .SocialMediaButtonWrapper
    {
        column-gap: 20px;
        row-gap: 20px;
        margin-top: 40px;
    }
    
    .SocialMediaButton
    {
        width: 120px;
        height: 120px;
        border-radius: 10px;
        box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
        -webkit-box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
        -moz-box-shadow: 1px 2px 9px -2px rgba(0,0,0,0.2);
    }
    .SocialMediaButton img
    {
        width: 50px;
        height: 50px;
    }
    .SocialMediaButton p
    {
        font-size: 12px;
        margin-top: 3px;
    }
    .SocialMediaWrapperDescSec
    {
        margin-top: 35px;
    }
    .SocialIcDecSectionWrapper
    {
        margin-bottom: 8px;
    }
    .SocialIcDecSectionWrapper img
    {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
    .SocialIcDecSectionWrapper p
    {
        font-size: 14px;
    }
    .BigDownWrapperStep
    {
        margin-bottom: 10px;
    }
    .SmallDownWrapperStep
    {
        margin-bottom: 4px;
    }
    .StepPadding
    {
        margin-left: 5px;
    }
    .Listing10CenterizeWrapper
    {
        width: 75%;
    }
    .SocialMediaWrapperSection10
    {
        margin-top: 40px;
    }
    .InstagramSC, .TiktokSC, .PingShareSC
    {
        margin-right: 40px;
    }
    .FacebookSC, .BlogSC
    {
        margin-left: 40px;
    }
    .InstagramSC
    {
        width: 280px;
    }
    .FacebookSC
    {
        width: 300px;
    }
    .TiktokSC
    {
        width: 300px;
    }
    .BlogSC
    {
        width: 300px;
    }
    .PingShareSC
    {
        width: 340px;
    }
    .BottomPinginGoSectionWrapper
    {
        margin-right: 50px;
    }
}

/* -------------------------------- ANIMATION ---------------------- */

@keyframes typing
{
    from { width: 0 }
    to { width: 100% }
}

@keyframes wipemaskanim
{
    0% {
        opacity: 1;
        -webkit-mask-position: 100%;
    }

    100% {
        opacity: 1;
        -webkit-mask-position: 0%;
    }
}

/* ------- Section 1 */


.ListingWrapper1 .ListingMitraTopImage
{
    transform: translateX(-3%);
    opacity: 0;
    transition: transform 1.5s, opacity 2s;
}
.ListingWrapper1.PlayAnimation .ListingMitraTopImage
{
    transform: translateY(0%);
    opacity: 1;
}

.ListingWrapper1 .SmallBatikTopImage
{
    opacity: 0;
    transition: opacity 2s;
}
.ListingWrapper1.PlayAnimation .SmallBatikTopImage
{
    opacity: 1;
}

.ListingWrapper1 .TextToAnimateType
{
    opacity: 0;
    transition: opacity 1.5s;
}
.ListingWrapper1.PlayAnimation .TextToAnimateType
{
    opacity: 1;
}

.ListingWrapper1 .TextToAnimateType .SubTopHeaderWrapper p
{
    white-space: nowrap;
    text-align: end;
    overflow: hidden;
    width: 0;
}
.ListingWrapper1.PlayAnimation  .SubTopHeaderWrapper:first-child p
{
    animation: typing 0.4s steps(9, end) forwards;
}

.ListingWrapper1.PlayAnimation  .SubTopHeaderWrapper:nth-child(2) p
{
    animation: typing 0.4s steps(15, end) forwards;
    animation-delay: 0.4s;
}

.ListingWrapper1.PlayAnimation  .SubTopHeaderWrapper:nth-child(3) p
{
    animation: typing 0.4s steps(11, end) forwards;
    animation-delay: 0.8s;
}


.ListingWrapper1 .TopMessageDescriptionText
{
    transform: translateX(10%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
    transition-delay: 0.2s;
}
.ListingWrapper1.PlayAnimation .TopMessageDescriptionText
{
    transform: translateX(0%);
    opacity: 1;
}

.ListingWrapper1 .GabungSekarangButton
{
    transform: translateY(50%);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
    transition-delay: 0.2s;
}
.ListingWrapper1.PlayAnimation .GabungSekarangButton
{
    transform: translateY(0%);
    opacity: 1;
}



/* ------- Section 2 */


.ListingWrapper2 .ImageRotating3DContainer
{
    transform: translateY(20%);
    opacity: 0;
    transition: transform 1.5s, opacity 1s;
}
.ListingWrapper2.PlayAnimation .ImageRotating3DContainer
{
    transform: translateY(0%);
    opacity: 1;
}



.ListingWrapper2 .TextToAnimateType p
{
    overflow: hidden;
    width: 0;
    opacity: 0;

}
.ListingWrapper2.PlayAnimation .TextToAnimateType p
{
    opacity: 1;
    transition: opacity 0.5s;
    transition-delay: 0.8s;
    animation: typing 0.5s steps(6, end) forwards;
    animation-delay: 0.8s;
}



.ListingWrapper2 .TopMessageDescriptionText
{
    transform: translateY(50%);
    opacity: 0;
    transition: transform 1s, opacity 0.5s;
    transition-delay: 0.8s;
}
.ListingWrapper2.PlayAnimation .TopMessageDescriptionText
{
    transform: translateY(0%);
    opacity: 1;
    transition-delay: 0.8s;
}


.ListingWrapper2 .PinginGoLogoTentang
{
    opacity: 0;
    transition: opacity 0.5s;
    transition-delay: 0.8s;
}
.ListingWrapper2.PlayAnimation .PinginGoLogoTentang
{
    opacity: 1;
    transition-delay: 0.8s;
}





/* ------- Section 3 */


.ListingWrapper3
{
    overflow: hidden;
    opacity: 0;
    -webkit-mask-image: linear-gradient(to left, #0000 25%, #000 75%);
    -webkit-mask-size: 500%;
}
.ListingWrapper3.PlayAnimation
{
    animation: wipemaskanim 1s forwards;
}


.ListingWrapper3 .SmallBatikTentang
{
    opacity: 0;
    transition: opacity 2s;
}
.ListingWrapper3.PlayAnimation .SmallBatikTentang
{
    opacity: 1;
    transition-delay: 0.5s;
}


.ListingWrapper3 .CircleQuarterCutTop
{
    transform: translate(-10%, -10%);
    opacity: 0;
    transition: opacity 1s, transform 2s;
}
.ListingWrapper3.PlayAnimation .CircleQuarterCutTop
{
    transform: translate(0%, 0%);
    opacity: 1;
    transition-delay: 0.5s;
}


.ListingWrapper3 .MemilihTextHeader
{
    overflow: hidden;
    width: 0;
    opacity: 0;

}
.ListingWrapper3.PlayAnimation .MemilihTextHeader
{
    opacity: 1;
    transition: opacity 1s;
    animation: typing 0.3s steps(5, end) forwards;
    transition-delay: 0.5s;
    animation-delay: 0.5s;
}

.ListingWrapper3 .MemilihPinginGoIcon
{
    transform: scale(90%);
    opacity: 0;
}
.ListingWrapper3.PlayAnimation .MemilihPinginGoIcon
{
    transform: scale(100%);
    opacity: 1;
    transition: transform 0.5s, opacity 0.8s;
    transition-delay: 1.1s;
}

.ListingWrapper3 .HeaderTextBasic
{
    transform: translateY(20%);
    opacity: 0;
    transition: transform 1.5s, opacity 1s;
}
.ListingWrapper3.PlayAnimation .HeaderTextBasic
{
    transform: translateY(0%);
    opacity: 1;
    transition-delay: 1.5s;
}

.ListingWrapper3 .BenefitsMainContainer
{
    transform: translateY(10%);
    opacity: 0;
    transition: transform 1s, opacity 0.5s;
}
.ListingWrapper3.PlayAnimation .BenefitsMainContainer
{
    transform: translateY(0%);
    opacity: 1;
    transition-delay: 0.5s;
}


.ListingWrapper3 .BenefitsStepsWrapper .BenefitsStepsContainer
{
    transform: scale(90%);
    opacity: 0;
}
.ListingWrapper3.PlayAnimation .BenefitsStepsWrapper .BenefitsStepsContainer
{
    transform: scale(100%);
    opacity: 1;
    transition: transform 0.5s, opacity 0.8s;
}

.ListingWrapper3.PlayAnimation .BenefitsStepsWrapper:nth-child(1) .BenefitsStepsContainer:nth-child(1)
{
    transition-delay: 1.3s;
}
.ListingWrapper3.PlayAnimation .BenefitsStepsWrapper:nth-child(1) .BenefitsStepsContainer:nth-child(2)
{
    transition-delay: 1.5s;
}
.ListingWrapper3.PlayAnimation .BenefitsStepsWrapper:nth-child(1) .BenefitsStepsContainer:nth-child(3)
{
    transition-delay: 1.7s;
}
.ListingWrapper3.PlayAnimation .BenefitsStepsWrapper:nth-child(2) .BenefitsStepsContainer:nth-child(1)
{
    transition-delay: 1.9s;
}
.ListingWrapper3.PlayAnimation .BenefitsStepsWrapper:nth-child(2) .BenefitsStepsContainer:nth-child(2)
{
    transition-delay: 2.1s;
}



/* ------- Section 4 */


.ListingWrapper4 .HeaderTextSection, .ListingWrapper8 .AturAkomodasiHeader
{
    transform: translateX(-10%);
    opacity: 0;
    transition: transform 1s, opacity 0.5s;
}
.ListingWrapper4.PlayAnimation .HeaderTextSection, .ListingWrapper8.PlayAnimation .AturAkomodasiHeader
{
    transform: translateX(0%);
    opacity: 1;
}
.ListingWrapper4 .Section4Description,.ListingWrapper8 .AturAkomodasiStepWrapper
{
    transform: translateY(50%);
    opacity: 0;
    transition: transform 1s, opacity 0.5s;
}
.ListingWrapper4.PlayAnimation .Section4Description,.ListingWrapper8.PlayAnimation .AturAkomodasiStepWrapper
{
    transform: translateY(0%);
    opacity: 1;
}

.ListingWrapper4 .AccomodationTypeSwiper
{
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper4.PlayAnimation .AccomodationTypeSwiper
{
    transform: translateX(0%);
    opacity: 1;
    transition-delay: 0.5s;
}

.ListingWrapper4 .PrevButtonSwiper
{
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper4.PlayAnimation .PrevButtonSwiper
{
    transform: translateX(0%);
    opacity: 1;
    transition-delay: 0.5s;
}

.ListingWrapper4 .NextButtonSwiper
{
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper4.PlayAnimation .NextButtonSwiper
{
    transform: translateX(0%);
    opacity: 1;
    transition-delay: 0.5s;
}




/* ------- Section 5 */


.ListingWrapper5, .ListingWrapper7, .ListingWrapper8
{
    overflow: hidden;
    opacity: 0;
    -webkit-mask-image: linear-gradient(to left, #0000 25%, #000 75%);
    -webkit-mask-size: 500%;
}
.ListingWrapper5.PlayAnimation, .ListingWrapper7.PlayAnimation, .ListingWrapper8.PlayAnimation
{
    animation: wipemaskanim 1s forwards;
}

.ListingWrapper8 + .BergabunglahFlexContainer .BergabunglahContainer
{
    transform: translateY(50%);
    opacity: 0;
    transition: transform 1s, opacity 0.5s;
}
.ListingWrapper8.PlayAnimation + .BergabunglahFlexContainer .BergabunglahContainer
{
    transform: translateY(0%);
    opacity: 1;
}


.ListingWrapper5 .HeaderTextSection,.ListingWrapper8 .AturAkomodasiPreviewWrapper
{
    transform: translateX(10%);
    opacity: 0;
    transition: transform 1s, opacity 0.5s;
}
.ListingWrapper5.PlayAnimation .HeaderTextSection,.ListingWrapper8.PlayAnimation .AturAkomodasiPreviewWrapper
{
    transform: translateX(0%);
    opacity: 1;
}


.ListingWrapper5 .BenefitsTextDescription, .BottomIndexContainer .BenefitsTextDescription
{
    transform: translateY(50%);
    opacity: 0;
    transition: transform 1s, opacity 0.5s;
}
.ListingWrapper5.PlayAnimation .BenefitsTextDescription, .BottomIndexContainer.PlayAnimation .BenefitsTextDescription
{
    transform: translateY(0%);
    opacity: 1;
}



.ListingWrapper5 .TeamWorkImg
{
    transform: translateX(-30%);
    opacity: 0;
    transition: transform 1.5s, opacity 1s;
}
.ListingWrapper5.PlayAnimation .TeamWorkImg
{
    transform: translateX(0%);
    opacity: 1;
}



.ListingWrapper5 .SmallBatikTentang
{
    opacity: 0;
    transition: opacity 2s;
}
.ListingWrapper5.PlayAnimation .SmallBatikTentang
{
    opacity: 1;
}




/* ------- Section 6 */


.ListingWrapper6 .HeaderTextSection, .ListingWrapper7 .HeaderTextSection, .ListingWrapper9 .HeaderTextSection
{
    transform: translateY(-50%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper6.PlayAnimation .HeaderTextSection, .ListingWrapper7.PlayAnimation .HeaderTextSection, .ListingWrapper9.PlayAnimation .HeaderTextSection
{
    transform: translateY(0%);
    opacity: 1;
}

.ListingWrapper6 .SwiperOurProgramMainWrapper, .BottomIndexContainer .HeaderTextSection
{
    transform: scale(90%);
    opacity: 0;
    transition: transform 1s, opacity 1.2s;
}
.ListingWrapper6.PlayAnimation .SwiperOurProgramMainWrapper, .BottomIndexContainer.PlayAnimation .HeaderTextSection
{
    transform: scale(100%);
    opacity: 1;
}

.ListingWrapper6.PlayAnimation  .OurProgramSwiper1 .OurProgramSwiper1TextWrapper, .ListingWrapper6.PlayAnimation  .OurProgramSwiper2 .OurProgramSwiper2TextWrapper
{
    transform: translateX(-30%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper6.PlayAnimation  .OurProgramSwiper1.swiper-slide-active .OurProgramSwiper1TextWrapper, .ListingWrapper6.PlayAnimation  .OurProgramSwiper2.swiper-slide-active .OurProgramSwiper2TextWrapper
{
    transform: translateX(0%);
    opacity: 1;
}


.ListingWrapper6.PlayAnimation  .OurProgramSwiper1 .BenefitsTextDescription, .ListingWrapper6.PlayAnimation  .OurProgramSwiper2 .BenefitsTextDescription, .ListingWrapper6.PlayAnimation  .OurProgramSwiper3 .BenefitsTextDescription, .ListingWrapper6.PlayAnimation  .OurProgramSwiper4 .BenefitsTextDescription
{
    transform: translateY(30%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper6.PlayAnimation  .OurProgramSwiper1.swiper-slide-active .BenefitsTextDescription, .ListingWrapper6.PlayAnimation  .OurProgramSwiper2.swiper-slide-active .BenefitsTextDescription, .ListingWrapper6.PlayAnimation  .OurProgramSwiper3.swiper-slide-active .BenefitsTextDescription, .ListingWrapper6.PlayAnimation  .OurProgramSwiper4.swiper-slide-active .BenefitsTextDescription
{
    transform: translateY(0%);
    opacity: 1;
}

.ListingWrapper6.PlayAnimation  .OurProgramSwiper1 .GiftAtEdgePanel, .ListingWrapper6.PlayAnimation  .OurProgramSwiper2 .NginepGratisEdge, .ListingWrapper6.PlayAnimation  .OurProgramSwiper3 .GirlLoudSpeakerEdge
{
    transform: translateX(30%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper6.PlayAnimation  .OurProgramSwiper1.swiper-slide-active .GiftAtEdgePanel, .ListingWrapper6.PlayAnimation  .OurProgramSwiper2.swiper-slide-active .NginepGratisEdge, .ListingWrapper6.PlayAnimation  .OurProgramSwiper3.swiper-slide-active .GirlLoudSpeakerEdge
{
    transform: translateX(0%);
    opacity: 1;
}


.ListingWrapper6.PlayAnimation  .OurProgramSwiper3 .OurProgramSwiper3TextWrapper, .ListingWrapper6.PlayAnimation  .OurProgramSwiper4 .OurProgramSwiper4TextWrapper
{
    transform: translateY(-30%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper6.PlayAnimation  .OurProgramSwiper3.swiper-slide-active .OurProgramSwiper3TextWrapper, .ListingWrapper6.PlayAnimation  .OurProgramSwiper4.swiper-slide-active .OurProgramSwiper4TextWrapper
{
    transform: translateY(0%);
    opacity: 1;
}

.ListingWrapper6.PlayAnimation  .OurProgramSwiper4 .SocialMediaEdge
{
    transform: translateY(50%);
    opacity: 0;
    transition: transform 1s, opacity 1.5s;
}
.ListingWrapper6.PlayAnimation  .OurProgramSwiper4.swiper-slide-active .SocialMediaEdge
{
    transform: translateY(0%);
    opacity: 1;
}


/* ----------------------------------- SECTION 7 ------------------------------- */

.ListingWrapper7 .ExpandingCircleOrange
{
    opacity: 0;
}

.ListingWrapper7 .ExpandingCircleOrangeAnimate
{
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    transition: width 1s ease-in-out;
    transition-delay: 0.5;
}

.ListingWrapper7.PlayAnimation .ExpandingCircleOrangeAnimate
{
    width: 100%;
}


.ListingWrapper7 .BlueCircleEdge, .ListingWrapper9 .SmallBatikChannelBroadcast, .ListingWrapper9 .SmallBatikChannelBroadcast2
{
    transform: translateX(-10%);
    opacity: 0;
    transition: transform 0.8s, opacity 0.5s;
}
.ListingWrapper7.PlayAnimation .BlueCircleEdge, .ListingWrapper9.PlayAnimation .SmallBatikChannelBroadcast, .ListingWrapper9.PlayAnimation .SmallBatikChannelBroadcast2
{
    transform: translateX(0%);
    opacity: 1;
}


.ListingWrapper7 .DaftarAkomodasiStepMainContainer
{
    transform: translateY(10%);
    opacity: 0;
    transition: transform 0.8s, opacity 0.5s;
}
.ListingWrapper7.PlayAnimation .DaftarAkomodasiStepMainContainer
{
    transform: translateY(0%);
    opacity: 1;
    transition-delay: 1s;
}


.ListingWrapper7 .DaftarAkomodasiStepWrapper
{
    transform: scale(90%);
    opacity: 0;
}
.ListingWrapper7.PlayAnimation .DaftarAkomodasiStepWrapper
{
    transform: scale(100%);
    opacity: 1;
    transition: transform 0.5s, opacity 0.8s;
}

.ListingWrapper7.PlayAnimation .DaftarAkomodasiStepWrapper:nth-child(1)
{
    transition-delay: 1.5s;
}
.ListingWrapper7.PlayAnimation .DaftarAkomodasiStepWrapper:nth-child(2)
{
    transition-delay: 2s;
}
.ListingWrapper7.PlayAnimation .DaftarAkomodasiStepWrapper:nth-child(3)
{
    transition-delay: 2.5s;
}
.ListingWrapper7.PlayAnimation .DaftarAkomodasiStepWrapper:nth-child(4)
{
    transition-delay: 3s;
}

/* ------------------ SECTION 8 -------------- */

.ListingWrapper8 .PinginGoAturAkomodasiLogo, .ListingWrapper9 .BenefitsTextDescription, .BottomIndexContainer .BergabunglahContainer
{
    transform: scale(90%);
    opacity: 0;
}
.ListingWrapper8.PlayAnimation .PinginGoAturAkomodasiLogo, .ListingWrapper9.PlayAnimation .BenefitsTextDescription, .BottomIndexContainer.PlayAnimation .BergabunglahContainer
{
    transform: scale(100%);
    opacity: 1;
    transition: transform 0.5s, opacity 0.8s;
    transition-delay: 0.6s;
}

.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton
{
    transform: scale(90%);
    opacity: 0;
}
.ListingWrapper9.PlayAnimation .SocialMediaButtonWrapper .SocialMediaButton
{
    transform: scale(100%);
    opacity: 1;
    transition: transform 0.3s, opacity 0.5s;
}

.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton:nth-child(1)
{
    transition-delay: 0.2s;
}
.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton:nth-child(2)
{
    transition-delay: 0.4s;
}
.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton:nth-child(3)
{
    transition-delay: 0.6s;
}
.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton:nth-child(4)
{
    transition-delay: 0.8s;
}
.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton:nth-child(5)
{
    transition-delay: 1s;
}
.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton:nth-child(6)
{
    transition-delay: 1.2s;
}
.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton:nth-child(7)
{
    transition-delay: 1.4s;
}
.ListingWrapper9 .SocialMediaButtonWrapper .SocialMediaButton:nth-child(8)
{
    transition-delay: 1.6s;
}

/* ------------------ SECTION 10 -------------- */

.SocialWrapperLeft
{
    transform: translateX(-10%);
    opacity: 0;
    transition: transform 0.8s, opacity 0.5s;
}
.SocialWrapperRight
{
    transform: translateX(10%);
    opacity: 0;
    transition: transform 0.8s, opacity 0.5s;
}

.SocialWrapperLeft.PlayAnimation, .SocialWrapperRight.PlayAnimation
{
    transform: translateX(0%);
    opacity: 1;
}




/* -------------------------------- POP UP PANEL ---------------------------- */

.BermitraPopUpPanel, .AccomodationSubmittedPanel
{
    width: fit-content;
}
.TopImageIconInsidePanel
{
    width: fit-content;
    margin: 0 auto;
}
.BermitraMessagePopUpPanel
{
    margin: 0 auto;
    color: #1D2939;
}
.CancelXBermitra
{
    margin-left: auto;
}
.FormSelectionMitraTypeContainer, .SelectionMitraTypeButtonContainer
{
    display: flex;
    flex-direction: column;
    max-height: 70vh;
    overflow-x: none;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.SelectionMitraTypeButtonContainer
{
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 95%, transparent 100%);

}
.SelectionMitraTypeButton
{
    flex: 1;
    height: fit-content;
    display: flex;
    background-color: white;
}
.TypeBermitraCheckBox
{
    display: none;
}
.FormSelectionHotelImage
{
    object-fit: cover !important;
    object-position: center !important;
}
.OthersIconSVGBermitra
{
    scale: 80%;
}
.FormTypeDescriptionWrapper
{
    flex: 1;
    height: fit-content;
    margin: auto 0;
}
.SelectionMitraTypeButton:has(.TypeBermitraCheckBox:checked)
{
    background-color: #E9F4FB;
}
.ListOfUploadedPhotoSwiperContainer
{
    width: 100%;
    height: fit-content;
    display: flex;
    overflow: hidden;
}
.ListOfUploadedPhotoSwiper
{
    width: fit-content;
    max-width: fit-content;
    display: flex;
    flex-direction: column;
    background-color: white;
    height: fit-content;
    cursor: grab;
}
.ListOfUploadedBermitraTextWrapper
{
    flex: 1;
    height: fit-content;
    overflow: hidden;
}
.ListOfUploadedBermitraTextWrapper .SmallMessageBeneath
{
    margin: 0;
    text-overflow: ellipsis;
}
.ListOfUploadedBermitraTextWrapper .SmallMessageBeneath:nth-child(1)
{
    color: #101010;
}
.ProgressUploadWrapper
{
    flex: 1;
    height: fit-content;
    display: flex;
}
.ProgressUploadContainer
{
    background-color: #FAFAFA;
    margin: auto 0;
    overflow: hidden;
    display: flex;
}
.ProgressUploadBlue
{
    width: 100%;
    height: 100%;
    background-color: #1849D6;
}
.BermitraToggleWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
}
.BermitraToggleWrapper p
{
    margin: auto 0;
    color: #344054;
}


@media screen and (max-width: 560px)
{
    .BermitraPopUpPanel, .AccomodationSubmittedPanel
    {
        padding: 3vw 4vw;
        max-width: 80vw;
    }
    .BermitraPopUpPanel .BluePopUpWarningMessage
    {
        margin: 0.5vw auto;
    }
    .TopImageIconInsidePanel
    {
        height: 20vw;
        margin-bottom: 1vw;
    }
    .BermitraMessagePopUpPanel
    {
        font-size: 2.6vw;
        /* margin-bottom: 5vw; */
    }
    .CancelXBermitra
    {
        width: 3.5vw;
        height: 3.5vw;
    }
    .FormSelectionMitraTypeContainer
    {
        width: 80vw;
        padding: 0.2vw;
        padding-top: 5vw;
    }
    .SelectionMitraTypeButtonContainer
    {
        flex: 1;
        padding: 0.2vw;

    }
    .SelectionMitraTypeButton
    {
        padding: 2vw;
        outline: 0.2vw solid #D0D5DD;
        border-radius: 1vw;
        margin-bottom: 3.5vw;
    }
    .SelectionMitraTypeButton:not(:last-child)
    {
        margin-bottom: 2.5vw;
    }
    .FormSelectionHotelImage
    {
        width: 16vw;
        height: 17vw;
        border-radius: 1vw;
    }
    .FormTypeDescriptionWrapper
    {
        margin-left: 2vw;
    }
    .TypeOfSelectionName
    {
        font-size: 2.7vw;
        margin-bottom: 0.5vw;
    }
    .ListOfUploadedPhotoSwiperContainer
    {
        margin-top: 0.1vw;
        margin-bottom: 2vw;
    }
    .ListOfUploadedPhotoSwiper
    {
        max-width: 40vw;
        outline: 0.5vw solid #E7E7E7;
        outline-offset: -0.5vw;
        border-radius: 1vw;
        padding: 2vw;
        margin-right: 2vw;
    }
    .ListOfUploadedPhoto
    {
        width: 7vw;
        height: 7vw;
        border-radius: 1vw;
    }
    .ListOfUploadedBermitraTextWrapper
    {
        margin: 0 1.5vw;
    }
    .ListOfUploadedBermitraTextWrapper .SmallMessageBeneath:nth-child(1)
    {
        margin-bottom: 0.1vw;
    }
    .ListUploadedRemoveButton
    {
        width: 5vw;
        height: 5vw;
        margin-left: 1vw;
    }
    .ProgressUploadWrapper
    {
        margin-top: 2vw;
    }
    .ProgressUploadContainer
    {
        width: 30vw;
        height: 1.2vw;
        border-radius: 1vw;
        margin-right: 0.5vw;
    }
    .BermitraToggleWrapper
    {
        margin-top: 1vw;
    }
    .BermitraToggleWrapper img
    {
        width: 3.5vw;
        height: 3.5vw;
        margin: auto 0.5vw;
    }
}

@media screen  and (max-width: 1200px)  and (min-width: 560.001px)
{
    .BermitraPopUpPanel, .AccomodationSubmittedPanel
    {
        padding: calc(15px + 0.5vw) calc(20px + 0.5vw);
        max-width: 80vw;
    }
    .AccomodationSubmittedPanel
    {
        width: calc(500px + 0.5vw);
    }
    .BermitraPopUpPanel .BluePopUpWarningMessage
    {
        margin: 0.5vw auto;
    }
    .TopImageIconInsidePanel
    {
        height: calc(100px + 0.5vw);
        margin-bottom: calc(5px + 0.5vw);
    }
    .BermitraMessagePopUpPanel
    {
        font-size: calc(8px + 0.5vw);
        /* margin-bottom: calc(20px + 0.5vw); */
    }
    .CancelXBermitra
    {
        width: calc(15px + 0.5vw);
        height: calc(15px + 0.5vw);
    }
    .FormSelectionMitraTypeContainer
    {
        width: calc(595px + 0.5vw);
        padding: 2px;
        max-width: 80vw;
        padding-top: calc(20px + 0.5vw);
    }
    .SelectionMitraTypeButtonContainer
    {
        flex: 1;
        padding: 2px;
    }
    .SelectionMitraTypeButton
    {
        padding: calc(5px + 0.5vw);
        outline: 2px solid #D0D5DD;
        border-radius: 5px;
        margin-bottom: calc(17px + 0.5vw);
    }
    .SelectionMitraTypeButton:not(:last-child)
    {
        margin-bottom: calc(7px + 0.5vw);
    }
    .FormSelectionHotelImage
    {
        width: calc(65px + 0.5vw);
        height: calc(70px + 0.5vw);
        border-radius: 5px;
    }
    .FormTypeDescriptionWrapper
    {
        margin-left: calc(5px + 0.5vw);
    }
    .TypeOfSelectionName
    {
        font-size: calc(10px + 0.5vw);
        margin-bottom: 0.4vw;
    }
    .ListOfUploadedPhotoSwiperContainer
    {
        margin-top: 0.2vw;
        margin-bottom: calc(1px + 0.5vw);
    }
    .ListOfUploadedPhotoSwiper
    {
        max-width: calc(180px + 0.5vw);
        outline: 2px solid #E7E7E7;
        outline-offset: -2px;
        border-radius: 5px;
        padding: calc(6px + 0.5vw);
        margin-right: calc(5px + 0.5vw);
    }
    .ListOfUploadedPhoto
    {
        width: calc(28px + 0.5vw);
        height: calc(28px + 0.5vw);
        border-radius: 5px;
    }
    .ListOfUploadedBermitraTextWrapper
    {
        margin: 0 calc(5px + 0.5vw);
    }
    .ListOfUploadedBermitraTextWrapper .SmallMessageBeneath:nth-child(1)
    {
        margin-bottom: 0.2vw;
    }
    .ListUploadedRemoveButton
    {
        width: calc(20px + 0.5vw);
        height: calc(20px + 0.5vw);
        margin-left: 0.5vw;
    }
    .ProgressUploadWrapper
    {
        margin-top: calc(2px + 0.5vw);
    }
    .ProgressUploadContainer
    {
        width: calc(150px + 0.5vw);
        height: calc(2px + 0.5vw);
        border-radius: 5px;
        margin-right: calc(1px + 0.5vw);
    }
    .BermitraToggleWrapper
    {
        margin-top: 0.5vw;
    }
    .BermitraToggleWrapper img
    {
        width: calc(15px + 0.5vw);
        height: calc(15px + 0.5vw);
        margin: auto 0.5vw;
    }
}

@media screen  and (min-width: 1200.001px)
{
    .BermitraPopUpPanel, .AccomodationSubmittedPanel
    {
        padding: 25px 30px;
    }
    .AccomodationSubmittedPanel
    {
        max-width: calc(500px + 0.5vw);
    }
    .BermitraPopUpPanel .BluePopUpWarningMessage
    {
        margin: 4px auto;
    }
    .TopImageIconInsidePanel
    {
        height: 120px;
        margin-bottom: 10px;
    }
    .BermitraMessagePopUpPanel
    {
        font-size: 13px;
    }
    .CancelXBermitra
    {
        width: 20px;
        height: 20px;
    }
    .FormSelectionMitraTypeContainer
    {
        width: 600px;
        padding: 2px;
        padding-top: 25px;
    }
    .SelectionMitraTypeButtonContainer
    {
        flex: 1;
        padding: 2px;
    }
    .SelectionMitraTypeButton
    {
        padding: 12px;
        outline: 2px solid #D0D5DD;
        border-radius: 5px;
        margin-bottom: 22px;
    }
    .SelectionMitraTypeButton:not(:last-child)
    {
        margin-bottom: 12px;
    }
    .FormSelectionHotelImage
    {
        width: 75px;
        height: 80px;
        border-radius: 5px;
    }
    .FormTypeDescriptionWrapper
    {
        margin-left: 12px;
    }
    .TypeOfSelectionName
    {
        font-size: 15px;
        margin-bottom: 5px;
    }
    .ListOfUploadedPhotoSwiperContainer
    {
        margin-top: 2px;
        margin-bottom: 10px;
    }
    .ListOfUploadedPhotoSwiper
    {
        max-width: 200px;
        outline: 2px solid #E7E7E7;
        outline-offset: -2px;
        border-radius: 10px;
        padding: 12px;
        margin-right: 10px;
    }
    .ListOfUploadedPhoto
    {
        width: 32px;
        height: 32px;
        border-radius: 5px;
    }
    .ListOfUploadedBermitraTextWrapper
    {
        margin: 0 10px;
    }
    .ListOfUploadedBermitraTextWrapper .SmallMessageBeneath:nth-child(1)
    {
        margin-bottom: 2px;
    }
    .ListUploadedRemoveButton
    {
        width: 25px;
        height: 25px;
        margin-left: 10px;
    }
    .ProgressUploadWrapper
    {
        margin-top: 10px;
    }
    .ProgressUploadContainer
    {
        width: 170px;
        height: 8px;
        border-radius: 5px;
        margin-right: 5px;
    }
    .BermitraToggleWrapper
    {
        margin-top: 5px;
    }
    .BermitraToggleWrapper img
    {
        width: 21.5px;
        height: 21.5px;
        margin: auto 5px;
    }
}

/* --------------------------------- UPLOAD ---------------------------- */

.UploadPhotoStripBorderContent
{
    width: 100%;
    height: fit-content;
    overflow: hidden;
}
.UploadPhotoHereContentWrapper
{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
}
.UploadImageIconPopUp
{
    margin-left: auto;
    margin-right: auto;
}


@media screen and (max-width: 560px)
{
    .UploadPhotoStripBorderContent
    {
        outline: solid 0.35vw #667085;
        outline-offset: -0.35vw;
        /* border: solid 0.35vw #667085; */
        border-radius: 1vw;
        margin: 1vw 0;
        margin-bottom: 2vw;
    }
    .BlueStripBorder
    {
        outline: dashed 0.35vw #1849D6;
    }
    .UploadPhotoHereContentWrapper
    {
        margin: 2.5vw auto;
    }
    .UploadImageIconPopUp
    {
        width: 8vw;
        height: 8vw;
        margin-bottom: 2.5vw;
    }
}

@media screen  and (max-width: 1200px)  and (min-width: 560.001px)
{
    .UploadPhotoStripBorderContent
    {
        outline: solid 0.2vw #667085;
        outline-offset: -0.2vw;
        border-radius: 0.5vw;
        margin: 0.5vw 0;
        margin-bottom: 1.5vw;
    }
    .BlueStripBorder
    {
        outline: dashed 0.2vw #1849D6;
    }
    .UploadPhotoHereContentWrapper
    {
        margin: calc(10px + 0.5vw) auto;
    }
    .UploadImageIconPopUp
    {
        width: calc(35px + 0.5vw);
        height: calc(35px + 0.5vw);
        margin-bottom: calc(10px + 0.5vw);
    }    
}

@media screen  and (min-width: 1200.001px)
{
    .UploadPhotoStripBorderContent
    {
        outline: solid 1.6px #667085;
        outline-offset: -1.6px;
        border-radius: 8px;
        margin: 10px 0;
    }
    .BlueStripBorder
    {
        outline: dashed 1.6px #1849D6;
    }
    .UploadPhotoHereContentWrapper
    {
        margin: 15px auto;
    }
    .UploadImageIconPopUp
    {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }
}