/* Login MENU*/

/* @media screen and (min-width: 1366px){
    #login{
        top: 150px !important;
    }
    .formholder {
        width: 500px !important;
    }
    .formholder input[type="text"], .formholder input[type="password"] {           
        font-size: 20px !important;           
        padding: 15px 5px !important;
        margin: 15px 0 !important;
    }
   
    .formholder input[type="submit"] {           
        font-size: 20px !important;           
    }

    #login label{
        font-size: 20px;
    }
} */

#login{
    position: fixed;
    right: 10px;
    top: 90px;
    background:transparent;
    z-index: 1001;
    display: none;
    width: 30%;
}

@media screen and (max-width: 480px) {
    #login{
        width: 80%;
    } 
}

#loginsubmit{
    /* font-family: "Futura-Light" !important; */
    /* background: #c88a3d; */
    padding: 10px;
    font-size: 20px;
    display: block;
    width: 97%;
    border: none;
    /* color: #fff; */
    border-radius: 5px;
    text-align: center;
}  

#loginsubmit:hover{
    cursor: pointer;
}

fieldset {
    border: none;
}

.randompad {
  padding: 10px;
}

.loading{
    height: 100%;
    width: 100%;
    /* padding-left: 50px; */
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../img/loader.gif);
    background-size: contain;
    display: none;
}

@media screen and (min-width: 1366px){
    .loading{
        background-position-x: 120px;
    }
}

@media screen and (max-width: 1366px){
    .loading{
        background-position-x: 80px;
    }
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 15px solid #ECF0F1;
    left: 35%;
    position: absolute;
    top: -10px;
}

.formholder {
    background: #ecf0f1;
    /* width: 350px; */
    border-radius: 5px;
    padding-top: 5px;
}


.formholder ::-webkit-input-placeholder { /* Chrome */
    color: rgba(167,169,172,1);
    font-size: 9pt;
}
.formholder :-ms-input-placeholder { /* IE 10+ */
    color: rgba(167,169,172,1);
    font-size: 9pt;
}
.formholder ::-moz-placeholder { /* Firefox 19+ */
    color: rgba(167,169,172,1);
    font-size: 9pt;
    opacity: 1;
}
.formholder :-moz-placeholder { /* Firefox 4 - 18 */
    color: rgba(167,169,172,1);
    font-size: 9pt;
    opacity: 1;
}

.formholder input[type="text"], .formholder input[type="password"] {
    /* font-family: "Futura-Light" !important; */
    padding: 5px 5px;
    margin: 5px 0;
    width: 96%;
    display: block;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    background: #fff;
}
.formholder input[type="text"]:focus, .formholder input[type="password"]:focus {
    outline: none;
    box-shadow: 0 0 1px 1px #6DC3EA;
}
.formholder input[type="submit"] {
    /* font-family: "Futura-Light" !important; */
    /* background: #c88a3d; */
    padding: 10px;
    font-size: 20px;
    display: block;
    width: 96%;
    border: none;
    color: #fff;
    border-radius: 5px;
}
.formholder input[type="submit"]:hover {
    /* background: #c88a3d; */
    cursor: pointer;
}
#message{
    font-family: "Futura-Light" !important;
    color: red;
    font-size: 18px;

}
#hiddenform{
    display: none;
}

.navbar-menu-lang a:hover{
    cursor: pointer;
}
/* END Login MENU */