/*This Stylesheet contains the style settings of Layout elements which are commons to all CashUnlocked pages. This concern precisely Headers, footers and various loaders.*/

/*Following styles apply to devices between 1000 and 1399px of width such as laptops and desktops*/

*
{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    font-size: large;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body
{
    width: 100%;
    padding: 0px 10px;
}

a
{
    color: #0000ff;
    text-decoration: underline;
}

header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-bottom: 1px solid grey;
}

header .appVisualIdTools
{
    display: flex;
    align-items: center;
}

.appVisualIdTools .appLogo
{
    width: 43px;
    height: 43px;
    margin-right: 10px;
}

.appLogo img 
{
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.appName a 
{
    color: #000000;
    text-decoration: none;
}

.appName strong 
{
    font-size: xx-large;
    font-family: 'Times New Roman', Times, serif;
}

.loginLink a 
{
    background-color: #008000;
    color: #ffffff;
    padding: 7px 5px;
}

.signupLink a 
{
    color: #000000;
    background-color: #f2ce02;
    border: 1px #000000 solid;
    padding: 5px;
}

.signupLink a, .loginLink a
{
    display: flex;
    align-items: center;
    border-radius: 5px;
    text-decoration: none;
}

.signupLink .signupLinkIcon,.loginLink .loginLinkIcon
{
    margin-right: 7px;
}
.slimContainer 
{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.slimContainer button
{
    border: none;
}
nav
{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    background-color: rgba(240, 240, 240, 0.7);
    display: flex;
    justify-content: flex-end;
    transform: scale(0);
    transform-origin: right top;
    transition: transform 0.2s ease-in;
}
nav ul
{
    list-style-type: none;
    padding: 20px 20px 0px 20px;
    background-color: #ffffff;
    width: 30%;
    position: absolute;
    top: 10px;
    right: 10px;
}

nav li 
{
    margin-bottom: 20px;
}

nav li .mediumIconContainer
{
    margin-right: 10px;
}

nav li a 
{
    display: flex;
    align-items: center;
}

.visibleNavOptionsContainer
{
    display: flex;
    z-index: 3;
    transform: scale(1);
}

.browsingMainMenu
{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.browsingMainMenu div a
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

main 
{
    box-sizing: border-box;
}

button 
{
    cursor: pointer;
}

footer 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    border-top: 1px solid grey;
    box-sizing: border-box;
    background-color: white;
}

/*UI Settings Tools*/

.fullScreenBody
{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stretchedElement
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/*Form Elements Style General Conf*/

.floatingLabelFieldContainer
{
    position: relative;
}

.floatingLabel 
{
    position: absolute;
    z-index: -1;
    top: 10px;
    left: 10px;
    font-size: medium;
    background-color: white;
    padding: 0 5px;
    transition: 0.2s ease-in-out;
    pointer-events: none;
}

.floatingLabelField:focus + label
{
    z-index: 1;
    top: -10px;
}

.invalidField
{
    border: none;
    outline: 2px #ff4500 solid; 
    color: #ff4500;
    transition: all 0.2s ease-in-out;
}

.invalidField:focus
{
    border: none;
    outline: 2px #ff4500 solid;
}

.signaledInvalidField
{
    animation: likeAFuriuos 900ms cubic-bezier(.4,.1,.6,.9), headshake 100ms 200ms cubic-bezier(.4,.1,.6,.9) 3;
}

.validField:focus 
{
    border: none;
    outline: 2px #90ee90 solid; 
}

.satisfiedInputValidityCondotion
{
    color: #008000; 
}

.unsatisfiedInputValidityCondotion
{
    color: #8b0000;
}

/* Images sizing*/

img 
{
    width: 100%;
    height: 100%;
}

/*Icons containers sizing*/

.littleIconContainer
{
    width: 20px;
    height: 20px;
}

.mediumIconContainer
{
    width: 40px;
    height: 40px;
}

.largerIconContainer
{
    width: 50px;
    height: 50px;
}

/*Loaders*/

/*LetUsShine loader Style*/

.letUsShineLoader 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items : center;
    background-color: white;
    box-sizing : border-box;
    z-index: 999;
}

.fromShadowToLight
{
    width : 15vw;
    height : 15vw;
    position: relative;
    display : flex;
    justify-content : center;
    align-items : center;
    box-sizing : border-box;
}

.focusPoint 
{
    width : 20%;
    height: 20%;
    background-color : #000000;
    position: absolute;
    z-index: 1;
    border-radius : 100%;
    box-sizing : border-box;
}

.revelation 
{
    width : 100%;
    height: 100%;
    border : solid 15px #FFF8E1;
    border-radius : 100%;
    z-index : 10;
    transform : scale(0.2);
    box-sizing : border-box;
    display : none;
}

.revelation img
{
    width : 100%;
    height: 100%;
    border-radius : 100%;
}

.cashUnlockedCatchword, .cashUnlockedCatchword span
{
    margin-top : 20px;
    text-align : center;
    box-sizing : border-box;
    font-size: xx-large;
    font-weight: 150;
}

.catchwordCursor
{
    animation: blinks 900ms ease infinite;
}

.shines 
{
    animation: revelation 0.1s ease-in both, shines 2400ms ease-in-out 3 backwards;
}

/*Light Loder (Process ring) elements style*/

.processRing 
{
    position : fixed;
    top : 0;
    left : 0;
    width : 100vw;
    height : 100vh;
    display : flex;
    flex-direction : column;
    justify-content : space-between;
    box-sizing : border-box;
    padding : 0px 10px;
    background-color : white;
    z-index: 999;
}

.processorHeader
{
    display : flex;
    justify-content : flex-start;
    align-items : center;
    margin : 20px 0px;
    box-sizing : border-box;
}

.blackPoint 
{
    width : 43px;
    height : 43px;
    background-color : #000000;
    border-radius : 100%;
    margin-right : 10px;
}

.appName
{
    font-size : x-large;
}

.ringContainer
{
    display : flex;
    justify-content: center;
    align-items: center;
    height : 100%;
    width : 100%;
}

.ring 
{
    width: 5vw;
    height: 5vw;
    border-radius : 100%;
    position: relative;
    display: flex;
    justify-content : center;
    align-items : center;
    transform-origin : center center;
    animation:  regularSpin 1s ease-in-out infinite;
}

.ringInnerDot 
{
    --n:7;
    position : absolute;
    width : 13px;
    height : 13px;
    border-radius : 100%;
    background-color : grey;
    transform : rotate(calc(360deg/var(--n) * var(--i))) translateX(40px) rotate(calc(-360deg/var(--n) * var(--i)));
    animation:  blinkingDot 1s ease-in-out infinite alternate-reverse forwards;
}

/*Threesome Dots Loader*/

.threesomeDotsLoader
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

div[class*="threesomeDotsLoaderDot"]
{
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border-radius: 100%;
    margin: 7px;
}

/*User Assistance (Warnings And Notifications) Tools Style Conf*/

.warning, .passwordStrengthIndications
{
    width: 30%;
    margin: auto;
    padding: 15px 10px;
    background-color: #f0f0f0;
    outline: 1px solid #f2ce02;
    text-align: justify;
}

.warningImage, .noticeIconContainer
{
    display: inline;
    float: left;
    margin-right: 7px;
    width: 18px;
    height: 18px;
}

.warningImage img, .noticeIconContainer img
{
    border-radius: 100%;
}

.hiddenWarning
{
    display: none;
}

.visibleWarning
{
    display: block;
}

.automaticEditingField
{
    outline: solid 2px #000000;
    color: #000000;
}

.cursor 
{
    position: absolute;
    visibility: visible;
}

.roundCursor 
{
    width: 13px;
    height: 13px;
    background-color: #000000;
    border-radius: 100%;
}

.animatedRoundCursor
{
    animation : oscillates 1s ease-in 2 forwards;
}

.animatedVerticalLinearCursor
{
    animation: blinks 900ms ease infinite;
}

.roundCursorLandmark
{
    visibility: hidden;
    position: absolute;
}

.automaticEditingFieldContainer
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.outerWarning
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128,0.7);
    /*background-color: rgba(240, 240, 240, 0.7);*/
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.hideCurrentAlertButton
{
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.warningIndicationsList
{
    margin-top: 15px;
}

.warningIndicationsList p 
{
    margin-bottom: 5px;
}

.warningIndicationsList li 
{
    display: block;
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    list-style-type: none;
}

.markedchar, .markedWord, .boldText
{
    font-weight: bold;
}

.reportedProblemSolution
{
    margin-top: 15px;
}

#connexionFaillureNotification ,#retryFromDataSendingBox,#alertBoxMessageContainer
{
    padding: 30px 20px;
    width: 70%;
    margin: auto;
    background-color: #1C1C1C;
    color: #ffffff;
    position: relative;
    font-size: medium;
}

#alertBoxMessageContainer p
{
    font-size: medium;
}

.hideCurrentAlertImg, .hideCurrentAlertButton
{
    background-color: #1C1C1C;
    border: none;
}

.validEmailExample, .validPhonenumberExample, .validBirthdaySyntax, .validBirthdayExample, .userAgeLowerLimit, .userAgeUpperLimit
{
    color: #0000ff;
}

.seenDatasResendingBox,.tryToResendFormDatas
{
    display: inline-block;
    border: none;
    padding: 8px 13px;
}

.datasResendingInvitMessage, #alertBoxMessageContainer p
{
    text-align: center;
}

.seenDatasResendingBox
{
    background-color: #ffffff;
    color: #000000;
    border-radius: 10rem;
    margin-right: 5%;
}

.tryToResendFormDatas
{
    background-color: #f2ce02;
    color: #000000;
    border-radius: 10rem;
    margin-left: 5%;
}

.optionsContainer
{
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

#reminder
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#reminder .littleIconContainer 
{
    margin-right: 10px;
}

.reminderMessage
{
    color: #5a5757;
    text-align: center;
}

.unusedInteractiveBox
{
    position: relative;
    overflow: hidden;
}

.unusedInteractiveBox::before
{
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg,transparent 0%,rgba(255,69,0,0.4) 50%, transparent 100%);
    /*background: linear-gradient(45deg,transparent 0%,rgba(128, 128, 128,0.5) 50%, transparent 100%);*/
    animation: leftRightMisty 1500ms linear infinite;
}

.highlightedText
{
    overflow: hidden;
    position: relative;
}

.alertBoxInnerLink
{
    color: #4FC3F7;
}

/*Keyframes*/

@keyframes blinkingDot
{
    0%,100%
    {
        opacity: 1;
    }
    50% 
    {
        opacity: 0.2;
    }
}

@keyframes regularSpin 
{
    100% 
    {
        transform : rotate(360deg);
    }
}

@keyframes revelation 
{
    100%
    {
        transform : scale(1);
    }
}

@keyframes shines 
{
    0%,100% 
    {
        opacity : 0.2;
    }
    50% 
    {
        opacity : 1;
    }
}

@keyframes blinks 
{
    0%,100% 
    {
        opacity : 1;
    }
    50% 
    {
        opacity : 0;
    }
}

@keyframes oscillates 
{
    0%,100% 
    {
        transform: scale(1);
    }
    50% 
    {
        transform: scale(0.7);
    }
}

@keyframes headshake
{
    25%
    {
        transform: translateX(2%);
    }
    75%
    {
        transform: translateX(-2%);
    }
}

@keyframes likeAFuriuos 
{
    from,to
    {
        background-color: #f5deb3;
    }
}

@keyframes leftRightMisty 
{
    0%
    {
        transform: translateX(-100%);
    }
    100%
    {
        transform: translateX(100%);
    }
}

@keyframes leftRightMask 
{
    0%
    {
        mask-position: -100% 0%;
    }
    100%
    {
        mask-position: 200% 0%;
    }
}