/*_ _ _ Fonts_ _ _ */


/* @import url('https://fonts.cdnfonts.com/css/brady-bunch-remastered'); */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400;0,700;1,400&display=swap');

@font-face {
    font-family: "Avenir Medium";
    src: url("https://db.onlinewebfonts.com/t/0983e84d4a1963e075b5ae8ca12e2a4f.eot");
    src: url("https://db.onlinewebfonts.com/t/0983e84d4a1963e075b5ae8ca12e2a4f.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/0983e84d4a1963e075b5ae8ca12e2a4f.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/0983e84d4a1963e075b5ae8ca12e2a4f.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/0983e84d4a1963e075b5ae8ca12e2a4f.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/0983e84d4a1963e075b5ae8ca12e2a4f.svg#Avenir Medium")format("svg");
}

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400;0,700;1,400&display=swap');


html {
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif !important;
}

body {
    background-color: #F7F3E9;
}

.play-btn {
    position: absolute;
    z-index: 999;
}

.play-btn.on {
    bottom: 0;
    right: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.play-btn.off {
    top: 0px;
    left: 0px;
    width: 1px;
    height: 1px;
}

.mobile-instrux.off {
    display: none;
}

.mobile-instrux.on {
    display: block;
}

.uk-margin-small-right {
    margin-right: 20px !important;
}

.donation-card {
    position: relative;
    background-image: url('/assets/donationCardBg.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 390px;
    max-width: 100%;
    height: 201px;
    margin-top: 0;
    margin-left: 0;
}

.counter-decor {
    width: 50px;
    margin-right: 10px;
}

.gift-count {
    font-size: 32px;
    text-align: center;
    width: 70px;
    height: 39px;
    border-radius: 5px;
}

.btn-plus-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border: none;
    font-size: 24px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    vertical-align: middle;
    margin: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.btn-donate {
    display: block;
    margin: 5px auto;
    background-color: #FD5236;
    width: 100%;
    color: #fff;
    border: none;
    height: 40px;
    padding: 0 15px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.btn-donate:hover,
.btn-donate:focus {
    background-color: #E5381D;
    outline: none;
}

.charity-profile-card-bg {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;

}

@media (min-width:990px) {
    .charity-profile-card-bg {
        height: 90%;
    }
}

@media (max-width:1057px) {
    .btn-donate {
        margin: 0;
    }
}

.charity-info {
    /* height:200px; */
    /* overflow-y:auto; */
}

.charity-info h3 {
    /* font-size: 16px; */
}

.donation-counter {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    gap: 15px;
}

.donation-counter img {
    width: 25%;
}

.uk-alert-danger1 {
    position: absolute;
    background-image: url('/assets/gift_alert.svg');
    background-color: transparent;
    top: -145px;
    right: -50px;
    max-width: 337px;
    border-radius: 10px;
    z-index: 1000;
    background-size: cover;
    background-repeat: no-repeat;
    width: 337px;
    height: 161px;
}

.alert-close-pop-up {
    top: 20px;
    right: 20px;
    color: white;
    opacity: 1.0;
    float: right;
}

#donationLimitAlert {
    display: none;

}

.charity-website {
    color: #000;
    text-decoration: none;
    margin: 0;
    display: block;
}

.charity-website span {
    color: #F74D33;
}

.column1 {
    width: 170px;
}

.face-card {
    position: relative;
    width: 140px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: #FCC;
    padding: 0;
}

.face-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.face-card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid #000;
    border-radius: 10px;
    transition: top 0.3s ease, left 0.3s ease;
    z-index: 1;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.face-card a {
    position: relative;
    z-index: 2;
}

.face-card:hover:before {
    top: -3px;
    left: -3px;
    right: 3px;
    bottom: 3px;
}

.face-card face-card:hover img {
    transform: scale(1.05);
    /* Optional: Slight zoom effect on the image */
}

.face-card1 {
    background-color: #F7A1C4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.face-card2 {
    background-color: #EE3B2E;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.face-card3 {
    background-color: #3D959F;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.face-card4 {
    background-color: #D0A968;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.face-card5 {
    background-color: #267FD0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.face-card6 {
    background-color: #F7A1C4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.face-card7 {
    background-color: #EE3B2E;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.face-card8 {
    background-color: #3D959F;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* 
video::-webkit-media-controls {
    display: none;
} */

/* Could Use thise as well for Individual Controls */
video::-webkit-media-controls-play-button {}

video::-webkit-media-controls-volume-slider {}

video::-webkit-media-controls-mute-button {}

video::-webkit-media-controls-timeline {}

video::-webkit-media-controls-current-time-display {}







body,
html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #F7F3E9;
    overflow: auto;
}

body {
    overflow-x: hidden;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 125px;
    /* Add your footer styling here */
}

/* .main-content {

    max-height:1280px;
    /* height: calc(100vh - 115px - 150px); 
    padding: 0 100px 100px;
    margin-bottom:120px;
    
} */


/* _ _ _Header Navbar start _ _ _ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 115px;
    /* Add your header styling here */
}

.uk-navbar-container {
    background-color: #F7F3E9 !important;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Styles for the 'Back' button */
.uk-navbar-nav li a {
    background-color: #F7F3E9;
    color: #FF6666;
    padding: 2px 10px;
    border: 1px solid #FF6666;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;

}

.uk-navbar-nav.nav-back-btn li a {
    min-height: 48px !important;
    font-family: 'Source Sans 3', sans-serif !important;
    width: 98px;
    font-size: 18px;
    font-weight: bold;
}

.uk-navbar-nav li a span {
    margin-right: 5px;
}

/* Hover effect for the 'Back' button */
.uk-navbar-nav li a:hover {
    background-color: #e5381d;
    color: #FFFFFF;
    text-decoration: none;
    border-color: #e5381d;
}

.navbar-subtitle {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Source Sans 3', sans-serif;
}

.navbar-logo {
    max-width: 100%;
    margin: 0 auto;
    font-size: 90px;
    color: #F74D33;
    text-align: center;
    line-height: 1.0;
    display: block;
    font-family: 'brady bunch remastered', sans-serif;
    font-weight: normal;
}

/* .navbar-logo img{
    height: 30px; 
    margin-top:30px
} */
.first-nav-mcglogo,
.second-nav-mcglogo,
.third-nav-mcglogo {
    width: 50px;
    height: auto;
    margin-top: 20px;

}

.first-nav-mcglogo {
    margin-left: -22px;
}

.second-nav-mcglogo {
    margin-left: -25px;
}

.third-nav-mcglogo {
    margin-left: 0px;
}




.sparkles1 {
    height: 50px;
    animation: twinkle 5s infinite;
    margin-top: 0;
}

.sparkles2 {
    height: 50px;
    animation: twinkle 5s infinite;
    margin-top: 0;
}

.navbar-logo span {
    color: #eb5424;
    margin: 0 10px;
    font-family: 'Brady Bunch Remastered', sans-serif;
}

.navbar-tagline {
    text-align: center;
    display: block;
    font-size: smaller;
}

/*-- Index video tiles start --*/

.video-container {
    position: relative;
}

.notification-bubble {
    width: 55px !important;
    height: 55px;
    background-color: #E5381D;
    border-radius: 25%;
    color: white;
    box-shadow: 2px 2px 10px #000000;
    font-size: 32px;
    font-family: 'Source Sans 3', sans-serif;
    text-align: center;
    line-height: 55px;
    position: absolute;
    transform: translate(10%, -15%);
    z-index: 100;
    top: 0;
    left: 0;
}

.hidden {
    display: none;
}

.video-grid-container {
    display: flex !important;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0px 15px 0px 0px;
}

.video-wrapper {
    position: relative;
    display: flex;
}

.link-to-charity {
    display: flex;
    width: 100%;
    border-radius: 22px;
    border: 2px solid black;
}

/* video {
 
} */
#video1 {
    z-index: 90;
}

.video-border {
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 21px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    .video-border {
        height: 100%;
    }
}

/* video::-webkit-media-controls {
    display: none;
} */

/* Could Use thise as well for Individual Controls */
video::-webkit-media-controls-play-button {}

video::-webkit-media-controls-volume-slider {}

video::-webkit-media-controls-mute-button {}

video::-webkit-media-controls-timeline {}

video::-webkit-media-controls-current-time-display {}





.video-border:hover {}

.no-show {
    display: none;
}

.navbar-subtext {
    margin: 20px;
}

/*-- Index video tiles End --*/




/* Hide the back button on index.php */

.uk-navbar-nav.nav-back-btn.hide-back-button {
    visibility: hidden;
}


/* _ _ _ Twinkle effect _ _ _ */
@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
    }

    10% {
        opacity: 0.4;
    }

    20% {
        opacity: 1;
    }

    30% {
        opacity: 0.5;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.4;
    }
}




/* _ _ _ Snowflake effect _ _ _ */

#snowfall-wrapper {
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}


/* _ _ _ Navbar end _ _ _*/
/*_ _ _ Charity Tally _ _ _ */


/* .single-line-charity{
    padding: 12px 0;
} */
.no-text-decoration {}

.tally-grid {
    margin: auto;
}

.tally-grid>div {
    padding: 10px;
}


.progress-container {
    align-self: flex-start;
    order: 2;
    width: 100%;
    border: 1px solid #000;
}

@media (min-width:959px) {
    .progress-container {
        max-width: 187px;
        width: 100%;
    }
}

.progress-bar {
    position: relative;
    align-items: flex-end;
    -webkit-appearance: none;
    appearance: none;
    height: 26px;
    overflow: hidden;
    margin: 0;
    background-color: inherit;
    transition: width 2s;
}

.charity-card {
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.total-gifts {
    font-size: 18px;
    font-family: 'Avenir Medium';
    color: #171A3C;
    margin-bottom: 10px !important;
}

progress.charity-bar {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #000;
    height: 26px;
    border-radius: 5px;
    overflow: hidden;
    max-width: 187px;
    width: 100%;
    margin: 0;
    background-color: transparent;
}

progress.charity-bar,
progress.charity-bar-1,
progress.charity-bar-2,
progress.charity-bar-3,
progress.charity-bar-4,
progress.charity-bar-5,
progress.charity-bar-6,
progress.charity-bar-7,
progress.charity-bar-8,
progress.charity-bar-9 {
    border-radius: 0 !important;
    /* ... other styles ... */
}

progress.charity-bar-1::-webkit-progress-value {
    background-color: #F4B650;
}

progress.charity-bar-1::-moz-progress-bar {
    background-color: #F4B650;
}

progress.charity-bar-1 {
    color: #F4B650;
    /* For IE */
}

progress.charity-bar-2::-webkit-progress-value {
    background-color: #F7A1C4;
}

progress.charity-bar-2::-moz-progress-bar {
    background-color: #F7A1C4;
}

progress.charity-bar-2 {
    color: #F74D33;
    /* For IE */
}

progress.charity-bar-3::-webkit-progress-value {
    background-color: #F74D33;
}

progress.charity-bar-3::-moz-progress-bar {
    background-color: #F74D33;
}

progress.charity-bar-3 {
    color: #F74D33;
    /* For IE */
}

progress.charity-bar-4::-webkit-progress-value {
    background-color: #3D959F;
}

progress.charity-bar-4::-moz-progress-bar {
    background-color: #3D959F;
}

progress.charity-bar-4 {
    color: #3D959F;
    /* For IE */
}

progress.charity-bar-5::-webkit-progress-value {
    background-color: #F7A1C4;
}

progress.charity-bar-5::-moz-progress-bar {
    background-color: #F7A1C4;
}

progress.charity-bar-5 {
    color: #F7A1C4
        /* For IE */
}

progress.charity-bar-6::-webkit-progress-value {
    background-color: #267FD0;
}

progress.charity-bar-6::-moz-progress-bar {
    background-color: #267FD0;
}

progress.charity-bar-6 {
    color: #267FD0;
    /* For IE */
}

progress.charity-bar-7::-webkit-progress-value {
    background-color: #267FD0;
}

progress.charity-bar-7::-moz-progress-bar {
    background-color: #267FD0;
}

progress.charity-bar-7 {
    color: #267FD0;
    /* For IE */
}

progress.charity-bar-9::-webkit-progress-value {
    background-color: #F74D33;
}

progress.charity-bar-9::-moz-progress-bar {
    background-color: #F74D33;
}

progress.charity-bar-9 {
    color: #F74D33;
    /* For IE */
}


progress.charity-bar-8::-webkit-progress-value {
    background-color: #3D959F;
}

progress.charity-bar-8::-moz-progress-bar {
    background-color: #3D959F;
}

progress.charity-bar-8 {
    color: #3D959F;
    /* For IE */
}

.charity-tally-container {
    width: 900px !important;
}

.uk-card.uk-card-default.uk-card-hover.uk-card-body.charity-tally-card {
    border-radius: 25px;
    max-width: 909px;
    width: 100%;
    height: 100%;
    box-shadow: none;

}

.uk-card.uk-card-default.uk-card-hover.uk-card-body.charity-tally-card h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: bold
}

.charity-card-details h3 {
    margin-bottom: 0px;
    color: #171A3C;
    font-size: 18px;
    font-family: 'Avenir Medium';
}

.charity-card-details a {
    text-decoration: none;
    color: #171A3C;
}

.charity-card-details p {
    font-size: 14px;
    font-family: 'Avenir Medium';
    margin: 0;
}

.charity-card-details h3 a {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(to right,
            #F74D33, #1E9591, #E89DC5);
    background-size: 0 3px;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.8s ease;
}

.charity-card-details h3 a:hover {
    background-size: 100% 3px;
}

.charity-card-details {
    order: 1;
    width: 100%;
    text-align: left;
    margin-right: 0;
}

.employees-charity-container {
    color: #000;
}


.uk-card-header,
.uk-card-body {
    /* padding: 10px;*/
}

.uk-card-title {

    /* margin: 0; */
}

.gift-count-card {
    margin-top: 10px;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    max-width: 320px;
    height: 131px;
    padding: 5px 20px 5px 20px !important;
    text-align: center;
}

.gift-count-card-wrapper {
    width: 100%;
    justify-content: center;
    margin: 15px 0;
    padding-bottom: 105px;
}

.gift-image img {
    max-width: 100px;
    margin-right: 10px;
}

.gift-count-text {
    font-size: 18px;
    color: #000;
    font-style: italic;
    margin-bottom: 0;
    margin-top: 10px;
}

.gift-count {
    border: none;
}

.gift-count-number {
    font-size: 24px;
    color: black;
    font-weight: bold;
    margin-top: 0;
}

/* Spinning pinwheel __ __ __*/
.pinwheel {
    position: absolute;
    background-image: url('/assets/spinner.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9 !important;
}

.gold-spinner {
    position: absolute;
    background-image: url('/assets/gold-star-spinner.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 8 !important;
}

.pinwheel-top-left-large {
    width: 100px;
    height: 100px;
    animation: spin-pause-quick-short-pause 4s infinite linear;
}

.gold-spinner-top-left-large {
    width: 67px;
    height: 67px;
    animation: spin-pause-uneven 6s infinite linear reverse;
}

.pinwheel-bottom-right-large {
    width: 100px !important;
    height: 100px;
    animation: spin-pause-uneven 6s infinite linear;
}

.gold-spinner-bottom-right-large {
    width: 67px !important;
    height: 67px;
    animation: spin-pause-quick-short-pause 4s infinite linear;

}

.pinwheel-bottom-right-small {
    width: 50px !important;
    height: 50px;
    animation: spin-pause-gradual-mid-pause 8s infinite linear;
}

.gold-spinner-bottom-right-small {
    width: 43px !important;
    height: 43px;
    animation: spin-pause-slow-long-pause 10s infinite linear reverse;
}

.pinwheel-top-left-small {
    width: 50px;
    height: 50px;
    animation: spin-pause-slow-long-pause 10s infinite linear;
}

.gold-spinner-top-left-small {
    width: 43px;
    height: 43px;
    animation: spin-pause-gradual-mid-pause 8s infinite linear reverse;

}

.pinwheel-top-left-large {
    top: -12%;
    left: 0;

}

.gold-spinner-top-left-large {
    top: -8.5%;
    left: 1.9%;

}

.pinwheel-top-left-small {
    top: 8%;
    left: -4%;
}

.gold-spinner-top-left-small {
    top: 8.5%;
    left: -3.65%;
}

.pinwheel-bottom-right-large {
    bottom: -12%;
    right: 0;
}

.gold-spinner-bottom-right-large {
    bottom: -8.3%;
    right: 1.8%;
}

.pinwheel-bottom-right-small {
    bottom: 8%;
    right: -3.7%;
}

.gold-spinner-bottom-right-small {
    bottom: 8.6%;
    right: -3.4%;
}


@keyframes spin-pause-slow-long-pause {

    0%,
    40% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(180deg);
    }

    80%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-pause-quick-short-pause {

    0%,
    10% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(180deg);
    }

    50%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-pause-uneven {

    0%,
    15% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(60deg);
    }

    50%,
    65% {
        transform: rotate(180deg);
    }

    85% {
        transform: rotate(270deg);
    }

    95%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-pause-gradual-mid-pause {

    0%,
    20% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(90deg);
    }

    70% {
        transform: rotate(180deg);
    }

    90%,
    100% {
        transform: rotate(360deg);
    }
}

.employee-pic video {
    border-radius: 5px;
}

/* _ _ _ Charity Profile end _ _ _ */


/* _ _ _ About MCG start _ _ _ */



.about-section-intro {
    padding: 0px 30px 30px 30px;
}

.about-section-intro h3 {
    color: #333;
    margin-bottom: 10px;
}

.about-section-intro p {
    color: #666;
    padding: 0 185px;
}

.stats-container {
    text-align: center;
    justify-content: center;
}

.stats-container>div {
    margin-bottom: 20px;
}

.stat-item {
    width: 225px;
    height: 225px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.about-page-container {}

.about-number {
    font-size: 60px;
    font-weight: bold;
}

.about-subtext {
    font-size: 18px;
    margin-top: 10px;
}

.about-shape-grid {
    margin: 0 auto;
    max-width: 520px;
}

@media (max-width:959px) {
    .about-shape-grid {
        max-width: 360px;
    }
}

.about-page-container p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    padding: 0 30px;
    max-width: 820px;
    margin: 0px auto 50px;
}

.about-page-container h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 24px;
    font-weight: bold;
}

.uk-button.our-website-btn {
    background-color: #FD5236;
    border: none;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 30px;
    box-shadow: none;
    color: white !important;
    text-transform: none;
    border-radius: 5px;
}

.uk-button.our-website-btn:hover {
    background-color: #E5381D;
    color: #fff;
    border: 1px solid #E5381D;
}

/* _ _ _ About MCG end _ _ _ */
/* _ _ _ welcome Modal start _ _ _ */

.uk-modal-dialog.uk-modal-body.welcome-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 657px;
    background-color: #F7F3E9;
    border-radius: 10px;
    max-width: 93% !important;
}

.uk-modal-dialog.uk-modal-body.welcome-modal h2 {
    padding-bottom: 20px;
}

.uk-modal-dialog.uk-modal-body.welcome-modal p {
    text-align: center;
    color: #000;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
}

.uk-modal-dialog.uk-modal-body.welcome-modal h2 {
    font-family: 'source sans 3', sans-serif;
    font-weight: 600;
    color: #1E9591;
    font-size: 30px;
    margin-top: 0;
    max-width: 500px;
    margin: 0 auto;
}

.uk-modal-dialog.uk-modal-body.welcome-modal p i {
    font-size: 26px;
}

.uk-modal-dialog.uk-modal-body.welcome-modal h2:first-of-type {
    margin-bottom: 0;
}

@media (min-width: 699px) {
    .uk-modal-dialog.uk-modal-body.welcome-modal {
        padding: 30px 60px;
    }
}

.uk-button.gift-button {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: bold;
    padding: 6 80px;
    /* border-radius: 5px; */
    background-color: #F74F33;
    text-transform: none;
    color: white;
}



.uk-modal-dialog.uk-modal-body.welcome-modal h2:first-of-type {
    margin-bottom: 0;
}

/* _ _ _ welcome Modal end _ _ _ */
/* _ _ _ Thank You Page Start_ _ _ */
#modal-thank-you {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    width: 606px;
    max-width: 80% !important;
    height: 550px;
    margin: 0 auto;
    padding: 30px;
    background-color: #F7F3E9;
    background-image: url('/assets/thank-you-modal-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 17px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    box-sizing: content-box;
    font-family: 'Source Sans 3', sans-serif;
}

.thank-you-container h3 {
    font-family: 'Source Sans 3', sans-serif;
    padding-top: 20px;
    font-size: 32px;
    font-weight: 600;
    color: #1E9591;
}

.thank-you-container p {
    font-size: 18px;
    padding: 0;
    margin-bottom: 20px;
    color: #000;
    max-width: 500px;
    margin: 0 auto 15px;
}

.thank-you-container i {
    padding: 0 10px;
}

.thank-you-container .uk-button {
    background-color: #FD5236;
    border: 1px solid #FD5236;
    color: #F7F3E9;
    font-weight: bold;
    text-transform: none;
    height: 45px;
    text-align: center;
    letter-spacing: 1px;
    font-size: 18px;
    width: 205px;
    padding: 2px 10px;
    border-radius: 5px;
}

.keep-giving:hover {
    background-color: #E5381D !important;
    color: #F7F3E9 !important;
    border: 1px solid #E5381D !important;
}


.thank-you-container .uk-button:hover {
    background-color: #E5381D;
    color: #fff;
    border: 1px solid #E5381D;

}

@media (max-width: 599px) {
    .thank-you-container {
        background-size: contain;
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .thank-you-container .uk-button {
        width: 100%;
        margin: 5px;
    }

    .thank-you-container h3 {
        font-size: 24px;
    }
}


/* _ _ _ Thank You Page End _ _ _ */


/* _ _ _ Footer bar Start_ _ _ */
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 5px;
    z-index: 100;
    background-color: #F7F3E9;
}

.footer-nav a {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav img {
    width: 67px;
    height: auto;
}

.footer-nav span {
    font-size: 12px;
}

.footer-nav .bye-icon img {
    height: 60px;
    border-radius: 25px;
    width: 133px;
    margin-bottom: 5px;
}

/* Notification bubble styling */
.nav-item img,
.nav-item span {
    z-index: 1;
}

.video-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    bottom: -2px;
    left: 17px;
    background: #fff;
    color: #000;
    max-width: 84px !important;
    width: 100% !important;
    height: 42px;
    text-align: center;
    border-radius: 0 10px 10px 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    opacity: 0.7;
    overflow: hidden;
    z-index: 95;
}

.image-wrapper .video-name {
    bottom: 2px;
}

.image-wrapper img {
    border-radius: 20px;
    border: 2px solid black;
}

.notif-bubble {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 34px;
    height: 34px;
    background-color: #F74D33;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 155;
}

.nav-item {
    position: relative;
}

.nav-label {
    margin-bottom: 5px;
}

/* _ _ _ Footer bar end_ _ _ */




@media(max-width:1100px) {
    .navbar-logo {
        font-size: 70px;
    }

    .first-nav-mcglogo,
    .second-nav-mcglogo {
        width: 35px;
        margin-left: -18px;
    }

    .third-nav-mcglogo {
        width: 35px;
        margin-left: 0px;
    }
}

@media (max-width: 1089px) {
    .uk-list {
        margin: 0;
    }
}

@media (max-width: 960px) {
    .employees-charity-container {
        padding-right: 15px;
    }
}

@media (max-width:959px) {
    .navbar-logo {
        font-size: 55px;
    }

    .first-nav-mcglogo {
        margin-left: -15px;
        width: 30px;
        height: auto;
        margin-top: 15px;
    }

    .second-nav-mcglogo {
        /* greet logo */
        width: 30px;
        height: auto;
        margin-top: 15px;
        margin-left: -15px;
    }

    .third-nav-mcglogo {
        /* give logo */
        margin-left: 0px;
        width: 30px;
        height: auto;
        margin-top: 15px;
    }

    .sparkles1 {
        height: 30px;
        margin-top: 0;
        margin-left: 10px;
    }

    .sparkles2 {
        height: 30px;
        margin-top: 0;
        margin-left: -10px;
    }



    .nav-back-btn {
        visibility: hidden;
    }
}

@media (max-width:799px) {
    .pinwheel {
        display: none;
    }

    .gold-spinner {
        display: none;
    }
}


@media (max-width: 640px) {
    .main-content {
        padding: 0;
        max-height: 544px;
    }

    .navbar-subtext {
        font-size: 14px;
        margin: 0px 10px 10px 10px;
    }

    .footer-nav {
        height: auto;
        padding: 0;
        gap: 0;
    }

    .footer-nav .bye-icon img {
        padding-right: 5px;
    }
}

@media (max-width:639px) {
    .employees-charity-container {
        padding-left: 30px;
    }

}

@media (max-width: 569px) {
    .navbar-logo {
        font-size: 45px;
    }

    .first-nav-mcglogo {
        margin-top: 10px;
        width: 25px;
    }

    .first-nav-mcglogo {
        margin-left: -13px;
    }

    .second-nav-mcglogo {
        margin-top: 10px;
        margin-left: -13px;
        width: 25px;
    }

    .third-nav-mcglogo {
        margin-top: 10px;
        width: 25px;
        margin-left: 0px;
    }
}

@media (max-width: 499px) {
    .navbar-logo span {
        margin: 0px;
    }

    .navbar-logo {
        font-size: 50px;
    }

    .first-nav-mcglogo,
    .second-nav-mcglogo,
    .third-nav-mcglogo {
        width: 20px;
        height: auto;
        margin-top: 10px;
    }

    .first-nav-mcglogo {
        margin-left: -10px;
        margin-top: 10px;
    }

    .first-nav-mcglogo {
        margin-left: -10px;
        margin-top: 10px;
    }

    .second-nav-mcglogo {
        margin-left: -10px;
    }

    .third-nav-mcglogo {
        margin-left: 0px;
    }
}

@media (max-width:459px) {
    .donation-card {
        padding-top: 50px;
    }

    .donation-card img {
        width: 45px;
    }

    .btn-donate {
        width: 100%;
        padding: 0 15px;
    }

}

@media (max-width: 430px) {
    .sparkles1 {
        display: none;
    }

    .sparkles2 {
        display: none;
    }

    .navbar-logo i {
        padding: 0 10px;
    }
}

@media (max-width:420px) {
    .donation-card img {
        display: none;
    }

    .donation-card {
        padding-top: 30px;
    }
}

@media (max-width:414px) {
    .uk-modal-dialog.uk-modal-body.welcome-modal h2 {
        font-size: 22px;
    }

    .uk-modal-dialog.uk-modal-body.welcome-modal img {
        width: 120px;
        height: auto;
    }
}