.unchecked {
    display: none;
}

.input-wrapper {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.checked {
    display: flex;
}

.social-wall-inputs {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 1px grey solid;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: white;
    padding: 20px;
    margin: 0;
    flex: 1 1 auto;
}

.social-wall-input {
    flex-direction: column;
    margin-top: 5px;
    width: 100%;
    display: flex;
}

.social-wall-account {
    width: 25%;
    margin: 15px 0;
}

.social-wall-account h3 {
    margin: 0;
    border: 1px grey solid;
    border-top-left-radius: 5px;
    padding: 5px 20px;
    border-top-right-radius: 5px;
    border-bottom: none;
    color: white;
    background-color: #23282d;
}

.social-wall-check {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#wall_form input[type=submit] {
    color: white;
    background-color: #23282d;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px 15px;
}

/* Grid settings */

.css-grid-wrapper {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 20px;
}

.ie {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.css-grid-wrapper .card {
    border-radius: 5px;
    border: rgba(0, 0, 0, 0.05) solid 1px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    -ms-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
}

.css-grid-wrapper .card.loaded {
    opacity: 1;
}

.ie>.card {
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    width: 20%;
}

.hidden {
    display: none;
}

.card-content {
    padding: 30px 20px;
    color: #8c8c8c;
    position: relative;
}

.profile {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 20px 0;
}

.profile-meta {
    border-left: 2px solid #999999;
    padding: 10px 0;
    padding-left: 15px;
    align-items: center;
}

.cardlink {
    position: relative;
}

.card-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.share-buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
}

.share-buttons i {
    text-decoration: none;
    color: #888888;
    font-size: 40px;
}

h2 {
    color: black;
    padding: 0;
    margin: 0;
}

.avatar {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    background-color: red;
}

.image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    padding-top: 60%;
    display: table;
    width: 100%;
}

.centering {
    margin: auto;
}

.heart {
    background-color: #888888;
    height: 30px;
    transform: rotate(-45deg);
    width: 30px;
}

.heart:before, .heart:after {
    content: "";
    background-color: #888888;
    border-radius: 50%;
    height: 30px;
    position: absolute;
    width: 30px;
}

.heart:before {
    top: -15px;
    left: 0;
}

@media only screen and (max-width: 1150px) {
    .css-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 800px) {
    .css-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 600px) {
    .css-grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}