
.hide{
    display: none;
}

/* Favorites button */

.mtcp-favorites{
	padding:20px 0 20px 0;
    color: #909090;
}

.mtcp-favorites i{
	font-size:26px;
	margin-right:10px
}

.mtcp-favorites .post-add-to-favorites, .mtcp-favorites .post-remove-from-favorites {
	cursor:pointer;
	-webkit-transition:0.3s all ease;
	transition:0.3s all ease;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center
}

.mtcp-favorites .post-add-to-favorites i{
	color:#d3d3d3;
}

.mtcp-favorites .post-add-to-favorites i:hover{
	color:#f3d224;
}

.mtcp-favorites .post-add-to-favorites:hover{
	color:#000;
	cursor:pointer;
}

.mtcp-favorites .post-add-to-favorites:hover i{
	color:#f3d224;
}

.mtcp-favorites .post-add-to-favorites.hide{
	display:none;
}

.mtcp-favorites .post-remove-from-favorites i{
	color:#f3d224;
}

.mtcp-favorites .post-remove-from-favorites i:hover{
	color:#d3d3d3;
}

.mtcp-favorites .post-remove-from-favorites:hover{
	color:#000;
}

.mtcp-favorites .post-remove-from-favorites:hover i{
	color:#d3d3d3;
}

.mtcp-favorites .post-remove-from-favorites.hide{
	display:none;
}

/* Favorites button in favorites list */

#mtcp-favorites-list .mtcp-favorites .post-add-to-favorites, #mtcp-favorites-list .mtcp-favorites .post-remove-from-favorites {
    font-size: 13px;
}

#mtcp-favorites-list .mtcp-favorites i{
    font-size: 20px;
}

.mtcp-favorites-item-removed{
     width: 200px;
     height: 112px;
     display: flex;
     align-items: center;
     justify-content: center;
    margin-bottom: 10px;
 }

.mtcp-favorites-item-removed i{
    font-size: 65px;
    color: #d0d0d0;
}

.mtcp-favorites-item-removed.hide{
    display: none;
}

@media screen and (max-width: 850px) {

    .mtcp-favorites-item-removed{
        width: 130px;
        height: 73px;
    }
}


@media screen and (max-width: 700px) {

    .mtcp-favorites-item-removed {
        width: 200px;
        height: 112px;
    }
}

@media screen and (max-width: 600px) {

    .mtcp-favorites-item-removed {
        width: 150px;
        height: 84px;
    }
}

@media screen and (max-width: 450px) {

    .mtcp-favorites-item-removed {
        width: 100px;
        height: 56px;
    }
}