/* Import font */
@font-face {
    font-family: 'DINCond-Bold';
    src: url('../fonts/DINCond-Bold.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/Bebas_Neue/BebasNeue_Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'AstroSoft';
    src: url('../fonts/astrosoft_bold/New_Astro_Soft_Bold.otf') format('opentype');
}

body{
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(93,43,141,1) 10%, rgba(93,43,141,1) 90%, rgba(0,0,0,1) 100%)!important; 
    font-family: 'AstroSoft', sans-serif;
    font-weight: bold;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.top-right-element{
    width: 9rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 200;
}

.bottom-right-element{
    width: 9rem;
    position:fixed;
    bottom: 0;
    right: 0;
    z-index: 200;
}

.bottom-left-element{
    width: 9rem;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 200;
}

.left-palm-element{
    width: 9rem;
    position: absolute;
    top: 3rem;
    left: 0;
    z-index: 200;
}
.right-palm-element,
.right-waves-element,
.left-waves-element{
    display: none;
}
@media screen and (min-width: 768px) {
    .top-right-element,
    .bottom-right-element,
    .bottom-left-element,
    .left-palm-element,
    .right-palm-element{
        width: 15rem;
    }
    
    .left-palm-element{
        width: 15rem;
        top: 8rem;
    }
    .right-palm-element{
        width: 15rem;
        position: absolute;
        bottom: 8rem;
        right: -40px;
        z-index: 200;
    }
    .right-waves-element{
        width: 15rem;
        position: absolute;
        bottom: 20rem;
        left: 2rem;
        z-index: 200;
    }
    .left-waves-element{
        width: 15rem;
        position: absolute;
        top: 17rem;
        right: 40px;
        z-index: 200;
    }
    .right-palm-element,
    .right-waves-element,
    .left-waves-element{
        display: block;
    }
}

.fixed-element img{
    max-width: 100%;
}

/* Container */
.main-container{
    padding-top: 4rem;
}

.logo-container{
    width: 17rem;
    height: 13rem;
    position: relative;
    margin: 0 auto;
}

.logo-container img.logo{
    width: 15rem;
    z-index: 750;
    position: absolute;
}
.logo-container img.outlined-logo{
    width: 17rem;
    top: -1rem;
    z-index: 699;
    position: absolute;
}

.title-container{
    margin: 1rem 0;
    font-family: 'AstroSoft', sans-serif!important;
}
.title-container h1 {
    font-size: 4rem; 
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    color: #ff601e; 
    text-shadow:
        2px 2px 0 black,
        3px 3px 0 #ffeb3d,
        4px 4px 0 #ffeb3d;
    z-index: 700;
    position: relative;
}

.title-container h3{
    font-size: 2rem; 
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    color: #ffeb3d; 
    z-index: 700;
    position: relative;
    margin-bottom: 0;
}
.title-container h4{
    font-family: 'BebasNeue', sans-serif;
    font-size: 1.75rem; 
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    color: #ffffff; 
    z-index: 600;
    position: relative;
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .title-container h1 {
        font-size: 5rem; 
    }
    .title-container h3{
        font-size: 4rem; 
    }
    
}

.prizes-container{
    margin: 2rem 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.prizes-container img{
    width: 100%;
    margin: 0 auto;
    display: block;
}
.prizes-container p{
    font-size: 2rem;
    font-weight: 900;
    color: #ffeb3d; 
    text-align: center;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .prizes-container p{
        font-size: 3rem;
        font-weight: 900;
        color: #ffeb3d; 
        text-align: center;
        line-height: 1;
    }
}

/* Description */
.description-container{
    font-family: 'BebasNeue', sans-serif;
    margin: 2rem 0;
}

.description-container .description-text{
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .description-container .description-text{
        font-size: 2rem;
    }
}

/* Form */
.form-container{
    margin: .75rem;
}

@media screen and (min-width: 768px) {
    .form-container{
        margin: 0;
    }
}

.form-container .background-opacity{
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    border-radius: 1rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 1rem
}

.form-container input[type="text"]{
    border: 0;
    border-bottom-width: 0px;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid #f27819 !important;
    background-color: transparent;
    color: #fff;
}
.form-container input[type="text"]:focus, .form-container label.file-upload:focus, .form-container select:focus {
    background-color: transparent !important;
    outline:none !important;
}

.form-container .favourite-picker{
    display: flex;
    justify-content: center;
}

.form-container .favourite-picker .name-gasolina-label{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container .favourite-picker img{
    width: 5rem;
    max-width: 100%;
    margin: 0 auto;
    cursor: pointer;
}

.form-container .favourite-picker img:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.form-container .favourite-picker .selected label{
    color: #f27819;
}




.form-container .receipt-edit{
    border-bottom: 1px solid #f27819;
}

.form-container .rules-click a{
    color: #f27819;

}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.name-gasolina .selected{

    transform: scale(1.3);
    transition: all 0.3s ease-in-out;
}

.form-container a.form__btn, .modal-body button{
    background-color: #f27819;
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 1rem;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.form-container a.form__btn:hover{
    background-color: #ff601e;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
.form-container a.form__btn:active{
    transform: scale(0.95);
    transition: all 0.3s ease-in-out;
}