@import url("../libraries/fontawsome/all.css");
@import url("./login.css");
@import url("./home.css");
@import url("./animation.css");


@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
	--primary-color: #F15A29;
	--secondary-color: #F8D28B;
	--primary-blue: #1E78B9;
	--secondary-blue: #5B84C4;
	--background-grey: #F3F3F6;
}

.default-error-modal-style {
    width: 460px!important;
    height: 300px!important;
    margin: 0 auto;
}

.modal-dialog {
    max-width: 100vw!important;
}

.navbar-v3{
    z-index: 4000;
}

.shadow-center-v3{
    -webkit-box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.14);
    box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.14);
}

.custom-thin-scrollbar::-webkit-scrollbar-thumb {
    background: #888;
}

.custom-thin-scrollbar::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.highcharts-credits {
    display: none !important;
}


.defaultErrorModalStyle {
    width: 363px;
    margin: 0 auto;
}

.header-style{
    height: 40px;
    background-color: #1f1f1f;
    color: #fff;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
}

.text-overflow-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: 'break-all';
}

.text-break-line {
    white-space: pre-wrap; /* Wraps text and preserves whitespace */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.quartic-orange {
    color: var(--primary-color);
}

.modal-header {
    height: 35px;
    padding: 0;
    border-bottom: 1px solid var(--primary-color);
}

.modal-body {
    padding: 0;
    overflow-y: hidden;
}

.modal-header-text {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    margin-left: 24px;
}

.reminder-modal-header-text{
    font-family: 'Arial';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin-left: 24px;
} 
.res-plots-selection {
    width: 180px;
    height: 32px;
    border-radius: 5px;
    outline: none;
}

.disabled{
    opacity: 0.7;
    pointer-events: none;
}

.createDeployModelModalStyle {
    width: 800px;
    max-width: 75vw;
    font-size: 16px;
    margin: 0 auto;
    height: 590px;
}

.createDeployModelModalStyle dt{
    font-weight: 400;
    color: #8C8C8C;
}

.createDeployModelModalStyle dt,
.createDeployModelModalStyle dd,
.createDeployModelModalStyle li button {
    max-width: 340px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: fit-content;
}

.createDeployModelModalStyle ul {
    list-style: none;
    padding: 0 10px 0 0;
    margin: 0;
    height: 315px;
    overflow-y: auto;
    overflow-x: hidden;
}

.deploy-model-error {
    height: 35px;
    overflow-y: auto;
    overflow-x: auto;
    max-width: 539px;
    color: #DE2020;
}

.deploy-model-table-wrap{
    height: 332px;
    overflow: auto;
    border-radius: 5px;
}

.deploy-model-table {
    width: 100%;
    border-radius: 5px;
    position: relative;
}

.deploy-model-table.loading{
    opacity: 0.3;
    pointer-events: none;
}

.deploy-model-table th {
    background-color: #F3F3F6;
    position: sticky;
    top: 0;
    font-size: 14px;
}

.deploy-model-table td,
.deploy-model-table th {
    padding: 7px 22px;
    border: 1px solid #CDCDCD;
    height: 36px;
}

.deploy-model-table select {
    width: 100%;
    border: none;
    outline: none;
}

.deploy-model-table td.select-error-border {
    border: 2px solid #DE2020;
}

.model-live-triger a{
    color: #F15A29;
    font-weight: 700;
}

.model-live-triger:hover a{
    text-decoration: underline;
}

.deploymentHistoryModalStyle{
    width: 557px;
    margin: auto;
}

.deploymentHistoryModalStyle table{
    font-size: 16px;
    color: #474747;
    position: relative;
}

.deploymentHistoryModalStyle th{
    font-size: 14px;
    font-weight: 400;
    position: sticky;
    top: 0;
    background-color: #fff;

}

.deploymentHistoryModalStyle td,
.deploymentHistoryModalStyle th{
    padding-bottom: 16px;
}

.page-header-dropdown-menu {
    transform: translate3d(0, 40px, 0px)!important
}

.delete-item-modal{
    width: 488px !important;
    height: 220px !important;
    border-radius: 10px;
}

.rs-table{
    min-height: 100%;
}

.custom-label {
    display: inline-block;
    background-color: white; 
    border-radius: 50%; 
    color: #1E78B9; 
    padding: 2px 5px; 
    font-weight: bold; 
    border: 1px solid #1E78B9;
}

.typing-indicator {
  display: flex;
}

.typing-indicator span {
  background-color: #888;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  animation: typing 1.4s infinite ease;
}

.typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0% { transform: translateY(0); }
  20% { transform: translateY(-6px); }
  40% { transform: translateY(0); }
}

.content {
    font-family: system-ui!important;
}

.theme-purple-v1 {
    color: #410123;
}

.theme-purple-v2 {
    color: #66023C;
}

.theme-purple-v3 {
    color: #682B44;
}

.theme-purple-v4 {
    color: #A1617B;
}

.theme-blue-v1 {
    color: #3C5367;
}

.header-area {
    width: 100%;
    height: 1140px;
    display: flex;
    justify-content: center;
    background-color: rgb(231, 218, 226, 0.3)
}

.header-area-inner {
    width: clamp(720px, 90%, 1800px);
    margin: 30px auto;
    height: 100%;
}

.screen-area {
    animation: fadeIn 1s forwards;
}

.ghost-button {
    border: 1px solid #410123;
    border-radius: 15px;
    height: 50px;
    padding: 10px 20px;
    color: #410123;
    background-color: transparent;
}

.ghost-button:hover {
    color: #fff;
    background-color: rgb(104, 43, 68, 0.3);
    border: none;
}

.fixed-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  height: 60px;
  width: 100vw;
  background-color: #410123;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}

.theme-white {
    color: #fff;
}


.page-content {
    background-color: #F9F9F9;
    width: 100vw;
    height: calc(100vh - 60px);
    margin-top: 60px;
}

.content-inner {
    width: 86%;
    height: calc(100vh - 60px);
    position: relative;
    left: 7%;
    padding-top: 35px;
}

.footer {
    width: 100vw;
    height: 80px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}

.primary-button {
    border: none;
    border-radius: 10px;
    padding: 10px 25px;
    min-width: 100px;
    background-color: rgb(102,2,60,0.2);
    color: #66023C;
    font-weight: bold;
    display: flex;
    height: 45px;
    align-items: center;
}

.primary-button:hover {
    background-color: rgb(102,2,60,0.3);
}

.primary-button:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.primary-button-dis {
    border: none;
    border-radius: 10px;
    padding: 0px 25px;
    height: 45px;
    min-width: 100px;
    background-color: rgb(102,2,60,0.2);
    color: #66023C;
    font-weight: bold;
    opacity: 0.5;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.secondary-button {
    border: 1px solid #66023C;
    border-radius: 10px;
    padding: 10px 20px;
    height: 45px;
    min-width: 100px;
    text-align: center;
    background-color: transparent;
    color: #66023C;
}

.secondary-button:hover {
    background-color: #F9F9F9;
}

.secondary-button:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.secondary-button-dis {
    border: 1px solid #66023C;
    border-radius: 10px;
    padding: 12px 20px;
    height: 50px;
    min-width: 100px;
    text-align: center;
    background-color: transparent;
    color: #66023C;
    opacity: 0.5;
    pointer-events: none;
}

.emphasis-button {
    border: none;
    height: 45px;
    border-radius: 10px;
    padding: 0px 20px ;
    background-color: #66023C;
    color: #F9F9F9;
    min-width: 100px;
    font-weight: bold;
}

.emphasis-button:hover {
    background-color: #410123;
}

.emphasis-button:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.content-window {
    background-color: #fff;
    height: calc(100vh - 180px);
    border-radius: 5px;
    overflow-y: auto;
    width: 70vw;
    padding: 30px 60px;
    box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.14);
}

.f-upload-w-inner {
    width: 90%;
    display: flex;
}

.file-upload-box-area {
    width: 100%;
    height: 160px;
}

.file-upload-box {
    width: 100%;
    height: 130px;
    border: 1px solid #66023C;
    border-radius: 10px;
    padding: 20px 40px;
}

.file-card {
    height: 40px;
    padding: 10px 0px;
    border-bottom: 1px solid #96C069;
}

.file-card-v2 {
    height: 40px;
    padding: 10px 0px;
}

.example-file-card {
    height: 130px;
    width: 100%;
    border: 1px solid #66023C;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 20px 40px;
}

.example-file-card:hover {
    background-color: #EEEEEE;
}

.s-s-w-inner {
    width: 80%;
    display: flex;
    justify-content: center;
}

.file-content-area {
    padding: 20px 20px;
    overflow-y:auto;
    background-color: #E9E9E9;
    width: 90%;
}

.res-to-srog-content-area {
    overflow-y:auto;
    padding: 30px 25px;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.theme-grey-v1 {
    color: #555252;
}

.check-icon {
    font-size: 25px;
    margin-right: 10px;
}

.centered-text {
  text-align: center;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start from 20 pixels above the final position */
    }
    to {
        opacity: 1;
        transform: translateY(-20px);
    }
}


.progress-cover {
    position: relative;
    top: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: rgb(49,49,49, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar {
    background-color: #66023C!important;
}

.help-confirm-section {
    background-color: #FAFCF7;
    width: 100%;
    height: 1150px;
    display: flex;
    justify-content: center;
}

.help-confirm-section-inner {
    width: clamp(650px, 80%, 1200px);
    margin: 80px auto;
    height: 100%;
}

.screen-window {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgb(104, 43, 68, 0.3);
}

.screen-window-small {
    width: clamp(420px, 25vw, 700px);
    height: 39vh;
    border-radius: 15px;
    background-color: #D8E1CA;
}

.rounded-image {
    border-radius: 15px;
    width: clamp(600px, 53vw, 980px);
    height: 59vh;
}

.rounded-image-small {
    border-radius: 15px;
    width: clamp(400px, 24vw, 680px);
    height: 37vh;
}

.text-box {
    width: 28%;
    height: 230px;
    background-color: #EFF4E8;
    border-radius: 15px;
}

.text-box-inner {
    width: 85%;
    margin: 40px 40px;
    height: 100%;
}

.text-box-2 {
    width: 350px;
    height: 200px;
}

.theme-green-1 {
    color: #A2DB1A;
}

.masked-background {
    position: relative;
    width: 100%;
    height: 600px;
    background-color:#682B44;
    display: flex;
    justify-content: center;
}

.request-demo-section-inner {
    width: clamp(500px, 30%, 600px);
    height: 100%;
    z-index: 999;
}

.terms-section {
    background-color: #4D002D;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terms-section-inner {
    width: 90%;
}

.contact-input-box {
    border: none;
    padding-left: 10px;
    height: 40px;
    width: 500px;
}

.contact-input-box:focus {
    outline: none;
}

.contact-input-box-2 {
    border: 1px solid #66023C;
    border-radius: 5px;
    padding-left: 10px;
    height: 40px;
    width: 500px;
}

.contact-input-box-2:focus {
    outline: none;
}

.contact-input-box-2-invalid {
  border: 2px solid red;
}

.stats-section {
    background-color: #F5F5F4;
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
}

.stats-section-inner {
    width: clamp(650px, 80%, 1200px);
    margin: 120px auto;
    height: 100%;
}

.step-1-section {
    width: 100%;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-1-section-inner {
    width: clamp(700px, 85%, 1500px);
}

.step-2-section {
    background-color: rgb(231, 218, 226, 0.2);
    width: 100%;
    height: 1100px;
    display: flex;
    justify-content: center;
    align-items: center
}

.reason-window {
    background-color: rgb(231, 218, 226, 0.5);
    display: flex;
    flex-direction: column;
    padding: 30px 35px;
    width: 40%;
}

.smoother-audit-section {
    background-color: #F1F4EC;
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
}

.smoother-audit-section-inner {
    width: clamp(650px, 80%, 1200px);
    margin: 80px auto;
    height: 100%;
}

.security-section {
    background-color: #FAFCF7;
    width: 100%;
    height: 900px;
    display: flex;
    justify-content: center;
}

.security-section-inner {
    width: clamp(650px, 80%, 1200px);
    margin: 120px auto;
    height: 100%;
}

.text-box-security {
    width: 48%;
    height: 170px;
    background-color: #EFF4E8;
    border-radius: 15px;
}

.text-box-security-inner {
    width: 85%;
    margin: 20px 40px;
    height: 100%;
}

.agreement-modal-style {
    width: 1000px!important;
    height: 700px!important;
    margin: 0 auto;
}

.statement-box {
    height: 85%;
    width: 96%;
    border: 1px solid #000;
    box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.14);
    overflow: auto;
    padding: 20px;
}

.objections-selection-modal-style {
    width: 500px!important;
    height: 670px!important;
    margin: 0 auto;
}

.objections-selection-area {
    height: 420px;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.signup-modal-style {
    width: 670px!important;
    height: 450px!important;
    margin: 0 auto;
}

.contact-area {
    height: 420px;
    background-color: rgb(102,2,60,0.1);
    width: 700px;
    border: 1px solid #66023C;
    border-radius: 10px;
    padding: 20px 30px;
    color: #66023C;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

.srog-selection-group {
    overflow-y: auto;
    width: 100%;
    height: 90%;
    border-right: 1px solid #000;
}

.agreement-button {
    width: 40px;
}

.agreement-button:hover {
    font-weight: bold!important;
    font-size: 18px;
}

.contention-upload-area {
    width: 100%;
    height: 100%;
    min-height: 560px;
    max-height: 650px;
    border: 1px solid #66023C;
    border-radius: 10px;
    padding: 20px 40px;
}

.contention-file-card {
    height: 100px;
    padding: 10px 20px;
    border-bottom: 1px solid #96C069;
    border: 2px solid #D4D4D4;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contention-file-card-inner {
    height: 80%;
    width: 95%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #96C069;
}

.contention-download-button {
    height: 40px;
    border: 1px solid #1757B7;
    padding: 10px 18px;
    border-radius: 10px;
    color: #1757B7;
}

.contention-download-button:hover {
    color: #2A4F87;
    border: 1px solid #2A4F87;
}

.contention-file-word {
    height: 90px;
    width: 55%;
    min-width: 680px;
    display: flex;
    align-items: center;
    padding: 10px 10px;
}

.live-demo-area {
    width: 100%;
    max-width: 1800px;
    min-width: 1100px;
}

.demo-card {
    width: 90%;
    max-width: 640px;
    min-width: 396px;
    height: 36vh;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 1px 3px 2px rgba(0,0,0,0.14);
    display: flex;
    flex-direction: column;
}

.demo-card:hover {
    border: 1px solid #66023C;
}

.demo-card-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
