/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

html, body, .main{
    width: 100%;
    /*height: 100%;*/
    margin:0;
}

header{
    position: fixed;
    width: 100%;
    height: 160px;
    top:0;
    z-index: 10;
    /*background-color: #000000;*/
}
.main{
    position: relative;
    display: inline-block;
}
.logo img{
    position: absolute;
    margin: 40px;
	width: 300px;
}

.topMenu{
  display: table;
  position: absolute;
  width: 480px;
  height: 80px;
  top: 0;
  right: 0;x
  float: right;
  font-family: 'Lato';
  font-weight: 100;
  color: #fff;
  font-size: 0.8em;
}

.linebottom{
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #666;
}

#team .fotoTeam{
  border-radius: 50%;
  background-position: center center;
  background-size: 300px 300px;
  background-repeat: no-repeat;
  margin:0 auto;
  width: 300px;
  height: 300px;
}
#team .fotoTeam.tarcisio{
  background: url(../images/team/tarcisio.jpg);

}
#team .fotoTeam.joao{
  background: url(../images/team/joao.jpg);
}
#team .fotoTeam.rodrigo{
  background: url(../images/team/rodrigo.jpg);
}
#team p{
  padding: 0 30px;
}

.fill {
    min-height: 100%;
    height: 100%;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.video-background video {
  min-height: 100%;
  min-width: 100%;
}

button{
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  float: right;
  margin: 0;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  color: #fff;
}

.rectangle{
    width: 200px;
    height: 80px;
	font-size: 12px;
}
.square{
    width: 80px;
    height: 80px;
}
#facebookConnect{
    background-color: #4B6BA2;
    width: 327px;
    height: 80px;
}
#googleConnect{
    margin-top: 10px;
    background-color: #cf4334;
    width: 327px;
    height: 80px;
}
#login{
    background-color: #606060;
}
#corporateLogin{
    background-color: #4a4a4a;
	position: fixed;
	z-index: 99;
	top: 0px;
	right: 80px;
}

.main_container {
	width: 80%;
    margin: 60px auto;
}

#menu{
    background-color: #9B9B9B;
}

.c-hamburger {
  /*display: block;*/
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 80px;
  height: 80px;
  font-size: 0;
  text-indent: -9999px;
}

.c-hamburger:focus {
  outline: none;
}


.c-hamburger span {
  display: block;
  position: absolute;
  top: 39px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: white;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
}

.c-hamburger span::before {
  top: -14px;
}

.c-hamburger span::after {
  bottom: -14px;
}

.c-hamburger--htx {
  background-color: #9B9B9B;
}

.c-hamburger--htx span {
  transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: #B72330;
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}




nav{
  position: fixed;
  height: 100%;
  width: 480px;
  background-color: #B72330;
  /*right: -480px;*/
  top:0;
  z-index: 9;
  display: table;
  /*box-shadow: -2px 0 5px #666;*/
}

nav.close{right: -500px;transition: right 0.5s;}
nav.open{right: -200px;transition: right 0.5s;}


nav ul{
  display: table-cell;
  /*text-align: center;*/
  vertical-align: middle;
  color: #fff;
}
nav ul li{
  font-size: 1em;
  font-family: 'lato';
  font-weight: 300;
  list-style: none;
}
nav ul li.active, nav ul li .active{
  font-size: 1.2em;
  font-family: 'lato';
  font-weight: 700;
  list-style: none;
  pointer-events: none;
  cursor: default;
}
nav ul li a, nav ul li a:hover{
  color: #fff! important;
}
.baseImg{
    width: 100%;
    height: 950px;
    position: relative;
    padding:0;
}
.top{
    background-image: url(../images/bg/bgBImage.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}
.base{
    background-image: url(../images/bg/bgWImage01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
	background-position:left bottom;
    margin-top: 60px;
}
.backTeam{
   background-image: url(../images/bg/bgBImage02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
	background-position:right bottom;
}
.baseCorp{
  background-image: url(../images/bg/bgBImage03.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
	background-position:right bottom;
}

.info{
    width: 65%;
    position: relative;
    float: right;
}
.info .box{
    width: calc(50% - 10px);
    margin:5px;
    float: left;
}
.info img{
    width: 75%;
    margin: 0 auto;
}


.backLeft{
    z-index: 1;
    width: 70%;
    height: 650px;
    /*background-color: #D8D8D8;
    -webkit-clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);*/
}
.backRight{
    position: absolute;
    right: 0;
    z-index: 1;
    width: 70%;
    height: 650px;
    /*background-color: #8C8C8C;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);*/
}
.titleTop{
    position: absolute;
    top:25%;
    left: 5%;
    width: 50%;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Lato';
    font-weight: 100;
    color: #8C8C8C;
}
.titleTop h1, .titleTop h2, .titleTop h3{
  color: #fff;
}
b{
  font-weight: 400;
}
h1{
    font-size: 3em;
    line-height: 1em;
}
h2{
    font-size: 2.7em;
    line-height: 1em;

}
h3{
    font-size: 2em;
    line-height: 1em;
}
p{
    font-family: 'Lato';
    font-weight: 300;
    font-size: 1em;
    line-height: 1.2em;
    color: #8C8C8C;
}
a, a:hover{
    text-decoration: none;
    color: #8C8C8C;
}
.space{
    margin-top: 2.5em;
}
.title{
    text-align: center;
}
.centerText{
    text-align: center;
}
.whiteText{
    color: #ffffff;
}

#corporate.grid_12{
  margin: 0 auto;
}
#corporate .form{
  width: 100%;
  margin: 0 auto;
  display: inline-block;
  float: left;
}
#corporate .form.positionLeft{
  margin: 0 0 0 1%;
}
#corporate .form.positionRight{
  border-left: 1px solid #666;
}
#corporate .form .grid_12{
  margin:0! important;
}



/*FORM*/
.formTop{
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  background-color: #4a4a4a;
  z-index: 8;
  padding-top: 80px;
  text-align: center;
}

.formTop.close{
  top: -500px;transition: top 0.5s;
}
.formTop.open{
  top: 0px;transition: top 0.5s;
}


#corporate form, #corporate ul, #corporate li, #corporate input, #corporate label,
.formTop form, .formTop ul, .formTop li, .formTop input, .formTop label
{
  box-sizing: border-box;
}

#corporate h1, #corporate p,
.formTop h1, .formTop p
{
  color: #333;
  font-family: 'lato';
  font-size: 1.6em;
  margin: 0.5em 0 1em 0;
  text-align: center;
}

#corporate p,.formTop p  {
  font-size: 80%;
}

#corporate label, #corporate input,
.formTop label, .formTop input {
  display: block;
}

#corporate ul,
.formTop ul {
  background-color: #fffdfa;
  border: 1px solid #666666;
  list-style-type: none;
  margin: 3em auto;
  padding: 0;
  max-width: 350px;
}

#corporate li,
.formTop li {
  border-bottom: 1px solid #c8c8c8;
  margin-top: -1px;
  position: relative;
}

#corporate label,
.formTop label {
  font-family: 'lato';
  font-size: 70%;
  color: #aeaeae;
  letter-spacing: 0.03em;
  position: absolute;
  top: 10px;
  left: 10px;
  text-transform: uppercase;
}
#corporate .active label, #corporate input:focus + label,
.formTop .active label, .formTop input:focus + label{
  color: #0059a6;
  font-weight: bold;
  letter-spacing: -0.01em;
}

#corporate input, #corporate input:focus,
.formTop input, .formTop input:focus
 {
  background-color: rgba(0 , 0 , 0 , 0.5);
  border: none;
  color: #626262;
  font-size: 18px;
  margin: 9px 0 7px 0;
  margin: 0;
  padding: 2em 10px 2px 10px;
  outline: none;
  width: 100%;
}

#corporate input:focus,
.formTop input:focus {
  color: #000;
  background-color: #eeeeee;
  box-shadow: 0px 3px 4px -2px rgba(0, 0, 115, 0.25) inset;
}

#corporate label, #corporate input,
.formTop label, .formTop input {
  transition: color 0.4s ease, background-color 0.1s ease-in-out;
}
footer{
    position: relative;
    background-color: #252525;
    width: 100%;
    display: inline-block;
    margin: 0 0 0 0;
}

#corp_body_img
{
	height: auto;
    width: 65vw;
}










/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

@media screen and (max-width: 950px)
{
	#team .fotoTeam
	{
		background-size: 200px 200px !important;
		background-repeat: no-repeat;
		width: 200px;
		height: 200px;
	}

	.titleTop, .whiteText
	{
		font-size: 1.8vw;
	}

	.logo img
	{
		margin: 20px;
		width: 200px;
	}
}


.loginHome{
  width: 328px;
  height: 376px;
}
.loginFBbutton{
	float:none;
}

.divider {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 6px;
  color: white;
  margin-left: auto;
  margin-right: auto;
}

.divider fieldset.title {
  vertical-align: middle;
  border-top: 1px solid #aaa;
  border-bottom: none;
  border-left: none;
  border-right: none;
  display: block;
}

fieldset.title legend {
  padding: 5px 10px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
  width: auto !important;
  border: 0px !important;
  color: #FFF !important;
}
/*fieldset.title {
    border-top: 1px solid #aaa;
    border-bottom: none;
    border-left: none;
    border-right: none;
    display: block;
    text-align: center;
}
fieldset.title legend {
  padding: 5px 10px;
}
legend{
  color: white
}

.loginFBbutton{
    float: none;
}

.divider {
    width:100%;
    text-align:center;
    margin-top:10px;
    margin-bottom: 6px;
    color: white;

}

.divider hr {
    margin-left:auto;
    margin-right:auto;
    width:30%;
    margin-top: 8px;
    display: inline;
    height: auto;
    border: 0;
    border-top: 1px solid #ccc;
    padding: 0;
}

.left_hr {
    float:left;
}

.right_hr {
    float:right;
}*/

/*input Login and Register*/
.inputGeneral{
  position:relative;
}
.inputGeneral input, select{
  font-family: Lato;
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  padding-top: 7px;
}
.inputLogReg input{
  width: 317px;
  height: 44px;
  background-color: rgba(0,0,0,0.5);
  border: 0;
  margin-bottom: 3px;
  margin-left: 1px;
  padding-left: 10px;
  color: white;
}
.inputLogRegError input {
  width: 317px;
  height: 44px;
  background-color: rgba(0,0,0,0.5);
  border: 0;
  margin-bottom: 3px;
  margin-left: 1px;
  padding-left: 10px;
  color: white;
  border:1px solid red;
}
.smallTextInput {
  position:absolute;
  top:5px;
  left:8px;
  font-family: Lato;
  font-size: 9px;
  font-weight: 300;
  line-height: 11px;
  color: #FFFFFF;
  pointer-events:none;
  background:none !important;
}
.inputLogRegError input:focus {
  box-shadow: 0 0 10px #b52020;
  outline-color: red;
}


/*select country/region*/
.selectLogReg select{
  width: calc( 100% - 1px );
  height: 50px;
  background-color: rgba(0,0,0,0.5);
  border: 0;
  margin-bottom: 3px;
  margin-left: 1px;
  padding-left: 10px;
  color: white;
  padding-top: 12px;
}

.selectLogRegError select {
  width: calc( 100% - 1px );
  height: 50px;
  background-color: rgba(0,0,0,0.5);
  border: 0;
  margin-bottom: 3px;
  margin-left: 1px;
  padding-left: 10px;
  color: white;
  border:1px solid red;
  padding-top: 12px;
}

.smallTextSelect {
  position:absolute;
  top:5px;
  left:8px;
  font-family: Lato;
  font-size: 9px;
  font-weight: 300;
  line-height: 11px;
  color: #FFFFFF;
  pointer-events:none;
  background:none !important;
}
.selectLogRegError select:focus {
  box-shadow: 0 0 10px #b52020;
  outline-color: red;
}


/*date selector*/
.dateSelector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.dateSelector input::-webkit-clear-button {
  transform: translateX(-25%);
}
.dateSelector input::-webkit-calendar-picker-indicator {
  background: url("/images/calendar_white.png") no-repeat;
	background-size: 100% 100%;
  transform: translateX(-20%);
	color: rgba(0, 0, 0, 0);
	opacity: 1;
}

.smallTextInputDate {
  position:absolute;
  top:15px;
  left:8px;
  font-family: Lato;
  font-size: 9px;
  font-weight: 300;
  line-height: 11px;
  color: #FFFFFF;
  pointer-events:none;
  background:none !important;
}


.cont_regist{
  width: 327px;
  height: 44px;
  background-color: #5067A7;
  font-family: Lato;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: 17px;
  color: #FFFFFF;
}

.loginSubmit{
  width: 327px;
  height: 44px;
  background-color: #4B6BA2;
}

.login_form_forgot{
  margin-top: 20px;
}

.login_form_links a{
  font-family: Lato;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: 17px;
  color: #FFFFFF;
}


/*---STEPS--REGISTER--CONTROLS---*/
.registStep{
  display: table;
  margin: 0 auto;
}
.stepOneRegister{
  background-image: url('../images/stepOne.png');
  background-size: contain;
  margin-right: 10px;
  cursor:pointer;
  float: left;
  width: 46px;
  height: 46px;
}
.stepOneDoneRegister{
  background-image: url('../images/stepOneDone.png');
  background-size: contain;
  margin-right: 10px;
  cursor:pointer;
  float: left;
  width: 46px;
  height: 46px;
}
.stepTwoBubbleRegister{
  background-image: url('../images/stepTwoBubble.png');
  background-size: contain;
  cursor:pointer;
  width: 46px;
  height: 46px;
  pointer-events:none;
  float: right;

}
.stepTwoRegister{
  background-image: url('../images/stepTwo.png');
  background-size: contain;
  cursor:pointer;
  width: 46px;
  height: 46px;
  float: right;

}


.date-bgcolor{
  background-color: #fff !important;
  cursor: auto !important;
}

.loadSpace{
  margin-right: 4px;

}

.title_intro{
  width:500px;
  display: table;
  margin: 0 auto;
  text-align: center;

}
.title_reset{
  margin-bottom: 30px;
}
.regist{
    width:200px;
    display: table;
    margin: 0 auto;

}

.title_done_regist{
  width:100%;
  display: table;
  margin: 0 auto;
  font-weight: 300;
  margin-top: 100px;
  text-align: center;

}

.done_regist{
    width:200px;
    display: table;
    margin: 0 auto;
    margin-top: 60px;
}
.done_regist button{
  width: 400px;
  height: 60px;
  background-color: #5067A7;
  font-family: Lato;
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  line-height: 17px;
  color: #FFFFFF;
}

/*gender selection*/
.radioImgOn{
  content: url("/images/radioOn.png");
  width: 36px;
  height: 36px;
}
.radioImgOff{
  content: url("/images/radioOff.png");
  width: 36px;
  height: 36px;
}
.imageGender{
  width: 22px;
  height: 21px;
}
.textGender{
  font-family: Lato;
  font-size: 9px;
  font-weight: 300;
  line-height: 11px;
  color: #FFFFFF;
  margin-right: 10px;
  padding-left: 8px;
}
.gendrButton{
  display: block;
  text-decoration: none;
  float:left;
  margin-bottom: 10px;
}
.genderSelect{
  margin-left: 13px;
}


/*search region*/
.inputGeneral{
  position:relative;
}


.registCity .typeahead{
  width: 317px;
  height: 44px;
  background-color: rgba(0,0,0,0.5);
  border: 0;
  margin-bottom: 3px;
  margin-left: 1px;
  padding-left: 10px;
  color: white;
  font-family: Lato;
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  padding-top: 7px;
}
.registCity .tt-query {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}
.registCity .tt-dropdown-menu {
    background-color: rgba(0,0,0,0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 1px;
    padding: 8px 0;
    width: 300px;
}
.registCity .tt-suggestion {
    font-size: 10px;
    line-height: 16px;
    padding: 2px 2px;
}
.registCity .tt-suggestion.tt-cursor {
    background-color: #0097CF;
    color: #FFFFFF;
}
.registCity .tt-dataset-citiesds .tt-suggestion p {
  	font-family: 'Lato', Helvetica, sans-serif;
    margin-left: 30px;
    color: white;
}


/*validation*/
.errorMSG{
  color:#ff0000;
  margin-bottom: 5px;
  margin-left: 1px;
  font-family: Lato;
  font-size: 12px;
  font-weight: 300;
}













.userAvatar{
  margin-bottom: 15px;
}
.imgAvatar, .uploadAvatar {
    display: inline-block;
    vertical-align: middle
}

.imgAvatar{
  width:80px;
  height:80px;
  text-align:center;
  border-radius:50%;
  overflow:hidden;
}

.imgAvatar img{
  min-width:80px;
  max-width:none;
  height:80px;
  margin:0 -100%;
}

.uploadAvatar input[type="file"]{
  display: none;
}


.labelAvatar{
    cursor: pointer;
    background-color: #5067A7;
    color: #FFFFFF;
    width: 212px;
    height: 44px;
    font-family: Lato;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}








/* modal css for  */


.modal * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.modal *:before,
.modal *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}



/* upload pictures */

.modal .buttons{
  margin-bottom: 50px;
}

.modal div.buttons button.btn {
    float: left;
    margin-right: 10px;
    background-color: lightseagreen;
    border: 0;
    color: white;
    padding: 8px 20px;
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all 1s;
	margin-bottom: 20px;
}
.modal div.buttons button.btn:hover {
    background-color: black;
}
.modal div.droppable {
    background-color: #eee;
    height: 200px;
    width: 100%;
    position: relative;
    padding: 50px;
	margin-bottom: 20px;
}
.modal div.droppable:after {
    content: "Drop your files here";
    font-family: "Times New Roman", serif;
    color: darkgray;
    font-size: 14px;
    font-style: italic;
    position: absolute;
    top: 20px;
    left: 20px;
}
.modal div.droppable div.file {
    width: 100px;
    height: 100px;
    background-color: white;
    float: left;
    position: relative;
    margin: 0 20px 20px 0;
    z-index: 20001;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    transition: all .45s;
    -o-transition: all .45s;
    -moz-transition: all .45s;
    -webkit-transition: all .45s;
}
.modal div.droppable div.file:nth-of-type(5n+5) {
    margin-right: 0;
}
.modal div.droppable div.file:after {
    content: "";
    position: absolute;
    width: 100px;
    box-sizing: border-box;
    z-index: 20001;
    height: 100px;
    border: 3px solid rgba(0, 0, 0, .25);
    left: 0;
    top: 0;
}
.modal div.droppable div.file img {
    width: 100px;
    height: 100px;
}
.modal div.droppable div.file a.remove {
    position: absolute;
    background-color: rgba(0, 0, 0, .45);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    line-height: 20px;
    color: white;
    font-family: "Lato", sans-serif;
    padding: 0 6px;
    font-weight: 100;
    z-index: 30001;
    cursor: pointer;
}
.modal div.droppable input.files {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: "Times New Roman", serif;
    font-style: italic;
    color: darkgray;
}
.disabledCursor
{
	cursor: not-allowed !important;
}


.modal div.droppable div.error {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20005;
    background-color: crimson;
    color: white;
    padding: 5px 10px;
    font-family: "Lato", sans-serif;
	font-size: 12px;
    text-transform: uppercase;
}
.modal div.droppable:hover div.file:hover {
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
div#rgpd {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 900;
    height: 100%;
    width: 100%;
    top: 0px;
}
p.rgpdtext {
	padding: 21px 0;
    color: #8c8c8c;
    font-size: 1.7em;
    font-weight: bolder;
    margin-top: 12em;
}
button.btn.btn-danger.marginBTN.rgpdBtn {
    margin-top: -6px;
    margin-left: 25px;
    float: inherit;
}
