/* START: Fix Navigation */
.dropdown {
	display: inline-block;
}
.dropdown .dropbtn {
	background-color: #0069b5;
    color: #fff;
    padding: 16px;
    font-size: 16px;
    border: none;
    outline: none;
}
.dropdown .dropdown-content {
    position: absolute;
    background-color: #f1f1f1;
    min-width: 300px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    z-index: 51;
}
.dropdown .dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.hide {
    display: none;
}
/* END: Fix Navigation */

/* begin fix the thumbnail arrows */
#page-product .product-images-module .product-images ul.secondary-images.owl-carousel .owl-next, 
#page-product .product-images-module .product-images ul.secondary-images.owl-carousel .owl-prev {
     height: 60px;
padding: 0;
}

#layout_product .product-details-module iframe {
	width: 100%;
}
/* end fix the thumbnail arrows */


/* START Credit Card Modal */
.linkImage {
	position: relative;
}
.linkImage > img {
	display: block;
    margin: auto;
}
.linkImage > a {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#creditCardPromoModal h2 {
	text-align: center;
    font-size: 1.5rem;
    color: #333;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 25px;
}
#creditCardPromoModal > .modal-dialog {
	max-width: 950px;
    margin-top: 10%;
}
#creditCardPromoModal .creditCardItems {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 55px;
    row-gap: 5px;
    margin-bottom: 30px;
}
#creditCardPromoModal .creditCardItem {
    position: relative;
}
#creditCardPromoModal .creditCardItem.horizontal {
	max-width: 248px;
}
#creditCardPromoModal .creditCardItem > img {
	transition: transform .2s;
    max-width: 135px;
}
#creditCardPromoModal .creditCardItem:hover > img {
	transform: scale(1.05);
}
#creditCardPromoModal .creditCardItem > a {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
@media (max-width: 767.98px) {
    #creditCardPromoModal {
    	padding-right: 0 !important;
    }
    #creditCardPromoModal > .modal-dialog {
    	margin-top: 40%;
    }
    #creditCardPromoModal .creditCardItems {
    	column-gap: 30px;
        row-gap: 5px;
    }
}
/* END of Credit Card Modal */