/*
Theme Name: Teoro WP
Theme URI: https://demo.cocobasic.com/teoro-wp/
Description: Creative CV Resume WordPress theme. Online documentation you can find here - https://demo.cocobasic.com/documentation/MANUAL-TeoroWP.pdf
Author: CocoBasic
Author URI:  https://www.cocobasic.com
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Version: 1.0
Tags: grid-layout, four-columns, custom-colors, featured-images, threaded-comments, translation-ready, theme-options
Text Domain: teoro-wp
*/


/*------------------------------------------------------------------
[Table of contents]
1. Global CSS       
2. Menu Holder CSS      
3. Blog Page CSS
4. Single Post CSS
5. Comments CSS
6. Contact Page CSS
7. Archive CSS / Search CSS / 404 Page CSS / Attachment Page
8. Footer CSS
9. Footer Widgets CSS
10. Responsive CSS
-------------------------------------------------------------------*/


/* ===================================
    1. Global CSS
====================================== */

*, 
::after, 
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    color: #fff;
    background-color: #171321;
    overflow-x: hidden;
}

body a {
    text-decoration: none;
    color: #f393a4;
    transition: color .3s linear;
}

body a:hover {
    color: #f393a4;
}

body img {
    max-width: 100%;    
    height: auto;
    display: block;
}

.doc-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #1b212c;
}

.doc-loader img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;    
    left: 50%;
    transform: translate(-50%, -50%);
}

p {
    margin-bottom: 30px;
}

.content-holder {
    padding-bottom: 25px;
    position: relative;
    z-index: 1;
}

.content-1150 {
    width: 1150px;
    max-width: 95%;
}

.content-680 {
    width: 680px;
    max-width: 95%;
}

h1.entry-title.page-title {
    padding-top: 0;
    padding-bottom: 30px;
}

.section-info {
    font-size: 22px;
    line-height: 35px;
}

.animate {
    opacity: 0;
    transition: .5s transform ease-in, .5s opacity ease-in;
    -ms-transform: translate(0px,70px);
    -webkit-transform: translate(0px,70px);
    transform: translate(0px,70px); 
}

.animate.show-it {
    opacity: 1;
    -ms-transform: translate(0px,0px); 
    -webkit-transform: translate(0px,0px);
    transform: translate(0px,0px);  
}


/* ===================================
    2. Menu Holder CSS
====================================== */

.header-left-part {
    position: fixed;    
    z-index: 99 !important;
    width: 1150px !important;    
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-color: #171321;
}

.admin-bar .header-left-part {
    top: 32px !important;
}

.header-right-part {
    width: 1150px !important;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    top: auto !important;
    opacity: 0;
    transition: opacity .3s ease;
}

.cocobasic-open-menu .header-right-part,
.cocobasic-open-menu-done .header-right-part{
    z-index: 98 !important;
    opacity: 1;
}

.menu-wrapper {
    min-height: 77px;
    transform: translateY(-100%);
    transition: transform .3s ease-in;
}

.cocobasic-open-menu .menu-wrapper {
    transform: translateY(0);
}

.site-title {
    position: fixed;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 5px;
    transform-origin: 0 0;
    top: -100%;
    left: -55px;
    transform: rotate(-90deg) translateX(-100px);
}

.site-title a {
    color: #fff !important;
}

.menu-social {
    position: fixed;
    font-size: 12px;
    letter-spacing: 5px;
    transform-origin: 0 0;
    top: -100%;
    left: -50px;
    transform: rotate(-90deg) translateX(-160px);
}

.menu-social a {
    color: #fff;
    margin-left: 30px;
}

.menu-holder {
    margin: 0 auto;
    text-align: center;
    background-color: #171321;
}

.toggle-holder {
    left: -55px;
    z-index: 2;
    position: absolute;
    top: 27px;
}

#toggle:hover {
    cursor: pointer;
}

#toggle div {
    height: 3px;
    margin-bottom: 6px;
    background-color: #fff;
    width: 17px;
    transition: all .3s linear;
}

#toggle div:first-of-type {
    width: 25px;
}

#toggle div:last-of-type {
    width: 30px;
}

#toggle:hover div {
    width: 30px;
}

#toggle.on div {
    opacity: 0;
    margin-left: -2px;
}

#toggle.on div:first-of-type {
    transform: rotate3d(0,0,1,45deg) translate(9px,6px);
    width: 29px !important;
    opacity: 1;
}

#toggle.on div:last-of-type {
    transform: rotate3d(0,0,1,-45deg) translate(6px,-4px);
    width: 30px !important;
    opacity: 1;
}

#header-main-menu {
    display: inline-block;
}

.sm-clean a span.sub-arrow:before {
    display: block;
    content: '+';
}

.sm-clean a.highlighted span.sub-arrow:before {
    display: block;
    content: '-';
}

.sm-clean .has-submenu {
    padding-right: 35px !important;
}

body .site-wrapper .sm-clean a {
    cursor: pointer;
    color: #fff;
    border: 0 !important;
}

.sm-clean a span.sub-arrow {
    right: 3px;
    margin-top: 6px;
}

.sm-clean a.highlighted {
    padding: 15px;
}

.sm-clean a, 
.sm-clean a:hover, 
.sm-clean a:focus, 
.sm-clean a:active {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 500;
    -webkit-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
    padding: 15px;
}

.sm-clean ul a, 
.sm-clean ul a:hover, 
.sm-clean ul a:focus, 
.sm-clean ul a:active {
    font-size: 13px;
    line-height: 15px;
    padding: 10px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.sm-clean {
    background-color: transparent;        
    padding: 15px 0;
}

body .sm-clean a:hover, 
body .main-menu.sm-clean .sub-menu li a:hover, 
body .sm-clean li.active a,
body .sm-clean li.current-page-ancestor > a, 
body .sm-clean li.current_page_ancestor > a, 
body .sm-clean li.current_page_item > a {
    color: #f393a4;
}

.sm-clean li {
    margin-right: 10px;
}

.sm-clean li:last-child {
    margin-right: 0;
}

.sm-clean ul {
    background-color: #171321;
    text-align: left;
}

.sm-clean a.has-submenu {
    padding-right: 24px;
}

.sm-clean .sub-menu a, 
.sm-clean .children a {
    padding-left: 15px !important;
}

.sm-clean .sub-menu .sub-menu, 
.sm-clean .children .children {
    padding-top: 8px;
}

.sm-clean .sub-menu .sub-menu a, 
.sm-clean .children .children a, 
.sm-clean .sub-menu .sub-menu a:hover, 
.sm-clean .children .children a:hover {
    padding-top: 10px !important;
}

@media (min-width: 925px) {

    .sm-clean ul a span.sub-arrow {
        margin-top: -1px;
    }

}

@media (max-width: 925px) {

    .sm-clean ul {
        background-color: transparent;
    }    

}


/* ===================================
    3. Blog Page CSS
====================================== */

.blog .content-holder {
    padding-bottom: 50px;
}

.blog-holder > article {
    margin-bottom: 100px;
}

.blog-holder > article:last-of-type {
    margin-bottom: 0 !important;
}

.blog-item-holder {
    text-align: center;
}

.blog-item-holder .entry-title a {
    color: #fff;
}

.blog-item-holder .entry-title a:hover {
    color: #f393a4;
}

.blog-item-holder img {    
    margin: 0 auto;
}

.blog-item-holder .entry-holder {
    width: 100%;
    position: relative;
}

.blog-item-holder h2.entry-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    max-width: 800px;
    padding: 0;
    word-break: break-word;
    margin: 0 auto;
    position: relative;
}

.entry-info {
    list-style: none;
    padding: 0;
    margin: 30px 0 10px 0;
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.entry-info a {
    color: #f393a4;
}

.entry-info li {
    text-align: center;
    font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;    
}

.entry-info > li + li {
    margin-left: 25px;
}

ul.cat-links {
    padding: 0;
    list-style: none;
    color: #f393a4;
}

ul.cat-links > li {
    margin-bottom: 5px;
    display: inline-block;
    width: auto;
}

ul.cat-links > li:last-child {
    margin-bottom: 0;
}

ul.cat-links > li:after {
    content: ",";
    margin-right: 5px;
}

ul.cat-links > li:last-child:after {
    display: none;
}

.more-posts-index-holder {
    text-align: center;
    min-height: 1px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

.more-posts, 
.no-more-posts, 
.more-posts-loading {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;    
    position: relative;
    display: inline-block;
}

.more-posts {
    cursor: pointer;
    transition: .35s ease-out;
}

.more-posts:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: calc(100% - 2px);
    transition: .35s ease-out;
    background-color: #fff;
}

.more-posts:hover {
    color: #f393a4;
}

.more-posts:hover:before {
    width: 10px;
}

.more-posts {
    cursor: pointer;   
}

.more-posts-loading, 
.no-more-posts {
    display: none;
    cursor: auto;   
}


/* ===================================
    4. Single Post CSS
====================================== */

.single .content-holder {
    padding-bottom: 1px;
}

.single h1.entry-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    max-width: 800px;
    text-align: center;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    padding: 0;
    margin: 0 auto;
}

.single .attachment-post-thumbnail {
    margin: 0 auto 40px auto;
}

.single .entry-info {
    margin: 20px 0 40px 0;
}

.single .entry-content {
    width: 680px;
    margin: 0 auto;
    max-width: 100%;
}

.tags-holder {
    margin: 30px 0;
    display: inline-block;
}

body .tags-holder a  {
    border: 2px solid #f393a4;
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 7px 17px 6px 20px;
    font-size: 10px;
    text-transform: uppercase;
    background-color: #f393a4;
    transition: all .3s ease;
    letter-spacing: 3px;
    font-weight: 500;
}

.tags-holder a:last-of-type {
    margin-right: 0;
}

.tags-holder a:hover {
    background-color: transparent !important;
    color: #f393a4;
}

.wp-link-pages {
    clear: both;
}

.wp-link-pages > * { 
    color: #fff;
    margin: 0 5px;
    font-size: 16px;
    min-width: 30px;
    min-height: 30px;
    display: inline-block;
    text-align: center;
}

.wp-link-pages > span {
    color: #fff !important;
    padding: 1px 4px;
    background-color: #f393a4;
}

.single .nav-links {
    margin-top: 70px;
    margin-bottom: 70px;
    position: relative;
    max-width: 930px;
}

.single .nav-links:before {
    content: "";    
    display: block;
    position: absolute;
    background-color: #fff;
    width: 2px;
    height: 100%;    
    left: 50%;
    margin-left: -2px;
}

.single .nav-previous {
    display: inline-block;
    text-align: right;
    float: inherit;
    width: 44%;
}

.single .nav-next {
    display: inline-block;
    float: right;
    width: 44%;
    text-align: left;
}

.nav-links p {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 5px;
}

.nav-previous a, 
.nav-next a {
    color: #fff;
    font-size: 20px;
    line-height: 140%;
    word-break: break-word;
    font-weight: 500;
}

.single #sidebar {
    padding-top: 90px;
}


/* ===================================
    5. Comments CSS
====================================== */

#comments {
    background-color: #333a48;
}

#comments-wrapper {
    padding-top: 50px;    
}

ol.comments-list-holder {
    margin: 0;
}

ol.comments-list-holder > li:last-child {
    padding-bottom: 15px;
}

.comments-holder ol.comments-list-holder, 
.comments-holder ul.children {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.comments-holder ul.children {
    position: relative;
}

.comments-holder ul.children:before {
    content: "";
    width: 2px;
    height: 50px;
    background-color: #fff;
    position: absolute;
    left: 34px;
    top: 10px;
    left: 3.75em;
}

.vcard img {
    border-radius: 100px;
}

.comments-holder .comment-author-date-replay-holder {
    margin-left: 95px;
    padding-top: 8px;
    padding-left: 0;
    letter-spacing: 2px;
    line-height: 160%;
}

.comments-holder .pingback,
.comments-holder .trackback {
    padding-bottom: 60px;
}

.comments-holder .pingback .comment-author-date-replay-holder, 
.comments-holder .pingback .comment-text,
.comments-holder .trackback .comment-author-date-replay-holder, 
.comments-holder .trackback .comment-text {
    margin-left: 0;
}

ul.comment-author-date-replay-holder li {
    display: inline-block;
}

ul.comment-author-date-replay-holder li.comment-author {
    max-width: 90%;
    font-weight: 600;
    text-transform: uppercase;
}

.comment-date {
    margin-left: 95px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 20px;
}

.trackback .comment-date,
.pingback .comment-date {
    margin-left: 0;
    margin-top: 5px;
    margin-bottom: 10px;
}

.comment-reply {
    float: right;
}

a.comment-reply-link {
    text-decoration: none;
    position: relative;
}

.comments-number {
    font-size: 24px;
    line-height: 25px;    
    text-align: center;
}

.comment-content-holder {
    margin-left: 50px;
}

.comment-content-holder {
    width: 470px;
}

.comment-time-separator {
    display: inline-block;
    margin: 0 20px;
}

.comment-text {
    clear: both;
    display: block;
    margin-left: 95px;
}

.comment-text p {
    display: inline;
    font-size: 15px;
    line-height: 200%;
}

.replay-at-author {    
    margin-right: 8px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 0;
    text-transform: uppercase;
}

#reply-title {   
    font-size: 20px;    
}

#cancel-comment-reply-link {
    font-size: 13px;
    padding-left: 15px;
}

#cancel-comment-reply-link:before {
    content: "-";
    padding-right: 5px;
}

.comment-time {
    display: inline-block;
    font-size: 14px;
}

.comment {
    padding-bottom: 80px;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.children .comment {    
    padding-top: 80px;
    padding-bottom: 0;
}

.comment:last-child {
    padding-bottom: 0;
}

.comments-list-holder .children > li {
    padding-left: 1.75em;
}

.logged-in-as {
    margin-bottom: 50px;
    color: #f393a4;
}

.comment-form-holder {
    padding-top: 50px;
    padding-bottom: 50px;
}

#commentform #email, 
#commentform #author, 
#commentform #comment {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    border: 0;
    border-bottom: 2px solid;
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
    background-color: transparent;
}

.input-default-text {
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    z-index: -1;
}

.input-default-text.has-content {
    top: -20px;
    font-size: 11px;
}

#commentform #email, 
#commentform #author {
    padding-bottom: 5px;
}

#commentform #email {
    margin-bottom: 35px;
}

#commentform #comment {
    height: 150px;
}

.form-submit {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-bottom: 30px;
}

.form-submit input[type=submit] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    border: none;
    text-align: left;
    position: relative;
    padding: 20px 0 0;
    font-size: 18px;
    line-height: 30px;
    vertical-align: middle;
    text-decoration: none;
    background-color: transparent;
    width: 100%;
    transition: color .3s ease;
    cursor: pointer;
}

.form-submit:before {
    content: '';
    position: absolute;
    bottom: -4px;
    height: 2px;
    width: 100%;
    transition: .35s ease-out;
    background-color: #fff;
}

.form-submit input[type=submit]:hover {
    color: #f393a4;
}

.form-submit:hover:before {
    width: 10px;
}

.comment-form-cookies-consent {    
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 35px;
}

.comment-form-cookies-consent input {
    float: left;
}

.comment-form-cookies-consent:after {
    content: "";
    display: block;
    clear: both;
}


/* ===================================
    6. Contact Page CSS
====================================== */

.wpcf7-form {    
    margin: 0 auto;
}

.wpcf7-form p {
    margin-bottom: 0;
    z-index: 0;
}

.wpcf7-form .input-default-text {
    top: 8px;
}

.wpcf7-form input[type=text], 
.wpcf7-form input[type=email], 
.wpcf7-form textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
    color: #605777;
    background-color: transparent;
    width: 100%;
    height: 28px;
    border: 0;
    border-bottom: 2px solid;
    padding-top: 0;
    padding-bottom: 0px;
    margin-bottom: 22px;
    margin-top: 13px;
    -webkit-box-sizing: initial;
    box-sizing: initial;
}

.wpcf7-form textarea {
    height: 150px;
}

.wpcf7-form input[type=submit] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: block;
    border: 2px solid #605777;
    text-align: center;
    position: relative;
    padding: 20px 0;
    font-size: 18px;
    line-height: 30px;
    vertical-align: middle;
    text-decoration: none;
    background-color: transparent;
    color: #605777;
    width: 100%;
    transition: all .3s ease;
    cursor: pointer;
}

.wpcf7-form input[type=submit]:hover {
    background-color: #605777;
    color: #eae0e9;
}

.wpcf7-form .contact-submit-holder {
    position: relative;
    margin-bottom: 30px;
}

.wpcf7-form .input-default-text.has-content {
    top: -9px;
    font-size: 11px;
}

span.wpcf7-not-valid-tip {
    color: #f4f4f4;
    background-color: #f393a4;
    padding: 3px 10px;
    font-size: 10px;
    position: absolute;
    top: -7px;
    right: 0;
}    

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
    color: #fff;
    background-color: #f393a4;
    border: 2px solid #f393a4;
    width: 100%;
    margin: 0;
    padding: 0.2em 1em;
    font-size: 12px;
    text-align: center;
    position: absolute;
    bottom: -40px;
    margin: 0 !important;
}

[data-elementor-device-mode="mobile"] div.wpcf7-response-output {
    position: initial;
    margin: 2em 0.5em 1em !important;
}

span.wpcf7-list-item {
    margin: 0;
}

div.wpcf7 .ajax-loader {
    display: none !important;
}


/* ===================================
    7. Archive CSS / Search CSS / 404 Page CSS / Attachment Page
====================================== */

.archive .navigation.pagination, 
.search .navigation.pagination {
    margin-top: 100px;
    text-align: center;
    font-weight: 500;
}

.search .nav-links > *,
.archive .nav-links > * {
    padding: 0 5px;
}

.search .nav-links a, 
.archive .nav-links a {
    color: #f393a4;
}

.search .nav-links a:hover, 
.archive .nav-links a:hover {
    color: #f393a4;
}

.search .nav-links .current,
.archive .nav-links .current {
    color: #f393a4;
}

.archive .blog-holder > article, 
.search .blog-holder > article {
    margin-bottom: 70px;
}

.archive-title {
    margin-bottom: 90px;
    text-align: center;
    background-color: #f393a4;
    padding: 25px 70px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.archive .archive-title {
    padding: 22px 70px 26px;
}

.archive-title h1 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    padding: 0;
    display: inline;
    transition: color .35s ease-out;
}

.archive-title h1 span {
    position: relative;
    font-weight: 700;
}

.archive-title h1 span:before {
    content: '';
    position: absolute;
    bottom: -5px;    
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: .35s ease-out;
}

.search .archive-title h1:before {
    display: none;
}

.search .archive-desc {
    margin-top: 15px;
    color: #fff;
}

.search .archive-title h1 .search-text {
    letter-spacing: 0;
    text-transform: none;
}

.search .archive-title h1 .searched-text {
    position: relative;
    font-weight: 700;
    overflow: hidden;
}

.search .archive-title h1 .searched-text:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: .35s ease-out;
}

.search-no-results h2 {
    text-align: center;
}

.error-text-help-first {
    font-size: 36px;
    line-height: 40px;
}

.error-text-help-second {
    font-size: 26px;
    line-height: 34px;
    max-width: 460px;
    margin: 0 auto;
}

.error-text-404 {
    font-weight: 700;
    font-size: 350px;
    line-height: 100%;
    color: #f393a4;
}


/* ===================================
    8. Footer CSS
====================================== */

footer {
    padding: 20px 0;
}

footer a {
    color: #fff;
}


/* ===================================
    9. Footer Widgets CSS
====================================== */

#sidebar {
    margin: 0 auto;
    padding-top: 50px;
    font-size: 14px;
    line-height: 180%;
}

#sidebar p {
    margin-bottom: 12px;
}

#sidebar .widget li {
    margin-bottom: 10px;
}

#sidebar table, 
#sidebar th, 
#sidebar td {
    padding: 5px;
}

select {
    max-width: 100%;
    background-color: #171321;
    color: #fff;
}

ul#footer-sidebar li.widget {
    width: 40%;
    margin-right: 20%;
    float: left;
    margin-bottom: 50px;
    text-align: left;
}

ul#footer-sidebar li.widget:nth-child(2n) {
    margin-right: 0;
}

ul#footer-sidebar li.widget:nth-child(2n+1) {
    clear: left;
}

.widget a {
    border-bottom: 1px solid;
}

ul#footer-sidebar:after {
    clear: both;
    content: "";
    display: table;
}

#sidebar ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    margin-top: 0;
}

#sidebar ul.children,
#sidebar ul.sub-menu {
    margin-top: 10px;
    margin-left: 10px;
}

#sidebar .tagcloud a {
    line-height: 160%;
}

h4.widgettitle {
    font-size: 14px;
    text-transform: uppercase;
    padding-top: 0;
    padding-bottom: 12px;
}

#sidebar li.widget {
    margin-bottom: 50px;
    overflow: hidden;
}

.search-field {
    font-family: 'Montserrat', sans-serif;           
    color: #fff;
    padding: 0;
    margin-top: -3px;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    text-align: left;
    transition: border 0.4s ease;
    -webkit-appearance: none;
}

.search-field:focus {
    border-bottom: 2px solid #fff;
}

.search-field::-webkit-input-placeholder {
    font-family: 'Montserrat', sans-serif;  
    color: #fff;  
    padding: 5px 0;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    opacity: 1;
    text-align: left;
}

.search-field:-ms-input-placeholder {
    font-family: 'Montserrat', sans-serif;  
    color: #fff;  
    padding: 5px 0;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    opacity: 1;
    text-align: left;
}

.search-field::placeholder {
    font-family: 'Montserrat', sans-serif;    
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    opacity: 1;
    text-align: left;
}


/* ===================================
    10. Responsive CSS
====================================== */

@media screen and (max-width: 1300px) {

    #header-main-menu {
        padding-bottom: 100px;
    }

    .header-left-part {
        width: 100% !important;
        left: 0;
        transform: none;
        z-index: 99 !important;
        height: 77px;
    }    

    .sticky-wrapper {
        height: 77px !important;
    }

    .header-right-part {
        width: 0 !important;
        transform: none;
        left: auto;        
    }

    .menu-wrapper {
        transform: none !important;
    }    

    .site-title {
        position: absolute;
        transform: translateY(-50%);
        top: 50% !important;
        z-index: 1;
        left: 20px;
    }    

    .menu-social {
        position: absolute;
        transform: translate(100%, -50%);
        left: auto;
        right: 0;
        top: 50% !important;
        z-index: 2;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }    

    .cocobasic-open-menu .menu-social {
        transform: translate(0%, -50%);
        right: 90px;
    }

    .toggle-holder {
        right: 20px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-menu ul {
        width: 12em;
    }

    .sm-clean li {
        margin: 0 auto !important;
        border: 0;
        text-align: left;
    }

    .sm-clean a.has-submenu {
        display: inline-block;
        padding-left: 0 !important;
    }

    .menu-holder {
        position: fixed;
        text-align: center;
        right: 0;
        top: 77px;
        transform: translateX(100%);
        -webkit-transition: transform .3s ease, padding .3s ease;
        transition: transform .3s ease, padding .3s ease;
        height: 100%;
        min-width: 300px;
        overflow: auto;
        max-width: 100%;
        padding: 0 25px;
        z-index: 99;        
    }

    .admin-bar .menu-holder {
        top: 109px;
    }

    .cocobasic-open-menu .menu-holder {
        transform: translateX(0%);
    }   

    .sm-clean ul ul a, 
    .sm-clean ul ul a:hover, 
    .sm-clean ul ul a:focus, 
    .sm-clean ul ul a:active {
        border: none;
    }

    .sm-clean a span.sub-arrow {
        background: transparent;
        margin-top: -19px !important;
    }

    .sm-clean a, 
    .sm-clean a:hover, 
    .sm-clean a:focus, 
    .sm-clean a:active, 
    .sm-clean a.highlighted {
        padding: 10px 18px 10px 18px;
        padding-left: 0 !important;
        margin-bottom: 5px;
    }     

    .sub-menu .sub-menu, 
    .children .children {
        padding-top: 0px;
    }

    .sm-clean .sub-menu a, 
    .sm-clean .children a {
        padding-left: 0 !important;
    }


    .site-content {
        padding-top: 50px;
    }

    .blog-item-holder .entry-holder {
        display: block;
    }

    .more-posts-index-holder {
        margin-top: 60px;
    }       

    .single .nav-links {
        margin: 50px 0;
    }        

    .comments-holder .pingback,
    .comments-holder .trackback {
        padding-bottom: 30px;
    }

    .search .archive-title h1 span,
    .archive-title h1 span {
        display: inline-block;
        vertical-align: middle;
    }
}

@media screen and (max-width: 782px) {

    .admin-bar .header-left-part {
        top: 46px !important;
        transition: top .3s ease;
    }    

    .admin-bar .menu-holder {
        top: 123px;
    }

}

@media screen and (max-width: 767px) {

    .blog-holder > article {
        margin-bottom: 65px;
    }    

    .blog-item-holder.sticky {
        width: 100%;
        margin-left: 0;
    }  

    .archive-title {
        margin-bottom: 50px;
    }

    .archive-title h1 {
        font-size: 22px;
    }

    .archive .navigation.pagination, 
    .search .navigation.pagination {
        margin-top: 50px;
    }

    .error-text-404 {
        font-size: 90px;
    }

    .single .nav-links:before {
        display: none;
    }    

    .single .nav-previous, 
    .single .nav-next {
        display: block;
        width: 95%;
        text-align: center;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .single .nav-previous a, 
    .single .nav-next a {
        float: none;
    }

    .single .nav-previous {    
        padding-bottom: 40px;
    }

    .comment-form-holder {
        padding-top: 0;
    }

    .comment {
        padding-bottom: 50px;
    }

    .replay-at-author {
        font-size: 14px;       
    }

    .comment-text p {
        font-size: 14px;
        line-height: 180%;
    }

    #sidebar {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .single #sidebar {
        padding-top: 40px;
    }

    ul#footer-sidebar li.widget {
        float: none;
        width: 100%;
    }

    ul#footer-sidebar li.widget:last-child {
        margin-bottom: 0;
    }

}

@media screen and (max-width: 650px) {   

    .cocobasic-open-menu .site-title {
        visibility: hidden;        
    }

    #header-main-menu {
        padding-bottom: 40px;
    }

    .menu-holder {
        width: 100%;
        top: 0;
        z-index: 1;
        padding-top: 65px;
    }

    .admin-bar .menu-holder {
        padding-top: 115px;
        top: 0;
    }

    .admin-bar .is-sticky .menu-holder {
        padding-top: 75px;
    }

    .menu-social a {
        margin-left: 22px;
    }

    .single h1.entry-title, 
    .blog-item-holder h2.entry-title, 
    h1.entry-title.page-title {
        font-size: 27px;
        margin-bottom: 10px;
    }     

    .entry-info {
        display: block;
        margin-bottom: 10px;
    }

    .entry-info > li + li {
        margin-left: 0;
        margin-top: 5px;
    } 

    blockquote.wp-block-quote {
        font-size: 20px;
    }    

    .comments-list-holder .children > li {
        padding-left: 0.75em;
    }

    .comments-holder ul.children:before {
        left: 2.75em;
    }

    .comments-holder .comment-author-date-replay-holder,
    .comment-date {
        margin-left: 90px;
    }    

    .comment-text {
        margin-left: 0;
        margin-top: 25px;   
    }

}

@media screen and (max-width: 600px) {

    .admin-bar.menu-is-sticky .header-left-part {
        top: 0px !important;
    }

}