
.tools_alert{
    display: none;
    color: #ea1636;
    margin-bottom: 10px;
    font-weight: bold;
}

.input_alert{
    border-color: #ea1636 !important;
}

img {
    max-width: 100%;
    height: auto;
}

#tools_header{
    background: rgb(59,89,152);
    background: linear-gradient(133deg, rgba(35,155,223,1) 35%, rgba(59,89,152,1) 100%);
    color: #FFF;
}

#tools_header_content_container{
    padding: 100px 0px 50px 0px;
}

#tools_header_content_container_inner{
    max-width: 300px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

#tools_header h1{
    font-size: 1.2rem;
}

#tools_header h2{
    font-size: 2.5rem;
}

@media only screen and (min-width: 900px){

    #tools_header_content_container{
        padding: 150px 0px 100px 0px;
    }

    #tools_header_content_container_inner{
        max-width: 600px;
    }    
    
}

.tools_header_button{
    margin-top: 30px;
    line-height: 50px;
    display: inline-block;
    height: 50px;
    padding: 0 20px;
    border-radius: 4px;
    color: #FFF;
    background-color: #212121;
    font-size: 1rem;
    font-weight: bold;
}

.tools_header_button:hover{
    background-color: #404041;
}

.tools_section_outer{
    padding: 50px auto;
    text-align: center;
}

.tools_input_container{
    text-align: left;
    background-color: #FFF;
    max-width: 500px;
    margin: 20px auto 0 auto;
    padding: 20px;
    border: 2px dashed #ddd;
}

.tools_input_container_2, .tools_input_container_3{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tools_input_container .input_container{
    width: 100%;
}

.tools_input_container label{
    font-weight: bold;
}

.tools_input_container input{
    margin-top: 5px;
}

.tools_input_button_container{
    text-align: right;
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin: 20px auto 50px auto;
}

#tools_input_reset{
    text-decoration: underline;
    text-decoration-style: dashed;
    text-align: left;
    cursor: pointer;
    height: 20px;
    line-height: 20px;
}

#tools_input_generate_button{
    display: inline-block;
    padding: 0 20px;
    line-height: 50px;
    display: inline-block;
    height: 50px;
    padding: 0 20px;
    border-radius: 4px;
    color: #FFF;
    background-color: #212121;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

#tools_input_generate_button i{
    margin-left: 5px;
}

#tools_input_generate_button:hover{
    background-color: #404041;
}

#tools_input_generate_button.tools_input_generate_button_disabled{
    background-color: #ddd;
    color: #212121;
    pointer-events: none !important;
}

#tools_disclaimer{
    position: relative;
    display: block;
    margin-top: 10px;
}

#tools_disclaimer_info{
    position: absolute;
    background-color: #212121;
    color: #FFF;
    padding: 10px;
    font-size: 0.7rem;
    border-radius: 4px; 
    text-align: left;
    line-height: 15px;
    z-index: 4;
    width: 100%;
    max-width: 300px;
    min-width: 250px;
    right: 0;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
}

#tools_disclaimer_info a{
    color: #ea1686;
}

#tools_disclaimer:hover #tools_disclaimer_info{
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 900px){
    .tools_input_container, .tools_input_button_container{
        max-width: 800px;
    }
    .tools_input_container_2 .input_container{
        max-width: 45%;
    }
    .tools_input_container_3 .input_container{
        max-width: 30%;
    }
}



/* Results */ 

#tools_result_section_outer{
    overflow-x: hidden;
}

#tools_result_section{
    display: none;
}

.tools_result_paper_container{
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.tools_result_paper_header{
    height: 50px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 20px;
}

.tools_result_paper_header_left_title{
    font-size: 1rem;
    font-weight: bold;
}

.tools_result_paper_header_right_menu{
    display: flex;
    flex-wrap: nowrap;
    column-gap: 10px;
}

.tools_result_paper_header_right_menu_item{
    height: 40px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
}

.tools_result_paper_header_right_menu_item span{
    position: absolute;
    top: -10px;
    background-color: #212121;
    color: #FFF;
    display: inline-block;
    border-radius: 4px;
    padding: 0 5px;
    font-size: 0.7rem;
    line-height: 20px;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
}

.tools_result_paper_header_right_menu_item span::before{
    content: '';
    display: inline-block;
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #212121;
    position: absolute;
    left: 0; right: 0;
    bottom: -5px;
    margin: 0 auto;
}

.tools_result_paper_header_right_menu_item:hover span{
    opacity: 1;
    visibility: visible;
    top: -25px;
}


.tools_result_paper_header_right_menu_item.tools_result_paper_header_right_menu_item_active,
.tools_result_paper_header_right_menu_item.tools_result_paper_header_right_menu_item_active span{
    background-color: #20b7e6;
    border-color: #20b7e6;
    color: #fff;
}

.tools_result_paper_header_right_menu_item.tools_result_paper_header_right_menu_item_active span{
    opacity: 1;
    visibility: visible;
    top: -25px;
}

.tools_result_paper_header_right_menu_item.tools_result_paper_header_right_menu_item_active span::before{
    border-top: 5px solid #20b7e6;
}


.tools_result_paper_inner{
    padding: 20px;
    box-shadow: 0 0 5px #ddd;
    border: 1px solid #ddd;
    position: relative;
    z-index: 3;
    background-color: #fff;
}

.tools_result_paper_container::before, .tools_result_paper_container::after{
    content: '';
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    box-shadow: 0 0 5px #ddd;
    border: 1px solid #ddd;
    transform: rotate(2deg);
    background: #fff;
}

.tools_result_paper_container::after{
    transform: rotate(4deg);
    z-index: 1;
}

#tools_result_content{
    line-height: 20px;
    transition: 0.25s;
    width: 100%;
    position: relative;
}

#tools_result_content[contentEditable="true"]{
    outline: 1px solid #ddd;
    outline-offset: 0px;
    padding: 10px;
    outline: 3px dashed #20b7e6;
    background: rgb(32 183 230 / 15%);
    
}

#tools_result_content::before{
    content: 'Type & Edit Here';
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 0; right: 0;
    text-align: center;
    width: 110px;
    margin: 0 auto;
    background-color: #20b7e6;
    color: #FFF;
    border-radius: 4px;
    padding: 0 5px;
    font-size: 0.7rem;
    line-height: 20px;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
}

#tools_result_content::after{
    content: '';
    display: inline-block;
    position: absolute;
    top: 0px;
    text-align: center;
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #20b7e6;
    position: absolute;
    left: 0; right: 0;
    margin: 0 auto;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
}

#tools_result_content[contentEditable="true"]::before{
    opacity: 1;
    visibility: visible;
    top: -30px;
}

#tools_result_content[contentEditable="true"]::after{
    opacity: 1;
    visibility: visible;
    top: -10px;
}

#tools_result_content h1{
    font-size: 1rem;
    font-family: ralewayregular, sans-serif;
}

#tools_result_content ol, #tools_result_content ul{
    margin-left: 15px;
}

#tools_result_content li{
    font-weight: bold;
}

#tools_result_content ol ol li{
    font-weight: normal;
    margin-bottom: 10px;
}

#tools_result_content p{
    font-size: 0.8rem;
}

#tools_result_content address{
    font-size: 0.8rem;
    line-height: 20px;
}

#tools_result_content a{
    font-weight: bold;
    color: #ea1686;
}




/* FAQ */ 
#tools_section_faqs_outer{
    -webkit-box-shadow: 0 13px 27px -5px rgb(50 50 93 / 25%), 0 8px 16px -8px rgb(0 0 0 / 30%), 0 -6px 16px -6px rgb(0 0 0 / 3%);
    box-shadow: 0 13px 27px -5px rgb(50 50 93 / 25%), 0 8px 16px -8px rgb(0 0 0 / 30%), 0 -6px 16px -6px rgb(0 0 0 / 3%);
    border-radius: 8px;
    font-size: 1rem;
    padding: 20px;
    background-color: #FFF;
    max-width: 600px;
    margin: 20px auto;
}

#tools_section_faqs_outer h3{
    text-align: center;
    margin-bottom: 30px;
}

.tools_section_faqs_item_header{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    cursor: pointer;
    min-height: 35px;
    align-items: center;
}

.tools_section_faqs_item:not(:first-child){
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f7;
}

.tools_section_faqs_header_question{
    font-weight: bold;
    max-width: 80%;
    line-height: 20px;
}

.tools_section_faqs_header_button{
    font-size: 1.5rem;
    font-weight: bold;
}

.tools_section_faqs_item_answer{
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 20px;
}


.tools_section_faqs_item_answer ul{
    margin-left: 20px;
}


.tools_section_flex_3{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
}

.tools_section_flex_item{
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    color: #212121;
    position: relative;
}

a.tools_section_flex_item:hover{
    border-style: dashed;
    box-shadow: 0 0 5px #ddd;
}

.tools_section_flex_item_pill{
    position: absolute;
    top: 0; right: 10px;
    background-color: #212121;
    color: #FFF;
    display: inline-block;
    padding: 0 5px;
    font-size: 0.7rem;
    line-height: 20px;
}

.tools_section_flex_item_icon{
    font-size: 3rem;
}

a.tools_section_flex_item:hover .tools_section_flex_item_icon{
    opacity: 0.8;
}

.tools_section_flex_item_title{
    font-weight: bold;
    margin-top: 10px;
    line-height: 20px;
    color: #ea1686;
}

.tools_section_flex_item_info{
    margin-top: 10px;
    line-height: 16px;
}

@media only screen and (min-width: 900px){

    .tools_section_flex_item{
        width: 30%;
    }

}