* 
{
  box-sizing: border-box;
}
.d-none
{
    display: none !important;
}
#mask
{
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    z-index: 100;
    background-color: rgb(0 0 0 / 60%);

    width: 100vw;
    height: 100vh;

    cursor: progress;
}
.loading
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px
}
.load
{
    width: 200px;
    height: 200px;
    border: 25px solid;
    border-color: #5fb355 #e88625;
    border-radius: 50%;
    animation: rotation .5s infinite;
}
@keyframes rotation 
{
    0% { transform: rotate(0deg); }
   25% { transform: rotate(90deg); }
   50% { transform: rotate(180deg); }
   75% { transform: rotate(270deg); }
  100% { transform: rotate(360deg); }
}

.row, #feedback-message
{
    display: flex;
}
.row
{
    align-items: center;
    justify-content: center;
    width: 100%;
}
#feedback-message
{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
#feedback-message-header
{
    padding: 20px 10px;
    margin-bottom: 20px;

    font-size: 22px;
    background-color: #ffffff;
    box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%);
    border-radius: 10px;
}
#feedback-message-content
{
    padding: 10px;

    font-size: 20px;
    background-color: #ffffff;
    box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%);
    border-radius: 10px;
}
form 
{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}
.input-line
{
    padding-bottom: 20px;
    width: 100%;
}
.input-label
{
    display: flex;
}
.label
{
    padding: 10px;
    font-size: 18px;
    color: black;
}
#remaining-qtt
{
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #e88625;
    box-shadow: inset 0px 0px 5px 0px rgb(0 0 0 / 30%);

    cursor: default;
    user-select: none;
}
#user-note
{
    height: 100px;
    max-height:110px;
}
.send-btn
{
    width: 100%;
    margin-top: 50px;
    padding: 10px 25px;
    color: #e88625!important;
    border-width: 5px!important;
    border-color: #5fb355;
    border-radius: 10px;
    font-size: 22px;
    font-family: 'Georgia',Georgia,"Times New Roman",serif!important;
    font-weight: 600!important;
    text-transform: uppercase!important;

    transition: all 300ms ease 0ms;
    box-shadow: inset 0px 0px 18px 0px rgb(0 0 0 / 30%);

    cursor: pointer;
}
.send-btn:hover
{
    padding-right: 30px;
    padding-left: 30px;
    border: 2px solid transparent;
    background-color: rgba(255,255,255,.2);
}
.billets
{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.billets-header
{
    font-style: "italic";
}
.billet
{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.billet-header
{
    width: 100%;
    margin-top: 20px;
    padding: 10px 25px;
}
.billet-body
{
    width: 100%;
}







.radio-list-label, .radio-label
{
    font-size: 17px;
    color: #5fb355!important;
    line-height: 1.7em;
    
    display: inline-block;
    position: relative;
    min-height: 1.7em;
    vertical-align: middle;
    cursor: pointer;
}
.radio-list-label
{
    display: block;
    width: 96%;
    margin-bottom: .5em;
    font-weight: 600;
}
.input, .captcha
{
    width: 100%;
    margin: 10px auto;
    padding: 20px;
    border-width: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    /*color: #999;*/
    font-weight: bold;
    background-color: #eee;
    font-size: 16px;
    -webkit-appearance: none;
    box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.3);
}
.captcha
{
    width: 30%;
    max-width: 80px;
    margin-top: 20px;
    margin-right:5px;
}
.captcha-line
{
    text-align: right;
}


/*
@media  only screen and (max-width: 800px) 
{
    .confirm-btn, .back-btn
    {
        display: block;
        margin: 10px auto;
        width: 90%;
    }
    .back-btn
    {
        padding: 20px 0;
    }
    .captcha
    {
        max-width: 100px;
    }
    #currency-line::after, #amount-cfa-line::after, #amount-euro-usd-line::after, #payment-line::after
    {
        right: 15px;
    }
    #ssl-container a, #ssl-container a img
    {
        width: 99%;
        display:block;
    }
}
@media  only screen and (min-width: 801px) 
{
    #ssl-container a, #ssl-container a img
    {
        width: 96%;
        display:inline-block;
    }
}

@media  only screen and (min-width: 960px) 
{
    #currency-line::after, #amount-cfa-line::after, #amount-euro-usd-line::after, #payment-line::after
    {
        right: 35px;
    }
}
*/
