﻿input{width: unset !important; margin-bottom: 10px !important;}
.answer_column label{margin-left: 5px; display: inline !important;}

.copy_code{
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
}

button{
    padding: 10px 20px;
    background: var(--unum-blue-4);
    color: white;
    border: none;
    transition: .2s all;
}

button:hover{
    background: var(--unum-blue);
    transition: .2s all;
}

#copiedAlert{
    margin-left: 20px;
    display: inline;
    background-color: var(--unum-cool-neutral-2);
    padding: 10px 20px;
    border: 1px solid var(--unum-warm-neutral-1);
    border-radius: 5px;
    display: none;
}

.column_title{
    width: max-content;
    font-weight: bold;
}

.answer_column{
    padding-right: 10px;
    border: 2px solid transparent;
}


.error_highlight:before {
    content: "\f06a";
    font-family: "FontAwesome";
    color: red;
    margin-right: 10px;
}

.answer_column li{
    list-style: none;
    margin-bottom: 1rem !important;
    cursor: pointer;
}

.column_error_message {
    background: red;
    padding: 10px;
    color: white;
    font-size: 1.25rem;
    width: max-content;
    display: none;
}

.column_error_message:before{
    content: "\f06a";
    font-family: "FontAwesome";
    margin-right: 5px;
}

#hashTagContainer input:hover, #hashTagContainer label, .answer_column input, .answer_column label{
    cursor: pointer;
}

@media (max-width: 991px) {
    .jpc_container {
        flex-direction: column !important;
    }

    .jpc_image, .jpc_text {
        width: 100% !important;
    }

    .column_container {
        flex-direction: column;
    }

    .column {
        width: 100% !important;
        margin-bottom: 5vh;
    }
}