html{
  padding:20px;
  font-size: 16px;
}

p {
    margin: 5px 0px;
}
h1,h2,h3,h4,h5,h6{
  color: #0E0E2C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
}
h2.title {
    text-transform: uppercase;
}
h1{
  font-size: 56px;
}
h2{
  font-size: 42px;
}
h3{
  font-size: 36px;
}
h4{
  font-size: 28px;
}
h5{
  font-size: 20px;
}
h6{
  font-size: 18px;
}
*{
  font-family: "Open Sans";
}
.ds-color-dark{
  color: #0E0E2C;
}
.ds-color-white{
  color: #FFF;
}

.text-ap-primary{
  color: #00498B;
}

.ds-row{
  display: flex;
  width: 100%;
  /*margin-right: -15px;
  margin-left: -15px;*/
}
.ds-columns {
    flex-grow: 1;
    padding: 10px;
}
.ds-columns-4{
  width:33.3333%;
  display: inline-block;
  margin-right: 15px;
  margin-left: 15px;
}
.ds-columns-3{
  width:24.999%;
  display: inline-block;
  margin-right: 15px;
  margin-left: 15px;
}
.ds-columns:last-child {
    padding-right: 0px;
}
.ds-columns:first-child {
    padding-left: 0px;
}
/* **************** MARGIN SECTION **************** */
/* MARGIN BOTTOM */
.mb-64{
  margin-bottom:64px;
}
.mb-40{
  margin-bottom:40px;
}
.mb-20{
  margin-bottom:20px;
}
.mb-14{
  margin-bottom:14px;
}
.mb-10{
  margin-bottom:10px;
}
/* MARGIN TOP*/
.mt-64{
  margin-top:64px;
}
.mt-40{
  margin-top:40px;
}
.mt-20{
  margin-top:20px;
}
.mt-14{
  margin-top:14px;
}
.mt-10{
  margin-top:10px;
}
label{
  display:block;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
i.fas{
    position: relative;
    /*left: -30px;*/
}
.fas.fa-check {color: #17BF64;}
.fas.fa-exclamation-triangle{color: #ED4B9E;}
.fas.fa-ban {color: #8C8CA2;}
.ds-input{
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  height: 40px;
}
.ds-form{
  box-shadow: inset 2px 2px 2px -1px rgba(0, 0, 0, 0.1);
  background-color: #F0F5F9;
  border: 1px solid #E8EEF8;
  box-shadow: inset 2px 2px 2px -1px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
.ds-form-focus{
  box-shadow: 0px 0px 0px 4px rgba(0, 156, 238, 0.23), inset 2px 2px 2px -1px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  border: 1px solid #00498B;

}
.ds-form-error{
  background: #FFFFFF;
  border: 1px solid #00498B;
  box-shadow: 0px 0px 0px 4px rgba(191, 23, 54, 0.29), inset 2px 2px 2px -1px rgba(0, 0, 0, 0.1);
}
.ds-form-valid{
  border: 1px solid #17BF64;
  box-shadow: 0px 0px 0px 4px rgba(23, 191, 100, 0.2), inset 2px 2px 2px -1px rgba(0, 0, 0, 0.1);
}
.ds-form-disabled{
  background: #D3DCE6;
  box-shadow: inset 2px 2px 2px -1px rgba(0, 0, 0, 0.1);
  border:0;
}
select {

  /* styling */
  background-color: white;
  border: thin solid blue;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;

  /* reset */

  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.ds-input {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

select.ds-input:focus {
  background-image:
    linear-gradient(45deg, green 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  outline: 0;
}
/* The container */
.ds-radio-group {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  margin-right: 20px;
}

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

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.ds-radio-group:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.ds-radio-group input:checked ~ .checkmark {
  background-color: #0069C9;
}

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

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

/* Style the indicator (dot/circle) */
.ds-radio-group .checkmark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}
.ds-radio-group input[type="radio"] {
    opacity: 0;
    width: 0px;
    height: 0px;
}
.ds-group label, .ds-group input, .ds-group {
    display: inline-block;
}
.ds-check-group {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-right: 20px;
}

/* Hide the browser's default checkbox */
.ds-check-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.ds-check-group:hover input ~ .checkbox {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.ds-check-group input:checked ~ .checkbox {
  background-color: #0069C9;
}

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

/* Show the checkbox when checked */
.ds-check-group input:checked ~ .checkbox:after {
  display: block;
}

/* Style the checkbox/indicator */
.ds-check-group .checkbox:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* REVISAR */
strong {
    font-weight: 700;
    font-family: montserrat;
}
table{
  width: 100%;
}
tr > td {
    border-top: 1px solid gray;
    margin-left: -30px;
}
td{
  padding: 10px;
}
td:first-child{
  width: 20%;
}

td:nth-child(2){
  width: 20%;
  padding-left: 20px;
  padding-right: 20px;
}
/*td:last-child{
  width: 60%;
}*/

.color-container {
    color: #FFF;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    height: 76px;
    display: grid;
    place-content: center;
    
}

.subcolors-container{
  margin-top: 20px;
  display: flex;
}

.subcolor-box{
  display: inline-block;
  background-color: red;
  flex-grow: 1;
  height: 40px;
}

.subcolor-box:first-child{
  border-radius: 8px 0px 0px 8px;
}
.subcolor-box:last-child{
  border-radius: 0px 8px 8px 0px;
}

/*  SWITCH BUTTON */
.custom-control {
    min-height: 30px;
}
.custom-switch {
    padding-left: 16px;
}
.custom-control-label {
    padding-left: 80px;
    padding-top: 16px;
}
.custom-switch .custom-control-label::before {
    left: -18px;
    width: 60px;
    border-radius: 8px;
    box-shadow: inset 0px 2px 2px -1px rgba(74, 74, 104, 0.1);
    border-color: #e9ecef;
}

.custom-control-label::before {
    position: absolute;
    top: 2;
    left: -21.5rem;
    display: block;
    width: 1rem;
    height: 35px;
    pointer-events: none;
    content: "";
    background-color: #D4DBE5;
    border: #E8EEF8 solid 1px;
  }
  .custom-switch .custom-control-label::after {
    top: 7px;
    left: -12px;
    width: 30px;
    height: 30px;
    background-color: #FFF;
    box-shadow: 0px 5.5px 5px -3px rgba(14, 14, 44, 0.2), inset 0px -1px 0px rgba(14, 14, 44, 0.4);
  }
.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(.75rem);
    transform: translateX(.75rem);
    left: -3px;
}


.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #17BF64;
    background-color: #17BF64;
}
.ds-group {
    position: relative;
    width: 100%;
}

.input-calendar {
    position: absolute;
    z-index: 10;
    left: 0px;
    top: 12px;
    width: 40px;
    text-align: center;
    height: unset;
    /* vertical-align: middle; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-calendar .far.fa-calendar {
    position: initial;
    color: #C0CCDA;
    align-items: normal;
}

.input-calendar::after {
    content: " ";
    height: 20px;
    width: 1px;
    background: #C0CCDA;
    display: inline-block;
    position: absolute;
    left: 37px;
}

.ds-calendar input {
    padding-left: 50px;
}

i.fas.fa-calendar{
  left:0px;
  color:#C0CCDA;
}
#botones label {
    color: #868686;
    font-weight: 600;
}

button.btn-primary, a.btn.btn-primary{
  background-color: #00498B;
  border-color: #00498B;
}
button.btn{

  height:37px;
  font-size: 1em;
}
.text-ds-primary{
    color: #BF1736;
}
.text-ds-red{
    color: #BF1736;
}
.text-ds-naval{
    color: #0D1440;
}
 a.btn-link{
    color: #00498B;
 }
.btn-outline-primary{
  border-color: #00498B;
  color: #00498B;
}

.btn-secondary-ds {
    background-color: #BF1736;
    border-color: #BF1736;
    color: #FFF;
}
.btn-outline-secondary {
    border-color: #BF1736;
    color: #BF1736;
}

.btn-valid{
  background-color: #17BF64;
  border-color: #17BF64;
  color:#FFF;
}
.btn-outline-valid{
  border-color: #17BF64;
  color: #17BF64;  
}
.ds-light{
  color:#FFF;
}
a.ds-link {
    color: #0D1440;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

button.btn.btn-xlg {
    width: 180px;
    height: 47px;
}
button.btn.btn-lg {
    width: 130px;
    height: 47px;
    font-size: 16px;
}
button.btn.btn-small {
    width: 100px;
    height: 35px;
    font-size: .875em;
}

.spacing-box {
    padding: 20px;
    background: #f2f9ff;
    border-radius: 8px;
}
.ds-navbar-primary {
    background: linear-gradient(45deg, #00498B, #0069C9);
  }
.ds-navbar {
    padding: 20px;
    color: #FFF;
    border-radius: 8px;
    box-shadow: 0px 1px 5px rgba(0, 73, 139, 0.31);
}
.ds-navbar-red{
    background: linear-gradient(45deg, #BF1736, #94122A);
}
.ds-navbar-light{
    background: #FFF;
}
.ds-navbar-light a, .ds-navbar-light h2{
  color:#1F242F;
}
.ds-navbar a{
  color: #fff;
}
.ds-navbar-light a{
  color:#1F242F;
}
.navbar-brand {
    display: inline-block;
    padding-top: 0; 
    padding-bottom: 0;
}