
  @import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #eee;
    font-family: 'Carter One', system-ui;
    text-transform: uppercase;
}

ul {
    padding: 10px;
    border-bottom: 1px solid #666;
    box-sizing: border-box;
    overflow: hidden;
}

li {
    list-style: none;
    height: 80px;
    /* line-height: 80px; */
    margin-bottom: 20px;
    display: table;   
    position: relative;
 
}

.label {
    /* margin-left: 80px; */
    letter-spacing: -1px;
    font-size: 1.6rem;
    display: table-cell;
    vertical-align: middle;
    padding-left: 80px;
    line-height: 100%;
    
}

.avatar {
    float: left;
    width: 60px;
    height: 80px;
    position: absolute;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.avatar img {
    width: 100%
}


#peacock {
    color: #537DB4;
}

#mustard {
    color: #E8A745
}

#white {
    color: #B3ABA1
}

#scarlett {
    color: #C92F37
}

#green {
    color: #2F623E;
}

#plum {
    color: #722244;
}

li.false .avatar {
    box-shadow: none
}

li.true .avatar {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

li.false {
    opacity: 0.2
}

li.false .label{
    /* color: #333;
    text-decoration: line-through; */
}

/* li.false:before {
    content:"";
    display: block;
    width: 58px;
    height: 78px;
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: rgba(0,0,0,0.8);
    z-index: 1;
    border-radius: 4px;
} */

li.true:before {
    content:"";
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 20px;
    position: absolute;
    top: 60px;
    left: 40px;
    background-image: url('verified.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: white;
    background-size: 32px 32px;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.tools {
    color: #232230;
}

.locations {
    color: #543e27;
    
}