@charset "utf-8";

* {
  box-sizing: border-box;
}

.msg-txt {
}
.msg-err {
  color: #f00;
}
.msg-ok {
  color: green;
}

.content-loading {
  position: relative;
}
.loading {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  cursor: text;
  margin: 12px 12px 0 0;
}

/* BEGIN TABLE */
table.table {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 10px;
}
table.table tr th {
  padding: 2px 5px;
}
table.table tr td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2px 5px;
}
/* END TABLE */

/* BEGIN PAGINACION */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.pagination li {
  margin-right: 5px;
}
.pagination li a {
  background: #fff;
  border-radius: 50px;
  color: rgb(31, 86, 163);
  display: inline-block;
  line-height: 27px;
  min-width: 30px;
  height: 30px;
  padding: 0 12px;
  text-align: center;
  text-decoration: none;
}
.pagination li a:hover {
  background: rgb(31, 86, 163);
  color: #fff;
}
.pagination li.active a {
  background: rgb(237, 54, 45);
  color: #fff;
}
/* END PAGINACION */

#formcalc {
  .content {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    .planes,
    .monto {
      width: 47.5%;
      label {
        display: block;
        color: #666;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
      }
      input,
      select {
        font-size: 16px;
        min-height: 38px;
        padding: 15px;
        transition: 0.2s ease-in-out all;
        width: 100%;
      }
      input:focus,
      select:focus {
        border-color: #00529e;
      }
    }
    input[type="submit"] {
      background: #00529e !important;
      border: 1px solid transparent !important;
      border-radius: 4px !important;
      color: #fff !important;
      cursor: pointer;
      font-family: "Futura" !important;
      font-size: 16px;
      margin: 20px auto 0;
      padding: 10px 20px !important;
      text-transform: uppercase;
      transition: 0.2s ease-in-out all;
    }
    input[type="submit"]:hover {
      background: transparent !important;
      border-color: #00529e !important;
      color: #00529e !important;
    }
  }
  .valor {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
    margin-top: 30px;
    p {
      color: #00529e;
      font-weight: 900;
      text-align: center;
      width: 100%;
    }
    #cuota {
      background: #f7f7f7;
      border: 1px solid #bbb;
      color: #000;
      font-size: 16px;
      font-weight: 600;
      height: 50px;
      margin: 10px 0;
      padding: 15px;
      transition: 0.2s ease-in-out all;
      width: 47.5%;
    }
    #cuota:before {
      content: "$U";
    }
    .mora {
      color: #666;
      font-style: italic;
      font-size: 14px;
      text-align: center;
      width: 100%;
    }
  }
  #msgcalc {
    color: #00529e;
    text-align: center;
  }
  #datos {
    p {
      font-size: 13px;
      text-align: center;
    }
    /* p:first-child {
      font-size: 18px;
      margin: 10px 0;
      #total {
        color: #00529e;
        font-weight: 900;
      }
    } */
  }
}

@media only screen and (max-width: 767px) {
  .planes,
  .monto {
    margin: 10px 0;
    width: 100% !important;
  }
  .valor{
    p{
      text-align: left !important;
    }
  }
  #cuota{
    width: 100% !important;
  }
  #msgcalc{
    text-align: left !important;
  }
  #datos{
    p{
      text-align: left !important;
    }
  }
}
