

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden;
}








.loader-container{
/*border: 2px solid rgb(0, 255, 115);*/
display: flex;
justify-content: center;
align-items: center;
position: relative;
}

.img-loader{
position: absolute;
width: 25px;
height: 25px;
}

#pageLoadId {
margin: 0 auto;
/*border: 2px solid black;*/
display: flex;
justify-content: center;
align-items: center;
position: relative;
height: 100vh;
width: 100vw;
/*top:30vh;*/
/*left:42vw;*/
/*left:45vw;*/
z-index: 1;
}

.pageLoadIdchild {
margin-bottom: 1px;
/*border: 2px solid red;*/
height: 150px;
z-index: 20;
}

.loader {
    margin: 0 auto;
    /*margin-top: 10vh;*/
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid rgba(0, 0, 255, 0.8);
    border-radius: 50%;
    /*width: 50px;
    height: 50px;*/
    width: 75px;
    height: 75px;
    animation: spin 2s linear infinite;
}

.loaderText {
text-align: center;
margin-top: 3vh;
}






/*----------------------------------------------------------------------*/

.email-logo{
    color: rgb(255, 255, 255);
}

.p-text-align{
    text-align: center; 
    color: rgb(61, 96, 141);
}

.li-bold{
    font-weight: bold; 
    color: gray;
}


/* Main Styles */
.main-title,
.sub-title,
.section-title,
.section-subtitle {
    text-align: center;
    color: rgb(61, 96, 141);
}

.pageBodyWidthResizer {
    margin: 20px auto;
    width: 95%;
}

.description,
.centered-text {
    color: rgb(61, 96, 141);
    text-align: center;
}

.content-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section {
    margin-top: 50px;
}

.benefits-list,
.unique-features-list,
.usage-instructions,
.methodology-list,
.currencies-list {
    color: rgb(61, 96, 141);
    margin: 0 auto 2vh;
}

.disclaimer { 
    color: red;
    font-size: 14px;
    margin: 20px;
}




.footer {
    background-color: rgb(106, 34, 179);
    color: white;
    /*padding: 20px;*/
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
}

.footer-buttons button {
    border: 1px solid white;
    margin: 10px;
    border-radius: 2px;
    cursor: pointer;
}

.footer-buttons a {
    color: black;
    text-decoration: none;
    padding: 5px;
}

.footer-info a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

/*----------------------------------------------------------------------*/







.logo-magnify {
animation: magnify-logo 1s infinite linear;
}

@keyframes magnify-logo {
    0% {
    transform: scale(1);
    }
    50% {
    transform: scale(1.1);
    }
    100% {
    transform: scale(1.3);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg);}
}


/*All Resizers*/

/* main page root resizers */
.pageBodyWidthResizer {
    width: 95%;
}

/* Adjust width based on media queries */
@media (min-width: 900px) {
    .pageBodyWidthResizer {
        width: 75%;
    }
}

@media (min-width: 950px) {
    .pageBodyWidthResizer {
        width: 70%;
    }
}

@media (min-width: 1000px) {
    .pageBodyWidthResizer {
        width: 65%;
    }
}

@media (min-width: 1050px) {
    .pageBodyWidthResizer {
        width: 60%;
    }
}

@media (min-width: 1150px) {
    .pageBodyWidthResizer {
        width: 55%;
    }
}






