@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700');

/* Reset CSS */
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*
    TABLE
*/
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent
}

.table td,
.table th {
  padding: .4rem .6rem;
  vertical-align: top;
  border-top: 0;
  text-align: left;
  font-size: 12px;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  font-weight: bold;
  text-transform: uppercase;
}

.table tbody+tbody {
  border-top: 2px solid #dee2e6
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, .05)
}

.table a {
  color: #666;
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
}

/**
MODAL
**/
.el-dialog .el-dialog__header {
  border-bottom: 1px solid #E5E5E5;
  padding: 15px 20px !important;
}

.el-dialog .el-dialog__body {
  padding: 20px !important;
}

.el-dialog .el-dialog__footer {
  background-color: #E5E5E5;
  padding: 15px 20px !important;
}

.el-select {
  width: 100%;
}

/*
 * Custom CSS
 * 
 */

body {
  font-family: 'Montserrat', sans-serif;
  color: #707070;
  margin: 50px 20px;
}

@media screen and (min-width: 1025px) {
  body {
    margin: 50px 20% 150px 20%;
  }
}

h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

h2 {
  font-size: 20px;
}

button {
  outline: none;
  cursor: pointer;
}

.btn-primary,
.btn-secondary,
.btn-correct,
.btn-outline {
  font-family: 'Montserrat', sans-serif;
  color: white;
  padding: 8px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
}

.btn-primary {
  background: #00A7E0;
}

.btn-correct {
  background: #2DCB70;
}

.btn-secondary {
  background: #BABABA;
}

.btn-outline {
  border: 1px solid #BABABA;
  background: #fefefe;
  color: #BABABA;
}

button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.error-msg {
  font-size: 12px;
  color: #F84545;
}

.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* Formulario */
.form .form-group {
  margin-bottom: 30px;
}

.form .form-group .header {
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.form .form-group .form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  grid-column-gap: 30px;
  margin-bottom: 5px;
}

.form .form-group .form-group-grid {
  position: relative;
}

.form .form-group .form-group-grid>img {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
}

.form .form-group .form-group-grid>div label {
  display: block;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.form .form-group .form-group-grid>div input {
  outline: none;
  border: 1px solid #fff;
  background-color: #F5F5F5;
  width: 100%;
  font-size: 14px;
  padding: 10px 15px;
  color: #707070;
}

.form .form-group .form-group-grid>div input:focus {
  border: 1px solid #00A7E0;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #E5E5E5;
  width: 100%;
}

.footer .footer-content {
  float: right;
  padding: 15px 0px;
  margin: 0px 20%;
}

.footer .footer-content button {
  margin-right: 10px;
}

.footer .footer-content button:last-child {
  margin-right: 0px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.checkbox-wrapper {
  width: 40px;
}

.checkbox-wrapper [type=checkbox] {
  appearance: none;
  background-color: #dfe1e4;
  border-radius: 72px;
  border-style: none;
  flex-shrink: 0;
  height: 20px;
  margin: 0;
  position: relative;
  width: 40px;
}

.checkbox-wrapper [type=checkbox]::before {
  bottom: -6px;
  content: "";
  left: -6px;
  position: absolute;
  right: -6px;
  top: -6px;
}

.checkbox-wrapper [type=checkbox],
.checkbox-wrapper [type=checkbox]::after {
  transition: all 100ms ease-out;
}

.checkbox-wrapper [type=checkbox]::after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 14px;
  left: 3px;
  position: absolute;
  top: 3px;
  width: 14px;
}

.checkbox-wrapper input[type=checkbox] {
  cursor: default;
}

.checkbox-wrapper [type=checkbox]:hover {
  background-color: #c9cbcd;
  transition-duration: 0s;
}

.checkbox-wrapper [type=checkbox]:checked {
  background-color: #409EFF !important;
}

.checkbox-wrapper [type=checkbox]:checked::after {
  background-color: #fff;
  left: 20px;
}

.checkbox-wrapper :focus:not(.focus-visible) {
  outline: 0;
}

.checkbox-wrapper [type=checkbox]:checked:hover {
  background-color: #409EFF;
}

.el-tooltip::after {
  content: '*';
  color: #aaa;
}

.switch-container {
  display: flex;
  align-items: center;
}

.switch-label {
  margin-right: 10px;
  font-size: 14px;
}

.active-label {
  color: #409EFF;
}