*
{
    overflow: hidden;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    font-family: roboto;
}
body
{
    overflow: hidden;
}
#littleArrow
{
    left: 7.5vw;
    position: absolute;
}
#detailHead
{
    font-size: 6vw;
    margin-top: 30px;
    width: 100vw;
    height: 60px;
    border-top: 1px solid rgba(1, 150, 130, 0.3);
    border-bottom: 1px solid rgba(1, 150, 130, 0.3);
    border-radius: 10px 10px 0 0;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-container
{
    height: calc(100vh - 167px);
    display: block;
    overflow: auto;
    font-size: 4vw;
}
.item-box
{   
    overflow: auto;
    margin-left: 2.5vw;
    margin-top: 5px;    
    width: 95vw;        
}
.item-head-box
{    
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-width: calc(95vw - 0.5px);    
    border-right: 0.5px black solid;
}
.item-box.visible > .item-head-box
{    
    border-bottom: 0px;
}
.item-name
{
    float: left;
    height: 100%;
    width: 75vw;
}
.item-price
{
    float: right;
    height: 100%;
    width: 20vw;
}
.item-body-box
{
    transition: 0.5s 0s ease;
    height: 0;
    width: calc(95vw - 0.5px);
}
.item-box.visible > .item-body-box
{    
    transition: 0.5s 0s ease;
    height: 60px;
    border-right: 0.5px rgba(1, 150, 130, 0.3) solid;
    border-bottom: 0.5px rgba(1, 150, 130, 0.3) solid;
}
.description-box
{    
    width: 95vw;
    word-wrap: break-word;
}
.description-name
{    
    float: left;
    width: 70vw;
    word-wrap: break-word;
}
.description-price
{    
    float: right;
    width: 20vw;
}
.value-container
{
    margin-left: 2.5vw;
    margin-top: 15px;    
    width: 95vw;    
}
.value-title
{    
    margin-left: 2.5vw;
    float: left;
    width: 67.5vw;
}
.value-number
{    
    float: right;
    width: 20vw;
}
.observation-title
{    
    margin-left: 2.5vw;
    float: left;
    width: 70vw;
}
.observation-container
{
    margin-left: 2.5vw;
    margin-top: 5px;    
    width: 95vw;    
}
.observation-description
{
    margin-left: 2.5vw;
    width: 90vw;   
    min-height: 80px;
    resize: none;
}
#detailFoot
{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #019682;
    color: white;
    font-size: 3vw;
    position: fixed;
    bottom: 0;
    height: 30px;
    width: 100vw;
}
#nextButton
{
    appearance: none;   
    border: none;
    background-image: url('../../img/itemDetails/nextButton.png');     
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: transparent;
    position: fixed;
    right: 10px;
    bottom: 40px;
    height: 35px;
    width: 35px;
}
/* #EDBA2B */