.welcome-note {
    /* z-index: 1000; */
    background-color: #c0eefe;
    position: fixed;
    top: 0;
    left: 0; /* ✅ Add this to remove left gap */
    width: 100%;
    margin-top: 75px;
}

.welcome-note p {
    color: #333;
    margin-top: 4px !important;
    margin-bottom: 4px !important;
    font-size: 14px;
}

/* ✅ Responsive: for small screens reduce padding/font size */
@media (max-width: 576px) {
    .welcome-note {
        padding: 3px 0;
    }
    .welcome-note p {
        font-size: 12px;
    }
}


/* Ensure proper spacing for smaller screens */



a {
    text-decoration: none !important;
}
h2{
    font-weight: bold;
}

/* Custom Header Styling */
.custom-navbar {
    background: linear-gradient(130deg, #00bcf9 40%, #D9D9D9 60%);
    padding: 0px 5px 0px 5px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-brand img {
    height: 70px;
    width: auto;
}

.navbar-brand {
    padding-bottom: 0px !important;
}

.custom-navbar .login-btn {
    background-color: white;
    border-radius: 25px;
}

a.nav-link {
    color: #363636 !important;
    font-weight: 500;
    padding: 10px 10px !important;
}

a.nav-link.login-btn {
    padding: 10px 15px !important;
}

a.nav-link.login-btn:hover {
    color: white !important;
    background-color: black;
}
@media (max-width: 780px) {
    .navbar-nav{
        margin-top: 20px !important;
    }
}
/* Responsive adjustments */
@media (min-width: 780px) {
    .navbar-brand {
        width: 50%;
    }

    .custom-navbar .navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
        position: static;
        background: transparent;
        width: auto;
        padding: 0;
    }

    .custom-navbar .navbar-collapse.show {
        display: flex !important;
        /* Show on toggle */
        align-content: flex-start;
    }

    .custom-navbar .login-btn {
        /* color: white !important; */
        text-align: center !important;
    }

}

.custom-navbar .navbar-toggler {
    outline: none !important;
}


/* .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
} */

/* Hero Section Styling */



.home-page .hero-text {
    margin-top: 100px;
}


.home-page .hero-section {
    background: url('../images/banner Image .jpg') no-repeat center center/cover;


    /* Replace with your actual background image */
    height: 80vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.home-page .content {
    margin-top: 50px;
    /* Add margin to compensate for the fixed header height */
}

.home-page .form-control {
    font-size: large;
    font-weight: bolder;
}

.home-page .overlay {
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for better text readability */
    padding: 50px 0;
    width: 100%;
    height: 100%;
}

.home-page .hero-section h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.home-page .hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
}




.search-bar {
    display: flex;
    align-items: center;
    /* background-color: #4da3ff; */
    padding: 5px;
    /* border-radius: 5px; */
}

.plate {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 2px 2px;
    border-radius: 5px;
}

.gb-badge {
    background-color: #00247d;
    color: white;
    padding: 3px 6px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    margin-right: 5px;
}

.reg-input {
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    width: 100px;
    background: transparent;
    outline: none;
}

.check-btn {
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 5px;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}


.hero-section {
    position: relative;
    padding: 50px 0;
    /* Adjust padding for larger screens */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
}

.hero-text {
    color: #fff;
    /* Text color */
}

.home-page .search-bar {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.home-page .search-bar input {
    width: 100%;
    max-width: 300px;
    padding: 5px 5px;
    /* border-radius: 30px 0 0 30px; */
    border: none;
    outline: none;
}

.home-page .search-bar button {
    padding: 13px 20px;
    border: none;
    background-color: #32c5f7;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

/* .home-page .search-bar button:hover {
    background-color: #218838;
} */

/* Responsive Styles */
@media (max-width: 768px) {
    .home-page .hero-text {
        margin-top: 100px;
    }
    .home-page .hero-section {
        height: 80vh;
    }
    .hero-section {
        padding: 30px 0;
    }
    .hero-section h1 {
        font-size: 30px !important;
    }
    .hero-section button {
        font-size: 12px !important;
        margin-top: 5px;
        margin-left: 0px;
        width: 100%;
        font-size: 24px !important;
        padding: 7px !important;
        margin-top: 10px;
    }
    .home-page .search-bar {
        flex-direction: column;
        align-items: center;
    }
    .plate {
        width: 100%;
    }

    .home-page .search-bar input {
        width: 100%;
        text-align: center;
    }

    /* .home-page .search-bar button {
        width: 40%;
        border-radius: 30px 30px;
    } */
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.5rem;
        /* Adjust font size for smaller screens */
    }

    .hero-text p {
        font-size: 1rem;
        /* Adjust font size for smaller screens */
    }

    .home-page .section-6-light {
        padding-bottom: 20px !important;
    }
}

.home-page .promo-link {
    display: block;
    margin-top: 20px;
    color: #fff;
    text-decoration: underline;
}

.home-page .promo-link:hover {
    color: #ccc;
    /* Light color on hover */
}

/* section-2 */
.home-page .section-2 {
    background-color: #cac9c9;
}

.home-page .main-card {
    border-radius: 10px;
}

.home-page h4 {
    font-weight: bold;
}

.home-page .card-bottom {
    border-radius: 10px;
    background-color: #00bcf9;
}

.home-page .card-bottom a {
    color: white;
    font-size: large;
    text-decoration: none;
}

/* section-3 */
.home-page .section-3 {
    background-color: #00bcf9;
}

@media (max-width: 768px) {
    .home-page .section-3 {
        margin-bottom: 30px;
        background-color: #00bcf9;

    }
    .home-page .faq-question {
        font-size: 18px !important;
        padding: 10px 0 !important;
    }
    .home-page .faq-item img {
        width: 24px !important;
    }
    .finance-content .header-section {
        margin-top: 105px;
    }

}

/* section-4 */
.home-page .section-4 {
    background-color: #00bcf9;

}

/* FAQ */

.home-page .faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.home-page .faq-item img {
    width: 30px;
}

.home-page .faq-question {
    font-size: 20px;
    /* font-weight: bold; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
}

.home-page .faq-answer {
    display: none;
    font-size: 16px;
    padding: 10px 0;
}

.home-page .icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.home-page .expanded .icon {
    transform: rotate(180deg);
}

/* section-6 */
.home-page .section-6 {
    padding-bottom: 60px;
    background-color: #cac9c9;
}

.home-page .section-6-light {
    padding-bottom: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* footer */
.footer {
    color: white;
    background-color: #131212;
}

.footer a {
    text-decoration: none;
    color: white;
}

.footer li {
    list-style: none;
    padding: 10px;
}

.footer i {
    font-size: 20px;
}



/* finance page  */
/* finance page  */
/* finance page  */
/* finance page  */
/* .finance-content{
    margin-top: 100px;
} */
/* Styling for Top Notification Bar */
.top-notice {
    background-color: #e6f4f1;
    color: #333;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

/* Header Section Styling */
.finance-content .header-section {
    background-color: #0c0e2c;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.finance-content .header-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.finance-content .header-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.finance-content .header-section .search-bar {
    max-width: 600px;
    margin: 0 auto;
    /* display: flex; */
    gap: 10px;
}

.finance-content .search-bar input {
    flex-grow: 1;
    padding: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 18px;
}

.finance-content .search-bar button {
    padding: 15px 25px;
    background-color: #00bcf9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.finance-content .search-bar button:hover {
    background-color: #0787b1;
}

.finance-content .view-sample {
    color: #00bcf9;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

.finance-content .header-section .features {
    margin-top: 30px;
    font-size: 16px;
}

.finance-content .header-section .features i {
    margin-right: 10px;
}

/* Content Section Styling */
.finance-content .content-section {
    text-align: center;
    padding: 60px 20px;
}

.finance-content .content-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.finance-content .content-section p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* section-2 */
.section-2 {
    background-color: #e9e9e9;
}

.section-2 a {
    color: #00bcf9;
    font-weight: bold;
    text-decoration: none;
}

/* section-3 */
/* .sectoin-3 ul{
    padding-inline-start: 0px !important;
} */
.section-3 {
    background-color: #f3f3f3;
}

.section-3 li {
    padding-bottom: 25px;
    list-style: none;
}

.section-3 i {
    margin-right: 15px;
    color: #00bcf9;
}

/* section-4 */
.section-4 li {
    padding-bottom: 25px;
    list-style: none;
}

.section-4 i {
    margin-right: 15px;
    color: #00bcf9;
}

/* section-7 */
.section-7 {
    color: white;
    background-color: #0c0e2c;
}

.section-7 i {
    font-size: 50px;
    color: #00bcf9;
}

/* section-8 */
.section-8 {
    background-color: #f3f3f3;
}

.section-8 li {
    padding-bottom: 25px;
    list-style: none;
}

/* section-9 */
.section-9 li {
    list-style: none;
}


/* cards styling */
/* cards styling */
/* cards styling */
/* cards styling */

.card-page {
    margin-top: 28px;
}

.card-body {
    padding-bottom: 0px;
}

.featured-post .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(10, 10, 10, 0.1);
    transition: transform 0.3s ease;
}

.post-card {
    display: flex;
    flex-direction: column;
    /* Stack children vertically */
    height: 100%;
    /* Ensure all cards take full height */
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.post-card h5 {
    font-size: 25px;
}

.post-card img {
    height: 200px;
    object-fit: cover;
}

.post-card:hover {
    transform: translateY(-5px);
    /* Slightly lift the card */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.1);
}


.featured-post .card:hover {
    box-shadow: 10 20px 0px rgba(3, 3, 3, 0.1);
}

/* Card Titles */
.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
}

.card-body .text-area {
    padding-inline: 10px;
    font-size: 1rem;
}

.card-page .card-footer {
    color: #6c757d;
    background-color: white;
    border-top: none;
    font-size: 15px;
}

.card-page .card-footer .btn {
    padding: 10px 20px;
    box-shadow: none !important;
    border: none !important;
    border-radius: 10px;
    background-color: black !important;
    color: white;
}

.card-page .card-footer button:hover {
    background-color: black;
}








/* detail list */
/* detail list */
/* detail list */
/* detail list */

body {
    background-color: #F0F0F0;
}

.detail-list .card-container {
    margin-top: 20px;
}

.detail-list .badge-status {
    font-size: 1rem;
    font-weight: bold;
}

.list-group-item .fa-circle-question {
    font-size: 12px;
    color: rgb(170, 168, 168);
}

.highlight-red {
    background-color: rgb(238, 176, 176);
}

.detail-list .sample {
    border: 1px solid black;
    font-size: larger;

}

.detail-list i {
    font-size: large;
    font-weight: bolder;
}

.detail-list .section-title {
    background-color: #f8f9fa;
    padding: 10px;
    font-weight: bold;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.detail-list .card-header-custom {
    color: white;
    border-radius: 10px;
    background-color: #7f8b8c;
    font-weight: bold;
    padding: 10px;
}

.detail-list .card-header-green {
    color: white;
    border-radius: 10px;
    background-color: #28A745;
    font-weight: bold;
    padding: 10px;
}

.detail-list .card-header-red {
    color: white;
    border-radius: 10px;
    background-color: #DC3545;
    font-weight: bold;
    padding: 10px;
}

.detail-list .card-header-yellow {
    color: white;
    border-radius: 10px;
    background-color: #FCBA04;
    font-weight: bold;
    padding: 10px;
}

.detail-list .card {
    border: none !important;
    margin-bottom: 20px;
}

.detail-list .card-body {

    padding: 0px;
}

.detail-list .alert-custom {
    /* text-align: center; */
    font-weight: bold;
    padding: 15px;
}
.alert-danger{
    border: 1px solid tomato;
}
.alert-warning{
    border: 1px solid rgb(201, 201, 5);
}

.detail-list .badge {
    width: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
}

/* .detail-list .badge-header {
    width: 350PX !important;
} */


/* price list */
/* price list */
/* price list */
/* price list */

.top-notice {
    margin-top: 100px;
}

.pricing .offers {
    font-weight: 400;
    padding-left: 10px;
    /* margin-left: 30px; */
}

.pricing .list-group {
    background-color: white;
    padding: 0px 25px;
    border: 2px solid #00bcf9 !important;
    border-radius: 20px !important;
    display: flex;
    /* Flexbox for equal height */
    flex-direction: column;
    /* Stack items vertically */
    flex-grow: 1;
    /* Allow to grow and fill available space */
}

.pricing .list-group-item {
    padding: .75rem 0rem;
}

.pricing h4,
h5 {
    font-size: 35px;
    font-weight: bold;
}

.pricing .fa-check {
    color: green;
    font-size: 20px;
}

.pricing .fa-xmark {
    color: red;
}

.pricing .list-group .purchase-btn {
    border: none;
    background-color: #00bcf9 !important;
}

.pricing .list-group-flush .fa-question-circle {
    color: grey;
}


.tooltip-inner {
    background-color: #76d9f9 !important;
    /* Change this to your desired background color */
    color: black !important;
    /* Optional: Change text color */
    font-weight: 400;
    font-size: small;
    /* Optional: Change font weight */
}

.tooltip-arrow::before {
    border-top-color: #76d9f9 !important;
    /* Change arrow color to match background */
}



/* login pages */



/* Default nav-link color */
.login {
    margin-top: 140px;
    margin-bottom: 30px;
}

.login .alert-warning {
    font-size: large;
    border-radius: 12px;
}

.login .nav-pills .nav-link {
    font-weight: bold;
    color: black;
    text-align: start;
    /* Start alignment for the text */
    margin-top: 5px;
    /* Top padding */
    margin-bottom: 5px;
    /* Blue color for default links */
}



.login .col-md-8 {
    padding-left: 20px;
}

/* Active link color */
.login .nav-pills .nav-link.active {
    background-color: #00bcf9;
    color: white;
    /* Black color for active link */
    font-weight: bold;
}

/* Media query for horizontal pills on small screens */
@media (max-width: 768px) {
    .login .nav-pills {
        flex-direction: row !important;
        /* Horizontal direction */
        justify-content: start;
        /* Center alignment */
    }

    .login .nav-pills .nav-link {
        margin: 0 5px;
        /* Spacing between links */
    }
}

.login .nav-pills .nav-link {
    border: none;
    border-radius: rem;
}


/* checkout section */

.checkout-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
}

button:focus {
    outline: none !important;
    outline: none !important;
}

.icon-container img {
    width: 30px;
    height: auto;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #aaa;
}

.input-group input {
    padding-left: 35px;
}

.btn-pay {
    background-color: #1565c0;
    color: white;
    font-weight: bold;
    border-radius: 8px;
}

.btn-pay:hover {
    background-color: #004ba0;
    color: white;
}

.checkout-container .form-label {
    font-weight: bold;
}

.sticky .free-check {
    position: fixed;
    bottom: 40%;
    right: 0px;
}

.sticky .free-check .form-btn {
    border-radius: 10px 0px 0px 10px;
    background-color: #00bcf9;
    color: white;
    border: none;
    width: 50px;
    height: 150px;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    writing-mode: vertical-rl;
    margin-top: 10px;
}

.sticky .free-check .form-box {
    width: 175px;
    background: white;
    border-radius: 10px 0px 0px 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 15px;
}

.sticky .free-check .form-box h6 {
    margin-bottom: 0px !important;
}

.sticky .free-check .form-box button {
    background-color: #00bcf9;
    color: white;
}

.sticky .chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.sticky .chat .toggle-btn{
    background-color: #00bcf9;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: 10px;
}

.sticky .chat .card {
    width: 400px;
    height: 500px;
    margin-right: 35px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border: none !important;
}

.sticky .chat .card .card-header{
    background-color: #00bcf9;
    color: white;
}
.sticky .chat .card .card-body .accordion-item{
    background: #b2b5b5;
    border-radius: 5px;
}
.sticky .chat .card .card-body .accordion-header{
    font-size: 18px !important;
}
.sticky .chat .card .card-body .accordion-header .accordion-button{
    background: #b2b5b5;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.sticky .chat .card .card-body .accordion-header .title{
    text-align: left;
}

.sticky .chat .card .card-body .accordion-body{
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: justify;
}

.sticky .chat .card .card-footer{
    background-color: white;
    border-top: none;
}

.sticky .chat .card .card-footer button{
    border-radius: 50px !important;
    border: 2px black solid !important;
}

.sticky .chat .card .card-footer .send-btn{
    border: 2px #00bcf9 solid !important;
    background-color: #00bcf9;
    color: white;
}

.sticky .chat .card .card-body .input {
    height:48px;
    padding:12px 16px;
    border-radius: 10px;
}

/* trust pilot */
.trustpilot-fixed-button {
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 9999;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.trustpilot-fixed-button:hover {
    transform: scale(1.1);
}

.review-text {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    font-weight: bold;
    font-size: 1rem;
    background: none !important;
    padding: 0;
    display: none;
    white-space: nowrap;
    pointer-events: none;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .sticky .chat {
        bottom: 10px;
        right: 10px;
    }
    .sticky .chat .card {
        width: 350px;
        height: 400px;
    }
    .sticky .chat .card .card-body {
        padding: 1rem;
    }
    .sticky .chat .card .card-body .accordion-header {
        font-size: 16px !important;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .sticky .chat {
        bottom: 10px;
        right: 10px;
    }
    .sticky .chat .card {
        width: 350px;
        height: 400px;
    }
    .sticky .chat .card .card-body {
        padding: 1rem;
    }
    .sticky .chat .card .card-body .accordion-header {
        font-size: 16px !important;
    }
}

@media (max-width: 426px) {
    .sticky .free-check .form-btn {
        width: 45px;
        height: 130px;
        font-size: 18px;
    }
    .sticky .free-check .form-box {
        width: 150px;
        border-radius: 10px 0px 0px 10px;
        padding: 10px;
    }
    .sticky .free-check .form-box hr {
        margin-top: .5rem;
        margin-bottom: .5rem;
    }
    .sticky .chat {
        bottom: 5px;
        right: 5px;
    }
    .sticky .chat .toggle-btn {
        width: 45px;
        height: 45px;
    }
    .sticky .chat .card {
        width: 300px;
        height: 350px;
        margin-bottom: 0px;
        margin-right: 30px;
    }
    .sticky .chat .card .card-body {
        padding: 1rem;
    }
    .sticky .chat .card .card-body .accordion-header {
        font-size: 16px !important;
    }

    .trustpilot-fixed-button {
        bottom: 5px;
        left: 5px;
    }

    .section-5 h2 {
        margin-top: 10px;
        font-size: 22px;
    }
}



/* testimonial section */
.testimonial-container {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.carousel-item {
    padding: 20px;
}


/* Custom Number Indicators */
.carousel-indicators {
    margin-top: 30px;
}

.indicator {
    width: 25px;
    height: 25px;
    /* line-height: 35px; */
    text-align: center;
    background-color: #ccc;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    margin: -10px 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0.7;
}

.indicator.active {
    background-color: #00bcf9;
    transform: scale(1.2);
    opacity: 1;
}


/* recent blog sectoin */
.recent-blog-container {
    background-color: white;
}

.blog-meta {
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.blog-meta li {
    font-size: 14px;
}

.blog-category {
    background-color: #d6d4d4;
    border-radius: 20px;
    padding: 3px 10px;
}

.blog-date {
    color: #777;
}

.recent-blog-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.recent-blog-card-title {
    font-weight: 700;
    margin-top: 10px;
    color: #1f2e15;
}

.blur{
    filter: blur(4px);
}
th
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}
