/*
Theme Name: HAVA Apps
Theme URI: https://havathemes.com/
Author: Anonymous
Author URI: https://havathemes.com
Description:
Version: 1.0.0
Tested up to: 5.8
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hafatheme
Tags: featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.  Temporary
2.  Header
3.  Body
4.  Alerts
5.  Breadcrumb
6.  To Top Button
7.  Single Post
8.  Comments
9. Archive
10. Widgets
11. Utilities
12. Colors
13. HTML Markups (Theme Unit Test Data)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. Temporary
--------------------------------------------------------------*/

/* scroll-behaviour: smooth not supportet by Safari.
jQuery smooth scroll script will be removed when Safari supports it */
html {
    scroll-behavior: auto !important;
}

/*
Remove autop (WP 5.7 bug near shortcode)
https://wordpress.org/support/topic/how-to-stop-wp-from-adding-p-tag-automatically/
*/
p:empty:before {
    content: none;
}


/* To Top Button Fallback (done by classes) */
.top-button {
    position: fixed;
    z-index: 1020;
}

/* Dropdown Search (replaced by Collapse component in 5.1.0.0. Fallback to old headers) */
@media (max-width: 782px) {
    .logged-in.admin-bar .dropdown-search {
        top: 100px !important;
    }
}

@media (min-width: 783px) {
    .logged-in.admin-bar .dropdown-search {
        top: 86px !important;
    }
}

.dropdown-search.dropdown-menu[data-bs-popper] {
    top: 54px;
}

.dropdown-search .searchform {
    opacity: 0;
    transition: opacity .8s;
    transition-delay: .3s;
}

.dropdown-search.show .searchform {
    opacity: 1;
}

@media (max-width: 991px) {
    .btn-dropdown.right {
        padding-right: 0;
        border: none;
    }

    #dropdown-search:hover {
        color: currentColor;
        background-color: transparent;
        border-color: transparent;
    }

    #dropdown-search:focus {
        box-shadow: none;
    }
}

/* Dropdown Search Fallback End */


/* Offcanvas Backdrop */
.offcanvas-backdrop.fade {
    transition: opacity .4s ease-in-out;
}

.offcanvas-backdrop {
    cursor: pointer;
}

/* Offcanvas Backdrop END */


/* Badges (Removes underline if badge is wrapped in a <a>...</a> tag) */
a.badge {
    text-decoration: none;
}

/* Badges End */


/*--------------------------------------------------------------
2. Header
--------------------------------------------------------------*/

@media (max-width: 782px) {

    #wpadminbar {
        position: fixed;
    }

    .logged-in.admin-bar .fixed-top,
    .logged-in.admin-bar .offcanvas:not(.offcanvas-bottom),
    .logged-in.admin-bar .modal {
        top: 46px;
    }

    .logged-in.admin-bar .modal-fullscreen {
        height: calc(100% - 46px);
    }

}

@media (min-width: 783px) {

    .logged-in.admin-bar .fixed-top,
    .logged-in.admin-bar .offcanvas:not(.offcanvas-bottom),
    .logged-in.admin-bar .modal {
        top: 32px;
    }

    .logged-in.admin-bar .modal-fullscreen {
        height: calc(100% - 32px);
    }

}

#nav-main .menu-item:last-child .nav-link {
    padding-right: 0;
}


/*--------------------------------------------------------------
3. Body
--------------------------------------------------------------*/

body {
    position: relative;
    word-break: break-word;
}

::-moz-selection {
    text-shadow: none;
}

::selection {
    text-shadow: none;
}

#content {
    min-height: 600px;
}


/*--------------------------------------------------------------
4. Alerts
--------------------------------------------------------------*/

.alert.alert-danger,
.alert.alert-warning,
.alert.alert-info,
.alert.alert-success {
    padding-left: 3.25rem;
}

.alert::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translate(0, -50%);
}

.alert-danger::before {
    content: "\f071";
}

.alert-warning::before {
    content: "\f06a";
}

.alert-info::before {
    content: "\f05a";
}

.alert-success::before {
    content: "\f058";
}

/*--------------------------------------------------------------
5. Breadcrumb
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .breadcrumb {
        display: block !important;
        white-space: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none;
        scrollbar-width: none;
    }

    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
}

/*--------------------------------------------------------------
6. To Top Button
--------------------------------------------------------------*/


.top-button {
    right: 5%;
    bottom: 30px;
    opacity: 0;
    transition: opacity 1s;
}


.top-button.visible {
    opacity: 1;
}


/*--------------------------------------------------------------
7. Single Post
--------------------------------------------------------------*/

img {
    height: auto;
    max-width: 100%;
}

.wp-post-image {
    width: 100%;
}

.page-image img,
.post-image img {
    width: 100%;
    object-fit: contain;
    height: auto;
}

.featured-full-width-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

[rel="prev"]:before {
    content: "« ";
}

[rel="next"]:after {
    content: " »";
}

/*--------------------------------------------------------------
8. Comments
--------------------------------------------------------------*/

ul.comment-list {
    list-style: none;
    padding: 0;
}

ul.comment-list li {
    list-style: none;
}

.avatar {
    width: 80px;
}

.comment-list ul.children {
    padding-left: 96px;
}

@media (max-width: 991px) {
    .comment-list ul.children ul.children {
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .comment-list ul.children ul.children ul.children {
        padding-left: 0;
    }
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

#cancel-comment-reply-link {
    margin-left: 1rem;
}

/*
    Adding width to comment.
    When using <pre> in comment, comment-content will not crashed
*/

.comment-content {
    width: calc(100% - 96px);
}

/*--------------------------------------------------------------
9. Archive
--------------------------------------------------------------*/

@media (max-width: 767px) {
    .card-img-left img {
        border-top-left-radius: calc(.25rem - 1px);
        border-top-right-radius: calc(.25rem - 1px);
        width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) {
    .card-img-left img {
        border-top-left-radius: calc(.25rem - 1px);
        border-bottom-left-radius: calc(.25rem - 1px);
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .card-img-left-md img {
        border-top-left-radius: calc(.25rem - 1px);
        border-top-right-radius: calc(.25rem - 1px);
        width: 100%;
        height: auto;
    }
}

@media (min-width: 992px) {
    .card-img-left-md img {
        border-top-left-radius: calc(.25rem - 1px);
        border-bottom-left-radius: calc(.25rem - 1px);
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

/*--------------------------------------------------------------
10. Widgets
--------------------------------------------------------------*/

.widget-area ul,
.hafatheme-footer ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.widget-area ul li ul li {
    padding: 0 1rem;
}

#footer-menu li a {
    padding-left: 0;
}

/*--------------------------------------------------------------/*--------------------------------------------------------------
11. Utilities
--------------------------------------------------------------*/

/*
Add width-100 class to element to stretch it to the entire width
of the screen when element is in .container.
https://bootscore.me/documentation/width-height-classes/
*/

/* Hide horizontal scrollbars on Windows Chrome & Firefox */

body {
    overflow-x: hidden;
}

.width-100 {
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
}

/*
Add underline-0 class to <a>..</a> to disable underline on hover
*/

.underline-0,
.underline-0:hover,
.underline-0:focus {
    text-decoration: none !important;
}

/*
Hide racaptcha v3 badge
*/

.grecaptcha-badge {
    display: none !important;
}

/*
Clear
*/

.clear-both {
    clear: both;
}

/*
z-index
*/

.zi-1000 {
    z-index: 1000 !important;
}

.zi-1020 {
    z-index: 1020 !important;
}

.zi-1030 {
    z-index: 1030 !important;
}

.zi-1040 {
    z-index: 1040 !important;
}

.zi-1050 {
    z-index: 1050 !important;
}

.zi-1060 {
    z-index: 1060 !important;
}

.zi-1070 {
    z-index: 1070 !important;
}

.zi-n1 {
    z-index: -1 !important;
}

/*
Cursor
*/

.cursor-pointer {
    cursor: pointer;
}

/*
Focus
*/

.focus-0:focus {
    box-shadow: none !important;
}

/*
Hover
*/

.hover {
    transition: filter .3s;
}

.hover:hover {
    filter: brightness(0.95);
}

/*--------------------------------------------------------------
12. Colors
--------------------------------------------------------------*/

::selection {
    color: #fff;
    background-color: var(--bs-primary);
}

::-moz-selection {
    color: #fff;
    background-color: var(--bs-primary);
}

pre {
    background-color: var(--bs-light);
}

:focus {
    outline: none !important;
    outline: -webkit-focus-ring-color none !important;
    outline-color: -webkit-focus-ring-color !important;
    outline-style: none !important;
    outline-width: 0 !important;
}

/*--------------------------------------------------------------
13. HTML Markups (Theme Unit Test Data)
--------------------------------------------------------------*/

/*
pre
*/

pre {
    padding: 1rem;
    border-radius: .25rem;
}

img {
    height: auto;
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

pre {
    max-width: 100%;
    border-radius: .25rem;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    overflow: auto;
    padding: .5rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, .5);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
## Custom design
--------------------------------------------------------------*/
body {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

body input, body textarea, body .btn, body button {
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #1695a3;
    text-decoration: none;
}

a:focus, a:hover {
    color: #19636b;
}

blockquote p {
    font-size: 25px;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    /* text-transform: uppercase; */
}

.navbar {
    background-color: #FFF;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0 15px;
    color: #000;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #1695a3;
}

a.badge {
    background-color: #1695a3 !important;
}

.blog-post-title, .entry-header h1 {
    font-weight: 800;
    margin: 0;
}

#secondary .widget-title {
    font-weight: bold;
    font-size: 18px;
}

#secondary {
    font-size: 14px;
}

.card {
    border: 0;
    border-bottom: crimson;
}

img.logo.md {
    max-height: 30px;
}

#footer-menu {
    display: inline-flex;
    font-size: .875em;
}

#footer-menu a {
    color: #FFF;
}

.col-center {
    margin: 0 auto;
}

.hafatheme-footer {
    background: #4d4d4d;
}

.hafatheme-info {
    background: #000;
}

.header-actions {
    margin-left: 15px;
}

.top-button .btn-primary {
    background: #1695a3;
}

#mastcontent .container {
    max-width: 1000px;
}

.clear-height {
    display: block;
    content: " ";
    height: 63px;
}

.related-post-title {
    font-weight: bold;
}

.inline-related {
    border-left: 5px solid #333;
    position: relative;
    min-height: 88px;
}

.inline-related-content {
    width: 80%;
    float: left;
    padding-right: 1rem!important;
}

.inline-related-arrow {
    background-color: #3498DB;
    color: #F1C40F;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 26px;
    moz-border-radius: 3px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    width: 80px;
    min-height: 88px;
    background: url(img/simple-arrow.png)no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}

#share .share-title {
    font-weight: bold;
}

#share a {
    width: 25%;
    height: 40px;
    display: block;
    color: #fff;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
    float: left;
    text-align: center;
}

#share a svg {
    width: 24px;
    height: 24px;
    margin: 7px auto 0px;
    display: inline-block;
}

#share a svg path {
    fill: #fff;
}

#share a:first-child {
    border-radius: 4px 0 0 4px;
}

#share a:last-child {
    border-radius: 0 4px 4px 0;
}

#share .facebook {
    background: #3b5998;
}

#share .twitter {
    background: #55acee;
}

#share .pinterest {
    background: #cb2027;
}

#share .whatsapp {
    background: #25d366;
}

.a-thumbnail {
    display: inline-block;
    margin-right: 10px;
    float: left;
}

.a-thumbnail > img {
    max-width: 120px;
    max-height: 120px;
}

.hafa-small-thumb, .hafa-full-thumb {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}

.hafa-small-thumb:last-child, .hafa-full-thumb:last-child {
    border-bottom: 0px;
    margin: 0px !important;;
    padding: 0px !important;
}

.hafa-title {
    display: block;
}

.btn-primary {
    border: 0px !important;
}

.entry-content p, .entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
    margin: 0px 0px 25px;
}

.entry-content p {
    line-height: 28px;
}

.related-post-entry-title {
    height: 42px;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.related-post-entry-title a {
    color: #000;
    font-weight: bold;
}

.widget-hpk {
    visibility: hidden;
    opacity: 0;
    white-space: nowrap;
    height: 0px;
    overflow: hidden;
}

#infiniteLoader {
    display: none;
}

#postlists .blog-pos-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
    height: 90px;
}

#postlists article a:hover img {
    opacity: 0.7;
}

.post-pagination {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.btn-block {
    display: block;
}

.page-nav-number {
    font-size: 18px;
    line-height: 46px;
    margin: 0px !important;
}

.quiz-option {
    display: block;
    position: relative;
    font-size: 1.2em;
    font-weight: 400;
    color: #1d1d1d;
    text-align: left;
    line-height: 1.25;
    background: #fff;
    box-shadow: 0 0 5px 1px rgb(5 5 5 / 10%);
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem 1rem 1rem 4rem;
    border: 1px solid #d9d9d9;
    cursor: pointer;
}

.quiz-option:before {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-family: default-icomoon;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 45px;
    font-size: 26px;
    border-right: 1px solid #f2f2f2;
    color: #e0e0e0;
}

.answer-false:before {
    content: "";
    color: #fff;
    border-right: 1px solid #e32529;
    background: url(https://icongr.am/fontawesome/close.svg?size=32&color=ffffff) no-repeat center center;
}

.answer-false {
    background: #e32529;
    color: #fff;
}

.answer-true {
    background: #2dcc70;
    color: #fff;
    opacity: 1;
}

.answer-true:before {
    content: "";
    color: #fff;
    border-right: 1px solid #2dcc70;
    background: url(https://icongr.am/fontawesome/check.svg?size=32&color=ffffff) no-repeat center center;
}


/* Apps */
.header-apps .header-apps-title {
    line-height: 2rem;
    font-size: 1.5rem;
    letter-spacing: 0;
    font-weight: 500;
    align-items: flex-end;
    display: flex;
    width: 100%;
    word-break: keep-all;
    margin: 0;
}

.header-apps-developer a {
    color: #01875f;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: .00625em;
    font-weight: 500;
}

.headers-apps-meta {
    fill: #5f6368;
    stop-color: #5f6368;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
}

.header-apps-image img {
    border-width: 0;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    border-radius: 4px;
    width: 72px;
    margin: 0 auto;
}

/*
Theme Name: HAVA Theme
Theme URI: https://havathemes.com/
Author: Anonymous
Author URI: https://havathemes.com
Description:
Version: 1.0.0
Tested up to: 5.8
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hafatheme
Tags: featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.  Temporary
2.  Header
3.  Body
4.  Alerts
5.  Breadcrumb
6.  To Top Button
7.  Single Post
8.  Comments
9. Archive
10. Widgets
11. Utilities
12. Colors
13. HTML Markups (Theme Unit Test Data)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. Temporary
--------------------------------------------------------------*/

/* scroll-behaviour: smooth not supportet by Safari.
jQuery smooth scroll script will be removed when Safari supports it */
html {
    scroll-behavior: auto !important;
}

/*
Remove autop (WP 5.7 bug near shortcode)
https://wordpress.org/support/topic/how-to-stop-wp-from-adding-p-tag-automatically/
*/
p:empty:before {
    content: none;
}


/* To Top Button Fallback (done by classes) */
.top-button {
    position: fixed;
    z-index: 1020;
}

/* Dropdown Search (replaced by Collapse component in 5.1.0.0. Fallback to old headers) */
@media (max-width: 782px) {
    .logged-in.admin-bar .dropdown-search {
        top: 100px !important;
    }
}

@media (min-width: 783px) {
    .logged-in.admin-bar .dropdown-search {
        top: 86px !important;
    }
}

.dropdown-search.dropdown-menu[data-bs-popper] {
    top: 54px;
}

.dropdown-search .searchform {
    opacity: 0;
    transition: opacity .8s;
    transition-delay: .3s;
}

.dropdown-search.show .searchform {
    opacity: 1;
}

@media (max-width: 991px) {
    .btn-dropdown.right {
        padding-right: 0;
        border: none;
    }

    #dropdown-search:hover {
        color: currentColor;
        background-color: transparent;
        border-color: transparent;
    }

    #dropdown-search:focus {
        box-shadow: none;
    }
}

/* Dropdown Search Fallback End */


/* Offcanvas Backdrop */
.offcanvas-backdrop.fade {
    transition: opacity .4s ease-in-out;
}

.offcanvas-backdrop {
    cursor: pointer;
}

/* Offcanvas Backdrop END */


/* Badges (Removes underline if badge is wrapped in a <a>...</a> tag) */
a.badge {
    text-decoration: none;
}

/* Badges End */


/*--------------------------------------------------------------
2. Header
--------------------------------------------------------------*/

@media (max-width: 782px) {

    #wpadminbar {
        position: fixed;
    }

    .logged-in.admin-bar .fixed-top,
    .logged-in.admin-bar .offcanvas:not(.offcanvas-bottom),
    .logged-in.admin-bar .modal {
        top: 46px;
    }

    .logged-in.admin-bar .modal-fullscreen {
        height: calc(100% - 46px);
    }

}

@media (min-width: 783px) {

    .logged-in.admin-bar .fixed-top,
    .logged-in.admin-bar .offcanvas:not(.offcanvas-bottom),
    .logged-in.admin-bar .modal {
        top: 32px;
    }

    .logged-in.admin-bar .modal-fullscreen {
        height: calc(100% - 32px);
    }

}

#nav-main .menu-item:last-child .nav-link {
    padding-right: 0;
}


/*--------------------------------------------------------------
3. Body
--------------------------------------------------------------*/

body {
    position: relative;
    word-break: break-word;
}

::-moz-selection {
    text-shadow: none;
}

::selection {
    text-shadow: none;
}

#content {
    min-height: 600px;
}


/*--------------------------------------------------------------
4. Alerts
--------------------------------------------------------------*/

.alert.alert-danger,
.alert.alert-warning,
.alert.alert-info,
.alert.alert-success {
    padding-left: 3.25rem;
}

.alert::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translate(0, -50%);
}

.alert-danger::before {
    content: "\f071";
}

.alert-warning::before {
    content: "\f06a";
}

.alert-info::before {
    content: "\f05a";
}

.alert-success::before {
    content: "\f058";
}

/*--------------------------------------------------------------
5. Breadcrumb
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .breadcrumb {
        display: block !important;
        white-space: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none;
        scrollbar-width: none;
    }

    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
}

/*--------------------------------------------------------------
6. To Top Button
--------------------------------------------------------------*/


.top-button {
    right: 5%;
    bottom: 30px;
    opacity: 0;
    transition: opacity 1s;
}


.top-button.visible {
    opacity: 1;
}


/*--------------------------------------------------------------
7. Single Post
--------------------------------------------------------------*/

img {
    height: auto;
    max-width: 100%;
}

.wp-post-image {
    width: 100%;
}

.page-image img,
.post-image img {
    width: 100%;
    object-fit: contain;
    height: auto;
}

.featured-full-width-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

[rel="prev"]:before {
    content: "« ";
}

[rel="next"]:after {
    content: " »";
}

/*--------------------------------------------------------------
8. Comments
--------------------------------------------------------------*/

ul.comment-list {
    list-style: none;
    padding: 0;
}

ul.comment-list li {
    list-style: none;
}

.avatar {
    width: 80px;
}

.comment-list ul.children {
    padding-left: 96px;
}

@media (max-width: 991px) {
    .comment-list ul.children ul.children {
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .comment-list ul.children ul.children ul.children {
        padding-left: 0;
    }
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

#cancel-comment-reply-link {
    margin-left: 1rem;
}

/*
    Adding width to comment.
    When using <pre> in comment, comment-content will not crashed
*/

.comment-content {
    width: calc(100% - 96px);
}

/*--------------------------------------------------------------
9. Archive
--------------------------------------------------------------*/

@media (max-width: 767px) {
    .card-img-left img {
        border-top-left-radius: calc(.25rem - 1px);
        border-top-right-radius: calc(.25rem - 1px);
        width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) {
    .card-img-left img {
        border-top-left-radius: calc(.25rem - 1px);
        border-bottom-left-radius: calc(.25rem - 1px);
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .card-img-left-md img {
        border-top-left-radius: calc(.25rem - 1px);
        border-top-right-radius: calc(.25rem - 1px);
        width: 100%;
        height: auto;
    }
}

@media (min-width: 992px) {
    .card-img-left-md img {
        border-top-left-radius: calc(.25rem - 1px);
        border-bottom-left-radius: calc(.25rem - 1px);
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

/*--------------------------------------------------------------
10. Widgets
--------------------------------------------------------------*/

.widget-area ul,
.hafatheme-footer ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.widget-area ul li ul li {
    padding: 0 1rem;
}

#footer-menu li a {
    padding-left: 0;
}

/*--------------------------------------------------------------/*--------------------------------------------------------------
11. Utilities
--------------------------------------------------------------*/

/*
Add width-100 class to element to stretch it to the entire width
of the screen when element is in .container.
https://bootscore.me/documentation/width-height-classes/
*/

/* Hide horizontal scrollbars on Windows Chrome & Firefox */

body {
    overflow-x: hidden;
}

.width-100 {
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
}

/*
Add underline-0 class to <a>..</a> to disable underline on hover
*/

.underline-0,
.underline-0:hover,
.underline-0:focus {
    text-decoration: none !important;
}

/*
Hide racaptcha v3 badge
*/

.grecaptcha-badge {
    display: none !important;
}

/*
Clear
*/

.clear-both {
    clear: both;
}

/*
z-index
*/

.zi-1000 {
    z-index: 1000 !important;
}

.zi-1020 {
    z-index: 1020 !important;
}

.zi-1030 {
    z-index: 1030 !important;
}

.zi-1040 {
    z-index: 1040 !important;
}

.zi-1050 {
    z-index: 1050 !important;
}

.zi-1060 {
    z-index: 1060 !important;
}

.zi-1070 {
    z-index: 1070 !important;
}

.zi-n1 {
    z-index: -1 !important;
}

/*
Cursor
*/

.cursor-pointer {
    cursor: pointer;
}

/*
Focus
*/

.focus-0:focus {
    box-shadow: none !important;
}

/*
Hover
*/

.hover {
    transition: filter .3s;
}

.hover:hover {
    filter: brightness(0.95);
}

/*--------------------------------------------------------------
12. Colors
--------------------------------------------------------------*/

::selection {
    color: #fff;
    background-color: var(--bs-primary);
}

::-moz-selection {
    color: #fff;
    background-color: var(--bs-primary);
}

pre {
    background-color: var(--bs-light);
}

:focus {
    outline: none !important;
    outline: -webkit-focus-ring-color none !important;
    outline-color: -webkit-focus-ring-color !important;
    outline-style: none !important;
    outline-width: 0 !important;
}

/*--------------------------------------------------------------
13. HTML Markups (Theme Unit Test Data)
--------------------------------------------------------------*/

/*
pre
*/

pre {
    padding: 1rem;
    border-radius: .25rem;
}

img {
    height: auto;
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

pre {
    max-width: 100%;
    border-radius: .25rem;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    overflow: auto;
    padding: .5rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, .5);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
## Custom design
--------------------------------------------------------------*/
body {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

body input, body textarea, body .btn, body button {
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #1695a3;
    text-decoration: none;
}

a:focus, a:hover {
    color: #19636b;
}

blockquote p {
    font-size: 25px;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    /* text-transform: uppercase; */
}

.navbar {
    background-color: #FFF;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0 15px;
    color: #000;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #1695a3;
}

a.badge {
    background-color: #1695a3 !important;
}

.blog-post-title, .entry-header h1 {
    font-weight: 800;
    margin: 0;
}

#secondary .widget-title {
    font-weight: bold;
    font-size: 18px;
}

#secondary {
    font-size: 14px;
}

.card {
    border: 0;
    border-bottom: crimson;
}

img.logo.md {
    max-height: 30px;
}

#footer-menu {
    display: inline-flex;
    font-size: .875em;
}

#footer-menu a {
    color: #FFF;
}

.col-center {
    margin: 0 auto;
}

.hafatheme-footer {
    background: #4d4d4d;
}

.hafatheme-info {
    background: #000;
}

.header-actions {
    margin-left: 15px;
}

.top-button .btn-primary {
    background: #1695a3;
}

#mastcontent .container {
    max-width: 1000px;
}

.clear-height {
    display: block;
    content: " ";
    height: 63px;
}

.related-post-title {
    font-weight: bold;
}

.inline-related {
    border-left: 5px solid #333;
    position: relative;
    min-height: 88px;
}

.inline-related-content {
    width: 80%;
    float: left;
    padding-right: 1rem!important;
}

.inline-related-arrow {
    background-color: #3498DB;
    color: #F1C40F;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 26px;
    moz-border-radius: 3px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    width: 80px;
    min-height: 88px;
    background: url(img/simple-arrow.png)no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}

#share .share-title {
    font-weight: bold;
}

#share a {
    width: 25%;
    height: 40px;
    display: block;
    color: #fff;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
    float: left;
    text-align: center;
}

#share a svg {
    width: 24px;
    height: 24px;
    margin: 7px auto 0px;
    display: inline-block;
}

#share a svg path {
    fill: #fff;
}

#share a:first-child {
    border-radius: 4px 0 0 4px;
}

#share a:last-child {
    border-radius: 0 4px 4px 0;
}

#share .facebook {
    background: #3b5998;
}

#share .twitter {
    background: #55acee;
}

#share .pinterest {
    background: #cb2027;
}

#share .whatsapp {
    background: #25d366;
}

.a-thumbnail {
    display: inline-block;
    margin-right: 10px;
    float: left;
}

.a-thumbnail > img {
    max-width: 120px;
    max-height: 120px;
}

.hafa-small-thumb, .hafa-full-thumb {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}

.hafa-small-thumb:last-child, .hafa-full-thumb:last-child {
    border-bottom: 0px;
    margin: 0px !important;;
    padding: 0px !important;
}

.hafa-title {
    display: block;
}

.btn-primary {
    border: 0px !important;
}

.entry-content p, .entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
    margin: 0px 0px 25px;
}

.entry-content p {
    line-height: 28px;
}

.related-post-entry-title {
    height: 42px;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.related-post-entry-title a {
    color: #000;
    font-weight: bold;
}

.widget-hpk {
    visibility: hidden;
    opacity: 0;
    white-space: nowrap;
    height: 0px;
    overflow: hidden;
}

#infiniteLoader {
    display: none;
}

#postlists .blog-pos-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
    height: 90px;
}

#postlists article a:hover img {
    opacity: 0.7;
}

.post-pagination {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.btn-block {
    display: block;
}

.page-nav-number {
    font-size: 18px;
    line-height: 46px;
    margin: 0px !important;
}

.quiz-option {
    display: block;
    position: relative;
    font-size: 1.2em;
    font-weight: 400;
    color: #1d1d1d;
    text-align: left;
    line-height: 1.25;
    background: #fff;
    box-shadow: 0 0 5px 1px rgb(5 5 5 / 10%);
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem 1rem 1rem 4rem;
    border: 1px solid #d9d9d9;
    cursor: pointer;
}

.quiz-option:before {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-family: default-icomoon;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 45px;
    font-size: 26px;
    border-right: 1px solid #f2f2f2;
    color: #e0e0e0;
}

.answer-false:before {
    content: "";
    color: #fff;
    border-right: 1px solid #e32529;
    background: url(https://icongr.am/fontawesome/close.svg?size=32&color=ffffff) no-repeat center center;
}

.answer-false {
    background: #e32529;
    color: #fff;
}

.answer-true {
    background: #2dcc70;
    color: #fff;
    opacity: 1;
}

.answer-true:before {
    content: "";
    color: #fff;
    border-right: 1px solid #2dcc70;
    background: url(https://icongr.am/fontawesome/check.svg?size=32&color=ffffff) no-repeat center center;
}


/* Apps */
.header-apps .header-apps-title {
    line-height: 2rem;
    font-size: 1.5rem;
    letter-spacing: 0;
    font-weight: 500;
    align-items: flex-end;
    display: flex;
    width: 100%;
    word-break: keep-all;
    margin: 0;
}

.header-apps-developer a {
    color: #01875f;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: .00625em;
    font-weight: 500;
}

.headers-apps-meta {
    fill: #5f6368;
    stop-color: #5f6368;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
}

.header-apps-image img {
    border-width: 0;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    border-radius: 4px;
    width: 72px;
    margin: 0 auto;
    display: block;
}

.description-apps-title {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    font-family: "Google Sans",Roboto,Arial,sans-serif;
    line-height: 1.5rem;
    font-size: 1.125rem;
    letter-spacing: 0;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.header-meta-title {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    line-height: 1.25rem;
    font-size: .875rem;
    letter-spacing: .0178571429em;
    font-weight: 500;
    align-items: center;
    display: flex;
    height: 24px;
    justify-content: center;
    white-space: nowrap;
}

.header-meta-description {
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
    align-items: center;
    display: flex;
    height: 20px;
    justify-content: center;
    white-space: nowrap;
}

.header-meta .row > .col-3 {
    border-right: 1px solid #ddd;
}

.header-meta .row > .col-3:last-child {
    border-right: 0;
}

.rating-detail-item .progress {
    margin-top: 2px;
}

.rating-data-title {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    line-height: 4rem;
    font-size: 3.5rem;
    letter-spacing: 0;
    font-weight: 400;
}

.review-detail-user {
    padding: 10px 0;
}

.review-detail-description {
    font-size: .875rem;
    letter-spacing: .0142857143em;
    line-height: 1.25rem;
    overflow-wrap: anywhere
}

.review-detail-star {
    color: #333;
    fill: #333;
    stop-color: #5f6368;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .025em;
    line-height: 1rem;
}

.only-desktop {
    display: none;
}

@media (max-width: 782px) {
    .only-desktop {
        display: block !important;
    }
}

.rounded {
    border-radius: 50% !important;
}

.fa-star.grey {
    color: #e5e5e5 !important;
}

.header-meta-title .fa-star {
    color: #000 !important;
}

.fa-star, .fa-star-half {
    color: #01875f;
}

.progress-bar {
    background-color: #01875f;
}

.rating-data-description {
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-family: Roboto,Arial,sans-serif;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
    margin-top: 0.5rem;
}

.rating-detail-item {
    font-family: Roboto,Arial,sans-serif;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
    padding-right: 16px;
}

.progress-bar {
}

.progress {
    height: 10px;
}

.rating-data-star {
    font-size: 12px;
}

.rating-apps-title {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    line-height: 1.5rem;
    font-size: 1.125rem;
    letter-spacing: 0;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.floating-image-mobile {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    border-top: 1px solid #ddd;
    background: #FFF;
    text-align: center;
}

.floating-image-mobile a {
    display: block;
}

.floating-image-mobile img {
    padding: 10px;
}