/*!
Theme Name: technox
Theme URI: https://www.templatemonster.com/authors/iddrak/
Author: iddrak
Author URI: https://www.templatemonster.com/authors/iddrak/
Description: TechnoX is a business, consulting and IT business WordPress theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: technox
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

technox is based on Underscores https://www.templatemonster.com/authors/iddrak/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

ul.post-categories li {
    float: left;
    font-size: 15px;
}

#commentform label,
.comment-form-cookies-consent {
    display: none;
}

.comment-form-author,
.comment-form-email {
    float: left !important;
    width: 50%;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url #url,
.comment-form-comment textarea {
    width: 100%;
    padding: 13px;
    border-radius: 0;
    border: none;
    margin-top: 30px;
    background: #eee;
}

.comment-form-comment textarea {
    height: 180px;
}

.comment-form-author {
    padding-right: 15px;
}

.comment-form-email {
    padding-left: 15px;
}

.form-submit {
    margin-top: 30px;
}

.form-submit #submit {
    padding: 17px 25px;
    background: var(--main-color-one);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all linear .3s;
}

.form-submit #submit:hover {
    background: var(--main-color-two);
}


/* comments */

#comments {
    margin-top: 50px;
}

.comments-area .comments-title {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 0;
}

.comment-list {
    position: relative;
}

.comment-list li {
    margin-top: 30px;
}

.comment-list .fn {
    color: #111;
    font-weight: 600;
    font-size: 18px;
}

.comment-list li:before {
    display: none;
}

.comment-list li img {
    position: absolute;
    left: 0;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.comment-list article {
    margin-left: 130px;
}

.comment-list .reply {
    color: var(--main-color-one);
}

.comment-list .comment-content p {
    color: #5f7586;
    font-size: 15px;
    line-height: 1.5;
    margin: 10px 0;
    font-weight: 400;
}

.comment-list .comment-metadata {
    display: none;
}

.comment-respond {
    margin-top: 70px;
}

.mc4wp-response {
    text-align: center;
    margin-top: 15px;
}

.mc4wp-response p {
    color: #eee;
}

.btn {
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
}

.btn-primary,
.btn-secondary {
    position: relative;
    border: none;
    z-index: 1;
    overflow: hidden;
}

.btn-primary:after,
.btn-secondary:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 50px;
    box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #fff9, 4px 4px 5px 0px #fff9;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-primary:hover,
.btn-secondary:hover {
    color: #fff;
    border-radius: 50px;
}

.btn-primary:hover:after,
.btn-secondary:hover:after {
    top: 0;
    height: 100%;
}

.btn-primary:active,
.btn-secondary:active {
    top: 2px;
}

@media (max-width:767px) {
    .btn {
        padding: 15px 20px;
    }
}


/* btn primary */

.btn-primary {
    background-color: var(--main-color-one);
}

.btn-primary:hover {
    background-color: var(--main-color-one);
}


/* btn secondary */

.btn-secondary {
    background-color: var(--main-color-two);
}

.btn-secondary:hover {
    background-color: var(--main-color-two);
}