/* Styles not cached yet. */

.section_header{
    background: linear-gradient(180deg,#3b3c4c,#2d2e36);
    box-sizing: border-box;
    padding: 19px 24px 17px 24px;
    margin: 36px auto 11px;
    position: relative;
    width: 1050px;
    max-width: 87%;
    border-top-left-radius: 19px;
    border-top-right-radius: 19px;
    box-shadow: 0 -9px 12px 0 #16161c26;
}
.breadcrumbs{
    max-width: 93%;
    margin: 20px auto 20px 3px;
    color: var(--color-medium);
    display: flex;
    align-items: center;
}
.breadcrumbs a,
.breadcrumbs .breadcrumb{
    color: var(--color-medium);
    align-items: center;
    margin: 0 8px;
    display: inline-block;
    text-align: left;
}
.breadcrumbs a:hover{
    color: var(--color-light);
}
.breadcrumbs svg{
    width: 19px;
    height: auto;
    fill: var(--color-medium);
    position: relative;
    top: 2px;
}
.breadcrumbs svg:hover{
    fill: var(--color-light);
}
.breadcrumb span{
    font-size: 11px;
    margin: 0 0 0 3px;
    top: -1px;
    position: relative;
}
.breadcrumb_task{
    /*width: min-content;*/
}
.breadcrumb .breadcrumb_counter{
    font-size: 13px;
    margin: 0 0 0 2px;
    position: relative;
}

/*Search and select a result */
.find_matches{
    max-height: 152px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
}
.find_matches label{
    display: flex;
    align-items: center;
    margin: 4px 0;
    background: var(--color-dark);
    color: var(--color-light);
    padding: 11px;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--color-medium);
    cursor: pointer;
    transition: all 0.2s ease-out;
}
.find_matches label:hover{
    background: var(--color-dark-2);
}
.find_matches label.selected{
    background: var(--color-dark-2);
    border: 1px solid #9294a4;
}
.find_matches label.excluded{
    opacity: 0.20;
}
.find_matches .search-result{
    display: flex;
    align-items: center;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    width: 100%;
}
.find_matches .ai_result_url{
    font-size: 10px;
    opacity: 0.7;
    margin: 0 2px 0 10px;
    white-space: nowrap;
}
.find_matches .external_ai_link{
    width: 10px;
    height: 10px;
    top: 0;
}
.find_matches .result_name{
    color: var(--color-light);
    font-weight: 500;
    font-size: 16px;
}

input[type=radio] {
    -webkit-appearance: none;
    appearance: none;
    display: grid;
    place-content: center;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 2px solid #50515e;
    border-radius: 50%;
    background: transparent;
    margin: 0 9px 0 0;
}
input[type=radio]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--highlight-2);
}

input[type=radio]:checked::before {
    transform: scale(1);
}
#search_suggestions{
    margin-top: -4px;
    display: flex;
    flex-direction: column;
    max-height: 58vh;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: inset 0 0 5px 0 #00000055;
    background: #2b2d39;
    position: fixed;
    z-index: 11;
    top: 218px;
    left: 50%;
    transform: translateX(-50%);
    width: 531px;
    margin-left: -27px;
    max-width: 84%;
    max-width: calc(89% - 63px);
    border-bottom-left-radius: var(--border-radius-large);
    border-bottom-right-radius: var(--border-radius-large);
}
#search_suggestions .ss_footer{
    text-align: center;
    padding: 18px;
    color: var(--color-medium);
}
#search_suggestions > a{
    position: relative;
    padding: 9px 23px;
    border-bottom: 1px solid #434450;
    display: flex;
    background: none;
}
#search_suggestions > a .t_name{
    background: #5936326e;
}
#search_suggestions > a .t_name::before{
    content: '';
    display: inline-block;
    background-image: url('https://media.theresanaiforthat.com/assets/magic.svg?width=100');
    background-size: cover;
    width: 20px;
    height: 20px;
    margin-right: 2px;
    position: relative;
    margin-left: -7px;
}
#search_suggestions > a .t_name:hover{
    background: var(--color-dark-2);
}
#search_suggestions > a .j_name{
    background: #31517e42;
}
#search_suggestions > a .j_name:hover{
    background: var(--color-dark-2);
}
#search_suggestions span.j_name::before {
    content: '';
    width: 13px;
    height: 13px;
    background: url('https://media.theresanaiforthat.com/assets/briefcase.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px;
    margin-left: -3px;
}

#search_suggestions > a strong{
    color: var(--color-yellow);
    margin: 0 3px;
    word-break: break-word;
}
#search_suggestions > a > span{
    /*border-radius: var(--border-radius-small);*/
    /*padding: 3px 3px 3px 11px;*/
    background: none;
    /*margin: 0 4px 0 -7px;*/
    /*display: inline-flex;*/
    /*align-items: center;*/
}
#search_suggestions a .related_icons{
    padding: 0;
    gap: 0;
}
#search_suggestions .related_icons .fa{
    margin-left: 18px;
    color: #83869f;
    width: 20px;
    font-size: 12px;
}
#search_suggestions .related_count{
    padding: 0;
    width: 16px;
}
#search_suggestions .ais_value{
    height: 15px;
    margin-left: 11px;
    background: #2b2d39;
    font-size: 12px;
    padding: 4px 8px;
    box-shadow: inset 0 0 4px 0 #00000065;
    border-radius: var(--border-radius-small);
}
#search_suggestions > a:hover{
    background: #373a49;
}
#search_suggestions .s_search{
    padding: 15px 18px;
}

#search_suggestions .s_suggestion.active::after{
    content: '→';
    position: absolute;
    width: 15px;
    height: 15px;
    right: 8px;
    top: 9px;
    background: var(--color-light-2);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-medium-3);
}
#search_suggestions .s_search.active::after{
    top: 12px;
}
#search_suggestions .s_suggestion.active .related_icons{
    display: none;
}
#search_suggestions .s_search img{
    width: 19px;
    height: auto;
    margin: 0 0 0 4px;
    top: 5px;
    position: relative;
}
#search_suggestions .ss_stats{
    bottom: -2px;
    right: -3px;
    position: absolute;
    font-size: 11px;
    background: none;
    display: flex;
    align-items: center;
}
#search_suggestions .impact_value{
    padding: 3px 5px;
}
#search_suggestions .s_suggestion.active{
    background: #3d4357;
}
#search_suggestions .s_job img{
    width: 28px;
    height: 28px;
    margin: 0 -2px 0 18px;
    object-fit: cover;
    border-radius: 50%;
}
.ss_header{
    text-align: left;
    background: #21232e;
    font-size: 13px;
    padding: 5px 14px;
    box-shadow: 0 6px 6px 0 #0000005e;
    margin-bottom: 6px;
}
.ss_header img{
    width: 12px;
    height: 12px;
    margin-right: 6px;
    position: relative;
    top: 1px;
}

#main{
    transition: transform 0.2s ease-in;
}
#main.bottom{
    transform: translate3d(0, 47vh, 0);
}
#switch.position-relative{
    position: relative;
    top: 0;
}
.related_icons{
    padding: 15px 17px;
    color: #fff;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--color-dark-2);
    gap: 0 10px;
}
.related_name{
    padding: 5px 10px 5px 22px;
    color: var(--color-light);
    font-weight: 400;
    flex-grow: 1;
    text-align: left;
    align-items: center;
    display: flex;
    justify-content: flex-start;
}
.related_name_inner{
    text-align: left;
    justify-content: flex-start;
    display: flex;
}
.related_name_inner::before{
    content: '';
    display: inline-flex;
    width: 16px;
    height: 16px;
    background: url('/favicon-32x32.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 11px;
    margin-left: -9px;
}
.related_count{
    font-weight: 400;
    font-size: 12px;
    width: 2px;
    padding: 5px 10px 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-medium-2);
}
#submit:hover svg {
    transform: rotate(360deg);
    transition: transform 400ms ease-out;
}
.scroll_margin{
    scroll-margin: 60px;
}
#share_modal  i{
    margin-right: 7px;
}
#share_modal{
    z-index: 20;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2a2b35;
    box-sizing: border-box;
    border-radius: var(--border-radius-large);
    box-shadow: 0 0 8px 0 #1e1f25ab;
    width: 275px;
}
#share_modal a,
#share_modal #share_copy_link{
    padding: 16px 0;
    width: 100%;
    text-align: center;
    background: #25252c;
    box-shadow: 0 0 4px 0 #00000055;
    cursor: pointer;
}
#share_modal a:hover,
#share_modal #share_copy_link:hover{
    background: #2a2b35;
}
#share_modal .preview{
    background: var(--color-dark);
    border-radius: var(--border-radius-large);
    color: var(--color-medium);
    width: 100%;
    height: auto;
    padding: 4px 0;
}
#share_modal #share_text{
    font-size: 19px;
    padding: 11px;
    box-sizing: border-box;
    position: relative;
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 600;
}
#share_modal picture > *{
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-large);
    object-fit: cover;
    position: relative;
    top: 2px;
}
#faq h4{
    margin: 35px 0 22px;
}
.faq-info{
    background: var(--color-dark);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    margin: 10px 0;
}
.faq-info-title{
    background: var(--color-dark-2);
    padding: 20px;
    cursor: pointer;
    box-shadow: 0 0 4px 0 #00000066;
}
.faq-info-description.invisible{
    display: block;
}
.faq-info-description{
    padding: 20px;
    transition: padding-top 0.2s ease-in-out, padding-bottom 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.faq-info-description a{
    color: var(--color-chrome);
    text-decoration: underline;
}

#go_top_btn {
    position: fixed;
    right: 16px;
    bottom: 13px;
    display: flex;
    border-radius: 50%;
    background: var(--color-light-2);
    color: white;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 0 var(--color-dark-2);
    animation: fadeIn 0.4s ease-in-out;
    z-index: 13;
}
#go_top_btn:hover {
    background: var(--color-medium);
}
#go_top_btn:after {
    font-family: FontAwesome;
    content: "\f102";
    font-size: 2rem;
}

#newsletter_modal .modal_inner{
    width: 100%;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.footer-embed-row{
    max-width: 87vw;
    width: 800px;
    margin: 40px auto;
}
.footer-embed-row p{
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 27px;
    font-weight: bold;
    color: var(--color-light);
}
/*start comments*/
#user_comments{
    margin-left: 10px;
}
#comments{
    margin: 5px 0 50px 43px;
    padding: 50px 0;
}
#user_comments_title{
    text-align: left;
    font-size: 19px;
    margin: 50px 0 -2px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
#user_comments_title .ratings_count{
    margin-top: 1px;
}
.comment_textarea{
    height: 136px;
    width: 500px;
    max-width: 100%;
    border: none;
    background: #353744;
    border: none;
    box-shadow: inset 0 0 12px 0 #00000030;
    border-radius: var(--border-radius-large);
    outline: none;
    margin: 17px 0;
    color: #fff;
    padding: 23px;
    box-sizing: border-box;
    font-size: 16px;
}
.comment_user_name{
    display: flex;
    align-items: center;
}
.comment_user{
    display: flex;
    align-items: center;
    margin: 10px 0 11px -36px;
    color: var(--color-medium-3);
}
.comment_date{
    font-size: 12px;
    margin: -10px 0 12px 0;
    color: var(--color-medium-4);
}
.user_stats{
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    background: #262733;
    color: var(--color-chrome);
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 53px;
    box-shadow: 0 0 2px 0 #00000078;
    width: max-content;
}
.user_karma{
    color: var(--color-medium-4);
}
.comment_rating{
    margin: 0;
}
.comment_body{
    margin: 5px 0 10px;
    font-size: 14px;
    line-height: 20px;
}
.comment_footer{
    margin-top: 10px;
    display: flex;
    gap: 0 13px;
}
.comment_footer span{
    cursor: pointer;
    padding: 5px 0;
    font-size: 13px;
    color: var(--color-medium-2);
}
.star{
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
}
.star_label.pulsate_once_large{
    color: #ffcc00;
}
.star-full{
    background-image: url('https://media.theresanaiforthat.com/assets/star-full.svg?v=1');
}
.star-empty{
    background-image: url('https://media.theresanaiforthat.com/assets/star-empty.svg?v=1');
}
.btn{
    width: auto;
}
#rating_cont{
    /*background-image: linear-gradient(180deg, #2a2b34, transparent);*/
    padding: 26px 36px 26px 0;
    border-radius: var(--border-radius-large);
    box-sizing: border-box;
}
#rating_cont h2{
    margin-bottom: 0;
}
.comment{
    margin: 0;
    padding: 8px 17px;
}

.comment.highlight .comment_content{
    background: #393b4c;
    box-shadow: 0 0 4px 0 #00000055;
    transition: all 0.2s ease-in-out;
}
.comment-wrapper.collapsed{

}
.comment-wrapper.collapsed .child_comments{
    display: none;
}
.comment-wrapper.collapsed .threadline{
    display: none;
}
.comment-wrapper.collapsed .comment_body{
    display: none;
}
.comment-wrapper.collapsed .comment_footer{
    display: none;
}
.comment-wrapper.collapsed .comment_date{
    display: none;
}

.comment-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
}
.comment_expander{
    cursor: pointer;
    display: flex;
    font-size: 13px;
    color: var(--color-medium-2);
}
.comment_expander::before{
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    position: relative;
    top: 1px;
    background: url('https://media.theresanaiforthat.com/assets/enlarge.svg') no-repeat;
    background-size: contain;
    transform: rotate(99deg);
    margin-right: 9px;
}
.comment_expander:hover::before{
    background: url('https://media.theresanaiforthat.com/assets/enlarge-hover.svg') no-repeat;
    background-size: contain;
}

.comment_profile {
    margin-right: 10px;
    position: relative;
}

.comment_user_picture {
    width: 28px; /* Adjust size as needed */
    height: 28px; /* Adjust size as needed */
    border-radius: 50%; /* Circular profile picture */
    margin-right: 7px;
}

.threadline {
    position: absolute;
    left: -3px;
    top: 58px;
    bottom: 0;
    cursor: pointer;
    height: calc(100% - 60px);
    padding: 0 6px;
}
.threadline_inner{
    width: 2px;
    background-color: #1f1f34b3;
    height: 100%;
    display: block;
    pointer-events: none;
}
.threadline:hover .threadline_inner{
    background: var(--color-medium-3);
    transition: all 0.3s ease;
}
.child_comments{
    margin-left: 28px;
}

.comment_content {
    flex-grow: 1;
    padding-left: 10px;
}
.comment_submit{
    cursor: pointer;
    max-width: 104px;
}
.post_comment{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.post_comment p{
    margin: 10px 0 16px;
    font-size: 15px;
    color: var(--color-medium-3);
}
.leave_a_comment{
    text-align: left;
    font-size: 19px;
    margin: 24px 0 -2px;
    font-weight: 600;
}

.rating {
    display: inline-flex;
    flex-direction: row-reverse;
}

.rating input[type="radio"] {
    display: none;
}

.rating label {
    font-size: 24px;
    color: #ccc;
    padding: 0 5px;
    cursor: pointer;
}

.rating input[type="radio"]:checked ~ label {
    color: #f1c40f;
}

.rating label:hover,
.rating label:hover ~ label {
    color: #f1c40f;
}

.comment_upvote {
    padding-right: 5px;
}
.comment_upvote::before{
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    position: relative;
    top: 1px;
    background: url('https://media.theresanaiforthat.com/assets/thumbs-up.svg') no-repeat;
    background-size: contain;
    margin-right: 5px;
}
.comment_downvote {
    padding-left: 5px;
}

.comment_downvote::after{
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    position: relative;
    top: 1px;
    background: url('https://media.theresanaiforthat.com/assets/thumbs-down.svg') no-repeat;
    background-size: contain;
    margin-left: 5px;
}
.comment_upvote:hover::before, .comment_upvote.voted::before{
    background: url('https://media.theresanaiforthat.com/assets/thumbs-up-hover.svg') no-repeat;
    background-size: contain;
}

.comment_downvote:hover::after, .comment_downvote.voted::after{
    background: url('https://media.theresanaiforthat.com/assets/thumbs-down-hover.svg') no-repeat;
    background-size: contain;
}

.comment .useful_question{
    margin-right: 10px;
}
/*end comments*/

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media (min-width: 701px) {
    .breadcrumbs a, .breadcrumbs .breadcrumb{
        width: max-content;
    }
}

@media (max-width: 500px) {
    .section_header{
        width: 100%;
        max-width: 100%;
        margin-top: 18px;
    }
    #search_suggestions .related_icons .fa{
        margin-left: 12px;
        font-size: 11px;
    }
    #search_suggestions > a{
        padding: 9px 17px;
        font-size: 14px;
    }
    #search_suggestions .s_task{
        padding: 9px 17px 9px 10px;
    }
    #search_suggestions .related_name{
        padding-left: 14px;
    }
    #go_top_btn{
        right: 9px;
    }
    #comments{
        margin-left: 18px;
    }
}
