/* CSS Document */

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 999;
}

table {}

body {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-image: url(../img/fondo.png);
    background-position-x: center;
    background-position-y: bottom;
    background-color: #fff;
}

.glassBox {
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.glassBox,
.glassBox * {
    box-sizing: border-box;
    transition: 400ms;
}

.glassBox__title {
    text-align: center;
    margin-top: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    font-family: "Lato";
}

.glassBox__content {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-family: "Lato";
    letter-spacing: 0.1em;
    opacity: 0;
}


/**TABLE FOR REQUEST*/

table th {
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-weight: lighter;
    font-size: 25px;
    color: #fff;
}

table td {
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-weight: lighter;
    font-size: 14px;
    color: #666;
    letter-spacing: 0px;
}

table.formLogin tr>th {
    vertical-align: bottom;
    color: #000;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    vertical-align: bottom;
    font-size: 14px;
}

table.formLogin tr.data>td,
table.formLogin tr>td.data {
    vertical-align: bottom;
    color: #555;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 12px;
}

table.formLogin tr.label>td,
table.formLogin tr>td.label {
    vertical-align: bottom;
    color: #333;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 12px;
}

table.formLogin tr.labelBig>td,
table.formLogin tr>td.labelBig {
    vertical-align: bottom;
    color: #333;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 20px;
    letter-spacing: 0px;
}

table.formLogin tr.labelBiggest>td,
table.formLogin tr>td.labelBiggest {
    vertical-align: middle;
    color: #666;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 30px;
}

table.formLogin tr>td>input.textBig {
    background-color: #fff;
    color: #555;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 20px;
    height: 30px;
    font-weight: lighter;
    border-style: solid;
    border-width: 1px;
    border-color: #9fe0ff;
}

table.formLogin tr>td>input.textBiggest {
    background-color: #fff;
    color: #555;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 30px;
    height: 40px;
    width: 100%;
    font-weight: lighter;
    border-bottom: solid 1px #39f;
    border-top: solid 1px transparent;
    border-right: solid 1px transparent;
    border-left: solid 1px transparent;
}

table.formLogin tr>td>select.big {
    background-color: #fff;
    color: #555;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 20px;
    height: 30px;
    font-weight: lighter;
    border-style: solid;
    border-width: 1px;
    border-color: #9fe0ff;
}

table.formLogin tr>td>input.buttonBig {
    background-color: #00b189;
    vertical-align: bottom;
    color: #fff;
    letter-spacing: 0px;
    font-size: 20px;
    height: auto;
    font-weight: lighter;
    border-radius: 4px;
    padding-top: 3px;
    padding-bottom: 3px;
    cursor: pointer;
    width: 130px;
    height: 40px;
    border: 2px solid #000;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

table.formLogin tr>td>input.buttonBig:hover {
    background: transparent;
    color: rgb(255, 254, 254);
}

table.formLogin tr>td>input.buttonBig span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

table.formLogin tr>td>input.buttonBig:before,
table.formLogin tr>td>input.buttonBig:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #000;
    transition: all 0.3s ease;
}

table.formLogin tr>td>input.buttonBig:before {
    height: 0%;
    width: 2px;
}

table.formLogin tr>td>input.buttonBig:after {
    width: 0%;
    height: 2px;
}

table.formLogin tr>td>input.buttonBig:hover:before {
    height: 100%;
}

table.formLogin tr>td>input.buttonBig:hover:after {
    width: 100%;
}

table.formLogin tr>td>input.buttonBig span:before,
table.formLogin tr>td>input.buttonBig span:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: #000;
    transition: all 0.3s ease;
}

table.formLogin tr>td>input.buttonBig span:before {
    width: 2px;
    height: 0%;
}

table.formLogin tr>td>input.buttonBig span:after {
    width: 0%;
    height: 2px;
}

table.formLogin tr>td>input.buttonBig span:hover:before {
    height: 100%;
}

table.formLogin tr>td>input.buttonBig span:hover:after {
    width: 100%;
}


/****************************************/

table.dataForm {
    border-style: none;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

table.dataForm td {
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 13px;
    border-style: solid;
    border-width: 1px;
    border-color: #f2f2f2;
    padding: 10px 0px 50px 5px;
    margin: 0px 0px 0px 0px;
}

table.dataForm td.labelTitle {
    padding: 10px 0px 0px 0px;
}

table.dataForm tr.data>td,
table.dataForm tr>td.data {
    vertical-align: bottom;
    color: #555;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 12px;
}

table.dataForm tr.label td,
table.dataForm td.label {
    font-weight: bold;
    color: #444;
}

table.dataForm tr.labelSub td,
table.dataForm td.labelSub {
    font-weight: normal;
    font-style: italic;
    font-size: 13px;
    color: #333;
}

table.dataForm tr.data td,
table.dataForm td.data {
    font-weight: normal;
}

table.dataForm tr.dataSub td,
table.dataForm td.dataSub {
    font-weight: normal;
    font-style: italic;
}

table.dataForm tr.dataSubMin td,
table.dataForm td.dataSubMin {
    font-weight: normal;
    font-style: italic;
    font-size: 11px;
}

table.dataForm tr.labelTitle td,
table.dataForm td.labelTitle {
    font-weight: bold;
    font-size: 14px;
    color: #000;
    background-color: #b2ba48;
}

table.dataForm tr.dataTitle td,
table.dataForm td.dataTitle {
    font-weight: normal;
    font-size: 14px;
    color: #666;
    background-color: #efefef;
}

table.dataForm input[type="text"],
table.dataForm input.text {
    background-color: #fff;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 12px;
    font-weight: normal;
    border-style: solid;
    border-width: 1px;
    border-color: #6cf;
    color: #333;
    height: 20px;
    vertical-align: middle;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

table.dataForm select {
    background-color: #fff;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 12px;
    font-weight: normal;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc;
    color: #333;
    height: 20px;
    vertical-align: middle;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

table.dataForm input[type="button"] {
    height: 30px;
    font-weight: lighter;
    border-style: outset;
    border-width: 2px;
    border-color: transparent;
    border-radius: 4px;
    background-color: #00b189;
    vertical-align: bottom;
    color: #fff;
    letter-spacing: 0px;
    font-size: 20px;
    font-weight: lighter;
    border-radius: 4px;
    padding-top: 3px;
    padding-bottom: 3px;
    cursor: pointer;
    border: 2px solid #000;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}


/**************************Estilo dataOutput **************************/

table.dataOutput {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    border-width: 1px;
    border-spacing: 1px;
    border-style: solid;
    border-color: #f5f5f5;
}

table.dataOutput tr.title td,
table.dataOutput td.title {
    font-weight: normal;
    color: #fff;
    background-color: #22b7ff;
    font-size: 15px;
    text-align: center;
}

table.dataOutput tr.titleSub td,
table.dataOutput td.titleSub {
    font-weight: bold;
    color: #333;
    background-color: #efefef;
    font-size: 15px;
}

table.dataOutput td {
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 13px;
    vertical-align: middle;
    border-style: solid;
    border-width: 1px;
    border-color: #e9e9e9;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

table.dataOutput tr.label td,
table.dataOutput td.label {
    font-weight: bold;
    color: #444;
}

table.dataOutput tr.labelSub td,
table.dataOutput td.labelSub {
    font-weight: normal;
    font-style: italic;
    font-size: 13px;
    color: #333;
}

table.dataOutput tr.data td,
table.dataOutput td.data {
    font-weight: normal;
    color: #555;
}


/********************Detalle Formulario*****************/

table.dataOutputDet {
    border-style: none;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

table.dataOutputDet tr.title td,
table.dataOutputDet td.title {
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-weight: bold;
    color: #fff;
    background-color: #39f;
    font-size: 13px;
    text-align: center;
}

table.dataOutputDet tr.titleSub td,
table.dataOutputDet td.titleSub {
    font-weight: bold;
    color: #333;
    background-color: #f7f7f7;
    font-size: 12px;
}

table.dataOutputDet td {
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 12px;
    vertical-align: middle;
    border-style: solid;
    border-width: 1px;
    border-color: #e9e9e9;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

table.dataOutputDet tr.data td,
table.dataOutputDet td.data {
    font-weight: normal;
    color: #555;
}

table.dataOutputDet tr.data-even td,
table.dataOutputDet td.data-even {
    font-weight: normal;
    background-color: #f8f8f8;
    color: #555;
    font-size: 11px;
}

table.dataOutputDet tr.data-odd td,
table.dataOutputDet td.data-odd {
    font-weight: normal;
    background-color: #fff;
    color: #555;
    font-size: 11px;
}

table.dataOutputDet tr.data-can td,
table.dataOutputDet td.data-can {
    font-weight: normal;
    background-color: #ffc4c4;
    color: #555;
    font-size: 11px;
}

table.dataOutputDet tr.labelFoot td,
table.dataOutputDet td.labelFoot {
    font-weight: bold;
    background-color: #f4f4f4;
    color: #555;
    font-size: 12px;
    border-color: #fff;
}

table.dataOutputBlank tr.labelBig>td,
table.dataOutputBlank tr>td.labelBig {
    vertical-align: bottom;
    color: #333;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 20px;
}

table.dataOutputBlank tr.dataBig>td,
table.dataOutputBlank tr>td.dataBig {
    vertical-align: bottom;
    color: #333;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 20px;
    font-weight: normal;
}


/*************************************************************************/


/*Estilo OutputNo Margin*/

table.dataOutputBlank {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    border-width: 0px;
    border-spacing: 0px;
    border-style: none;
    border-color: #f5f5f5;
}

table.dataOutputBlank tr.title td,
table.dataOutputBlank td.title {
    font-weight: normal;
    color: #fff;
    background-color: #22b7ff;
    font-size: 15px;
    text-align: center;
}

table.dataOutputBlank tr.titleSub td,
table.dataOutputBlank td.titleSub {
    font-weight: bold;
    color: #333;
    background-color: #efefef;
    font-size: 15px;
}

table.dataOutputBlank td {
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 13px;
    vertical-align: middle;
    border-style: none;
    border-width: 0px;
    border-color: #e9e9e9;
    padding: 2px;
    margin: 0px 0px 0px 0px;
}

table.dataOutputBlank tr.label td,
table.dataOutputBlank td.label {
    font-weight: bold;
    color: #444;
}

table.dataOutputBlank tr.labelSub td,
table.dataOutputBlank td.labelSub {
    font-weight: normal;
    font-style: italic;
    font-size: 13px;
    color: #333;
}

table.dataOutputBlank tr.data td,
table.dataOutputBlank td.data {
    font-weight: normal;
    color: #555;
}

table.dataForm .labelQuestion {
    vertical-align: bottom;
    color: #333;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 22px;
}

table.dataForm .labelResponse {
    vertical-align: bottom;
    color: #666;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    font-size: 20px !important;
}


/*
input[type="radio"],
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  filter: alpha(opacity=0);
  margin: 5px 0 0 5px;
}
input[type="radio"]:focus + label,
input[type="checkbox"]:focus + label {
  color: #c30;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  background: url("../img/spritecheckboxradio3232.png") left top no-repeat;
  position: relative;
  margin: 0;
  padding: 0 0 0 50px;
  cursor: pointer;
  line-height: 32px;
  min-height: 34px;
  display: inline-block;
  z-index: 0;
  font-size: 18px;
}*/

* {
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

input[type="radio"] {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    color: #363839;
    border: 1px solid #000;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    cursor: pointer;
    transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}

input[type="radio"]::before {
    position: absolute;
    content: "";
    display: block;
    top: 2px;
    left: 6px;
    width: 8px;
    height: 14px;
    border-style: solid;
    border-color: #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

input[type="radio"]:checked {
    color: #fff;
    border-color: #06842c;
    background: #06842c;
}

input[type="radio"]:checked::before {
    opacity: 1;
}

input[type="radio"]:checked~label::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

label {
    position: relative;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: 600;
    padding: 0 0.25em 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label::before {
    position: absolute;
    content: attr(data-content);
    color: #9c9e9f;
    -webkit-clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    -webkit-text-decoration-color: #363839;
    text-decoration-color: #363839;
    transition: -webkit-clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.miniFoot {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

.miniFoot td {
    width: 100%;
    height: 20px;
    padding: 20px;
    color: #fff;
    align-items: center;
    height: auto;
    background: #00b189;
    text-align: center;
}

tr.info {
    /* margin-bottom: 23px; */
    /*margin: 5px;*/
}

tr.info td.if {
    border: 2px solid #00b189;
    padding: 5px;
    border-radius: 4px;
    /* height: 175px; */
}


/**************modal*******************/

div.informacion a {
    z-index: 999;
    position: absolute;
    top: 140px;
    padding: 0 0 0 6px;
    /* padding-top: calc(2% - 22px); */
    text-decoration: none;
    right: 3%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    font-stretch: expanded;
    font-size: 26px;
    border-radius: 50%;
    background: #00b189;
    color: #fff;
    /* border:solid 2px #000; */
    animation-name: informacion;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0, 0, 0.68, 0.45);
    animation-direction: normal;
    animation-timing-function: cubic-bezier(0.75, -0.31, 33, 1.4);
}

@keyframes informacion {
    0% {
        border: solid 1px transparent;
        padding: 0 0 0 5px;
    }
    100% {
        border: solid 1px #fff;
        padding: 0 0 0 4px;
    }
}

.modal-contenido {
    background-color: aqua;
    width: 70%;
    padding: 15px 15px;
    margin: 15% auto;
    position: relative;
    text-align: justify;
    font-size: 2.5vh;
}

div.informacion a.mod {
    top: 1%;
}

.modal {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    z-index: 999;
}

#miModal:target {
    opacity: 1;
    pointer-events: auto;
}


/****************************** fin modal *****************/


/*****************************pregunta siguiente ****************/

.sig-atrr {
    position: absolute;
    bottom: 22px;
    width: 96%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 75%;
}

.sig-atrr div.sig-center {
    margin: 18% 0;
}

.sig-font {
    margin: 0 0 33px 0;
}


/*****************************pregunta siguiente fin****************/

input[type="checkbox"]+label {
    background-position: 0 0;
}

input[type="radio"]+label {
    background-position: 0 -72px;
}

input[type="checkbox"]:checked+label {
    background-position: 0 -36px;
}

input[type="radio"]:checked+label {
    background-position: 0 -108px;
}

input[type="checkbox"]:disabled+label {
    background-position: 0 -144px;
    color: #999;
}

input[type="radio"]:disabled+label {
    background-position: 0 -216px;
    color: #999;
}

input[type="checkbox"]:disabled:checked+label {
    background-position: 0 -180px;
    color: #999;
}

input[type="radio"]:disabled:checked+label {
    background-position: 0 -252px;
    color: #999;
}


/*****************  "INDEX.PHP AND INICIO.PHP"*****************************/

table.celAd {
    width: 100%;
}

@media (max-width: 655px) {
    table.celAd {
        margin-bottom: 55px;
    }
    .glassBox {
        margin-bottom: 65px;
        margin-top: 100px;
    }
    body {
        align-items: end;
    }
}

#mainDiv {
    height: auto;
    width: auto;
    overflow: hidden;
}

.celAdd {
    display: grid;
    grid-template-columns: 10% 27.8% 0.5% 0.5% 50% 10%;
    grid-template-rows: 1fr;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    justify-items: center;
    align-items: center;
}

.item {
    width: 100%;
}

.ds {
    height: 70px;
}

.selc {
    width: 100%;
}

@media (max-width: 654px) {
    .celAdd {
        grid-template-columns: 5% 90% 5%;
    }
    .ds {
        height: 0;
    }
}

@media (max-width: 564px) {
    div.informacion a {
        top: 164px;
        right: 6%;
    }
    .sig-atrr div.sig-center {
        margin: 27% 0;
    }
    .sig-atrr {
        width: 91%;
    }
}


/*****************  "INDEX.PHP AND INICIO.PHP  ----FIN---"  *****************************/

.min-nav {
    display: grid;
    background-color: #fff;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.min-nav th.itemm {
    background-color: #fff;
    height: 100%;
}

.min-nav th.itemm div {
    margin: 9% 0;
}


/*****************  "APLENC.PHP"*****************************/

.celAPL {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
    width: 100%;
    height: auto;
    justify-content: center;
    justify-items: flex-start;
}

.item2 {
    width: 100%;
}

.btn-des {
    position: absolute;
    right: calc(50% - 91.945px);
    bottom: 9px;
}


/*****************  "APLENC.PHP ----FIN---"*****************************/