﻿/*loader spin begins*/
#loadingmsg {
    color: black;
    /*background: #fff;*/
    padding: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    margin-right: -25%;
    margin-bottom: -25%;
}

#loadingover {
    background: black;
    z-index: 99;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.loader-spin,
.loader-spin:after {
    border-radius: 50%;
    width: 3em;
    height: 3em;
}

.loader-spin {
    margin: auto auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 0.8em solid rgba(246, 168, 33, 0.2);
    border-right: 0.8em solid rgba(246, 168, 33, 0.2);
    border-bottom: 0.8em solid rgba(246, 168, 33, 0.2);
    border-left: 0.8em solid #f6a821;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load-spin-an 1.1s infinite linear;
    animation: load-spin-an 1.1s infinite linear;
}

@-webkit-keyframes load-spin-an {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load-spin-an {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*loader spin ends*/
.center_div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    text-align: center;
    color: white;
}

.display_header_navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-bottom: 2px solid rgba(255, 255, 255, 0.21);
    background-color: #38424D;
}

.display_banner {
    position: fixed;
    z-index: 99;
    background-color: #38424D;
    -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
/*  3D SPINNING KEY FRAMES*/
@keyframes spin3D {
    from {
        transform: rotateY(0deg)
    }

    to {
        transform: rotateY(360deg)
    }
}

.spin3D {
    animation: spin3D 3s ease-in-out infinite;
}
/*dot loading process*/
/*.x_dot {
    opacity: 0;
    animation: loading 1.4s infinite ease-in-out;
}

    .x_dot:nth-child(1) {
        animation-delay: -0.32s;
    }

    .x_dot:nth-child(2) {
        animation-delay: -0.16s;
    }

@keyframes x_loading {
    0%, 80%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}*/
/*dot loader process II*/
.x_loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px
}

.x_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    animation: bounce 1.5s infinite ease-in-out;
    margin-top: 25px;
}

    .x_dot:nth-child(1) {
        animation-delay: 0s;
    }

    .x_dot:nth-child(2) {
        animation-delay: 0.3s;
    }

    .x_dot:nth-child(3) {
        animation-delay: 0.6s;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* under list of items - part 2*/
/* Container styling */
.list-container {
    /*font-family: Arial, sans-serif;
    margin: 20px;*/
}

/* Title styling */
.list-title { 
    color: #333;
    margin-bottom: 10px;
    text-decoration: underline;
}

/* List styling */
.styled-list {
    list-style-type: square; /* Options: circle, square, decimal */
    color: #555;
    padding-left: 20px;
    overflow-wrap: break-word;
    word-break: break-all; 
    width:100%
}
.list_text {
    word-break: break-all;
}

/* Item styling */
.styled-list li {
    margin-bottom: 8px; /* Space between items */
    line-height: 1.5;
    align-items: flex-start;
}

/* Custom marker color */
.styled-list li::marker {
    color: blue;
}
/* under list of items - part 2*/

/*flip of panel */
.flip-box {
    background-color: transparent; 
    perspective: 1000px; 
}

.flip-box-inner { 
    transition: transform 0.8s;
    transform-style: preserve-3d; 
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
    /*position: absolute;*/
    position: relative; 
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; 
}

.flip-box-front { 
    max-height:200px;
}

.flip-box-back { 
    margin-top: -220px;
    transform: rotateY(180deg); 
} 
/*flip of panel */ 
