/*

Button CSS
Version: 2.0
Author: kantbtrue
Author URI: https://twitter.com/kantbtrue

*/

.btn-full {
    width: 100%;
}

.btn {
    min-width: 130px;
    min-height: 32px;
    font-weight: 500;
    letter-spacing: 0.035em;
    cursor: pointer;
}

.btn:active,
.btn:focus {
    opacity: 0.55;
}

/* Button Size */

.btn-sm {
    padding: 5px 15px;
    font-size: 0.75rem;
    line-height: 28px;
    letter-spacing: 0.075em;
}

.btn-md {
    padding: 10px 30px;
    font-size: 0.8125rem;
    line-height: 26px;
    letter-spacing: 0.065em;
}

.btn-lg {
    padding: 18px 55px;
    font-size: 1.125rem;
    line-height: 34px;
}

/* Roundeded */

.btn-rounded,
.btn-lg.btn-rounded {
    border-radius: 50px;
}

.btn-sm.btn-rounded {
    border-radius: 25px;
}

/* Extended */

.btn-primary,
.btn-secondary {
    border: 2px solid transparent;
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-white,
.btn-outline-black {
    border-width: 2px;
}

/* Shadow */

.btn-shadow {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}


.uploadFile {
	display: flex;
	align-items: center;
	width: 100%;
	cursor: pointer;
	text-align: center;
	
}

.uploadFile::-webkit-file-upload-button {
  visibility: hidden;
}

.uploadFile::before {
  content: 'ADJUNTAR SOLICITUD';
  display: flex;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
  border: 2px solid #29B6F6;
  padding: 10px 30px;
  outline: none;
  -webkit-user-select: none;
  border-radius: 50px;
  color: #29B6F6;
  font-weight: 500;
}

@media (max-width: 768px) {
	.uploadFile::before{
		width: 70%;
	}
}


.uploadFile {
	font-size: 14px;
}

.uploadFile:hover::before {
  background: #29B6F6;
  color: white;
  transition: all .1s;
}
.uploadFile:active::before {
  
}