html {
    overflow-x: hidden;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    /* Pushes text left and icon right */
    align-items: center;
    /* Vertically centers everything */
    /* Add any other button styling like padding, background, etc. */
}

.dropdown-toggle::after {
    display: inline-block;
    content: "";
    border: none;
    /* Remove the default border-triangle */

    /* 2. Set the custom SVG icon */
    background-image: url("./../../public/img/arrowDown.png");
    background-repeat: no-repeat;
    background-size: 2em;
    /* Control the icon size */

    /* 3. Size and position the new icon */
    width: 2em;
    height: 2em;
    /* margin-left: 1em; */
    /* Your custom padding from before */
    vertical-align: middle;
    /* Align icon with text */
}



#dropdownMenuButton1 {
    width: 100%;
    height: 6.7vh;
}

@media (max-width: 1230px) {
    .custom-dropdown-button.dropdown-toggle::after {
        margin-left: 75%;
    }

    #dropdownMenuButton1 {
        width: 99%;
        height: 6.7vh;
    }
}

@media (max-width: 1199px) {
    .custom-dropdown-button.dropdown-toggle::after {
        margin-left: 70%;
    }

    #dropdownMenuButton1 {
        width: 99%;
        height: 6.7vh;
    }
}

@media (max-width: 990px) {
    .custom-dropdown-button.dropdown-toggle::after {
        margin-left: 59%;
    }

    #dropdownMenuButton1 {
        width: 99%;
        height: 6.7vh;
    }
}

@media (max-width: 767px) {
    .custom-dropdown-button.dropdown-toggle::after {
        margin-left: 44%;
    }

    #dropdownMenuButton1 {
        width: 99%;
        height: 6.7vh;
    }
}

#mastercard {
    width: 100%;
    height: 100%;
    background-image: url(../../../public/img/payment_method/Mastercard.png);
    background-size: 70%;
}

#ovo {
    width: 100%;
    height: 100%;
    background-image: url(./../../public/img/payment_method/Ovo.png);
    background-size: 70%;
}

#bca {
    width: 100%;
    height: 100%;
    background-image: url(./../../public/img/payment_method/Bank_Central_Asia.png);
    background-size: 70%;
}

p {
    margin-bottom: 0;
}