*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}


* {
    color: #e4e4e4;
}

h2{
    color: red;
    margin-top: 5px;
}

body {
    background-color: #001f3f;
    background-image:
        radial-gradient(at 15% 85%, rgba(0, 200, 255, 0.75) 0px, transparent 60%),
        radial-gradient(at 70% 20%, rgba(0, 100, 255, 0.75) 0px, transparent 60%),
        radial-gradient(at 30% 30%, rgba(0, 150, 255, 0.75) 0px, transparent 60%),
        radial-gradient(at 50% 70%, rgba(0, 175, 255, 0.75) 0px, transparent 60%),
        radial-gradient(at 85% 50%, rgba(51, 153, 255, 0.75) 0px, transparent 60%),
        radial-gradient(at 60% 40%, rgba(0, 80, 204, 0.75) 0px, transparent 60%),
        linear-gradient(45deg, rgba(0, 40, 70, 0.5), rgba(0, 30, 60, 0.5)),
        linear-gradient(-45deg, rgba(0, 50, 80, 0.5), rgba(0, 20, 50, 0.5));
    min-height: 100vh;
    
}
.calculator{
   
    
    
}

.wrapper{
    position: relative;
    
    padding: 10px;
   
}

.wrapper h3{
    text-align: center;
    padding-bottom: 10px;
}
.container{
    position: relative;
    width: 80%;
    height: 20px;
    margin: auto;
    margin-top: 15px;
}
input[type="range"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track{
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 70px;
}
.slider-track2{
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 70px;
}

input[type="range"]::-webkit-slider-runnable-track{
    -webkit-appearance: none;
    height: 5px;
}
input[type="range"]::-moz-range-track{
    -moz-appearance: none;
    height: 5px;
}
input[type="range"]::-ms-track{
    appearance: none;
    height: 5px;
}
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: #eeeeee;
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
}
input[type="range"]::-moz-range-thumb{
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
input[type="range"]::-ms-thumb{
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #ff0000;
    pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb{
    background-color: #27272a;
    border: 3px solid #ffffff;
}
.values{
    background-color: rgba(0, 0, 0, 0.767);
    width: 32%;
    position: relative;
    margin: auto;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    
}
.values:before{
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-top: 15px solid rgba(0, 0, 0, 0.767);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: auto;
    bottom: -14px;
    left: 0;
    right: 0;
}

.values span{
    color: #ffffff;
}




/* SEARCH CONTAINER */

.ultra-container{
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.titulo{
    
    text-align: center;
    max-width: 630px;
    margin: auto;
    margin-top: 100px;
}


.texto{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-transform: uppercase;
    
}

input[type="text"]{
    background-color: #17171741;
    border: none;
    pointer-events: none;
    border-radius: 10px;
    padding: 7px 5px 7px 5px;
    font-size: 18px; 
    text-align: center;
    max-width: 120px;
}


input[list]{
    background-color: #17171741;
    border: 1px solid #ffffff73;
    outline: none;
    border-radius: 10px;
    padding: 5px;
    font-size: 18px; 
    text-align: center;
    max-width: 80%;
}

select{
    background-color: #17171741;
    border: 1px solid #ffffff9d;
    outline: none;
    border-radius: 10px;
    padding: 5px;
    font-size: 18px;  
    text-align: center;
}

select option{
    color: rgb(221, 221, 221);
    background-color: #242424;
    
}
select::-webkit-scrollbar {
    width: 12px; /* Ancho de la barra de desplazamiento */
}

select::-webkit-scrollbar-track {
    background: #2f2f2f; /* Fondo del track */
    
}

select::-webkit-scrollbar-thumb {
    background: #6a0dad; /* Color del thumb */
    border-radius: 5px; /* Bordes redondeados */
}

select::-webkit-scrollbar-thumb:hover {
    background: #181818; /* Color del thumb al pasar el mouse */
}


/* SLIDER CONTAINER */


.slider-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.maestry{
    background-color: rgba(24, 24, 27, 0.8);
    border-radius: 20px;
    padding: 10px;
    border: none;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.61);
    outline: none;
   
}


/* RESULTS CONTAINER */

.maestry-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 400px;
    padding: 10px;
    border-radius: 10px;
}


.fame-info {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    gap: 10px;
}



.form-row {
    display: flex;
    align-items: center;
    
   
}




.fame-info label {
    width: 190px; /* Ajusta el ancho del label según tus necesidades */
    margin-right: 10px;
}



.spec-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 400px;
    padding: 10px;
    border-radius: 10px;
}

/* ITEM INFORMATION */

.data-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(24, 24, 27, 0.8);
    border: 1px solid #27272a;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11.6px);
    border: none;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.61);
    
}



.item-image{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid rgba(192, 192, 192, 0.5)
}

.item-image img {
    width: 130px;
}

.item-image input{
    background: transparent;
    border: none;
    color: #fbff00;
}

.search-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.5)
   
}

.search-container select{
    width: 100px;
}

.search-container label{
    padding: 5px;
}


.filters{
   display: flex;
   flex-direction: column;
   font-size: 18px;
   font-weight: 500;
}

.filter-option{
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 5px;
}



@media (max-width:800px){
    .ultra-container{
        flex-direction: column;
    }
}