/*
 Theme Name:   Kasza Kriszta Basic Theme
 Theme URI:    http://kaszakriszta.hu
 Description:  Basic Child Theme Template
 Author:       kaszakriszta
 Author URI:   http://kaszakriszta.hu
 Template:     Divi
 Version:      1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/



/*-----Typography-----*/

/*Load any custom fonts here*/

/*Example of adding google fonts*/


@import url('https://fonts.googleapis.com/css?family=Merriweather+Sans:300,400,400i,700|Merriweather:400,700,700i,900');

/*
font-family: 'Merriweather', serif;
font-family: 'Merriweather Sans', sans-serif;
*/


/*Global styles*/

:root {
    /*Edit the colour values below and your changes will be reflected across all elements*/
    --ds-primary: #10181be0;
    --ds-accent: radial-gradient(circle at center,rgba(176, 196, 0, 0.43) 30%,rgba(175, 255, 244, 0.63) 90%);
    --ds-dark: #3E3E3B;
    --ds-light: #ffffff;
    --ds-light-grey: #e0d7d2;
    /*Edit the length values below to adjust the responsive grid layout for related posts*/
    /*Minimum width of posts (they will grow to fill available space)*/
    --ds-related-width: 190px;
    /*Space between posts, both horizontal & vertical*/
    --ds-related-gap: 30px;
}


/*Typography*/

p,
body {
    color: inherit !important;
}


/*Post slider*/


/*Extend overlay to include button*/

.ds-post-slider .et_pb_button_wrapper {
    background: #ffffffab;
    padding-bottom: 30px;
}


/*Remove button top margin*/

.ds-post-slider .et_pb_more_button {
    margin-top: 0;
}


/*Hide the excerpt & meta*/

.ds-post-slider .et_pb_slide_content {
    display: none;
}


/*Arrows*/

.ds-post-slider .et-pb-arrow-prev,
.ds-post-slider .et-pb-arrow-next {
    background: var(--ds-light);
}


/*Dots*/

.ds-post-slider .et-pb-controllers a {
    background-color: var(--ds-accent);
    border-radius: 0;
}

.ds-post-slider .et-pb-controllers .et-pb-active-control {
    background: var(--ds-primary);
}


/*Optin form*/


/*Set to flex*/

#ds-optin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


/*Description width*/

#ds-optin .et_pb_newsletter_description {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    -ms-flex-item-align: center;
    align-self: center;
    margin-bottom: 0;
    margin-right: 30px;
}


/*Remove title padding*/

#ds-optin .et_pb_module_header {
    padding-bottom: 0;
}


/*Set form width*/

#ds-optin .et_pb_newsletter_form {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
}


/*Set field width*/

#ds-optin.et_pb_newsletter .et_pb_newsletter_fields > * {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 0;
}


/*Set field background*/

#ds-optin .et_pb_newsletter_form .input {
    background: var(--ds-light-grey);
}


/*Make button same height as fields*/

#ds-optin.et_pb_newsletter .et_pb_newsletter_button.et_pb_button {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*Make footer fullwidth*/

#ds-optin.et_pb_newsletter .et_pb_newsletter_footer {
    margin-top: 0;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}


/*Blog*/


/*Section background*/

.ds-accent-section {
    background: var(--ds-accent);
}


/*Set posts to flex*/

.ds-blog .et_pb_post,
.archive .et_pb_post,
.search .et_pb_post {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    background: var(--ds-light);
}


/*Set text content to flex*/

.ds-blog .ds-blog-content,
.archive .ds-blog-content,
.search .ds-blog-content {
    grid-column: 2 / -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 30px 0;
}

.ds-blog .et_pb_post .post-content,
.archive #left-area .et_pb_post .post-content,
.search #left-area .et_pb_post .post-content {
    grid-column: 2 / -1;
    padding: 0 30px 30px;
}


/*Hide the excerpt*/

.ds-blog .et_pb_post .post-content p,
.archive #left-area .et_pb_post .post-content p,
.search #left-area .et_pb_post .post-content p {
    display: none;
}


/*Order content*/

.ds-blog .entry-featured-image-url,
.archive .entry-featured-image-url,
.search .entry-featured-image-url {
    grid-row: 1 / 4;
    margin-bottom: 0;
}


/*Fit image to available space*/

.ds-blog .et_pb_post a img,
.archive .et_pb_post a img,
.search .et_pb_post a img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.ds-blog .post-content,
.archive .post-content,
.search .post-content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.ds-blog .post-meta,
.archive .post-meta,
.search .post-meta {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 80%;
}


/*Post meta*/

.ds-blog .et_pb_post .post-meta span,
.archive .et_pb_post .post-meta span,
.search .et_pb_post .post-meta span,
.single .et_pb_post .post-meta span {
    margin: 10px 10px 0;
    font-weight: 600;
    font-size: 80%;
}


/*Post meta links*/

.ds-blog .et_pb_post .post-meta a,
.archive .et_pb_post .post-meta a,
.search .et_pb_post .post-meta a,
.single .et_pb_post .post-meta a {
    color: inherit;
    font-weight: 600;
}


/*Excerpt & read more*/

.ds-blog .post-content,
.archive .post-content,
.search .post-content {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}


/*Order post elements*/

.ds-blog .ds-blog-cat,
.archive .ds-blog-cat,
.search .ds-blog-cat,
.single .ds-blog-cat {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.ds-blog .entry-title,
.archive .entry-title,
.search .entry-title,
.single .entry-title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0;
    margin: 20px 0 10px;
}

.ds-blog .published,
.archive .published,
.search .published,
.single .published {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 80%;
    margin: 5px 0;
}

.single .post-meta {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}


/*Style the categories*/

.ds-blog-cat a {
    /*background: var(--ds-accent);
    color: var(--ds-primary);*/
	background: #b2bf03;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 80%;
    padding: 5px 15px;
    margin: 5px;
}


/*Add the meta icons*/

.ds-blog .ds-comments:before,
.archive .post-meta .comments-number:before,
.search .post-meta .comments-number:before,
.single .post-meta .comments-number:before,
.ds-blog .author:before,
.archive .author:before,
.search .author:before,
.single .author:before {
    font-family: 'ETModules';
    padding-right: 5px;
}


/*Add comments icon*/

.ds-blog .ds-comments:before,
.archive .post-meta .comments-number:before,
.search .post-meta .comments-number:before,
.single .post-meta .comments-number:before {
    content: '\e065';
}


/*Add author icon*/

.ds-blog .author:before,
.archive .author:before,
.search .author:before,
.single .author:before {
    content: '\e08a';
}


/*Read more*/

.ds-blog .et_pb_post a.more-link,
.archive .et_pb_post .more-container,
.search .et_pb_post .more-container {
    margin-top: 30px;
    -ms-flex-item-align: center;
    align-self: center;
}

.ds-blog .et_pb_post a.more-link,
.archive .et_pb_post a.more-link,
.search .et_pb_post a.more-link {
    display: block;
}


/*Pagination*/

.ds-blog .pagination a:hover,
.archive .pagination a:hover,
.search .pagination a:hover {
    background: var(--ds-light-grey) !important;
}


/*Archives*/


/*Page background*/

.archive #main-content,
.search #main-content,
.single #main-content {
    background: var(--ds-accent);
    padding-bottom: 4%;
}


/*Post info*/

.archive .ds-blog-content,
.search .ds-blog-content,
.single .ds-blog-content {
    text-align: center;
}


/*Title*/

.archive .et_pb_post .entry-title,
.search .et_pb_post .entry-title,
.single .et_pb_post .entry-title {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}


/*Post meta*/

.archive #left-area .post-meta,
.search #left-area .post-meta {
    padding-bottom: 0;
}

.archive #left-area .post-meta span,
.search #left-area .post-meta span,
.single #left-area .post-meta span,
.archive #left-area .post-meta a,
.search #left-area .post-meta a,
.single #left-area .post-meta a {
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 100%;
}


/*Sidebar*/


/*Remove dividing line*/

.archive #main-content .container::before,
.search #main-content .container::before,
.single #main-content .container::before {
    display: none;
}


/*Set container widths*/

@media (min-width: 981px) {
    .archive #left-area,
    .search #left-area,
    .single #left-area {
        width: 70.334%;
    }
    .archive #sidebar,
    .search #sidebar,
    .single #sidebar {
        width: 29.666%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 60px;
    }
}


/*Widgets*/


/*Title styling*/

.ds-sidebar h4.widgettitle,
.ds-sidebar h6,
#sidebar h4.widgettitle,
#sidebar h6 {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px 20px;
    background: var(--ds-primary);
    color: var(--ds-light) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/*Last widget spacing*/

.ds-sidebar .et_pb_widget:last-of-type,
#sidebar .et_pb_widget:last-of-type {
    margin-bottom: 0;
}


/*Image widget*/

.ds-sidebar .et_pb_widget.widget_media_image:first-of-type,
#sidebar .et_pb_widget.widget_media_image:first-of-type {
    margin-bottom: -10px;
}


/*Text widget*/

.ds-sidebar .widget_text,
#sidebar .widget_text {
    background: var(--ds-light);
    padding: 30px;
}


/*Style the list widgets*/

.ds-sidebar .et_pb_widget ul li,
#sidebar .et_pb_widget ul li {
    background: var(--ds-light);
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}


/*Hover styling*/


.ds-sidebar .et_pb_widget ul li,
#sidebar .et_pb_widget ul li {
text-decoration: none;
    background-image: linear-gradient(#1e1d1d, #1e1d1d);
    background-position: 10% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .8s ease;
	
}

.ds-sidebar .et_pb_widget ul li :hover,
#sidebar .et_pb_widget ul li :hover {
background-size: 100% 2px;
}






.ds-sidebar .et_pb_widget ul li:hover,
#sidebar .et_pb_widget ul li:hover {
/*color: #ec5540;
position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;*/
text-decoration: none;
    background-image: linear-gradient(#1e1d1d, #1e1d1d);
    background-position: 10% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .8s ease;
}

.ds-sidebar .et_pb_widget ul li:hover,
#sidebar .et_pb_widget ul li:hover {
background-size: 100% 2px;
}


/*Remove last item margin*/

.ds-sidebar .et_pb_widget li:last-of-type,
#sidebar .et_pb_widget li:last-of-type {
    margin-bottom: 0;
}


/*Style the links*/

.ds-sidebar .et_pb_widget li a,
#sidebar .et_pb_widget li a {
    color: inherit;
    display: block;
    padding: 10px 20px;
}


/*Search*/


/*Hide the button*/

.ds-sidebar .widget_search input#searchsubmit,
#sidebar .widget_search input#searchsubmit {
    display: none;
}


/*Search input*/

.ds-sidebar .widget_search input#s,
#sidebar .widget_search input#s {
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: inherit;
}


/*Placeholder styling*/

.widget_search input#s::-webkit-input-placeholder {
    text-align: center;
}

.widget_search input#s::-moz-placeholder {
    text-align: center;
}

.widget_search input#s:-ms-input-placeholder {
    text-align: center;
}

.widget_search input#s:-moz-placeholder {
    text-align: center;
}


/*Categories & archives*/


/*Style the dropdowns*/

.ds-sidebar .et_pb_widget select,
#sidebar .et_pb_widget select {
    border: none;
    border-radius: 0;
    height: 40px;
    text-align: center;
    text-align-last: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    background-color: var(--ds-light) !important;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDUwIDUwIiBoZWlnaHQ9IjUwcHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MCA1MCIgd2lkdGg9IjUwcHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxyZWN0IGZpbGw9Im5vbmUiIGhlaWdodD0iNTAiIHdpZHRoPSI1MCIvPjxwb2x5Z29uIHBvaW50cz0iNDcuMjUsMTUgNDUuMTY0LDEyLjkxNCAyNSwzMy4wNzggNC44MzYsMTIuOTE0IDIuNzUsMTUgMjUsMzcuMjUgIi8+PC9zdmc+) no-repeat 95% 50%;
    background-size: 8%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/*Style the tags*/

.ds-sidebar .tagcloud,
#sidebar .tagcloud {
    text-align: center;
    background: var(--ds-light);
    padding: 30px;
}

.ds-sidebar .tagcloud a,
#sidebar .tagcloud a {
    border-radius: 0;
    background: var(--ds-accent);
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: inherit;
}


/*Single Post*/


/*Post info*/

.single .et_post_meta_wrapper:first-of-type,
.single .entry-content {
    background: var(--ds-light);
}


/*Order post blocks*/

.single .ds-blog-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    padding: 30px 30px 0;
}


/*Meta*/

.single #left-area .post-meta {
    padding-bottom: 0;
}


/*Post tags*/


/*Styling*/

.ds-post-tags {
    background: var(--ds-light);
    text-align: center;
    padding-bottom: 20px;
}


/*Position the tags*/

.single .ds-post-tags a {
    margin: 5px 5px 0;
    display: inline-block;
    color: inherit;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 80%;
}


/*Add the tag icon*/

.single .ds-post-tags a:before {
    font-family: 'ETModules';
    content: '\e07b';
    margin-right: 5px;
}


/*Post content*/

.single .entry-content {
    padding: 30px;
}


/*Author bio box*/


/*Style the box*/

.ds-author-bio {
    padding: 30px 30px 25px 30px;
    margin: 40px 0;
    background: var(--ds-light);
}


/*Avatar*/

.ds-author-bio .avatar {
    float: left;
    margin-right: 20px;
}


/*Author name*/

.ds-author-bio h6 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ds-author-bio p:last-of-type {
    padding-bottom: 20px;
}


/*View author posts*/

.ds-author-bio a {
    color: var(--ds-mid-grey);
    font-size: 16px;
    font-weight: 600;
}


/*Next/previous post nav*/


/*Container*/

.ds-single-post-nav {
    background: var(--ds-light);
    margin: 40px 0;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


/*Set nav items to flex*/

.ds-single-post-nav-prev,
.ds-single-post-nav-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 47.5%;
    flex-basis: 47.5%;
}


/*Align nav items*/

.ds-single-post-nav-prev {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 5%;
}

.ds-single-post-nav-next {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}


/*Post title*/

.ds-single-nav-previous-title,
.ds-single-nav-next-title {
    color: inherit;
    margin-top: 10px;
    line-height: 1.2em;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/*Next title*/

.ds-single-nav-next-title {
    text-align: right;
}


/*Related posts*/


/*Spacing and background*/

.ds-related-posts {
    background: var(--ds-light);
    padding: 30px;
    margin-bottom: 40px;
}


/*Set the list to grid*/

.ds-related-posts ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--ds-related-width), 1fr));
    grid-gap: var(--ds-related-gap);
    padding: 0 !important;
}


/*Section header*/

h4.ds-related-posts-header {
    position: relative;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}


/*Set to flex*/

.ds-related-list {
    list-style-type: none;
    position: relative;
    background: var(--ds-accent);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ds-related-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}


/*Style the title*/

.ds-related-content h5 {
    line-height: 1.2em;
    padding-bottom: 0;
}


/*Style the title*/

.ds-related-content h5 a {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}


/*Comments*/


/*Container*/

.single #comment-wrap {
    padding: 30px;
    background: var(--ds-light);
}

.single #respond {
    padding-top: 0;
}


/*# Comments section title*/

.single h4#comments {
    margin-bottom: 10px;
}


/*Submit comment section title*/

.single h4#reply-title,
.single h4#comments {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}


/*Comment container*/

.single .comment-body {
    border: none;
    background: var(--ds-accent);
    position: relative;
    padding: 20px !important;
    margin-bottom: 30px;
}


/*Edit button*/

.single a.comment-edit-link {
    float: right;
    font-size: 10px;
    margin-left: 10px;
}

.single a.comment-edit-link:hover {
    background: var(--ds-light-grey) !important;
}


/*Avatar*/

.single .comment .comment_avatar {
    margin: 0 20px 20px 0;
    position: relative;
    top: 0;
    float: left;
}


/*Reply button*/

.single .comment_area .comment-reply-link {
    top: 44px;
    left: 100px;
    right: auto;
    margin: 20px;
    font-size: 14px;
}

.single .comment_area .comment-reply-link:hover {
    background: var(--ds-light-grey) !important;
}

.single .comment #respond {
    margin: auto 0 60px;
}


/*Comment text*/

.single .comment_area {
    clear: left;
}


/*Comment replies indent*/

.single .comment .children {
    margin-left: 20px;
}

.single .comment .children li {
    position: relative;
}


/*Add replies joining line*/

.single .comment .children li::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 30px;
    bottom: 100%;
    left: 30px;
    border-left: 3px dotted var(--ds-accent);
}

.single .commentlist {
    margin-bottom: 40px;
}


/*Comment Form*/


/*Logged in as text*/

.single p.logged-in-as a {
    color: var(--ds-mid-grey);
    font-size: 12px;
}


/*Form spacing*/

.single #commentform {
    padding-bottom: 35px;
}


/*Field spacing*/

.single p.comment-form-author,
.single p.comment-form-comment,
.single p.comment-form-email,
.single p.comment-form-url {
    padding-bottom: 0;
}


/*Input field styling*/

.single #commentform textarea,
.single #commentform input[type="text"],
.single #commentform input[type="email"],
.single #commentform input[type="url"] {
    background-color: var(--ds-accent);
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
    color: var(--ds-dark);
    color: inherit;
    font-size: inherit;
}


/*Submit button*/

.single #commentform .form-submit {
    float: left;
}


/*Media queries*/

@media all and (min-width: 981px) {
    /*Widget spacing*/
    #sidebar .et_pb_widget {
        margin-bottom: 18.54%;
    }
}

@media all and (max-width: 980px) {
    /*Sidebar spacing*/
    .ds-sidebar,
    #sidebar {
        margin-top: 60px;
    }
    /*Widget width*/
    .ds-sidebar .et_pb_widget,
    #sidebar .et_pb_widget {
        width: 100%;
    }
    /*Select widget arrows*/
    .ds-sidebar .et_pb_widget select,
    #sidebar .et_pb_widget select {
        background-size: 3%;
        background-position: 98% 50%;
    }
    /*Images*/
    .ds-sidebar .et_pb_widget,
    .ds-sidebar .et_pb_widget img,
    #sidebar .et_pb_widget,
    #sidebar .et_pb_widget img {
        width: 100%;
    }
}

@media all and (min-width: 768px) {
    /*Comment form fields*/
    .single #commentform input#author {
        width: calc(50% - 10px);
        float: left;
    }
    .single #commentform input#email {
        width: calc(50% - 10px);
        float: right;
    }
    .single #commentform input#url {
        width: 100%;
    }
}

@media all and (max-width:768px) {
    /*Comment reply buttom positioning*/
    .single .comment_area .comment-reply-link {
        left: auto;
        margin: 20px 0 10px 20px;
    }
}

@media all and (max-width: 767px) {
    /*Stack the optin*/
    #ds-optin {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 15px 0 !important;
    }
    #ds-optin .et_pb_newsletter_description {
        text-align: center;
        margin-right: 0;
    }
    #ds-optin .et_pb_module_header {
        padding-bottom: 20px;
    }
    #ds-optin.et_pb_newsletter .et_pb_newsletter_fields > * {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@media all and (max-width:600px) {
    /*Post display*/
    .ds-blog .et_pb_ajax_pagination_container .et_pb_post,
    .archive .et_pb_post,
    .search .et_pb_post {
        display: block;
    }
}

@media all and (max-width: 479px) {
    /*Commenter avatar sizing*/
    .single .comment_avatar img {
        max-width: 100%;
    }
}

/*sajat style*/
.et_pb_blog .et_overlay {
    border: 4px double #ffffff;
}

/*keretet a blog kepeknek*/
/*.ds-blog .et_pb_post a img, .archive .et_pb_post a img, .search .et_pb_post a img {
border: 4px solid #ff3333;
  
}*/




























/*Global styles*/

:root {
    /*Set colour values with variables to provide a single place to change colours*/
   /* --primary-color: #ff0000;
    --accent-color: #ffff00;
    --dark-color: #2e2e2e;
    --light-color: #d3c5a8;
    --mid-color: #63ab89;
	--yellow-color: #f6c649;
	--corall-color: #ec5540;
    --purple-color: #92195b;*/
}


h1,
.et_pb_column_1_3 h1,
.et_pb_column_1_4 h1 {
    color: var(--corall-color);
    font-size: 30px;
    /*font-weight: 600;*/
    line-height: 1em;
	font-family: 'Merriweather', serif;
}

h2,
.et_pb_column_1_3 h2,
.et_pb_column_1_4 h2 {
    color: var(--corall-color) !important;
    font-size: 26px;
   font-weight: 600;
    line-height: 1em;
    /*text-transform: uppercase;*/
	font-family: 'Merriweather', serif;
	/*letter-spacing: -2px*/
}

h3,
.et_pb_column_1_3 h3,
.et_pb_column_1_4 h3 {
    color: var(--dark-color);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2em;
    font-family: 'Merriweather', serif;
    text-transform: uppercase;
}


/*Includes sidebar and footer widgets titles*/

h4,
.et_pb_column_1_3 h4,
.et_pb_column_1_4 h4,
.et_pb_widget h4.widgettitle {
    color: var(--corall-color);
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2em;
    font-family: 'Merriweather', serif;
}

h5,
.et_pb_column_1_3 h5,
.et_pb_column_1_4 h5 {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 100;
    line-height: 1.2em;
    font-family: 'Open Sans', sans-serif;
}

h6,
.et_pb_column_1_3 h6,
.et_pb_column_1_4 h6 {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 100;
    line-height: 1.2em;
    font-family: 'Open Sans', sans-serif;
}

p,
body,
.et_pb_post p {
    color: var(--dark-color) !important;
    font-size: 16px !important;
    font-weight: 100;
    line-height: 1.3em;
    font-family: 'Merriweather Sans', sans-serif;
}

a,
.et_pb_widget a,
#left-area .post-meta a {
    color: var(--dark-color);
font-family: Merriweather;
}

/*Adjust typography for Divi's mobile breakpoints*/

/*Adjust typography for Divi's mobile breakpoints*/

@media all and (max-width: 980px) {
    p,
    body,
    .et_pb_post p {}
    h1,
    .et_pb_column_1_3 h1,
    .et_pb_column_1_4 h1 {}
    h2,
    .et_pb_column_1_3 h2,
    .et_pb_column_1_4 h2 {}
    h3,
    .et_pb_column_1_3 h3,
    .et_pb_column_1_4 h3 {}
    h4,
    .et_pb_column_1_3 h4,
    .et_pb_column_1_4 h4,
    .et_pb_widget h4.widgettitle {}
    h5,
    .et_pb_column_1_3 h5,
    .et_pb_column_1_4 h5 {}
    h6,
    .et_pb_column_1_3 h6,
    .et_pb_column_1_4 h6 {}
}


@media all and (max-width: 767px) {
    p,
    body,
    .et_pb_post p {}
    h1,
    .et_pb_column_1_3 h1,
    .et_pb_column_1_4 h1 {}
    h2,
	.et_pb_post h2,
    .et_pb_column_1_3 h2,
    .et_pb_column_1_4 h2 {
	font-size: 30px;
	}
    h3,
    .et_pb_column_1_3 h3,
    .et_pb_column_1_4 h3 {}
    h4,
    .et_pb_column_1_3 h4,
    .et_pb_column_1_4 h4,
    .et_pb_widget h4.widgettitle {}
    h5,
    .et_pb_column_1_3 h5,
    .et_pb_column_1_4 h5 {}
    h6,
    .et_pb_column_1_3 h6,
    .et_pb_column_1_4 h6 {}
}



@media all and (max-width: 479px) {
    p,
    body,
    .et_pb_post p {}
    h1,
    .et_pb_column_1_3 h1,
    .et_pb_column_1_4 h1 {}
    h2,
    .et_pb_post h2,
    .et_pb_column_1_3 h2,
    .et_pb_column_1_4 h2 {
	font-size: 20px;
	}
    h3,
    .et_pb_column_1_3 h3,
    .et_pb_column_1_4 h3 {}
    h4,
    .et_pb_column_1_3 h4,
    .et_pb_column_1_4 h4,
    .et_pb_widget h4.widgettitle {}
    h5,
    .et_pb_column_1_3 h5,
    .et_pb_column_1_4 h5 {}
    h6,
    .et_pb_column_1_3 h6,
    .et_pb_column_1_4 h6 {}
}



/*Buttons*/

.et_pb_button,
.et_button_no_icon .et_pb_button {
    background: var(--ds-primary);
    border-color: var(--ds-primary);
    color: var(--ds-light) !important;
}

.et_pb_button:hover,
.et_button_no_icon .et_pb_button:hover {
    background: transparent !important;
    border-color: var(--ds-dark) !important;
    color: var(--ds-dark) !important;
}



/*mobile style - navigacio menu nem latszik, mig nincs tartalom*/
@media (max-width: 980px){
.et_header_style_centered #main-header .mobile_nav {
    display: none; 
}
}

/*BLOG OLDAL*/

/*Cim underline on hover*/
h2.entry-title a {
    line-height: 32px;
}

h2.entry-title a {
    text-decoration: none;
    background-image: linear-gradient(#1e1d1d, #1e1d1d);
    background-position: 10% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .8s;
}

h2.entry-title a:hover {
    background-size: 100% 2px;
}
/*comment form bcg color on single post page*/
.single #commentform textarea, .single #commentform input[type="text"], .single #commentform input[type="email"], .single #commentform input[type="url"] {
    background-color: #44ffe338;
}


/* mobil szelesseg beallitasa */
@media only screen and (max-width: 980px) {
	#top-header > .container,
	#main-header > .container,
	#et_search_outer > .container,
	#main-content > .container,
	div.et_pb_row,
	div.et_pb_row.et_pb_row_fullwidth {
	width: 96% !important; 
   }
}


/*Elozo-kovetkezo resz mobilra optimalizalva a blogon*/
@media only screen and (max-width: 479px){
	
.ds-single-post-nav {
		display: inline-block !important;
	}		

.ds-single-post-nav-prev {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: inherit !important;
    margin-right: 0;
	margin-bottom: 30px;
	}

.ds-single-post-nav-next {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: inherit !important;
	text-align: right;
    margin-right: 0;
	}
	

	
}
