/* Minification failed. Returning unminified contents.
(10,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(11,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(33,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(34,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(37,28): run-time error CSS1039: Token not allowed after unary operator: '-base'
(38,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(38,55): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(54,28): run-time error CSS1039: Token not allowed after unary operator: '-base-dark'
 */
#stuff {
    margin-top: 50px;
    margin-bottom: 50px;
}
#stuff .search-con{
    float: right;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: var(--border-radius-base);
    box-shadow: var(--box-shadow-home);
    line-height: 35px;
    font-size: 16px;
    font-weight: 200;
    text-align: justify;
}
#stuff .search-con .title {
    float: right;
    width: 100%;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    padding: 10px 0;
}

#stuff .result-con{
    float: right;
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    border-radius: var(--border-radius-base);
    box-shadow: var(--box-shadow-home);
}
#stuff .search-con .i-con{
    background-color: var(--base);
    border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
    cursor: pointer;
    width: 50px;
    float: right;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 2;
}
#stuff .search-con .i-con i{
    color: white;
    width: 50px;
    cursor: pointer;
}
#stuff .search-con .i-con:hover{
    background-color: var(--base-dark);
}
