body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #f8f8f8;
}

.ap-search-account span{
    border-radius: 8px 0px 0px 8px;
    border-width: 0px;
    padding: 0.8rem 0.8rem;
}
.ap-search-account input{
    border-radius: 0px 8px 8px 0px;
    border-width: 0px;
    padding: 0.8rem 0.8rem;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
    color:white !important;
}

.social-btn{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 5px;
    background-color: white;
    border: 1px solid var(--bs-dark);
    border-radius: 0px;
    color: var(--bs-dark);
    font-weight: bold;
}

.social-btn i{
    font-size: 2rem;
}

.hr-divider{
    border-bottom: 1px solid #d2d9e1;
    line-height: 0;
    text-align: center;
    width: 100%;
    margin: 1.5rem 0px;
}

.hr-divider span{
    background: var(--bs-light);
    line-height: 0;
    padding: 0 10px;
    color: #d2d9e1;
}

.g-recaptcha-error{
    border-bottom: 3px solid red;
    padding-bottom: 2px;
}

.nav-link{
    color:black;
}

.nav-link:hover{
    color:var(--bs-secondary-color);
}

.nav-link.active{
    color:var(--bs-primary);
}

#r2cCookieBadge {
    position: fixed;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-stretch: normal;
    font-size: 13px;
    line-height: 20px;
    color: #DDD;
    cursor: pointer;
    z-index: 2147483647;
    background-color: #222;
    padding: 6px 11px 2px;
    box-shadow: rgb(0 0 0) 0px 0px 5px;
    left: 10px;
    bottom: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#r2cCookieConsentPopup{
    transition: none;
    height: 190px;
}
#r2cCookieConsentPopup .offcanvas-body{
    padding: 0.8rem 1.4rem;
    overflow-y: hidden;
    background-color: #222;
    color: white;
    text-align: center;
    font-size: 13px;
    line-height: 1.45;
}
.offcanvas-backdrop.show {
    opacity: 0;
}
#r2cCookieConsentPopup .cookies-body{
    max-width: 600px;
    margin: auto;
    text-align: left;
}

#r2cCookieConsentPopup .cookieTitle{
    font-size: 24px;
}

#r2cCookieConsentPopup .cookieSubTitle{
    font-size: 13px;
    max-height: 40px;
    overflow: auto;
    text-overflow: ellipsis;
}

#r2cCookieConsentPopup .cookieSelector{
    display: flex;
    border: 1px solid white;
    border-radius: 5px;
    margin-top: 10px;
    padding: 6px 0px;
}

#r2cCookieConsentPopup .cookieSelector .form-check{
    margin-left: 15px;
    margin-bottom: 0px;
    user-select:none;
}

#r2cCookieConsentPopup .cookieSubmit{
    margin-top: 10px;
    text-align: right;
}

.custom-option-item-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.custom-options-checkable .custom-option-item {
    width: 100%;
    cursor: pointer;
    border-radius: 0.42rem;
    color: #82868b;
    background-color: rgba(130, 134, 139, 0.03);
    border: 1px solid #ebe9f1;
    padding: 10px;
}
.custom-option-item-check:checked + .custom-option-item {
    color: var(--bs-primary);
    background-color: rgba(13, 191, 175, 0.12);
    border-color: var(--bs-primary);
}
/*SUBMENU*/
.menu-aulapay-content{
    border:none;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.menu-aulapay-content a{
    text-decoration: none;
    white-space: nowrap;
    color:#000;
    border: 1px solid #333;
    padding: 5px 10px;
    margin: 0px 5px;
}
.menu-aulapay-content a.active{
    color:var(--bs-primary);
    /*font-weight: 500;*/
}
.menu-aulapay-content a:hover{
    color:var(--bs-primary);
}

@media (min-width: 992px) {
    .menu-aulapay-left{
        border: none;
        border-right: 1px solid #dee2e6;
    }
    .menu-aulapay-content{
        border:none;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    .menu-aulapay-content a{
        margin: 0px;
        margin-bottom: 10px;
        border:none;
        padding: 0px;
    }
}


.shake-it {
    animation: shake 0.3s ease-in-out 0s 2;
}
@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}