body{
    margin-bottom: 50px !important;
}

.maincontainer {
    width: 80% !important;
    height: 80vh;
    margin: auto;
}

.imge {
    width: 50%;
    height: 80vh;
    float: left;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    box-shadow: 50px 50px 8px 8px white inset;
}

.one_profile {
  width: 65%;
  height: 45vh;
  vertical-align: middle;
  display: table-cell;
  margin-top: 30px;
  text-align: right !important;
}

.img_home_page {
  width: 80%;
  height: 28vh;
  vertical-align: middle;
  display: table-cell;
}

.one_profile_img {
    width: 40%;
    height: 40vh;
    vertical-align: top;
    display: table-cell;
    margin: auto;
    text-align: right !important;
}

.one {
    width: 50%;
    height: 80vh;
    vertical-align: middle;
    display: table-cell;
    margin: auto;
    text-align: right !important;
}

.two {
    width: 50%;
    height: 80vh;
    vertical-align: middle;
    display: table-cell;
}

.two h1 {
    text-align: left;
    color: #3498db;
}

.two div {
    margin: auto;
    width: 50%;
}

.colored-text-1 {
    color: #3498db;
}

a {
    color: black !important;
    transition: 500ms !important;
}

a:hover {
    color: #3498db !important;
}

.mobile {
    display: none;
}

.search-box {
    width: 17%;
    float: left;
    margin: 10px;
}

.search-div {
    margin-top: 5%;
}

.good_result {
    margin-right: 0;
    background-color: mediumspringgreen;
    border: 1px solid green;
    margin-bottom: 20px;
    width: 50%;
}

.error {
    margin-right: 0;
    background-color: pink;
    border: 1px solid red;
    margin-bottom: 20px;
    width: 50%;
}

.thumbnail {
    width: 100%;
    height: 300px;
    border-radius: 40px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 12px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: auto;
    margin-bottom: 20px;
}
/* hide scrollbar */
::-webkit-scrollbar {
    width: 0px;
}

.thumbnail_img {
    width: 25%;
    height: 100%;
    float:left;
    margin-left: 4%;
    margin-top: 1%;
    overflow: hidden;
}

.thumbnail_description {
    width: 45%;
    height: 100%;
    float: left;
    text-align: left;
    padding-left: 20px;
}

.thumbnail_description h1 {
    text-align: left;
}

.thumbnail_ratings {
    width: 20%;
    height: 100%;
    float: left;
    vertical-align: middle;
    position: relative;
}

.comment {
    width: 100% !important;
    height: 100px;

    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.1);
    overflow: auto;
    margin: 20px !important;
    padding: 10px;
}

.comment-left-username {
    padding-top: 10px;
    padding-left: 5px;
    width: 30% !important;
    float:left;
    height: 100% !important;
}

.comment-right-button {
    width: 30% !important;
    margin: 0 !important;
    display: inline-block;
}

.comment-left-textbox {
    width: 69% !important;
    float:left;
}

.comment-right-content {
    padding: 10px;
    width: 69% !important;
    margin-left: 30%;
}



td {
    text-align: center;
}

iframe::-webkit-scrollbar {
    display: none;
}

.like-button {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    opacity: 0.5;
    transition: 200ms;
}

.like-button:hover {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 12px 20px 0 rgba(0, 0, 0, 0.19);
}

.like-button-pressed {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 12px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 720px) {
    .maincontainer {
        display: flex;
        flex-flow: column;
    }

    .one,
    .two {
        width: 100%;
        margin: 0;
    }

    .one {
        order: 2;
        height: 50vh;
    }

    .one div {
        text-align: center;
        width: 100%;
    }

    .two {
        order: 1;
        margin-top: 20px;
        height: 25vh;
    }

    .two div {
        width: 100%;
    }

    .mobile {
        display: block;
    }

    .search-box {
        width: 100%;
    }
}

.invert {
  filter: invert(1) hue-rotate(180deg);
}

.dark-mode {
  filter: invert(1) hue-rotate(180deg);
 }
