body {
    margin: 0;
    padding: 0;
}
.input-group {
    display: flex;
}

.form-control {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #cdcdcd;
    border-radius: 4px;
}

.form-control:focus-visible {
    outline: none!important;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #FFF;
    border: 1px solid #9c9c9c;
}
  
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}
  
.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 2px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-black {
    background-color: #000;
    color: #FFF;
    font-weight: bold;
    padding: 1.2em 2em;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.d-flex {
    display: flex!important;
}

.d-block {
    display: block!important;
}

.justify-content-around {
    justify-content: space-around!important;
}

.my-10 {
    margin-top: 10px!important;
    margin-bottom: 10px!important;
}

.my-30 {
    margin-top: 30px!important;
    margin-bottom: 30px!important;
}

.textlink {
    color: #000;
    text-decoration: none;
}

.mr-10 {
    margin-right: 10px!important;
}

.only-mobile {
    display: none!important;
}

.m-0 {
    margin: 0!important;
}

.mt-10 {
    margin-top: 10px!important;
}

.mt-30 {
    margin-top: 30px!important;
}

.mt-50 {
    margin-top: 50px!important;
}

.my-50 {
    margin-top: 50px!important;
    margin-bottom: 50px!important;
}

.mt-75 {
    margin-top: 75px!important;
}

.mt-100 {
    margin-top: 100px!important;
}

.mb-50 {
    margin-bottom: 50px!important;
}

.text-center {
    text-align: center!important;
}

.hr {
    width: 100%;
    display: block;
    height: 1px;
    border-bottom: 1px solid #ececec;
    margin: 14px 0;
}

@media only screen and (max-width: 768px) {
    .only-mobile {
        display: inline-block!important;
    }
}

.logo {
    transition: all 0.5s;
    width: 225px;
}

.logo:hover {
    transform: scale(0.97);
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    z-index: 2;
    height: 75px;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0px 1px 11px #b4b4b4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menu {
    display: flex;
    justify-content: space-around;
    width: 70%;
}

header .menu .closeButton {
    background-color: #FFF;
    box-shadow: 1px 1px 8px #b7b7b7;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #3a3a3a;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    margin: 0 6px;
    transition: all 0.3s;
    position: fixed;
    top: 5%;
    right: 5%;
}

header .menu.show {
    display: block !important;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFF;
    padding: 100px 0;
}

header .menu.show .menu-link {
    justify-content: start;
    flex-direction: row;
    padding: 8px 20px;
    margin: 5px 10px;
    border-radius: 5px;
    background-color: #FDEDF0;
}

header .menu.show .menu-link span {
    margin-left: 10px;
}

header .menu.show .menu-link::after {
    display: none;
}

header .menu .menu-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #212121;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s;
}

header .menu .menu-link:hover {
    transform: translateY(-3px);
}

header .menu .menu-link::after {
    width: 0px;
    height: 1px;
    content: " ";
    background-color: #000;
    transition: all 0.3s;
}

header .menu .menu-link:hover::after {
    width: 100%;
}

header .menu .menu-link img {
    margin-bottom: 5px;
    width: 30px;
}

.awornf {
    background-color: #ffc2652e;
    display: flow-root;
    height: 400px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.container-card {
    background-color: #FFF;
    border-radius: 7px;
    padding: 15px;
    display: flex;
    box-shadow: 1px 1px 11px #e9e9e9;
    align-items: start;
    flex-wrap: wrap;
    justify-content: center;
}

.container-card .card {
    margin: 0 10px;
    border-radius: 7px;
    box-shadow: 1px 1px 11px #b4b4b4;
    width: calc(20% - 20px);
    color: #000;
    text-decoration: none;
    margin-bottom: 15px;
}

.container-card.four-cards .card {
    width: calc(25% - 20px);
}

.container-card .card img {
    width: 100%;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.container-card .card .card-body {
    padding: 15px;
}

.container-card .card .card-body .title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.container-card .card .card-body .title.small {
    font-size: 16px;
}

.container-card .card .card-body .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-card .card .card-body .bottom span {
    font-size: 14px;
    color: #525252;
}

.container-card .card .card-body .bottom span i {
    transform: translateY(1px);
}

.container-card .card .card-body .bottom span:nth-child(1) i {
    color: #9fc9ff;
}

.container-card .card .card-body .bottom span:nth-child(2) i {
    color: #ffd79c;
}

.orwnar {
    display: flex;
}


.orwnar .col {
    width: 50%;
    padding: 3%;
}

.orwnar .col:nth-child(1) {
    background-color: #ffc2652e;
}

h4 {
    color: #212121;
    font-weight: 800;
    font-size: 24px;
    margin: 0;
}

.orwnar .checkbox-container {
    margin: 10px 0;
}

.orwnar .form-control {
    font-size: 15px;
    background-color: transparent;
}

.orwnar .form-control::placeholder {
    color: #616161;
}

.bg-1 {
    background-image: url('../images/bg1.png');
    background-size: cover;
    background-position: center;
}

.bg-2 {
    background-image: url('../images/founder.webp');
    background-size: cover;
    background-position: top center;
}

.posts-content {
    margin-top: 2.5em;
}

.posts-content .top-title {
    display: flex;
}

.posts-content .top-title span {
    padding: 10px;
}

.posts-content .top-title span:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.bg-color-1 {
    background-color: #11787857;
}

.bg-color-2 {
    background-color: #f8d9684f;
}

.bg-color-3 {
    background-color: #FBEDE5;
}

.posts-content .top-title span:nth-child(2) {
    font-size: 14px;
}

.posts-content .top-title span:nth-child(2) i {
    transition: all 0.3s;
}

.posts-content .top-title span:nth-child(2):hover i {
    transform: translateX(4px);
}

.card.hoverAnimation {
    transition: all 0.3s;
}

.card.hoverAnimation:hover {
    transform: scale(1.05);
}

.card.horizontal {
    display: flex;
    width: calc(33% - 20px);
    height: 150px;
}

.container-card .card.horizontal img {
    width: auto;
    height: 100%;
}

.container-card .card.horizontal .card-body {
    justify-content: space-around;
    display: flex;
    flex-direction: column;
}

.container-card .card.horizontal .card-body .bottom {
    justify-content: space-around;
    display: flex;
}

.oawutub {
    background-color: #fff4e3;
    padding: 10px 0;
}

.oawutub .container {
    background-color: #FFF;
}

.card-header {
    position: relative;
}

.card-header .interactions {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 10px 0;
}


.card-header .interactions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}

.card-header .interactions span {
    font-size: 14px;
    color: #525252;
    font-weight: bold;
}

.card-header .interactions span i {
    transform: translateY(1px);
}

.card-header .interactions span:nth-child(1) i {
    color: #9fc9ff;
}

.card-header .interactions span:nth-child(2) i {
    color: #ffd79c;
}

.swiper-slide .card {
    width: calc(100% - 15px);
    display: block;
}

.swiper-wrapper {
    padding-top: 30px;
}

.styled-card .card {
    width: calc(16.6% - 20px);
    transition: all 0.4s;
}

.styled-card .card .title {
    font-size: 14px!important;
}

.styled-card .card:nth-child(1) {
    transform: rotate(-4deg);
}

.styled-card .card:nth-child(2) {
    transform: rotate(4deg);
}

.styled-card .card:nth-child(3) {
    transform: rotate(-4deg);
}

.styled-card .card:nth-child(4) {
    transform: rotate(4deg);
}

.styled-card .card:nth-child(5) {
    transform: rotate(-4deg);
}

.styled-card .card:nth-child(6) {
    transform: rotate(4deg);
}

.styled-card .card:hover {
    transform: rotate(0deg);
}

footer {
    background-color: #fff4e39a;
    padding: 2.5em 0;
}

.copyright {
    background-color: #fff4e341;
    padding: 2.5em 0;
}

footer .container {
    display: flex;
}

footer .container .col {
    padding: 0 20px;
}

footer .container .col:nth-child(1) {
    width: 40%;
}

footer .container .col:nth-child(2) {
    width: 20%;
}

footer .container .col:nth-child(3) {
    width: 20%;
}

footer .container .col:nth-child(4) {
    width: 20%;
}

footer a {
    display: block;
    text-decoration: none;
    color: #212121;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
}

footer .title {
    display: block;
    text-decoration: none;
    color: #212121;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    margin: 10px 0;
    margin-top: 4em;
}

footer h4 {
    font-size: 25px;
}

.btn1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.breadcrumbs {
    background-color: #ff7d7d37;
    padding: 10px 20px;
    font-size: 14px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #000;
}

.single-post h4 {
    font-size: 25px;
    margin: 20px 0;
}

.top-buttons .top-button {
    padding: 8px;
    color: #292929;
    text-decoration: none;
    border-radius: 7px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.top-buttons .top-button[disabled] {
    cursor: default;
}

.top-buttons .top-button:nth-child(1) {
    background-color: #F6DACA;
}

.top-buttons .top-button:nth-child(2) {
    background-color: #FBDBE1;
}

.top-buttons .top-button:nth-child(3) {
    background-color: #A8D6D9;
}

.single-post {
    display: flex;
}

.single-post .col:nth-child(1) {
    width: 70%;
}

.single-post .col:nth-child(2) {
    width: 30%;
    padding-top: 10%;
}

button.like {
    position: fixed;
    bottom: 10%;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    box-shadow: 1px 1px 9px #c0c0c0;
    cursor: pointer;
    color: blue;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
    transition: all 0.3s;
}

button.like.liked {
    background-color: #aed1d1;
    color: #FFF;
    padding: 0;
}

button.like.liked span {
    display: none;
}

button.like i {
    font-size: 2em;
}

button.like span {
    font-size: 14px;
    white-space: nowrap;
    background-color: #FFF;
    border-radius: 7px;
    padding: 5px 7px;
    box-shadow: 1px 1px 6px #a3a3a3;
}

.single-post .sidebar h5 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.single-post .sidebar .card {
    width: calc(50% - 20px);
}

.single-post .sidebar .card h6 {
    font-size: 14px;
    margin: 0px;
}

.single-post .sidebar .card .card-body {
    padding: 7px;
}

.save_mail {
    background: repeating-linear-gradient(45deg, #F6F5F5, #F6F5F5 2px, #FFFFFF 2px, #FFFFFF 4px);
    padding: 20px 30px;
    margin: 40px 10px 40px 0px;
    box-shadow: 1px 1px 6px #a3a3a3;
}

.save_mail h4 {
    margin: 0;
}

.save_mail .icon {
    background-color: #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    width: 40px;
    height: 40px;
}

.post_bottom_info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-right: 10px;
}

.post_bottom_info .left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.post_bottom_info .left .image {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
}

.post_bottom_info .left p {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
}

.post_bottom_info .left .stars {
    margin-top: 10px;
}

.post_bottom_info .info {
    display: flex;
    justify-content: space-between;
    height: 150px;
    flex-direction: column;
    padding: 0 25px;
}

.post_bottom_info .info h4 {
    margin: 0;
    color: #212121 !important;
}

.post_bottom_info .info p {
    font-weight: 600;
    font-size: 13px;
    color: #212121 !important;
}

.post_bottom_info .info p span:not(:first-child) {
    margin-left: 10px;
}

.post_bottom_info .buttons button {
    border-radius: 5px !important;
    border: 1px solid #212121 !important;
    font-size: 14px !important;
    color: #212121 !important;
    background: #f6f5f5 !important;
    padding: 10px;
    width: 250px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.post_bottom_info .buttons button:hover {
    color: #f6f5f5 !important;
    background: #212121 !important;
}

.stars {
    color: orange;
    font-size: 20px;
}

.newcomment {
    justify-content: start;
    flex-direction: column;
}

.newcomment h4 {
    margin: 0;
}

.newcomment textarea {
    height: 50px;
    padding: 10px;
}

.newcomment textarea,
.newcomment input {
    box-sizing: border-box;
}

.newcomment textarea::placeholder,
.newcomment input::placeholder {
    font-style: italic;
}

.newcomment label {
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
}

.newcomment label:first-child {
    margin-top: 0px;
}

.newcomment .checkbox-container {
    font-weight: 400;
}

.newcomment .checkbox-container i {
    position: relative;
    top: 2px;
}

.comments .comment {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    position: relative;
    margin-top: 20px;
}

.comments .comment.response {
    background-color: #f8d9684f;
    margin-left: 25px;
}

.comments .comment .comment-header {
    border-bottom: 1px solid #d0d0d0;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.comments .comment .comment-body {
    padding: 10px 20px 40px 20px;
}

.comments .comment button {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ece6e6;
    padding: 10px;
    border: none;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.comments .comment button:hover {
    background-color: #000;
    color: #ece6e6;
}

.posts {
    display: flex;
    flex-wrap: wrap;
}

.posts .card {
    width: calc(25% - 20px);
    margin: 10px;
    box-shadow: 1px 1px 9px #c9c9c9;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.pagination a {
    background-color: #FFF;
    box-shadow: 1px 1px 8px #b7b7b7;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #3a3a3a;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin: 0 6px;
    transition: all 0.3s;
}

.pagination a:hover, .pagination a.selected {
    background-color: #3a3a3a;
    color: #FFF;
}

.search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000008b;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-container .input-group {
    width: 500px;
    max-width: 90%;
}

.socials {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #dbdbdb;
}

.socials .social {
    font-size: 3em;
    transition: all 0.3s;
    margin: 0 10px;
}

.socials .social:hover {
    transform: scale(1.1);
}

.socials .social.facebook {
    color: #1877F2;
}

.socials .social.pinterest {
    color: #E60023;
}

.socials .social.instagram {
    color: #E1306C;
}

.post-container {
    display: flex;
    flex-direction: row;
}

.post-container .col:nth-child(1) {
    width: 20%;
    padding-right: 6px;
}

.post-container .col:nth-child(2) {
    width: 80%;
}

.filters {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.filters .filter,
.filters .reset_filter {
    margin: 3px 0;
    box-sizing: border-box;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8d9684f;
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 500;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filters .reset_filter {
    background-color: #000;
    color: #FFF;
    text-decoration: none;
}

.filters .filter_content {
    padding: 10px;
    max-height: 500px;
    overflow-y: auto;
    display: none;
}

.filters .filter_content.show {
    display: block;
}

.filters .filter_content .checkbox-container {
    padding-left: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.filters .filter_content a {
    color: #000;
    text-decoration: none;
}

.ratingInput i {
    cursor: pointer;
    font-size: 20px;
    color: orange;
}

.swalForm {
    text-align: left;
}

.swalForm label {
    display: block;
}

.swalForm input,
.swalForm textarea {
    width: 100%;
    margin: 10px 0;
}

.formSuccess {
    color: rgb(16, 172, 16);
    text-shadow: 1px 1px #d7d7d7;
    display: none;
}

.ingredients {
    padding: 0 15px;
}

.ingredients .checkbox-container input:checked ~ .checkmark {
    background-color: #000000;
}

.ingredients .checkbox-container input:checked ~ .text {
    text-decoration: line-through;
}

.instructions .instruction {
    margin-bottom: 12px;
}

.instructions .instruction .number {
    background-color: #000;
    color: #FFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
}

.notes .note {
    margin-bottom: 10px;
}

.recipeInfo span:nth-child(1) {
    font-size: 14px;
    font-weight: bold;
    margin-right: 8px;
}

.recipeInfo a {
    color: #000;
    text-decoration: none;
}

.languageLink img {
    transform: translateY(4px);
    margin-right: 8px;
}

.comments .comment .stars {
    margin-right: 20px;
}

.postImage {
    margin: 0 auto;
    display: block;
}

.card.double {
    min-width: 280px;
    width: calc(50% - 20px);
    max-height: 413px;
}

.adblock {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #000000df;
    z-index: 9999999;
}

.adblock .adblock_content {
    width: 500px;
    max-width: 95%;
    background-color: #e74c3c;
    padding: 20px 30px;
    border-radius: 10px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.adblock .adblock_content h4 {
    color: #FFF;
    font-size: 35px;
}

.adblock .adblock_content i {
    font-size: 7em;
}

.adblock .adblock_content button {
    background-color: #14a714;
    color: #FFF;
    border: 1px solid #c9c9c9;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 4px #111111;
    font-size: 18px;
    cursor: pointer;
    margin-top: 25px;
}

@media only screen and (max-width: 768px) {
    .postImage {
        width: 300px;
        height: 375px;
    }

    .wfgrnfo .card:nth-child(5) {
        display: none;
    }

    .container-card .card.horizontal img {
        max-width: 150px;
    }

    .container-card .card .card-body .title {
        font-size: 17px;
    }

    .card.horizontal {
        height: 150px;
    }

    .container-card.four-cards .card {
        width: 100%;
    }

    .post-container {
        display: flex;
        flex-direction: column;
    }

    .post-container .col:nth-child(1) {
        width: 100%;
        padding-right: 0px;
    }

    .post-container .col:nth-child(2) {
        width: 100%;
    }

    .single-post {
        flex-direction: column;
    }

    .single-post .col:nth-child(1) {
        width: 100%;
    }

    .single-post .col:nth-child(2) {
        width: 100%;
        padding-top: 0;
    }

    .post_bottom_info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .post_bottom_info .info {
        height: auto;
    }

    .post_bottom_info .info .buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .post_bottom_info .info p span {
        display: block;
        margin-left: 0px!important;
    }

    .post_bottom_info .info .buttons button:not(:first-child) {
        margin-top: 10px;
    }

    .logo {
        width: 70%;
    }

    .menu {
        display: none!important;
    }

    .container-card .card {
        width: calc(50% - 20px);
    }

    .swiper .card {
        width: 100%;
    }
    
    .container {
        width: 96%;
    }

    .orwnar {
        flex-direction: column;
    }

    .orwnar .col {
        padding: 2em 15px;
        width: auto;
    }

    .bg-1, .bg-2 {
        display: none;
    }
    
    .card.horizontal {
        width: 100%;
    }

    footer .container {
        flex-direction: column;
    }

    footer .container .col {
        width: auto!important;
    }
    
    .card.double {
        width: calc(100% - 20px);
    }
}

@media only screen and (max-width: 350px) {
    .comments .comment .comment-header {
        flex-direction: column;
    }

    .comments .comment .comment-header span:last-child {
        text-align: right;
        margin-top: 10px;
    }
    
    .container-card .card {
        width: auto;
    }
}