@font-face {
  font-family: 'Euclid Circular';
  src: url('../tipografia/Euclid Circular B Light.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, label, p, small, btn, span{
  font-family: 'Euclid Circular' !important;
}

/*
	fondo
*/

.b-body{
  background: #f8f9fa;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100% !important;
}

html, body, .portadaBody, #divBody {
    min-height: 100% !important;
    height: 100%;
}

/*
  tamaños
*/
._w20{
  width: 20%;
}

/*
	paneles
*/

.formulario{
  width: 100%;
  background: white;
  height: 350px;
  position: absolute;
  text-align: center;
  margin-top: 150px;
    height: 500px;
  border-radius: 0px;
}

.panelBlanco{
  width: 100%;
  height: 600px;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 8px 11px 20px 5px #0f1020;
    background: white;
}

.panel1{
  width: 100%;
  height: 600px;
  border-radius: 0px;
}

.panel2{
  width: 100%;; 
  height: 600px;
  border-radius: 0px 100px 255px 0px / 0px 0px 146px 0px;
  background: #266fb6;
}

#panel{
  width: 100%;
  background: black;
  position: absolute;
  text-align: center;
  margin-top: 150px;
    height: 100%;
}

/*
	botones
*/

.btn-primary{
  background: transparent !important;
  background: #266fb6 !important;
  border-color: transparent !important;
  font-weight: bold !important;
  color: white !important;
  border-radius: 10px!important;
}

/*
	input text, password
*/

.form-control{
  width:100%;
  margin-top:10px;
  margin-bottom:10px;
  padding-bottom:-80px;
  border:none;
  border-bottom:3px solid #266FB6;
  overflow:auto;
  position:relative;
  background-color: transparent;
  color: #266FB6  !important;
  font-weight: bold !important;
  font-size: 16px;
  font-family: 'Euclid Circular';
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #266FB6 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #266FB6 !important;
}

/*
	select
*/

.select {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    width: 100%;
}    

.select select {
    font-family: 'Euclid Circular';
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 8px 10px;
    outline: 0;
    border-bottom: 3px solid white;
    border-top: 0px solid transparent;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-radius: 0px;
    background: transparent;
    color: #FFFFFF;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: bold;
}

.select select::-ms-expand {
    display: none;
}
.select select:hover,
.select select:focus {
    color: #000000;
    background: #cccccc;
}
.select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.select_arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0px 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
    border-top-color: #000000;
}

.select select:disabled ~ .select_arrow {
    border-top-color: #cccccc;
}

/*
	tamaños
*/

._w100{
	width: 100%;
}

._w60{
	width: 60%;
}

._w40{
	width: 40%;
}

/*
	colores
*/

.cl1{
  color: #FFFFFF !important;
}

.cl2{
  color: #10389d !important;
}

.cl3{
  color: #D31C78;
}

.cl4{
  color: #2196f3;
}

._c2{
  background: #4996c6;
}

._cl1{
  color: white;
}

._c000{
  color: #000000;
}
/*
	letras
*/

.b{
	font-weight: bold;
}

.tituloError{
  font-size: 20px;
  -webkit-text-stroke: 1px #e58043;
  color: black;
  padding: 5px;
}

.form-control3{
  width:100%;
  /*margin-top:10px;*/
  margin-bottom:10px;
  padding-bottom:-80px;
  /*border:none;*/
  border: 2px solid #cbcbcb73 !important;
  overflow:auto;
  position:relative;
  background-color: transparent;
  color: #10389d  !important;
  font-weight: bold !important;
  font-size: 18px;
  font-family: 'Suliway';
}

.label{
  font-size: 18px;
  color: #2196f3;
}

/*
  radio checkbox
*/

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #343a40;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #8e2e69;
}

input:focus + .slider {
  box-shadow: 0 0 1px #8e2e69;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Instalación de la tipografia */
@font-face{
  font-family: "Suliway";
  src: url("../tipografias/fregan-serif/Fregan Typeface/Fregan Serif Bold.otf");
}

/* Mostrar la tipografia */
label, h1, h2, h3, h4, h5, h6, span{
  font-family: "Suliway";
}

.c{
  cursor:pointer;
}

/* Responsive Movil */
@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
	/*
		paneles
	*/
	.panel1{
		height: 700px;
	}

    .panel2{
        width: 100%;
        background: transparent;
        background: linear-gradient(195deg, white 0%, white 50%, white 100%);
        height: 125px;
        border-radius: 0px 7px 35px 0px / 0px 2px 16px 0px;
    }

    .panelBlanco{
        box-shadow: 0px 0px 0px 0px black;
    }

    /*
		input text, password
    */
    input[type='text'], input[type='password'], .select select, input[type='email'], input[type='submit']{
		width:100%;
		height: 70px;
		font-size: 25px;
	}

    /*
		tamaños
    */

    ._w40{
    	width: 30%;
    }

  .modal-lg {
    max-width: 90% !important;
  }

  label, h6, button, span, li, ul{
    font-size: 28px !important;
  }

  h4, .lead, .jumbotron, p, .ltr_x{
    font-size: 29px !important;
  }

  .dropdown-header, .ajs-header{
    font-size: 32px !important;
  }

  .alertify .ajs-dialog{
    max-width: 900px;
  }
}
