/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.wt-section .form-table-wrap  .form-table .wt-chat-bot-table .wt_chat_bot_content .wt_chat_bot_csv_main {
    display: flex;
    width: 100%;
    max-width: 500px;
}

.wt-section .form-table-wrap  .form-table .wt_chat_bot_file_box {
    width: 100%;
    margin-right: 5px;
}

input#wt_chat_bot_file_upload[type="file"]::-webkit-file-upload-button {
    background: #f9bc60;
    border: 0;
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    outline: none;
    padding: 6px 15px;
    text-transform: capitalize;
    transition: all 0.5s ease;
}
.wt-section .form-table-wrap .form-table .wt-chat-bot-table .download-tooltip a:hover,
.wt-section .form-table-wrap .form-table .wt-chat-bot-table .wt_chat_bot_content .wt_chat_bot_csv_main .wt_chat_bot_upload_btn:hover,
.wt-section .form-table-wrap .form-table .wt-chat-bot-export .wt_chat_bot_export_btn:hover,
input#wt_chat_bot_file_upload[type="file"]::-webkit-file-upload-button:hover {
  background: #f0f0f1;
}
.wt-section .form-table-wrap .form-table .wt_chat_bot_file_box span {
    margin-top: -30px;
    display: block;
    max-width: 500px;
    text-align: right;
    margin-right: 10px;
    color: #000;
    font-size: 15px;
}
.wt_chat_bot_content .instruction {
    background: #f0f0f1;
    display: inline-block;
    border: 1px solid #f0f0f1;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    font-style: italic;
    text-transform: capitalize;
}

.wt-section .form-table-wrap .form-table .wt-chat-bot-table .wt_chat_bot_content .wt_chat_bot_csv_main .wt_chat_bot_upload_btn {
    background-color: #f9bc60;
    border-radius: 5px;
    color: #000;
    border: none;
    padding: 4px 25px;
    font-weight: 600;
    display: flex;
    min-height: 40px;
    align-items: center;
    position: relative;
    margin-right: 5px;
    transition: 0.5s all ease;
}
.wt-section .form-table-wrap .form-table .wt-chat-bot-table .wt_chat_bot_content .wt-chat-bot-dual-ring {
    display: none;
    position: absolute;
    right: 7px;
    top: 52%;
    transform: translateY(-50%);
}
.wt-section .form-table-wrap .form-table .wt-chat-bot-table .wt_chat_bot_content .wt-chat-bot-dual-ring.active-import {
    display: inline-block;
}

.wt-section .form-table-wrap .form-table .wt-chat-bot-table .file-upload {
    position: relative;
    display: inline-block;
    max-width: 500px;
}
.wt-section .form-table-wrap .form-table .wt-chat-bot-table .download-tooltip a {
    text-align: right;
    display: flex;
    margin-left: auto;
    text-decoration: none;
    background-color: #f9bc60;
    border-radius: 5px;
    color: #000;
    padding: 10px 20px;
    align-items: center;
    min-height: 20px;
    transition: 0.5s all ease;
}

.wt-section .form-table-wrap .form-table .wt-chat-bot-export .wt_chat_bot_export_btn{
    background-color: #f9bc60;
    border-radius: 5px;
    border:none;
    font-weight: 700;
    padding: 5px 20px;
    display: flex;
    gap:5px;
    width: fit-content;
    transition: all 0.5s ease;
}
.wt-section .form-table-wrap .form-table .wt-chat-bot-export .wt_chat_bot_export_btn a{
    text-decoration: none;
    color: #000;
}
.wt_chat_bot_csv_main .download-tooltip .wt-chat-bot-download-tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
}
.wt_chat_bot_csv_main .download-tooltip .wt-chat-bot-download-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -36px;
    border-width: 8px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}
.wt_chat_bot_csv_main .download-tooltip:hover .wt-chat-bot-download-tooltiptext {
    visibility: visible;
}

.form-table-wrap .wt_chat_bot_import_message {
    max-width: 500px;
    width: 100%;
}
.form-table-wrap .wt_chat_bot_import_message span {
    padding: 10px;
    display: block;
    border-radius: 3px 3px 3px 3px;
    text-align: center;
    margin-bottom: 5px;
}
.form-table-wrap .wt_chat_bot_import_message .success {
    color: #270;
    background-color: #DFF2BF;
    border-left: 2px solid #270;
}
.form-table-wrap .wt_chat_bot_import_message .error{
    color: #D8000C;
    background-color: #FFBABA;
    border-left: 2px solid #D8000C;
}
.wt-chat-bot-export .wt_chat_bot_export_btn svg,
.wt-chat-bot-export .wt_chat_bot_export_btn i {
    margin-right: 5px;
}


@media ( max-width : 960px ){
    .wt-section.wt-locator-scroll.activated .form-table-wrap {        
        width: calc( 100% - 87px );
        margin-left: 56px;
    }
}

@media ( max-width : 782px ){
    .wt-section.wt-locator-scroll.activated .form-table-wrap {
        width: calc( 100% - 41px );
        margin-left: 10px;
    }
}