* {
    color: #002D55;
    font-family: var(--font-family-body);
    margin: 0;
    padding: 0;
    text-align: center;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

:root {
    --font-family-body: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-h1: clamp(2.125rem, 2.0093rem + 0.6173vw, 2.5rem);
    --font-size-h2: clamp(22px, 3vw, 34px);
    --font-size-h3: clamp(1.625rem, 1.5324rem + 0.4938vw, 1.875rem);
    --font-size-h4: clamp(1.375rem, 1.3056rem + 0.3704vw, 1.625rem);
    --font-size-h5: clamp(1.125rem, 1.0556rem + 0.3704vw, 1.375rem);
    --font-size-h6: clamp(0.875rem, 0.8287rem + 0.2469vw, 1.125rem);
    --font-size-p: clamp(0.875rem, 0.8519rem + 0.1235vw, 1rem);
}
hr {
    display: block;
    margin: 30px auto;
    width: 100%;
    height: 2px !important;
    background: #FFFFFF;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 5%, rgb(0, 48, 87, 0.4) 50%, rgba(255, 255, 255, 0) 95%);
    border: 0;
    opacity: .25;
}
body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at 67.6% 20.39%, rgba(255, 255, 255, 0.5), transparent 69%), radial-gradient(circle at 88.75% 28.67%, rgba(255, 255, 255, 0.5), transparent 60%), radial-gradient(circle at 13.33% 0.38%, #bedbf752, transparent 38%), radial-gradient(circle at 86.77% 1.6%, #bedbf752, transparent 39%), radial-gradient(circle at 81.09% 74.15%, rgba(255, 255, 255, 0.5), transparent 57%), radial-gradient(circle at 67.81% 96.71%, #bedbf752, transparent 36%), radial-gradient(circle at 50% 50%, #ffffff, #ffffff 100%);
    background-repeat: no-repeat;
    overflow-x: hidden;
}
h4 {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.2;
}
.loader{
    background: rgb(255 255 255 / 70%);
}
.loader-wrapper{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width:100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top:0;
    left:0;
    z-index:2000;
}
.img-loader{
    position: absolute;
    top: 50%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    width: 75px;
    transform: translate(0, -50%);
    z-index: 999;
}
.hidden{
    display: none;
}

.spinner-border {
    display: inline-block;
    width: 6.5rem;
    height: 6.5rem;
    vertical-align: -.125em;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: 1s linear infinite spinner-border;
}

@keyframes spinner-border {
    to { 
        transform: rotate(360deg)
    }
}  
  
.text-primary{
    color: #003057 !important;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 20px;
}

a,
.accordion {
    background-color: #002D55;
    border-radius: 24px;
    border: solid 3px #002D55;
    box-shadow: 0 4px 8px 0 rgb(0, 0, 0, 0.2);
    color: white;
    line-height: 1;
    padding: 8px;
    text-decoration: none;
    width: 200px;
    transition: 0.4s;
    cursor: pointer;
}

.accordion {
    width: 300px;
}

a:hover,
.accordion:hover {
    background-color: white;
    color: #002D55;
}

a:active,
.accordion:active {
    color: white;
    background-color: #002D55;
    box-shadow: none;
}

div.div100 {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px 0 100px;
}

div.div100:first-child {
    margin: 0;
}

.title__result {
    margin-bottom: 40px;
    text-transform: uppercase;
}

.header_site {
    width: 100%;
    display: flex;
}

.header_site .btnVolver {
    display: flex; 
    align-items: center;
    background: none; 
    border-radius: 0; 
    border: none; 
    box-shadow: none; 
    width: auto;
}

.header_site svg {
    width: 80px;
    height: 80px;
    margin: 0;
}

div.card {
    background-color: white;
    font-size: clamp(12px, 3vw, 14px);
    border-radius: 24px;
    box-shadow: 0 4px 8px 0 rgb(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-basis: 280px;
    padding: 20px;
}

div:has(.prueba) {

}

.header__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 150px;
    
}

.info__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    
    gap: 20px;

}

.btnEscrutinios {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
    margin: 10px auto 20px;
    line-height: 1;
}

h2 span {
    font-weight: 300;
}

h1,
h2.r {
    border-radius: 24px;
    /* border: solid 3px #04f6e8; */
    line-height: 1.2;
    /* margin:20px auto; */
    /* padding:8px; */
    padding: 20px 40px;
    width: auto;
    max-width: 800px;
}
img.logo {
    /* height: 168px;
    margin: 20px auto;
    width: 600px; */
    position: relative;
    width: 160px;
    height: auto;
    margin: 20px auto;
}

img.logo2 {
    position: relative;
    left: -48px;
    width: 160px;
    height: auto;
    margin: 20px auto;
}

img.o {
    width: 600px;
}

svg {
    fill: #002D55;
    height: 60px;
    margin-bottom: 10px;
    width: 100px;
    display: inline;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 300;
    line-height: 1;
    margin: 10px 0;
    flex: 1;
}

a.volver {
    border-radius: 28px;
    display: inline;
    font-size: 40px;
    margin: 8px;
    padding: 2px 8px 8px;
    vertical-align: top;
}

.accordion {
    margin: auto;
    font-size: var(--font-size-h4);
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 30px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

table {
    margin: auto;
}

td,
th {
    padding: 10px;
}

.card.resol__jurados{
    flex-direction: row;
    gap: 30px;
}
.resol__header svg {
    width: 80px;
    height: 80px;
    margin: 0;
}
.title_depto {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}
.resoluciones {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.resoluciones a {
    border-radius: 24px;
    padding: 14px;
}

@media screen and (max-width:800px) {
    div.div100{
        gap: 30px;
    }
    .header_site svg {
        width: 50px;
        height: 50px;
    }
    div.card {
        border-radius: 24px;
        padding: 20px;
    }
    .card.card-detail {
        flex-basis: 150px;
    }
    .card.card-detail.fw-button {
        flex-basis: calc(100% - 30px);
    }
    .header__card {
        display: flex;
        justify-content: center;
        align-items: center;
        /* gap: 20px; */
        min-height: 110px;
    }
    .header__card svg {
        margin: 0;
    }
    .info__card {
        min-height: 140px;
    }
    h3 { 
        min-height: auto !important;
    }
    svg{
        width: 60px;
        height: 60px;
        /* margin-bottom: 15px; */
    }
    a {
        border-radius: 10px;
        border: 1px solid #002D55;
        width: 100%;
    }

    h1,
    h2.r {
        padding: 10px 20px;
        /* margin-right: 20px; */
    }

    img.logo {
        height: 84px;
        margin: 20px auto;
        width: 300px;
    }

    img.logo2 {
        left: -30px;
        width: 100%;
        height: 60px;
        margin: 0 auto;
    }

    img.o {
        width: 300px;
    }

    .panel {
        gap: 20px;
    }

    a.p12 {
        width: 100px;
    }

    td,
    th {
        width: 30%;
    }
    .card.resol__jurados{
        flex-direction: column;
    }
    .resol__header svg {
        
    }
    .resoluciones {
        width: 70%;
    }
}

