:root {
  --primary-color: #17a2b8;
  --dark-color: #343a40;
  --light-color: #f4f4f4;
  --danger-color: #dc3545;
  --success-color: #28a745;
}

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

body {
  font-family: 'Raleway', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  background-color: #fff;
  color: #000104 !important;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

ul {
  list-style: none;
}
label {
	display: block !important;
	font-family: 'Raleway', sans-serif !important;
	font-size: 1.5rem !important;
/* 	color: #FFFFFF !important; */
}

h1, h2, h3, h4, h5 {
	font-weight: normal !important;
	margin: 0 !important;
}
p {
	font-size: 14px;
}

/*
img {
  width: 100%;
}
*/

/* Utilities */

.container {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0 2rem;
  margin-top: 6rem;
  margin-bottom: 3rem;
}

/* Text Styles*/

.x-large {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.large {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.text-dark {
  color: var(--dark-color);
}

/* Padding */

.p {
  padding: 0.5rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.py {
  padding: 0.5rem 0;
}

.py-1 {
  padding: 1rem 0;
}

.py-2 {
  padding: 2rem 0;
}

.py-3 {
  padding: 3rem 0;
}

/* Margin */

.m {
  margin: 0.5rem;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.my {
  margin: 0.5rem 0;
}

.my-1 {
  margin: 1rem 0;
}

.my-2 {
  margin: 2rem 0;
}

.my-3 {
  margin: 3rem 0;
}

.btn {
  display: inline-block;
  background: var(--light-color);
  color: #333;
  padding: 0.4rem 1.3rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: opacity 0.2s ease-in;
  outline: none;
}

.badge {
  font-size: 0.8rem;
  padding: 0.1rem;
  text-align: center;
  margin: 0.3rem;
  background: var(--light-color);
  color: #333;
}

.alert {
  padding: 0.8rem;
  margin: 1rem 0;
  opacity: 0.9;
  background: var(--light-color);
  color: #333;
}

.btn-primary,
.bg-primary,
.badge-primary,
.alert-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-light,
.bg-light,
.badge-light,
.alert-light {
  background: var(--light-color);
  color: #333;
}

.btn-dark,
.bg-dark,
.badge-dark,
.alert-dark {
  background: var(--dark-color);
  color: #fff;
}

.btn-danger,
.bg-danger,
.badge-danger,
.alert-danger {
  background: var(--danger-color);
  color: #fff;
}

.btn-success,
.bg-success,
.badge-success,
.alert-success {
  background: var(--success-color);
  color: #fff;
}

.btn-white,
.bg-white,
.badge-white,
.alert-white {
  background: #fff;
  color: #333;
  border: #ccc solid 1px;
}

.btn:hover {
  opacity: 0.8;
}

.bg-light,
.badge-light {
  border: #ccc solid 1px;
}

.round-img {
  border-radius: 50%;
}

.line {
  height: 1px;
  background: #ccc;
  margin: 1.5rem 0;
}

.buttons {
  margin-left: 10px;
  margin-top: 4px;
}

.containerCheckbox {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
}

.checkBoxDiv {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	padding-left: 30px;
	padding-right: 30px;
	border-radius: 10px;
}

/* Overlay */

.dark-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.light-overlay {
  background-color: rgba(255, 255, 255, 1);
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Forms */

.formContainer {
	width: 50%;
  padding: 20px 0;
  margin: 0 auto;
}
.formContainer .countrypicker, .formContainer #phoneNumber {
	width: 40% !important;
	margin: 10px 0 !important;
	height: 40px;
	box-sizing: border-box;
}
.formContainer .btn-danger {
	width: 20%;
	box-sizing: border-box;
}
#FaildExtra .formContainer {
	width: 100%;
}

.form .form-group {
  margin: 1.2rem 0;
}

.form .form-text {
  display: block;
  margin-top: 0.3rem;
  color: #888;
}

.form {
  /* display: block; */
  width: 305px;
  padding: 0.5rem;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form input[type='submit'],
button {
  font: inherit;
}

.form .social-input {
  display: flex;
}

.form .social-input i {
  padding: 0.5rem;
  width: 4rem;
}

.form .social-input i.fa-twitter {
  color: #38a1f3;
}

.form .social-input i.fa-facebook {
  color: #3b5998;
}

.form .social-input i.fa-instagram {
  color: #3f729b;
}

.form .social-input i.fa-youtube {
  color: #c4302b;
}

.form .social-input i.fa-linkedin {
  color: #0077b5;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  font-family: 'Raleway', sans-serif !important;
}

.table th {
  background: var(--light-color);
}

/* Navbar */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  position: fixed;
  z-index: 1;
  width: 100%;
  top: 0;
  border-bottom: solid 1px var(--primary-color);
  opacity: 0.9;
}

.navbar ul {
  display: flex;
}

.navbar a {
  color: #fff;
  padding: 0.45rem;
  margin: 0 0.25rem;
}

.navbar a:hover {
  color: var(--primary-color);
}

.navbar .welcome span {
  margin-right: 0.6rem;
}

/* Landing Page */

.landing {
  position: relative;
  height: 100%;
}

.landing-inner {
  color: #000104;
  height: 100%;
  width: 80%;
  margin: auto;
  text-align: center;
}

/* Profiles Page */

.profile {
  display: grid;
  grid-template-columns: 2fr 4fr 2fr;
  align-items: center;
  grid-gap: 2rem;
  padding: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Profile Page */

.profile-grid {
  display: grid;
  grid-template-areas: 'top top' 'about about' 'exp edu' 'github github';
  grid-gap: 1rem;
}

.profile-top {
  grid-area: top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-top img {
  width: 250px;
}

.profile-top .icons a {
  color: #fff;
  margin: 0 0.3rem;
}

.profile-top .icons a:hover {
  color: var(--dark-color);
}

.profile-about {
  grid-area: about;
  text-align: center;
}

.profile-about .skills {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-exp {
  grid-area: exp;
}

.profile-edu {
  grid-area: edu;
}

.profile-exp h2,
.profile-edu h2 {
  margin-bottom: 1rem;
}

.profile-exp > div,
.profile-edu > div {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: #ccc 1px dotted;
}

.profile-exp > div:last-child,
.profile-edu > div:last-child {
  border: 0;
}

.profile-exp p,
.profile-edu p {
  margin: 0.5rem 0;
}

.profile-github {
  grid-area: github;
}

.profile-github .repo {
  display: flex;
}

.profile-github .repo > div:first-child {
  flex: 7;
  flex-basis: 70%;
}

.profile-github > div:last-child {
  flex: 3;
  flex-basis: 20%;
}

.img {
  background: url('../img/logo-amx-claro.png');
  background-size: contain;
  width: 100px;
  height: 100px;
  margin-right: 10px;
  border: none;
}

/* Posts Page */

.post-form .post-form-header {
  background: var(--primary-color);
  padding: 0.5rem;
}

.post {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 2rem;
  align-items: center;
}

.post > div:first-child {
  text-align: center;
}

.post img {
  width: 100px;
}

.post .comment-count {
  background: var(--light-color);
  color: var(--primary-color);
  padding: 0.1rem 0.2rem;
  border-radius: 5px;
  font-size: 0.8rem;
}

.post .post-date {
  color: #aaa;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.currency-box {
	width: 100%;
	position: relative;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.currency-button {
	background-color: rgba(255,255,255,1);
	width: 15%;
	height: auto;
	margin: 10px 2.5%;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid #CCCCCC;
}
.currency-button p {
	padding: 5px 0 0 0;
	margin: 0;
}
.currency-button:hover {
	background-color: rgba(0,0,0,0.05);
	cursor: pointer;
}
.currency-button.selected {
	border: 1px solid #D9534F;
}
.currency-button img {
	width: 100%;
	height: auto;
}

.currency-wallet {
	width: 95%;
	margin: 20px auto;
	font-size: 14px;
}
.wallet-line {
	width: 100%;
	height: 45px;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	margin: 10px auto;
}
.wallet-name, .wallet-value, .wallet-qr, .wallet-copy {
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
}
.wallet-name {
	background-color: rgba(0,0,0,0.05);
	width: 20%;
	border-right: 1px solid #CCCCCC;
}
.wallet-value {
	width: 70%;
	font-family: helvetica;
  text-align: center;
}
.wallet-qr {
	width: 10%;
	border-left: 1px solid #CCCCCC;
	font-size: 30px;
	line-height: 0;
}
.wallet-copy {
	width: 10%;
	border-left: 1px solid #CCCCCC;
	font-size: 30px;
	line-height: 0;
}
.wallet-qr:hover, .wallet-copy:hover {
	background-color: rgba(0,0,0,0.05);
	cursor: pointer;
}
.wallet-qr:active, .wallet-copy:active {
	background-color: rgba(0,0,0,0.1);
	cursor: pointer;
}

/* Mobile Styles */

@media (max-width: 700px) {
  .container {
    margin-top: 8rem;
  }
  .hide-sm {
    display: none;
  }
  /* Text Styles */
  .x-large {
    font-size: 3rem;
  }
  .large {
    font-size: 2rem;
  }
  .lead {
    font-size: 1rem;
  }
  .lead2 {
    font-size: 1rem;
    color: #333;
  }
  /* Navbar */
  .navbar {
    display: block;
    text-align: center;
  }
  .navbar ul {
    text-align: center;
    justify-content: center;
  }
  .navbar h1 {
    margin-bottom: 1rem;
  }
  .navbar .welcome {
    display: none;
  }
  /* Profiles Page */
  .profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile ul {
    display: none;
  }
  /* Profile Page */
  .profile-top img,
  .profile img {
    width: 200px;
    margin: auto;
  }
  .profile-grid {
    grid-template-areas: 'top' 'about' 'exp' 'edu' 'github';
  }
  .profile-about .skills {
    flex-direction: column;
  }
  .dash-buttons a {
    display: block;
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .post {
    grid-template-columns: 1fr;
  }
  .post a,
  .post button {
    padding: 0.3rem 0.4rem;
  }
}
/*
.mxtelcel-wrapper {
	display: flex;
	flex-flow: wrap;
}
.mxtelcel-promo-box {
	width: 45%;
	margin: 20px 2.5%;
}
.mxtelcel-promo-box table {
	background-color: #FFFFFF;
	border-radius: 10px;
}
.mxtelcel-table-title {
	background-color: #17699c;
	background-color: #d40000;
	color: #FFFFFF;
}
.mxtelcel-table-spacing tr td {
	padding: 5px 10px;
	font-size: 14px;
}
.mxtelcel-promo-box table strong {
	color: #17699c;
}
.mxtelcel-table-bordered {
	border: 1px solid #cccccc;
}
.mxtelcel-title {
	color: #17699c;
	font-weight: 700;
	font-size: 16px;
}
*/
.logo {
	background-color: #DA291C;
	width: 100%;
	height: 90px;
	padding: 20px 0;
	text-align: center;
}
.logo img {
	width: auto;
	height: 100%;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 9px !important;
    margin-top: -4px !important;
}
.color-black{
	color: #000000 !important;
}
.modal-header {
    display: block !important;
}
.txt-left {
    text-align: left !important;
}
.padding {
    padding: 5rem !important;
    margin-left: 300px
}

body {
    background: #f5f5f5
}

.rounded {
    border-radius: 1rem
}

.nav-pills .nav-link {
    color: #555
}

.nav-pills .nav-link.active {
    color: white
}

input[type="radio"] {
    margin-right: 5px
}

.bold {
    font-weight: bold
}
.panel-title {
	display: inline;font-weight: bold;
}
.checkbox.pull-right {
	margin: 0;
}
.pl-ziro {
	padding-left: 0px;
}
.widthauto {
    width: auto;
}
.title {
	width: 100%;
	padding: 30px 0;
}

.amount-box {
	width: 50%;
	height: auto;
	margin: 0 auto 20px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.amount-box .radio-box {
	width: 18%;
	margin: 10px 1%;
}
.radio-box {
	display: block;
	position: relative;
	cursor: pointer;
	font-size: 22px !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 10px;
	padding: 45px 0 15px 0;
	box-sizing: border-box;
}

/* Hide the browser's default radio button */
.radio-box input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 25px;
	width: 25px;
	background-color: #EEEEEE;
	border-radius: 50%;
	margin: 10px auto 0 auto;
}
/* On mouse-over, add a grey background color */
.radio-box:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-box input:checked ~ .checkmark {
	background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-box input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radio-box .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
.table-box {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	border-radius: 10px;
	margin: 20px 0;
}
.table-scroll {
	overflow-x:auto;
}
.table-scroll input[type="radio"], .table-scroll input[type="checkbox"] {
	margin: 0 10px 0 0;
}
.table-title {
	background-color: #DA291C;
	width: 100%;
	font-size: 20px;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;
	padding: 10px;
	border-radius: 10px 10px 0 0;
}
.table-box table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	border: 1px solid #EEEEEE;
}
.table-box th, .table-box td {
	text-align: left;
	padding: 8px;
	font-size: 14px;
}
.table-box tr:nth-child(even){
	background-color: #EEEEEE;
}
.table-footer {
	background-color: #FFFFFF;
	width: 100%;
	height: 10px;
	border-radius: 0 0 10px 10px;
}
.table-subtitle {
	background-color: #B7202E;
	color: #FFFFFF;
	width: 100%;
	padding: 10px 0;
}
.popup-window {
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.popup-message {
	background-color: #FFFFFF;
	width: 500px;
	height: auto;
	border-radius: 10px;
	position: absolute;
	margin: 15% auto 0 auto;
	left: 0;
	right: 0;
	padding: 20px;
}
.popup-message h2 {
	font-size: 30px;
	padding: 10px 0;
}
.popup-message p {
	font-size: 20px;
	padding: 10px 0 0 0;
}
.popup-message p b {
	font-size: 30px;
}
.popup-icon {
	width: 100px;
	height: auto;
	margin: 0 auto;
}
.popup-icon img {
	width: 100%;
	height: auto;
}
.bootstrap-select>select {
  left: 0 !important;
}
.btn.btn-danger {
	margin: 20px 0;
}

.qr-box {
	width: 90%;
	border: 1px solid #CCCCCC;
	margin: 20px auto;
	border-radius: 10px;
	position: relative;
	box-sizing: border-box;
}
.qr-box h2 {
	font-family: sans-serif;
	font-size: 20px;
	padding: 20px 0;
}
.qr-box-header {
	width: 100%;
	height: 40px;
	border-bottom: 1px solid #CCCCCC;
}
.qr-box-code {
	width: 100%;
	height: auto;
	padding: 0 20px 20px 20px;
}
.qr-box-code img {
	width: 75%;
	height: auto;
}
.qr-box-copy, .qr-box-timer {
	width: 100%;
	height: 40px;
	line-height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	font-size: 18px;
	cursor: pointer;
}
.qr-box-timer {
	right: 0;
	left: inherit;
	border-left: 1px solid #CCCCCC;
}
.qr-box-copy:hover, .qr-box-timer:hover {
	background-color: rgba(0,0,0,0.05);
}
.qr-box-copy:active, .qr-box-timer:active {
	background-color: rgba(0,0,0,0.05);
	color: #d9534f;
}

@media screen and (max-width: 600px) {
	.title {
		padding: 20px 0;
	}
	.title h3 {
		font-size: 20px;
	}
	.logo {
		height: 80px;
	}
	.landing-inner {
		width: 90%;
	}
	.formContainer {
		width: 100%;
	}
	.formContainer .countrypicker, .formContainer #phoneNumber, .formContainer .btn-danger, .bootstrap-select, .btn-danger {
		width: 100% !important;
	}
	.amount-box, .table-box {
		width: 100%;
		overflow: hidden;
	}
	.amount-box .radio-box {
		width: 48%;
	}
	.qr-box {
		width: 90%;
	}
}
.banner-link:hover{
  color: #FFFFFF !important;

}
.banner-link:visited{
  color: #FFFFFF !important;

}
.banner-link:link{
  color: #FFFFFF !important;

}
