.outer-container {
    position: relative;
    width: 100%;
    height: fit-content;
}

.search-container {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
}
#huggys-search {
    width: 80%;
    max-width: 500px;
    height: 25px;
    border-radius: 10px 0px 0px 10px;
    padding: 5px;
    outline: none;
    border: 2px inset #ccc;
}
button#search {
    cursor: pointer;
    border-radius: 0px 10px 10px 0px;
    height: 25px;
    padding: 4px 15px 6px 12px;
    outline: none;
    border: 0px;
    font-family: 'Summerfriday';
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px inset black;
}

.search-extras {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    background-color: #333;
    padding: 5px 3px;
    border-top: 1px solid black;
    flex-wrap: wrap;
    gap: 10px;
}
.search-extras div {
    font-family: 'Summerfriday';
    font-size: 2rem;
    padding: 8px 20px 0px 25px;
    white-space: nowrap;
    background-color: white;
    cursor: pointer;
}
.search-extras div .isopen {
    margin-left: 20px;
    font-size: 1.5rem;
}

.search-extras div .isopen i {
    transform: translateY(-2px);
}

.search-options {
    width: 100%;

    font-family: Arial, Helvetica, sans-serif;
    background-color: red;
    flex-wrap: wrap;
    background-color: #333;
}
.a-search-type {
    border-top: 1px solid black;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 5px 5px;
    box-sizing: 0 0 5px 5px rgba(0,0,0,0.5);
}
.search-options .a-search-option {
    background-color: white;
    padding: 5px 10px;
    border: 2px inset #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 2px 5px;
}
.a-search-option input {
    width: 15px;
    height: 15px;
    padding: 10px;
}

.result-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.result-container .item-container {
    cursor: pointer;
    max-width: 200px;
    padding: 30px 30px 10px 30px;
    background-color: white;
    -webkit-box-shadow: 3px 3px 15px 0px rgba(255,255,255,0.3);
    box-shadow: 3px 3px 15px 0px rgba(255,255,255,0.3);
    font-family: 'Summerfriday';
    transition: all 0.3s;
}
.result-container .item-container:hover,
.result-container .item-container:active{
    transform: scale(1.05);
}
.result-container .item-container img {
    width: 140px;
    height: 161px;
    background-repeat: no-repeat;
    border: 1px solid black;
    border-radius: 5px;
    -webkit-box-shadow: 3px 3px 15px 0px rgba(255,255,255,0.5);
    box-shadow: 3px 3px 15px 0px rgba(255,255,255,0.5);
    
}


.result-container .item-container .item-price {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    transform: translate(0px,calc(-113%));
    background: url(../img/arrows-green-blue.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 140px;
    border-radius: 0 0 5px 5px;
    color: white;
    font-size: 1.3rem;
    z-index: 99;
    padding: 6px 2px;
    transition: all 0.3s;
}
.result-container .item-container h1 {
    font-size: 1.4rem;
    margin: 5px 0 10px;
    font-family: 'Summerfriday';
}
.result-container .item-container b {
    font-weight: bold;
}


.controls-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    gap:30px;
    background-color: #333;
    padding: 10px;
}

.controls-container button {
    cursor: pointer;
    background-color: white;
    border: 1px solid black;
    outline: none;
    padding: 3px 20px;
}
