.xs-request-quote {
    display: none;
}


.xs-request-quote.rq-visible {
    display: flex;
    user-select: none;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    z-index: 1000;
    font-size: 12pt !important;
    width: 100%;
    max-width: 900px;
}

.xs-request-quote-shortcode {
    padding: 20pt;
}
.xs-request-quote-shortcode .xs-request-quote.rq-visible {
    position: unset;
    transform: unset;
    margin: auto;
}
.xs-request-quote-shortcode .xs-request-quote.rq-visible .rq-head {
    display: none;
}

@media screen and (max-width: 800px) {
    .xs-request-quote.rq-visible {
        position: absolute;
        left: 0;
        top: 0;
        transform: unset;
    }
    .xs-request-quote .rq-main .info {
        display: none !Important;
    }   
}

.xs-request-quote .close-button {
    cursor: pointer;
}

.xs-request-quote .inner {
    display: flex;
    flex-direction: column;
    gap: 0pt;
    background: white;
    width: 100%;
}

.xs-request-quote .rq-head {
    display: grid;
    grid-template-columns: 9fr 1fr;
    align-items: center;
    padding: 5pt;
    font-weight: bold;
    color: white;
}

.xs-request-quote .rq-head button {
    height: 16px;
    width: 16px;
    padding: 15px;
    font-size: 12px;
    justify-self: end;
}

.xs-request-quote .rq-foot {
    background-color: #eee;
    padding: 10pt;
    text-align: center;7
}

.xs-request-quote .rq-body {
    padding: 10pt;
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 10pt;
    background-color: #24369f;
    background: linear-gradient(196deg,rgb(16, 25, 78) 0%, rgb(56, 71, 160) 65%, rgb(20, 30, 85) 100%);
    color: white;
}

@media screen and (max-width: 800px) {
    .xs-request-quote .rq-body {
        padding: 10pt;
        display: flex;
        flex-direction: column;
        gap: 10pt;
    }
}

.xs-request-quote .rq-body .body-content {
    display: flex;
    flex-direction: column;
    gap: 10pt;
    width: 100%;
    overflow: scroll;
}

.xs-request-quote .rq-body .body-content .sect {
}

.xs-request-quote .rq-body .body-content .control {
    color: black;
}
.xs-request-quote .rq-body .body-content .control::active {
    background-color: white;
}

.xs-request-quote .rq-main {
    display: grid;
    padding: 10pt;
    background-color: #eee;
    color: black;
}

.xs-request-quote .rq-main .info {
    padding: 10pt;
    display: flex;
    flex-direction: column;
    gap: 10pt;
    min-width: 200px;
    word-break: break-word;
}

.xs-request-quote .rq-main .send-request {
    justify-self: normal;
    align-self: end;
}

.xs-request-quote .rq-uploader {

}

.xs-request-quote .rq-uploader .uploader-wrapper {
    display: grid;
    gap: 10pt;
    grid-template-columns: 2fr 4fr 1fr;
}

.xs-request-quote .rq-uploader .upload-button {
    width: auto;
    font-size: 12px;
    padding: 10px;
    background: #ffeb3b !important;
    color: black;
}

.xs-request-quote .rq-uploader .uploader-wrapper .file-input {
    width: 0px;
}

.xs-request-quote .files-error-message {
    color: red;
}

.xs-request-quote .rq-uploaded-files {

}

.xs-request-quote .rq-uploaded-files .file-list {
    display: flex;
    gap: 2pt;
}

.xs-request-quote .rq-uploaded-files .file-list .file-item {
    display: grid;
    grid-template-columns: 9fr 1fr;
    gap: 2pt;
    justify-items: flex-start;
    font-size: 10px;
    background-color: white;
    color: black;
    border-radius: 5pt;
    padding: 5pt;
    align-items: baseline;
    line-height: 1.2;
    word-wrap: anywhere;
    border: 1px solid #a0a0a0;
    align-items: center;
}

.xs-request-quote .rq-uploaded-files .file-list .file-item .delete-file {
    width: 25px;
    height: 25px;
    margin: 0;
    padding: 0;
    justify-self: end;
    font-family: mono;
}

.xs-request-quote .hidden {
    opacity: 0;
}

