:root {
    --orangeAlpha-border-color: rgba(252, 161, 3, 0.5);
  }








* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100vh;
}

body {
    font-family: OpenSans-Regular, Arial, Helvetica, sans-serif;
    color: #666;
    background-color: rgba(130, 232, 254, 1);
}

a {
    text-decoration: none;
}

.Content_Fond {
    /* background: rgb(250,235,167);
    background: linear-gradient(180deg, rgba(250,235,167,1) 0%, rgba(255,255,255,1) 6%, rgba(252,255,255,1) 36%, rgba(130,232,254,1) 100%); */
    background-color: rgba(130, 232, 254, 1);    
    /* background-image: linear-gradient(180deg, rgba(252, 255, 255, 1) 10%, rgba(130, 232, 254, 1) 100%);
    background-size: 100% 1000px; */
    background-image: linear-gradient(180deg, rgba(252, 255, 255, 1) 100px, rgba(130, 232, 254, 1) 1000px, rgba(130, 232, 254, 1) 100%);
}

.Content_Fond main {
    min-height: calc( 100vh - 160px);  
}

.imageOverlay {
    background-image: url("../images/tropic_image_vegetaux_hd.png");
    background-size: cover;
    min-height: calc( 100vh - 83px);
}

main {
    padding-top: 20px;
}

header {
    padding-top: 20px;
    background: rgb(250, 235, 167);
    background: linear-gradient(180deg, rgba(250, 235, 167, 1) 0%, rgba(252, 255, 255, 1) 60%);
}

h1 {
    color: #f3a903;
    font-size: 32px;
    font-family: OpenSans-Bold;
    background: #F38A01;
    background: linear-gradient(to top, #F38A01 0%, #FAC000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    color: #f3a903;
    font-size: 22px;
    font-family: OpenSans-Bold;
    background: #F3A903;
    background: linear-gradient(to top, #F3A903 0%, #FAC000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    color: #ffd500;
    font-size: 20px;
    font-family: OpenSans-Bold;
    background: #ffd500;
    background: linear-gradient(to top, #ffd500 0%, #FFBB0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* */
}

h4 {
    background-color: rgba(255, 100, 11, 0.082);
    color: #FF630B;
    padding: 4px 8px;
}

h5 {
    font-size: 14px;
}

select,
option,
input,
.optionsSelect>div {
    width: 100%;
    font-family: OpenSans-Regular, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #666;
    padding: 6px 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(120, 120, 120, 0.2);
}


select{
    max-width: 600px;
}


.optionsSelectSet {
    position: relative;
}

.optionsSelect {
    position: absolute;
    width: 100%;
    top:0;
}

.optionsSelect > div:first-child {
    background-image: url("../images/icone_chevron_bas_gris.png");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center right 10px;
}

.optionsSelect > div:not(:first-child) {
    display: none;
}

input[type=submit] {
    max-width: 160px;
    padding: 5px 10px;
    color: #fff;
    font-weight: bold;
    transition: all 0.5s;
    background-image: linear-gradient(0deg, rgba(243, 169, 3, 1) 0%, rgb(250, 225, 1) 100%);
    background-size: 100% 70px;
    background-position: 0 -30px;
    /*text-shadow: 0 0 0 rgba(0,0,0,0.33);*/
    border: none;
}

input[type=submit]:hover {
    /* background: linear-gradient(0deg, rgba(243,169,3,1) 0%, rgba(243,169,3,1) 100%); */
    color: #fff;
    background-position: 0 0;
    /*text-shadow: 1px 1px 6px rgba(0,0,0,0.5);*/
}

textarea {
    width: 100%;
    font-family: OpenSans-Regular, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #666;
    padding: 6px 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(120, 120, 120, 0.2);
    -webkit-box-shadow: inset 1px 1px 5px -4px #000000; 
    box-shadow: inset 1px 1px 5px -4px #000000;
    max-width: 600px;
}


.btn_orange {
    padding: 5px 10px;
    color: #fff;
    font-weight: bold;
    transition: all 0.5s;
    background-image: linear-gradient(0deg, rgba(243, 169, 3, 1) 0%, rgb(250, 225, 1) 100%);
    background-size: 100% 70px;
    background-position: 0 -30px;
    /*text-shadow: 0 0 0 rgba(0,0,0,0.33);*/
    border: none;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
}

.btn_orange:hover {
    /* background: linear-gradient(0deg, rgba(243,169,3,1) 0%, rgba(243,169,3,1) 100%); */
    color: #fff;
    background-position: 0 0;
    /*text-shadow: 1px 1px 6px rgba(0,0,0,0.5);*/
}

.container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


#tropic-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    /* cursor: pointer; */
}

#tropic_entete {
    display: grid;
    grid-template-columns: 36% auto;
}

#tropic_entete>div:first-child {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.tropic_illustration {
    display: grid;
    grid-template-columns: auto 80px;
}

#AnimBonhommes_Container {
    line-height: 0;
    display: flex;
    justify-content: center;
    position: relative;
}

#AnimBonhommes_Container img {
    max-width: 300px;
}

.tropic_illustration>div:last-child {
    line-height: 0;
    text-align: right;
}

.tropic_illustration>div:last-child img {
    max-width: 70px;
}

.tropic_ligne {
    width: 100%;
    height: 2px;
    background: rgb(255, 245, 0);
    background: linear-gradient(90deg, rgba(255, 245, 0, 1) 0%, rgba(2, 255, 255, 1) 81%, rgba(15, 197, 255, 1) 100%);
}

.tropic_ligne_1 {
    width: 100%;
    height: 2px;
    background: rgb(254, 239, 2);
    background: linear-gradient(90deg, rgba(254, 239, 2, 1) 0%, rgba(3, 254, 251, 1) 67%, rgba(29, 210, 249, 1) 100%);
}


.bonhomme {
    background-image: url("../images/bonhomme_bleu.png");
    width: 10px;
    height: 16px;
    background-size: contain;
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 1s;
}


.bonhomme.bh_orange {
    background-image: url("../images/bonhomme_orange.png");
}

.bonhomme.bh_vert {
    background-image: url("../images/bonhomme_vert.png");
}

.bonhomme.bh_jaune {
    background-image: url("../images/bonhomme_jaune.png");
}

.section_bientot .container,
.section_inscription_login .container {
    max-width: 800px;
}

.section_bientot h1,
.section_inscription_login h1 {
    text-align: center;
    margin-bottom: 50px;
}

#Inscription_Login_Container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

/*
.Block_login {
    border: 1px solid rgba(252, 161, 3, 0.5);
    background-color: rgba(255, 255, 255, 0.3);
    padding:15px 30px 30px;
    border-radius: 3px;
    font-size: 13px;
    box-shadow: 0px 2px 6px rgba(100, 100, 100, 0.2);
}*/

.Block_login h2 {
    margin-bottom: 15px;
}

.Block_login table {
    width: 100%;
}

.Block_login td {
    padding: 8px 0;
}

.Block_login td:first-child {
    width: 100px;
}

.Block_login tr:last-child td {
    padding-top: 15px;
    text-align: center;
}

.Block_login #Form_Inscription td:first-child {
    width: 80px;
}

.ln_mdp_oublie {
    text-align: right;
    font-size: 11px;
}

.ln_mdp_oublie a {
    color: #0471f9;
    border-bottom: 1px solid #0471f9;
    padding-bottom: 2px;
    transition: all 0.5;
}

.ln_mdp_oublie a:hover {
    color: #3e04f9;
    border-bottom: 1px solid #3e04f9;
    padding-bottom: 4px;
}


.orangeBox {
    border: 1px solid var(--orangeAlpha-border-color);
    background-color: rgba(255, 255, 255, 0.3);
    padding: 15px 30px 30px;
    border-radius: 3px;
    font-size: 13px;
    box-shadow: 0px 2px 6px rgba(100, 100, 100, 0.2);
    margin-left: auto;
    margin-right: auto;
}

.section_bientot .orangeBox {
    text-align: center;
    max-width: 600px;
}



input[type="radio"].radio_blue {
    display: none;
}

input[type="radio"].radio_blue+label {
    padding: 4px 12px 4px 30px;
    border: 1px solid #12506B;
    color: #12506B;
    position: relative;
    border-radius: 20px;
    opacity: 0.5;
    line-height: 15px;
}

input[type="radio"].radio_blue+label::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 10px;
    background-color: #12506B;
}

input[type="radio"].radio_blue:checked+label {
    opacity: 1;
}


.ui-widget {
    width: 100%;
    font-family: OpenSans-Regular, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #666;
    padding: 6px 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(120, 120, 120, 0.1);   
}

.ui-button:focus .ui-icon,
.ui-button .ui-icon {
    background-image: url("../images/icone_chevron_bas_gris.png");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
}

.ui-button:hover .ui-icon, 
.ui-button:focus .ui-icon {
    background-image: url("../images/icone_chevron_bas_gris.png");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
}

.ui-button:focus {
    border: 1px solid rgba(120, 120, 120, 0.4);   
    background-color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
    color: #2b2b2b;
}

.ui-state-hover, 
.ui-widget-content .ui-state-hover, 
.ui-widget-header .ui-state-hover, 
.ui-state-focus, 
.ui-widget-content .ui-state-focus, 
.ui-widget-header .ui-state-focus, 
.ui-button:hover, .ui-button:focus {
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
    color: #2b2b2b;
}

.ui-selectmenu-button.ui-button {
    width: 100%;
}

.ui-state-active, 
.ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active, 
a.ui-button:active, .ui-button:active, 
.ui-button.ui-state-active:hover {
    background-color: rgba(62, 191, 247, 0.253);
    border: none;
    color: #2b2b2b;
}

.ui-menu .ui-state-active {
    margin: 0;
}

.ui-widget-content {
    background-color: rgba(255, 255, 255, 0.9);  
}

.ui-selectmenu-menu .ui-menu {
    padding-bottom: 10px;
}





.tropic_homepage header .container,
.tropic_homepage_insc header .container,
.tropic_espace_membre header .container {
    max-width: unset;
    width: 100%;
}


.tropic_homepage #tropic_entete,
.tropic_homepage_insc #tropic_entete,
.tropic_espace_membre #tropic_entete {
    margin-left: 5%;
    margin-right: 5%;
}



.section_inscription .orangeBox {
    background-color: rgba(255, 255, 255, 0.6);
    max-width: 950px;
}


.block_inscription {
    display: grid;
    grid-template-columns: 60% auto;
    gap: 50px;
    margin-top: 40px;
    font-size: 16px;
    font-weight: bold;
}


.block_inscription > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}


.inscription_block_champs {
    display: grid;
    grid-template-columns: 35% auto;
    gap: 20px;
    margin-bottom: 40px;
}

.inscription_block_champs > div:first-child{
    display: flex;
    align-items: center;
}

.insc_localisation {
    background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 100%);
    padding: 3px 0;
}



#ajouter_photo {
    border-radius: 20px;
    background-color: rgba(180, 180, 180, 0.3);
    width: 260px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #fff;
}

#ajouter_photo:hover {
    background-color: rgba(248, 150, 4, 0.3);
    border: 1px solid #FF7C03;
}


#ajouter_photo > div {
    background: #08C0D6;
    background: linear-gradient(to top, #dafdf9 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    text-align: center;
}

.btn_photo {
    background: linear-gradient(180deg, #08C0D6 0%, #1CFFE4 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    padding: 4px 10px;
}

.block_inscription .autocomplete_set {
    margin-bottom: 0;
}

#pictureFile {
    display: none;
} 

.block_inscription + div {
    padding-top:40px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}


.btn_blue {
    background: linear-gradient(180deg, #08C0D6 0%, #1CFFE4 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    padding: 5px 15px;
    font-family: OpenSans-Bold;
    display: inline-block;
}

.insc_merci .orangeBox {
    display: flex;
    min-height: 200px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
























.form_cities_zip {
    display: grid;
    grid-template-columns: 100px auto;
    margin-top: 10px;
}

.autocomplete_set {
    position: relative;
    margin-bottom: 30px;
}

.autocomplete_set input {
    padding: 6px 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(200, 200, 200, 0.4);
}

.autocomplete_cities {
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.autocomplete_cities>ul>li {
    list-style-type: none;
    padding: 8px 16px;
    cursor: default;
}

.autocomplete_cities>ul>li:hover {
    background-color: rgb(93, 210, 208, 0.8);
}


.autocomplete_zip {}

.autocomplete_zip>div:last-child {
    text-align: center;
    font-size: 13px;
    line-height: 28px;
}

.intitule_ville {
    font-size: 11px;
    height: 20px;
}

.autocomplete_set_validate {
    display: grid;
    grid-template-columns: auto 20px;
    gap: 10px;
}

.autocomplete_validate img {
    opacity: 0.5;
}










.form_error {
    color: red;
    font-size: 11px;
    padding-left: 4px;
    display: block;
}

.autocomplete_set input.form_error_for_input,
.form_error_for_input {
    border: 1px solid red;
}






footer {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    bottom: 0;
    width: 100%;
}

.tropic_homepage main {
    padding-bottom: 70px;
    padding-top: 70px;
}

.tropic_homepage_insc main {
    padding-top: 70px;
}

@media screen and (max-width:1200px) {

    .section_inscription .container {
        padding-left: 30px;
        padding-right: 30px;
    }

}

@media screen and (max-width:1024px) {
/*
    #ajouter_photo {
        border-radius: 20px;
        background-color: rgba(180, 180, 180, 0.3);
        width: 260px;
        height: 320px;
    }*/

    .block_inscription {
        grid-template-columns: 50% auto;
        gap: 40px;
    }

}

@media screen and (max-width:768px) {

    .block_inscription {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .block_inscription > div:last-child {
        margin-top: 40px;
    }

    .form_cities_zip {
        grid-template-columns: 80px auto;
    }

    main {
        margin-left: 5%;
        margin-right: 5%;
    }
}


@media screen and (max-width:600px) {

    /* .container {
        padding-left: 10px;
        padding-right: 10px;
    }*/


    #tropic_entete {
        grid-template-columns: repeat(1, 1fr);
    }

    .tropic_illustration {
        grid-template-columns: auto 15%;
    }

    #AnimBonhommes_Container img {
        width: 100%;
    }

    .tropic_illustration>div:last-child img {
        width: 100%;
    }

    #Inscription_Login_Container {
        grid-template-columns: repeat(1, 1fr);
    }

    footer {
        position: relative;
    }


    .inscription_block_champs {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
        /* margin-bottom: 40px; */
    }

    .inscription_block_champs > div:nth-child(even){
        margin-bottom: 10px;
    }
}

@media screen and (max-width:400px) {
    .section_inscription .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width:300px) {

    .orangeBox {
        padding: 15px 15px 30px;
    }

    #ajouter_photo {
        width: 210px;
        height: 280px;
    }

    .form_cities_zip {
        grid-template-columns: 70px auto;
    }
    
}




