﻿
.CrBdWp {
    background-color: #25d366;
}

.CrWp {
    color: #25d366;
}

.BeCr {
    background-color: #f4faff;
}

.FrIcTt:hover {
    cursor: pointer;
    transform: scale(1.3);
    transition: transform ease-in-out 0.2s;
}

.HrIcTt {
    transition: transform ease-in-out 0.2s;
}

    .HrIcTt:hover {
        cursor: pointer;
        transform: scale(1.2);
    }


.OwYHn {
    overflow-y: hidden;
}

.FtFyKnCe {
    font-family: 'Kaushan Script', cursive;
}

.TtOrFwVeLe6 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.TtOrFwVeLe1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.HyIaCd {
    position: relative;
    width: 100%;
    height: 345px;
    text-decoration: none;
    display: block;
}


.HyIaCd_content {
    display: flex;
    flex-direction: column;
    padding: var(--Pl10);
    margin: auto;
    margin-top: auto;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    transform: translateY(calc(100% - 86px));
    transition: transform 1s;
    justify-content: center;
}

.HyIaCd_content_2 {
    display: flex;
    flex-direction: column;
    padding: var(--Pl10);
    margin: auto;
    margin-top: auto;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    transform: translateY(calc(100% - 48px));
    transition: transform 1s;
    justify-content: center;
}

.HyIaCd_details {
    justify-content: center;
    width: 100%;
}

    .HyIaCd_details h3 {
        font-size: var(--Pl19);
    }

    .HyIaCd_details h4 {
        color: lightgray;
        font-size: var(--Pl14);
        font-weight: 100;
    }

.HyIaCd_hidden {
    color: #fff;
    transition: all 700ms;
    transform: translateY(100%);
}

.HyIaCd:hover .HyIaCd_image {
    transform: scale(1.1);
}

.HyIaCd:hover .HyIaCd_content, .HyIaCd:hover .HyIaCd_content_2 {
    transform: translateY(calc(2px));
}

.HyIaCd:hover .HyIaCd_hidden {
    transform: translateY(0%);
}

.HyIaCd:hover .HyIaCd_Bn {
    transform: translateY(0%);
}

.HyIaCd_Bn {
    width: 100%;
    transition: transform 2s;
    transform: translateY(50px);
    padding-top: var(--Pl5);
}

.HrLe {
    height: 2px;
    border-radius: 50%;
}

.CrBdBe40 {
    background-color: hsl(193 48% 51%);
}

.CrBdBk60 {
    background-color: hsla(0 2% 9%/0.60);
}


#toaster {
    min-width: 370px;
    position: fixed;
    bottom: 1%;
    left: 5px;
    padding: 5px;
    z-index: 1000000000;
    border-radius: 15px;
    border: 1px solid var(--CrTe);
    box-shadow: var(--Pl0) var(--Pl5) var(--Pl7) rgb(var(--CrGyLt));
    display: none;
}

.toast {
    display: flex; /* Use flexbox layout */
    align-items: center;
    /*color: #fff;*/
    padding: 5px;
    font-size: 14px;
    opacity: 0;
    position: relative;
    cursor: pointer;
    text-align: left; /* Align text to the left */
    animation: fadeIn 0.3s forwards;
}

.toast-content {
    display: flex; /* Maintain image and text alignment */
    align-items: center;
    flex: 1;
}

.toast-image {
    width: 100px;
    height: 90px;
    border-radius: 5px;
    margin-right: 10px; /* Space between image and text */
    object-fit: cover;
    flex-shrink: 0; /* Prevent the image from shrinking */
}

.toast-text {
    flex: 1; /* Allow text to take remaining space */
    display: flex;
    flex-direction: column; /* Stack text and button vertically */
}

.toastH4 {
    /*color: #fff;*/
    font-family: Kaushan Script;
    font-size: 16px;
    margin: 0;
}

.message {
    font-size: 14px;
    margin: 4px 0;
}

.toastbutton {
    /*background-color: #fff;*/
    /*color: rgb(0 0 0);*/
    border: none;
    padding: 5px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
    max-width: 60%;
}

.close-trbtn {
    position: absolute;
    top: -10px;
    right: 0px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

    .close-trbtn:hover {
        color: #fff;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

#content {
    width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    word-break: break-word;
}

#scroll-to-top-button {
    position: fixed;
    bottom: 0px;
    right: 3px;
    z-index: 99999;
    font-size: 18px;
    background: linear-gradient(45deg, #417aff, #ff4b2b);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 1.25em 1.25em 0 0;
    padding: 24px 16px;
    transition: .4s ease-in-out all;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

/* Shake animation */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px) rotate(-2deg);
    }

    50% {
        transform: translateX(4px) rotate(2deg);
    }

    75% {
        transform: translateX(-4px) rotate(-2deg);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.6s ease-in-out;
}

@media (max-width: 768px) {
    #toaster {
        display: none !important;
    }

    #scroll-to-top-button {
        font-size: 17px;
        padding: 8px 14px;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%); /* Center it horizontally */
    }
}

.CrBdSideNav {
    background-color: rgba(227,107,152,.89) !important;
}

@media(min-width:768px) {
    .Mm\:DyNe {
        display: none;
    }
    .Mm\:FxDnRw {
        flex-direction:row
    }
}

input:focus, input:focus-visible {
    outline: none;
    box-shadow: none;
}
.breadCrumbs {
    transition: margin-left 0.5s ease;
}

.nav-scrolled .NvFxLogo {
    display: flex; /* or block depending on layout */
}

.nav-scrolled .breadCrumbs {
    margin-left: 0.5rem; /* Adjust spacing as needed */
}

.NvFxLogo {
    display: none;
}

.input-container {
    position: relative;
}

    .input-container label {
        position: absolute;
        left: 5px;
        top: 0px;
        transition: top 0.3s ease;
        pointer-events: none;
    }

    .input-container input:focus + label,
    .input-container input:not(:placeholder-shown) + label {
        top: -12px;
        font-size: 12px;
    }

.popup_content {
    position: absolute;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.popup_content.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
/* Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 10px;
}
/* Subgrid */
.gridBoxTop {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    padding: 10px;
}
/* Tablets Responsiveness (700px to 900px) */
@@media (max-width: 900px) and (min-width: 700px) {
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        justify-items: center;
    }
}
/* Mobile Responsiveness */
@@media (max-width: 699px) {
    .cards-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@@media (min-width:768px) {
    .breadCrumbs {
        transition: margin-left 0.5s ease;
    }

    .nav-scrolled .NvFxLogo {
        display: flex; /* or block depending on layout */
    }

    .nav-scrolled .breadCrumbs {
        margin-left: 0.5rem; /* Adjust spacing as needed */
    }

    .NvFxLogo {
        display: none;
    }
}

.HrIcTt {
    transition: transform ease-in-out 0.2s;
}

    .HrIcTt:hover {
        cursor: pointer;
        transform: scale(1.06);
    }

.Pg0It {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.cards-containerTop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(3, auto);
    gap: 15px;
}
/* Subgrid */
.gridBoxTop {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    padding: 10px;
}
/* Tablets Responsiveness (700px to 900px) */
@@media (max-width: 900px) and (min-width: 700px) {
    .cards-containerTop {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        justify-items: center;
    }
}
/* Mobile Responsiveness */
@@media (max-width: 699px) {
    .cards-containerTop {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        justify-items: center;
    }
}

/* Subgrid */
.gridBox {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
}

.cards-containerBottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(3, auto);
    gap: 15px;
}
/* Subgrid */
.gridBoxBottom {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    padding: 10px;
}
/* Tablets Responsiveness (700px to 900px) */
@@media (max-width: 900px) and (min-width: 700px) {
    .cards-containerBottom {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        justify-items: center;
    }
}
/* Mobile Responsiveness */
@@media (max-width: 699px) {
    .cards-containerBottom {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.OrLy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
