/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* 
 * 
 * TABLE OF CONTENTS
 * ---------------------------------
 * 1. GENERAL STYLING
 * 2. PASSWORD GENERATOR
 * 3. TIMEZONE CHECKER
 *
 */

/* 1. GENERAL STYLING */
blockquote {
    margin: 15px 0;
    padding: 15px 10px;
    border-left: 4px solid #ce2129;
    background-color: rgb(206 33 41 / 10%);
}

.elementor blockquote p {margin-bottom: 0;}

/* 2. PASSWORD GENERATOR */
.password__cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.generated__password {
    flex: 1;
    padding: 10px 0;
    border-bottom: 2px solid #8a8a8a;
    overflow-wrap: anywhere;
}

.copy__password,
.regenerate__password {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 2px solid #CE2029;
    background-color: #CE2029;
    color: #FFF;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, .4);
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.copy__password:hover {
    box-shadow: 0 2px 18px -6px rgba(0, 0, 0, .4);
}

.password__conditions {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    gap: 10px 0;
}

.password__conditions span { font-size: 18px; }

.password__conditions span:first-child { width: 150px; }

.password__conditions span:nth-child(2) { font-weight: 500; }

.password__length {
    flex: 1;
    margin-left: 10px;
}

.length__slider { width: 100%; }

.length__slider {
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 16px;
}

.length__slider::-webkit-slider-runnable-track {
    height: 15px;
    background: #ccc;
    border-radius: 16px;
}

.length__slider::-moz-range-track {
    height: 15px;
    background: #c1c1c1;
    border-radius: 16px;
}

.length__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #CE2029;
    box-shadow: -407px 0 0 400px #CE2029;
}

.length__slider::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #CE2029;
    box-shadow: -407px 0 0 400px #CE2029;
}

.letter__combinations { display: none; }

.password__combinations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.letter__combinations {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.letter__combinations label { line-height: 1.75; }

.genpass__btn_cont {
    width: 100%;
    text-align: center;
}

.content .container {
    width: 100%;
    max-width: 940px;
}

.content .container h2 {
    text-align: center;
}

.content .container ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.content .container ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 280px;
    text-align: center;
}

.content .container ul li img { max-width: 110px; }

@media (max-width: 576px) {
    .password__conditions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .password__length {
        flex: unset;
        width: 100%;
        margin: 0;
    }

    .password__combinations { gap: 20px }

    .regenerate__password { width: 100%; }

    .content .container ul li img { max-width: 90px; }
}

/* 3. TIMEZONE CHECKER */
.time__checker_cont h2,
.time__checker_cont h6 { text-align: center; }

.time__checker_cont h6 {
    font-size: 22px;
}

.time__checker_cont p { margin: 25px 0 5px; }

.time__checker_cont select {
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
    border: 1px solid #d8d8d8;
}