/* Copyright for the post thumbnail */

#pics_copyright {
    margin: 0;
}

.pics_copyright_container {
    position: absolute;
    z-index: 1;
    background-color: #ffffff;
    color: #818181;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 20px 10px 50px;
    border-radius: 0 0 40px 0;
    margin-top: 250px;
}

@media (max-width: 990px) {
    .pics_copyright_container {
        margin-top: 300px;
    }
}

@media (max-width: 880px) {
    .pics_copyright_container {
        margin-top: 350px;
    }
}

@media (max-width: 768px) {
    .pics_copyright_container {
        margin-top: 0;
        bottom: 10px;
    }
}

/* Table of contents */

.toc-wrapper .elementor-widget-container {
    overflow: hidden;
}

.toc-wrapper .toc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.toc-wrapper .toc__header-title {
    font-family: "Rubik", sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #000000;
}

.toc-wrapper .toc__body {
    text-align: left;
    overflow-y: auto;
    margin-bottom: 30px;
    font-family: "Rubik", sans-serif;
}

@media (min-width: 1401px) {
    .toc-wrapper .toc__header,
    .toc-wrapper .toc__body {
        padding-left: 1.4em;
    }
}

@media (min-width: 1471px) {
    .toc-wrapper .toc__header,
    .toc-wrapper .toc__body {
        padding-left: 33px;
    }
}

.toc-wrapper .toc__body ol {
    padding-left: 18px;
    counter-reset: list-counter;
    list-style-type: none;
}

.toc-wrapper .toc__body ol > li {
    counter-increment: list-counter;
    position: relative;
}

.toc-wrapper .toc__body ol > li::before {
    content: counter(list-counter) ".";
    color: #f40045;
    margin-right: 5px;
    font-size: 18px;
    font-weight: 700;
}

.toc-wrapper .toc__body a {
    color: #033537;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 38px;
}

.toc-wrapper .toc__body a:hover {
    color: #f40045;
}

/* Article content */

.single-content-wrapper .single-content ol {
    margin: 20px 0;
}

.single-content-wrapper .single-content li {
    padding-bottom: 10px;
}

.single-content-wrapper .single-content div.summary {
    font-size: 25px;
    font-weight: 700;
    margin: 20px auto;
    color: #0c0c0c;
    padding: 53px 38px 68px 41px;
    position: relative;
    background: #f2f2f2;
    border-radius: 47px 0;
}

@media (max-width: 480px) {
    .single-content-wrapper .single-content div.summary {
        padding: 50px 20px;
    }
}

.custom-single-post .elementor-container.elementor-column-gap-default .elementor-column div.summary p,
.custom-single-post .elementor-container.elementor-column-gap-default .elementor-column div.summary li {
    margin: 16px 0 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 38px;
    padding: 0;
}

.custom-single-post .elementor-container.elementor-column-gap-default .elementor-column div.summary ul {
    padding-left: 20px;
}

.custom-single-post .elementor-container.elementor-column-gap-default .elementor-column div.summary li::marker {
    font-size: 22px;
    color: #f40045;
}

.custom-single-post .elementor-container.elementor-column-gap-default .elementor-column div.summary p:first-child {
    margin: 0;
    font-weight: 500;
    font-size: 25px;
    line-height: 38px;
}

.single-content-wrapper .single-content blockquote {
    font-size: 18px;
    margin: 50px auto;
    color: #ffffff;
    padding: 57px 47px 56px 129px;
    line-height: 30px;
    position: relative;
    background: #2f414b;
    border-radius: 47px;
    text-align: right;
}

@media (max-width: 520px) {
    .single-content-wrapper .single-content blockquote {
        padding: 50px 20px;
    }
}

.single-content-wrapper .single-content blockquote p {
    margin: 0 !important;
}

.single-content-wrapper .single-content p:has(+ ul) {
    margin-bottom: 10px !important;
}

.single-content-wrapper .single-content li p {
    margin-bottom: 10px !important;
}

.single-content-wrapper .single-content .table-wrapper {
    overflow: auto;
}

/* Highlighted toggle */

.highlight-toggle {
    display: flex;
    align-items: center;
    gap: 35px;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 19px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #F40045;
    border-radius: 16px 0;
    padding: 10px 20px;
    width: 330px;
    margin-bottom: 31px;
    margin-left: 0;
}

.toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    border-radius: 12px;
    transition: 0.4s;
    border: 1px solid #F40045;
}

.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 2px;
    bottom: 2px;
    background-color: #F40045;
    border-radius: 50%;
    transition: 0.4s;
}

input:checked + .slider:before {
    transform: translateX(29px);
}

mark {
    background-color: transparent;
    color: inherit;
    padding: 0 2px;
}

mark.highlight-on {
    background-color: #FFF5AF;
    border-radius: 5px;
    position: relative;
    z-index: 0;
}

@media (max-width: 390px) {
    .highlight-toggle {
        justify-content: space-between;
        padding: 10px 15px;
        width: 100%;
        gap: 10px;
    }
}