:root {
    --color-orange: #fcb941;
    --color-black: #2e3131;
    --color-red: #f64747;
    --color-green: #388E3C;
}

.clr-orange {
    color: var(--color-orange) !important
}

.clr-red {
    color: var(--color-red)
}

.clr-green {
    color: var(--color-green)
}

body {
    background: #fff;
    animation: none !important;
    overflow-x: hidden;
    color: var(--color-black);
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.btn {
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.btn:hover {
    background: var(--color-orange);
    color: var(--color-black);
    transition: all .3s ease-in-out;
}

.btn:active, .btn.active {
    box-shadow: none;
    outline: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none;
}

img {
    max-width: 100%;
}

body .content {
    max-width: 100%;
    position: relative;
    width: 100%;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-image: url('../../img/bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.inner-container {
    background-color: #fff;
    margin-top: 80px;
    margin-bottom: 30px;
    border-radius: 10px;
    min-height: 75vh;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

body[data-action-id="admin"] .inner-container {
    min-height: unset;
}

.wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.opacity_none {
    opacity: 0;
}

/*Popup message holder*/
.alert-fixed {
    position: fixed;
    z-index: 99999;
    width: 25%;
    left: 50%;
    transform: translateX(-50%);
    border: unset;
    box-shadow: 1px 2px 2px white;
    font-weight: 600;
    font-size: 20px;
    color: white;
    top: 10vh;
}

.alert-fixed.alert-success, .alert-fixed.alert-warning {
    background-color: var(--color-orange);
}

.alert-fixed.alert-danger {
    background-color: red;
}

.alert-dismissible {
    padding-right: 35px;
}

@media (max-width: 992px) {
    .alert-fixed {
        width: 96%;
        font-size: 17px;
    }
}

.radio label, .checkbox label {
    width: 100%;
}

.remove_cart_item {
    cursor: pointer;
    padding-top: 10px;
}

@media (max-width: 992px) {
    .page {
        background-image: unset;
        background-color: #b2b2b257;
    }

    .row-flex {
        row-gap: 15px;
    }
}

/** FORMS **/
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #fcb941;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(252, 185, 65, 0.25);
}

textarea {
    resize: none;
}

/** /FORMS **/
/** HEADER **/
.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
}

.header .header-wrapper {
    display: flex;
    justify-content: space-between;
}

.header .header-wrapper > div {
    width: 33%;
    display: flex;
    align-items: center;
}

@media (max-width: 786px) {
    .header .header-wrapper > div.logo-block {
        width: 46%;
        justify-content: flex-end;
    }
}

.header .header-wrapper > div:last-child {
    justify-content: flex-end;
}

.header .social-networks {
    display: flex;
    align-items: center;
}

.header .social-networks .social-block {
    display: flex;
    align-items: center;
    position: relative;
}

.header .social-networks .social-block::after {
    content: '';
    width: 0;
    height: 24px;
    border: 1px solid rgb(231, 231, 231);
    border-radius: 2px;
    margin: 0 15px;
}

@media (max-width: 767px) {
    .header .social-networks .social-block::after {
        margin: 0 10px 0 5px;
    }
}

.header .social-networks .social-block a {
    font-size: 24px;
    color: var(--color-black);
    margin-right: 10px;
    padding: 5px;
    transition: all .3s ease-in-out;
}

@media (max-width: 767px) {
    .header .social-networks .social-block a {
        margin-right: 4px;
    }
}

.header .social-networks .social-block a:hover {
    color: var(--color-orange);
    transition: all .3s ease-in-out;
}

.header .social-networks .social-block a:nth-last-child(1) {
    margin-right: 0;
}

.header a.download_app {
    background-color: var(--color-orange);
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    padding: 9px 10px 7px;
    border-radius: 4px;
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-weight: bold;
}

.header a.download_app svg {
    display: none;
}

.header a.download_app:hover {
    background-color: var(--color-black);
    color: #fff;
    transition: all .3s ease-in-out;
}

@media (max-width: 786px) {
    .header a.download_app {
        width: 35px;
        height: 35px;
        padding: 5px;
        color: var(--color-black);
        margin-right: 0;
        flex-shrink: 0;
    }

    .header a.download_app svg {
        height: 20px;
        width: 20px;
        display: block
    }

    .header a.download_app span {
        display: none;
    }
}

.header .logo-block img {
    max-width: 100%;
    width: 80px;
    height: auto;
    background-color: white;
    border-radius: 50%;
    margin-bottom: -7px;
    margin-left: 85px;
}

.header .cart-block {
    display: flex;
    align-items: center;
    justify-content: center;
}


.header .cart-holder {
    width: 270px;
    position: relative;
    margin: 13px 0 13px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    border: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
    user-select: none;
    text-decoration: none;
    color: var(--color-orange);
    background: var(--color-black);
}

.header .cart-holder .cart-order-types {
    margin-left: -38px;
    width: 150px;
    text-align: left;
    top: 16px;
}

.header .cart-holder .cart-order-types span {
    color: white;
    text-transform: uppercase;
    display: none;
}

.header .cart-holder .cart-order-types span.active {
    display: block;
}

.header .cart-holder span {
    font-size: 13px;
    font-weight: bold;
}

.header .cart-holder .counter {
    color: var(--color-black);
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    height: 25px;
    width: 25px;
    top: 11px;
    left: 8px;
    font-size: 18px;
    align-items: center;
    padding-top: 0px;
}

.header .cart-holder .header-cart-price {
    position: absolute;
    right: 8px;
}

.header .cart-holder:hover {
    background-color: var(--color-orange);
}

.header .cart-holder:hover .header-cart-price {
    color: var(--color-black);
}

@media (max-width: 992px) {
    .header .cart-holder .counter {
        top: 11px;
        font-size: 20px;
        right: 8px;
        width: 30px;
        height: 30px;
    }

    .header .cart-holder .cart-order-types {
        top: 19px;
        font-size: 16px;
        text-align: center;
    }

    .header .cart-holder span {
        font-size: 15px;
        font-weight: bold;
    }

    .header .cart-holder {
        width: calc(100% - 24px);
        right: 12px;
        height: 50px;
        position: fixed;
        bottom: 10px;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
        z-index: 101;
        background-color: var(--color-orange);
        color: #fff;
    }

}

/** ./HEADER **/
.index-btns {
    margin-top: 30px;
    display: flex;
    column-gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 30px;
}

.index-btns button {
    padding: 0;
    margin: 0;
    background: var(--color-black);
    color: #fff;
    border: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
    min-width: 250px;
    min-height: 60px;
    border-radius: 60px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    padding: 17px;
}

.index_footer ul {
    font-size: 14px;
    margin-top: 20px;
}

.index_footer ul a {
    color: var(--color-orange);
}

@media (max-width: 992px) {
    .index-btns button {
        min-height: 45px;
        font-size: 21px;
    }
}

/** FOOTER **/
footer {
    color: white;
}

footer a {
    color: var(--color-red);
    transition: color .3s ease-in-out;
    text-decoration: none;
}

footer a:hover {
    transition: color .3s ease-in-out;
    color: #343a3a;
}

/** ./FOOTER **/
/** INDEX PAGE **/
.location {
    margin: auto;
    border-radius: 10px;
    border: 1px solid black;
}

.location iframe {
    width: 100%;
    border-radius: 10px;
    height: 33vmin;
}

@media (max-width: 992px) {
    .location {
        width: 100%;
    }

    .location iframe {
        height: 16vh;
    }
}

/** ./INDEX PAGE **/
/** MENU **/
.menu-sidebar {
    padding-top: 5px;
}

.menu-sidebar .nav-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
}

.menu-sidebar .nav-tabs li {
    float: none;
    width: 100%;
    border: 0;
    margin: 0;
    border-bottom: 1px solid #eaeaea;
}

.menu-sidebar .nav-tabs li a {
    width: 100%;
    border: 0;
    text-align: left;
    text-transform: uppercase;
    color: var(--color-black);
    font-weight: 700;
    display: block;
    padding: 10px;
    transition: all .3s ease-in-out;
    white-space: nowrap;
}

.categories_filters.active, .categories_filters:hover {
    color: red !important;
}

.categories_filters h2 {
    font-weight: unset;
    font-size: unset;
    margin-bottom: unset;
}

.categories_filters.vege.active, .categories_filters.vege:hover {
    color: #4bb552 !important
}

.menu-sidebar .nav-tabs li a:hover,
.menu-sidebar .nav-tabs li a:focus {
    border: 0;
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
    .menu-sidebar {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .menu-sidebar .nav-tabs {
        display: flex;
        align-items: stretch;
        border: 0;
        overflow: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 14px;
    }

    .menu-sidebar .nav-tabs li {
        background-color: white;
        margin-right: 8px;
        border-radius: 13px;
    }

    .menu-sidebar .nav-tabs li a {
        font-size: 15px;
    }
}

/** MENU **/
#navbar-categories.nav-tabs .nav-link.active {
    background-color: transparent;
}

.product-holder {
    padding-left: 10px;
    padding-right: 10px;
}

.product-holder .category-title {
    display: none;
}

.product-holder .product-title {
    font-size: 18px;
    font-weight: bold;
}

.product-holder .product-block {
    background: #fff;
    box-shadow: rgb(136 165 191 / 48%) 0px 1px 5px 0px, rgb(255 255 255 / 80%) -6px -2px 16px 0px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: auto;
}

.product-holder .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-holder .product-block img {
    margin: auto;
    width: 100%;
}

.product-holder .product-block .product-data {
    text-align: left;
    padding: 20px 20px 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    position: absolute;
    bottom: 61px;
    color: white;
    background: linear-gradient(to bottom, #00000017 5%, black 100%);
}

@media (max-width: 786px) {
    .product-holder .product-block .product-data {
        padding: 15px;
    }
}

.product-holder .product-block .product-data .product-info-block {
    align-self: flex-end;
}

.product-holder .product-block .product-data .product-description {
    margin-bottom: 0
}

.product-holder .product-block .product-data .price {
    font-size: 13px;
}

.product-holder .product-block .product-price {
    text-align: center;
    padding: 8px 0;
    font-size: 19px;
    font-weight: 700;
    background-color: white;
    color: var(--color-orange);
    position: relative;
    top: 8px;
}

.product-holder .product-block .product-footer {
    border-top: 0.0625rem dashed rgba(32, 33, 37, 0.12);
    margin: 0 20px;
    padding: 10px 0;
}

.product-holder .category-title {
    text-align: center;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

@media (max-width: 992px) {

    body[data-action-id="index"] .content .container {
        padding: 0;
    }

    body[data-action-id="index"], [data-action-id="index"] .inner-container {
        overflow: hidden;
        background-color: transparent;
        box-shadow: unset;
    }

    .categories_filters:hover {
        background-color: unset;
    }

    .product-holder {
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 85vh;
        padding-bottom: 30vh;
        padding-left: 12px;
        padding-right: 12px;
    }

    .product-holder .category-title {
        display: block;
    }

    .product-holder .product-block .product-footer {
        margin: 0 15px;
    }

    .product-holder .product-block .product-price {
        font-size: 15px;
        top: 10px;
    }

    .product-holder .product-block .product-data {
        bottom: 54px;
    }
}

.product-holder .product-block .product-footer a {
    background: var(--color-orange);
    color: var(--color-black);
    border-radius: 4px;
    padding: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: all .3s ease-in-out;
    text-wrap: nowrap;
}

.product-holder .product-block .product-footer a:hover {
    color: #fff;
    background: var(--color-black);
    transition: all .3s ease-in-out;
}

.product-holder .product-block .product-footer a i {
    margin-right: 5px;
}

body[data-action-id="admin"] .inner-container {
    min-height: unset;
    background-color: unset;
    box-shadow: unset;
}

.content .login_form {
    background-color: white;
    border-radius: 10px;
    padding: 15px 15px 30px;
}

.tab-content {
    padding: 20px
}

.tab-content .alert {
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.tab-content .alert h4 {
    margin: 0;
}

.tab-content .flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_thumb .thumb_cart_holder:hover {
    color: #5fd7a5;
}

@media (max-width: 992px) {

    .product-holder .product-block {
        box-shadow: unset;
    }

    .product-holder .product-title {
        font-size: 16px;
    }

    .product-holder .product-block .product-data .product-description {
        font-size: 12px;
    }

    .product-holder .product-block .product-footer a {
        font-size: 10px;
        max-height: 85vh;
    }

    .tab-content {
        padding: 11px;
    }
}

/** ./MENU **/
/** PRODUCT DATA **/
.product_data_modal .modal-header {
    flex-direction: column;
    border: unset;
    padding: 0px;
}

.product_data_modal .modal-body::-webkit-scrollbar {
    width: 4px;
    border-radius: 10px;
}

.product_data_modal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product_data_modal .modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.product_data_modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.modal .btn-close {
    position: absolute;
    right: 16px;
    top: 21px;
    font-size: 23px;
    z-index: 9999;
    background-color: white;
    border-radius: 22px;
}

.product_data_modal .modal-body {
    padding: 0px;
    max-height: 82vh;
}

.modal .modal-content {
    border-radius: 10px;
}

.product_data_modal .product_data {
    padding: 15px;
}

.product_data_modal .total_price {
    color: white;
}

.product_data .nav-tabs {
    width: 100%;
    border: 0;
}

.product_data .label {
    font-weight: bold;
}

.product_data .form-control:disabled, .product_data .form-control[readonly] {
    width: 100%;
}

.product_data p {
    color: black;
}

.product_data .required,
.product_data .checkbox {
    font-size: 14px;
    border-radius: 10px;
    padding: 5px;
    box-shadow: rgba(9, 30, 66, 0.25) 3px 3px 4px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product_data .required {
    background-color: var(--color-orange);
    font-weight: bold;
}

.product_data .checkbox label {
    cursor: pointer;
}

.product_data .checkbox input[type=checkbox] {
    display: none;
}

.product_data .checkbox.active {
    background-color: #ff1b0a;
    font-weight: bold;
    color: #fff;
}


.product_data .accesories-list .checkbox.active {
    background-color: var(--color-orange);
    color: var(--color-black);
    color: white;
    font-weight: 500;
}

.product_data .accesories-list {
    display: flex;
}

.product_data .meal_types > li {
    display: inline-block;
    cursor: pointer;
    padding: 4px 10px;
    background-color: #a29c9c85;
    font-weight: 600;
    color: #eeeeee63;
    box-shadow: 2px -1px 4px #cec7c7d9;
    width: 100px;
    line-height: 1;
}

.product_data .meal_types > li p {
    margin-bottom: 2px;
}

.product_data .meal_types > li.resp-tab-active {
    background-color: #efe9e91f;
    color: #194618;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

ul.meal_types {
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.meal_accessories_holder {
    display: inline-block;
    width: 100%;
}

.quantity_indicators {
    position: relative;
    width: 120px;
    padding: 0 !important;
}

.quantity_indicators .down,
.quantity_indicators .up {
    top: 50%;
    width: 40%;
    transform: translateY(-50%);
    height: 100%;
    color: var(--color-orange);
    font-weight: bold;
    font-size: 28px;
    position: absolute;
    padding: 5px;
    cursor: pointer;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity_indicators .form-control[readonly] {
    background-color: white;
    font-weight: bold;
    border: 2px solid var(--color-orange);
}

.quantity_indicators .up:hover, .quantity_indicators .down:hover {
    color: black !important;
}

.quantity_indicators .down {
    left: 0;
}

.quantity_indicators .up {
    right: 0;
}

.btn-danger, .btn-success {
    border-radius: 4px;
    box-shadow: none;
}

.btn-danger {
    color: #fff;
    border-color: #F44336;
}

.btn-success {
    color: #fff;
}

.btn-danger:hover {
    color: #fff;
    background-color: var(--color-red);
    box-shadow: 1px -3px 8px #ff000085;
}

.btn-success:hover {
    color: #fff;
    background-color: var(--color-green);
    box-shadow: 1px -3px 8px #00ff0c82;
}

@media (max-width: 992px) {
    .product_data_modal .modal-footer {
        padding: 10px 3px;
    }

    .product_data_modal .modal-body {
        max-height: 75vh;
    }
}


/** ./PRODUCT DATA **/
/** CART **/
[data-action-id="cart"] h2 {
    font-weight: bold;
}

.cart-row {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #fcb9414f;
}

.cart-row .product-image img {
    border-radius: 10px;
}

.cart-items-number, #customer-form {
    display: inline-block;
    width: 100%;
}


.form-validation {
    position: absolute;
    top: 4px;
    color: var(--color-red);
    font-style: italic;
    right: 16px;
}

.cart-holder .table td {
    text-align: left;
    vertical-align: middle;
}

.cart-holder a:hover, .cart-holder a {
    color: var(--color-orange);
    font-size: 19px;
}

.cart-holder .total-price {
    color: var(--color-orange);
    font-size: 19px;
}

.cart-holder .cart-price-holder {
    margin-bottom: 11px;
}

.cart-holder .label {
    font-weight: bold;
}

[data-action-id="cart"] {
    color: var(--color-black);
}

[data-action-id="cart"] .glyphicon {
    color: var(--color-black);
}

.remove_cart_item svg {
    width: 30px;
    height: 30px;
    fill: red;
}

#customer-form .cart-order-types input:checked {
    background-color: var(--color-orange) !important;
    border-color: var(--color-orange) !important;
}

.btn-save-order {
    background-color: #8BC34A !important;
    width: 42%;
    border-radius: 10px;
    font-size: 20px;
    padding: 14px;
    color: white;
}

.btn-save-order:disabled {
    border: unset;
}

#customer-form .has-error [name] {
    border: 1px solid red;
}

.delivery-district-ddl {
    overflow: hidden !important;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 992px) {
    .inset-left-20 {
        border-bottom: 1px solid white;
        padding-bottom: 10px;
    }

    .remove_cart_item {
        width: auto;
        position: absolute;
        top: 0px;
        right: 29px;
    }

    .remove_cart_item svg {
        width: 56px;
        height: 56px;
    }

    .btn-save-order {
        width: 100%;
    }

    [data-action-id="cart"] .header-wrapper .cart-holder,
    [data-action-id="success"] .header-wrapper .cart-holder {
        display: none;
    }
}

.empty-cart-btn {
    margin-top: 20px;
    background-color: var(--color-orange);
    font-size: 24px;
    border-radius: 11px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .empty-cart-btn {
        width: 84%;
    }
}

/** ./CART **/
/** FOOTER **/
footer {
    padding: 10px 0;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 992px) {
    footer {
        padding-top: 8px;
        padding-bottom: 10px;
        font-size: 12px;
    }
}

/** ./FOOTER **/


/** SUCCESS PAGE **/
.success_page {
    padding: 15px;
    color: var(--color-black);
}

.success_page .icon {
    display: inline-block;
    padding: 19px;
    font-size: 57px;
    width: 120px;
    height: 120px;
    background-color: #cddc39;
    border-radius: 51%;
}

.success_page .icon.reject {
    background-color: red;
}

[data-action-id="success"] .inner-container {
    min-height: unset;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.success_page .product_thumb {
    margin-top: 20px;
}

.success_page .product_thumb:not(:last-child) {
    border-bottom: 2px dashed;
}

.success_page .btn-view-order, .success_page .btn-new-order {
    background-color: var(--color-orange);
    border: unset;
    color: white;
    font-size: 17px;
    width: 50%;
    padding: 13px;
}

.success_page .btn-new-order {
    margin-bottom: 15px;
}

.success_page .btn-view-order:hover, .success_page .btn-new-order:hover {
    background-color: black;
    color: var(--color-orange);
}

.view_order_modal .modal-body {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.view_order_modal .total_price {
    color: var(--color-orange);
    font-weight: bold;
}

@media (max-width: 992px) {
    [data-action-id="success"] .inner-container {
        padding-top: 5vh;
        padding-bottom: 5vh;
    }

    .success_page .title {
        font-size: 24px;
    }

    .success_page p {
        font-size: 15px !important;
    }

    .success_page .btn-view-order, .success_page .btn-new-order {
        width: 100%;
    }
}



/** ./SUCCESS PAGE **/

/** ./POSTS PAGE **/
.posts {
    padding: 15px;
}
.post-thumb {
    border: 1px solid black;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
    position: relative;
    margin-bottom: 15px;
    text-align: left;
}

.post-thumb .description {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 45px;
}

.post-thumb .view-post-btn {
    position: absolute;
    bottom: 15px;
    left: 4%;
    width: 92%;
}

/** ./POSTS PAGE **/

/** ./POST DETAILS PAGE **/
.post h1 {
    font-size: 30px;
    padding-top: 10px;
    background-color: #fcb941;
    border-radius: 10px;
    padding-bottom: 10px;
    margin-bottom: 27px;
}

.post section > h2 {
    font-size: 20px;
    font-weight: bold;
}

/** ./POST DETAILS PAGE **/

