html, body {
    background: #E3E3D8;
}

.wrapper {
    width: 300px;
    height: 500px;
    background: white;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 10px 10px;
    transform: scale(0.95);
    transition: box-shadow 0.5s, transform 0.5s;
}
.wrapper:hover {
    transform: scale(1);
    box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);
}
.wrapper .container {
    display: block;
    width: 100%;
    height: 100%;
}
.wrapper .container .top {
    height: 80%;
    width: 100%;
    background-size: cover;
    background-size: 100%;
}
.wrapper .container .bottom {
    width: 200%;
    height: 20%;
    transition: transform 0.5s;
}
.wrapper .container .bottom.clicked {
    transform: translateX(-50%);
}
.wrapper .container .bottom h1 {
    font-size: 16px;
    margin: 0;
    padding: 0;
}
.wrapper .container .bottom p {
    margin: 0;
    padding: 0;
}
.wrapper .container .bottom .left {
    height: 100%;
    width: 50%;
    background: #f4f4f4;
    position: relative;
    float: left;
}
.wrapper .container .bottom .left .details {
    padding: 20px;
    float: left !important;
    width: calc(70% - 40px);
}
.wrapper .container .bottom .left .buy {
    float: right;
    width: calc(30% - 2px);
    height: 100%;
    background: #f1f1f1;
    transition: background 0.5s;
    border-left: solid thin rgba(0, 0, 0, 0.1);
}
.wrapper .container .bottom .left .buy i {
    font-size: 30px;
    padding: 30px;
    color: #004b16;
    transition: transform 0.5s;
}
.wrapper .container .bottom .left .buy:hover {
    background: #9ec39e;
}
.wrapper .container .bottom .left .buy:hover i {
    transform: translateY(5px);
    color: #004b16;
}
.wrapper .container .bottom .right {
    width: 50%;
    background: #9ec39e;
    color: white;
    float: right;
    height: 200%;
    overflow: hidden;
}
.wrapper .container .bottom .right .details {
    padding: 20px;
    float: right;
    width: calc(70% - 40px);
}
.wrapper .container .bottom .right .done {
    width: calc(30% - 2px);
    float: left;
    transition: transform 0.5s;
    border-right: solid thin rgba(255, 255, 255, 0.3);
    height: 50%;
}
.wrapper .container .bottom .right .done i {
    font-size: 30px;
    padding: 30px;
    color: white;
}
.wrapper .container .bottom .right .remove {
    width: calc(30% - 1px);
    clear: both;
    border-right: solid thin rgba(255, 255, 255, 0.3);
    height: 50%;
    background: #BC3B59;
    transition: transform 0.5s, background 0.5s;
}
.wrapper .container .bottom .right .remove:hover {
    background: #9B2847;
}
.wrapper .container .bottom .right .remove:hover i {
    transform: translateY(5px);
}
.wrapper .container .bottom .right .remove i {
    transition: transform 0.5s;
    font-size: 30px;
    padding: 30px;
    color: white;
}
.wrapper .container .bottom .right:hover .remove, .wrapper .container .bottom .right:hover .done {
    transform: translateY(-100%);
}
.wrapper .inside {
    z-index: 9;
    background: #879b8a;
    width: 140px;
    height: 140px;
    position: absolute;
    top: -70px;
    right: -70px;
    border-radius: 0px 0px 200px 200px;
    transition: all 0.5s, border-radius 2s, top 1s;
    overflow: hidden;
}
.wrapper .inside .icon {
    position: absolute;
    right: 85px;
    top: 85px;
    color: white;
    opacity: 1;
}
.wrapper .inside:hover {
    width: 100%;
    right: 0;
    top: 0;
    border-radius: 0;
    height: 80%;
}
.wrapper .inside:hover .icon {
    opacity: 0;
    right: 15px;
    top: 15px;
}
.wrapper .inside:hover .contents {
    opacity: 1;
    transform: scale(1);
    transform: translateY(0);
}
.wrapper .inside .contents {
    padding: 5%;
    opacity: 0;
    transform: scale(0.5);
    transform: translateY(-200%);
    transition: opacity 0.2s, transform 0.8s;
}
.wrapper .inside .contents table {
    text-align: left;
    width: 100%;
}
.wrapper .inside .contents h1, .wrapper .inside .contents p, .wrapper .inside .contents table {
    color: white;
}
.wrapper .inside .contents p {
    font-size: 13px;
}/*# sourceMappingURL=card.css.map */
@media (max-width: 1024px){
    .wrapper{
        width: 250px;
        height: 415px;
    }
    .details h1{
        font-size: 16px;
    }
    .details h1{
        font-size: 16px;
    }
    .wrapper .container .bottom .left .buy i{
        font-size: 30px;
        padding: 25px;
    }

    .wrapper .container .bottom .right .remove i{
        font-size: 25px;
        padding: 25px;
    }
    .wrapper .container .bottom .right .done i{
        font-size: 30px;
        padding: 25px;
    }
}
@media (max-width: 950px){
    .wrapper .container .bottom h1 {
        font-size: 13px;
        margin: 0;
        padding: 0;
    }
}
@media (max-width: 855px){
    .wrapper{
        width: 230px;
        height: 380px;
    }
    .details h1{
        font-size: 16px;
    }
    .wrapper .container .bottom .left .buy i{
        font-size: 25px;
        padding: 23px;
    }
    .wrapper .container .bottom .right .done i{
        font-size: 25px;
    }
    .wrapper .container .bottom .right .remove {
        height: 53%;
    }
    .wrapper .container .bottom .right .remove i{
        font-size: 22px;
        padding: 25px;
    }
    .wrapper .container .bottom .left .details{
        padding: 10px;
    }

}
@media (max-width: 750px){
    .catalog{
        grid-template-columns: repeat(2, 0.2fr);
    }
}
@media (max-width: 500px){
    .wrapper {
        width: 200px !important;
        height: 305px;
    }
        .wrapper .container .bottom .left .details {

        width: calc(80% - 40px);
    }
    .details h1{
        font-size: 14px;
    }
    .details p{
        font-size: 13px;
    }
    .wrapper .container .bottom .left .buy i {
        font-size: 22px;
        padding: 16px;
    }
    .wrapper .container .bottom .right .details{
        width: calc(80% - 40px);
    }
    .wrapper .container .bottom .right .remove {
        height: 50%;
    }
    .wrapper .container .bottom .left .details{
        padding: 10px;
    }
    .wrapper .container .bottom .right .details {
        padding: 10px;
    }
    .wrapper .container .bottom .right .remove i{
        font-size: 22px;
        padding: 16px;
    }
    .wrapper .container .bottom .right .done i {
        padding: 15px;
    }
}
@media (max-width: 430px) {
    .catalog {
        grid-column-gap: 0px;
    }
}
@media (max-width: 375px){
    .catalog{
        grid-column-gap: 15px;
        grid-row-gap: 10px;
    }
    .wrapper{
        width: 180px !important;
    }
    .wrapper .container .bottom h1{
        font-size: 10px;
    }
}
@media (max-width: 350px){
    .wrapper {
        width: 160px;
        height: 260px;
    }

    .catalog{
        grid-column-gap: 5px;
        grid-row-gap: 5px;
    }
}