* {
    padding: 0;
    margin: 0;
  }
:root {
  --font-dm-sans: "DM Sans", serif;
  --light-black-color: #2B3036;
  --primary-color: #F05E38;
  --success-color: #28a745;
  --white-color: #ffffff;
  --dark-black: #0F1114;
  --extra-light-gray: #F0F1F5;
  --text-color: rgba(13, 18, 22, 0.70);
  --text-color-light: #6C6C6C;
  --blue-color: #246FD0;
  --gray-color: #eaeaea;
  --light-gray-color: #f7f7f7;
  --global-box-shadow: 0px 20px 20px 0px rgba(2, 4, 47, 0.05);
  --global-focus-box-shadow: 0px 0px 9px 0px rgba(240, 94, 56, 0.25);
  --form-input-box-shadow: 0px 0px 9px 0px rgba(156, 156, 156, 0.25);
}
body {
  font-family: var(--font-dm-sans);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}
input {
  color: red;
  opacity: 1;
}
.dm-sans-font {
  font-family: var(--font-dm-sans);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.botavox-container {
  max-width: 1400px;
  width: 100%;
  padding: 0 16px;
  margin: auto;
}
.text-color {
  color: var(--text-color);
}
.extra-light-gray-bg {
  background: var(--extra-light-gray);
}
.light-black-color {
  color: var(--light-black-color);
}
.light-black-bg {
  background: var(--light-black-color)
}
.primary-color {
  color: var(--primary-color);
}
.primary-bg {
  background: var(--primary-color);
} 
.dark-black-color {
  color: var(--dark-black);
}
.dark-black-bg {
  background: var(--dark-black);
}
.blue-color {
  color: var(--blue-color)
}
.gray-color-bg {
  background: var(--gray-color);
}
.text-color-light {
  color: var(--text-color-light);
}
.max-content {
  width: max-content;
}
.fs-14 {
  font-size: 14px;
}
.fs-12 {
  font-size: 12px;
}
.border-radius-6 {
    border-radius: 6px;
}
.botavox-custom-select {
    position: relative;
    width: 200px !important;
    cursor: pointer;
}
.botavox-custom-select-option {
    color: var(--light-black-color);
    border: 1px solid var(--gray-color);
    border-radius: 6px;
    position: relative;
    padding-right: 36px !important;
}
.botavox-custom-select-option::before {
    position: absolute;
    right: 18px;
    top: 50%;
    content: "";
    background: url(../images/icon/chevron-down-icon.svg);
    width: 14px;
    height: 14px;
    background-size: contain !important;
    transform: translateY(-50%);
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.botavox-custom-select-option .bi-calendar {
    display: none !important;
}
body#botavoxBodyContent.open .botavox-logo-section::before {
    right: 14px;
    top: 50%;
}
.botavox-logo-section::before {
    top: 75%;
}
.botavox-sidebar-menu .botavox-custom-select-dropdown-list.botavox-account-toggle {
    right: -310px;
    width: 280px;
}
.botavox-custom-select-dropdown-list {
    position: absolute;
    width: 100%;
    background: var(--white-color);
    list-style: none;
    padding: 0;
    display: none;
    z-index: 10;
    overflow: hidden;
}
.botavox-custom-select-dropdown-list li {
    padding: 10px;
    position: relative;
    cursor: pointer;
    color: var(--text-color);
}
.botavox-custom-select-dropdown-list li:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.display-none {
    display:none;
}
.display-flex {
    display:flex;
}
.option-dropdown {
    background: #ffffff;
    border-color: #CCCCCC;
    color: var(--text-color);
}
.option-dropdown:hover {
    background: #ffffff;
    border-color: #CCCCCC;
    color: var(--text-color);
}
.option-dropdown.dropdown-toggle::after {
    border: none;
    background: url('../images/icon/option-icon.svg');
    width: 4px;
    height: 14px;
    position: relative;
    top: 5px;
}
table td .botavox-table-dropdown ul li {
    width: 100% !important;
}
.white-btn {
    background: var(--white-color);
    color: var(--text-color);
    border: 1px solid #DADADA;
}
.white-btn:hover, .white-btn:focus, .white-btn:active {
    background: var(--white-color);
    color: var(--text-color);
    border: 1px solid #DADADA;
}
.primary-btn {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    border: 1px solid #C84D2D !important;
}
.primary-btn:hover, .primary-btn:focus, .primary-btn:active {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border: 1px solid #C84D2D !important;
    box-shadow: var(--global-box-shadow);
}
.success-btn {
    background: var(--success-color) !important;
    color: var(--white-color) !important;
    border: 1px solid #28a745 !important;
}
.success-btn:hover, .success-btn:focus, .success-btn:active {
    background-color: #218838;
    border-color: #1e7e34;
    border: 1px solid #218838 !important;
}
.botavox-form input {
    box-shadow: var(--form-input-box-shadow);
}
.botavox-form p {
    color: var(--text-color-light);
}
.global-box-shadow {
    box-shadow: var(--global-box-shadow);
}
.date-picker-section span.input-group-append img {
    position: absolute;
    right: 2px;
    content: "";
    background-color: #ffffff;
    width: 40px;
    height: 28px;
    background-size: contain;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    padding: 5px;
}

.date-picker-section input {
    cursor: pointer;
}
.botavox-search-input {
    width: 600px;
}
.botavox-search-input input {
    padding-left: 32px !important;
}
.botavox-search-input::before {
    position: absolute;
    left: 10px;
    top: 50%;
    content: "";
    background: url(../images/icon/search-icon.svg);
    width: 15px;
    height: 18px;
    background-size: contain;
    transform: translateY(-50%);
    background-repeat: no-repeat;
}
.collection-form select {
    padding:8px;
}
.botavox-table-content table td ul.dropdown-menu {
    overflow: hidden;
    z-index:99;
}
.botavox-content-wrap {
    padding: 20px 20px 20px 290px;
}
.extra-light-gray-bg.open#botavoxBodyContent #newSidebar {
    transform: translateX(-270px);
}
.open#botavoxBodyContent .botavox-content-wrap {
    padding: 20px 20px 20px 95px;
}
.padding-12 {
    padding: 12px;
}
.delete-option input {
    display:none;
}

/*-- Start Header --*/
.botavox-brand-sidebar-content {
    bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    left: 0;
}
.botavox-brand-sidebar-content img {
    width: 100px;
}
.botavox-header .botavox-custom-select {
    width: 100% !important;
}
.botavox-header .toggle-btn {
    background: var(--primary-color);
}
.botavox-header {
    position: fixed;
    width: 275px;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--white-color);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
    transform: translateX(0px);
}
.botavox-header .botavox-nav-menu .nav-link {
    padding: 10px;
}
.botavox-header .botavox-nav-menu .nav-link:hover {
    color: var(--dark-black);
}
.botavox-header .botavox-nav-menu .nav-link.active, .botavox-sidebar-menu .botavox-nav-menu .nav-link.active {
    background: #8b8b8bb8;
    color: var(--white-color);
}
.daterangepicker .drp-buttons .btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}
.botavox-sidebar-menu .botavox-nav-menu .nav-link {
    background-color: #e1e1e1;
}
.botavox-header .botavox-nav-menu .nav-link.active img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(334deg) brightness(103%) contrast(101%);
}
.botavox-header .botavox-nav-menu .nav-link img {
    max-width: 16px;
    max-height: 16px;
}
.botavox-custom-select-option.botavox-account-toggle {
    padding: 12px;
}
.botavox-custom-select-dropdown-list.botavox-account-toggle {
    right: -260px;
    top: 0;
}
.botavox-custom-select-option.botavox-account-toggle::before {
    background: url(../images/icon/chevron-up-down-icon.svg);
}
.botavox-header .botavox-member-dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.botavox-header .botavox-member-dropdown .dropdown-toggle::after {
    color: var(--light-black-color);
}
.botavox-header .botavox-member-dropdown .dropdown-toggle h6 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: auto;
    max-width: 120px;
}
.botavox-sidebar-menu {
    width: 74px;
    height: 100vh;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    transition: transform 0.3s ease-in-out;
    background: #fff !important;
    z-index: 999;
}
.botavox-header.open {
    transform: translateX(0);
}
.botavox-nav-menu li a.active img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(334deg) brightness(103%) contrast(101%);
}
.extra-light-gray-bg .botavox-header .toggle-btn {
    bottom: 0;
    right: 0;
    cursor: pointer;
    padding: 13px 20px;
    z-index: 1;
}
.chatbot-button {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.extra-light-gray-bg.open .botavox-header .toggle-btn {
    display: none;
}
.accordion{
    height: calc(100vh - 109px);
    padding-bottom: 10px;
    overflow-y:auto;
}
.extra-light-gray-bg.open .botavox-brand-sidebar-content img {
    width: 60px;
}
.extra-light-gray-bg.open .toggle-btn {
    right: 0;
    left: 0;
    padding: 10px 20px;
    z-index: 1;
}
.botavox-custom-select-dropdown-list li:hover a.dropdown-item {
    color: #fff;
}
.pagination li.page-item.active .page-link {
    background: #f05e38;
    border: 1px solid #C84D2D;
}
.pagination li.page-item.active:hover .page-link {
    color: #fff;
}
.daterangepicker .drp-calendar.right {
    padding: 8px;
    margin-right: 10px !important;
}

/*-- Start Date picker --*/
.datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
    background-color: #f05e38;
    background-image: -moz-linear-gradient(top, #fdd49a, #f05e38);
    background-image: -ms-linear-gradient(top, #fdd49a, #f05e38);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#f05e38));
    background-image: -webkit-linear-gradient(top, #fdd49a, #f05e38);
    background-image: -o-linear-gradient(top, #fdd49a, #f05e38);
    background-image: linear-gradient(top, #fdd49a, #f05e38);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#f05e38', GradientType=0);
    border-color: #f05e38 #f05e38 #002a80;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
    background-color: #f05e38;
    background-image: -moz-linear-gradient(top, #fdd49a, #f05e38);
    background-image: -ms-linear-gradient(top, #fdd49a, #f05e38);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#f05e38));
    background-image: -webkit-linear-gradient(top, #fdd49a, #f05e38);
    background-image: -o-linear-gradient(top, #fdd49a, #f05e38);
    background-image: linear-gradient(top, #fdd49a, #f05e38);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#f05e38', GradientType=0);
    border-color: #f05e38 #f05e38 #002a80;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span:hover {
    background: #f05e38;
    color: #fff;
}
.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .daterangepicker td.active, .daterangepicker td.active:hover {
    background-image: -webkit-linear-gradient(top, #fdd49a, #f05e38);
    color: #fff !important;
}
.botavox-header .botavox-nav-menu .nav-link:focus {
    color: #2b3036;
}
.datepicker table tr td.day:hover, .datepicker table tr td.day.focused {
    background: #f05e38 !important;
    color: #fff;
}
.datepicker thead tr:first-child th:hover, .datepicker tfoot tr th:hover {
    background: #f05e38;
    color: #fff;
}
.datepicker table tr td.today, .datepicker table tr td.today:hover {
    background-color: #f05e38;
    color: #fff;
}
.datepicker.dropdown-menu th, .datepicker.dropdown-menu td,.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    padding: 8px 10px;
}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    font-size: 13px;
}
.datepicker.dropdown-menu {
   font-size: 16px;
}
.datepicker {
    padding: 15px;
}
.dropdown-item:active {
    background: #f05e38 !important;
}
.dropdown-item {
    cursor: pointer;
}

/*-- Start Modal Css --*/
.botavox-modal .modal-header .btn-close {
    right: -16px;
    top: -16px;
    border: 2px solid #78787a;
    z-index: 9;
    background-color: #fbfbfb;
    opacity: 1;
    border-radius: 50px;
    padding: 7px;
    margin: 0;
    box-shadow: -2px 2px 0px rgb(120 120 122);
    position: absolute;
}
.chat-box .label-text {
    width: 110px;
}
.chat-box .message-text {
    width: calc(100% - 110px);
}
.device_icon {
    margin-right: 5px;
    width: 18px;
}
#historyModalLabel i {
    font-size: 14px;
}
.back_btn {
    margin-left:auto;
}
.back_btn i {
    margin-right:5px;
}
/*-- Start Enquiries --*/
.botavox-table-content table {
    border-collapse: separate; 
    border-spacing: 0 20px;
}
.botavox-table-content table tbody tr {
    box-shadow: var(--global-box-shadow);
    background: #fff;
}
.botavox-table-content table th {
    font-weight: 600;
    padding-bottom: 0 !important;
    font-size: 15px;
    text-transform: lowercase;
    color: var(--text-color);
}
.botavox-table-content table th::first-letter {
    text-transform: uppercase; /* Capitalizes only the first letter */
}
.botavox-table-content table td {
    border: none;
    color: var(--text-color-light);
    padding-right: 50px !important;
}
form .form-label,form label,.text-primary{
    text-transform: lowercase;
}
form .form-label::first-letter,form label::first-letter,.text-primary::first-letter{
    text-transform: uppercase;
}
.botavox-table-content table td:last-child {
    border-radius: 0 6px 6px 0;
    padding-right: 1rem !important;
}
.botavox-table-content table td:first-child {
    border-radius: 6px 0 0 6px;
}
.botavox-table-content table th input[type=checkbox] {
    transform: scale(1.6);
    border-radius: 3px;
}
.botavox-table-content table td input[type=checkbox] {
    transform: scale(1.4);
    border-radius: 3px;
    margin-top: 0;
    color: var(--text-color-light);
}
.botavox-table-content table td ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.botavox-table-content table td ul li {
    width: 100% !important;
    padding-bottom: 3px;
    min-width: max-content;
}
.botavox-table-content.general-question-table table td ul li {
    min-width: auto;
}
.botavox-table-content table td ul li:last-child {
    padding-bottom: 0;
}
.botavox-table-content table tbody tr.active td {
    background: #F9FFFF;
}
.botavox-table-content table tbody tr.unread li,.botavox-table-content table tbody tr.unread span {
    font-weight:700;
}
.botavox-search-section {
    width: 680px;
}
.botavox-search-section.no-filter-section {
    width: 480px;
}
a.delete-greeting.text-danger {
    position: absolute;
    right: 14px;
    top: 14px;
}
a.delete-greeting.text-danger i, a.delete-pre-answer.text-danger i {
    font-size: 14px;
}
.pre-answer-field {
    padding-right: 50px;
}
.greeting-message-input ,.pre-answer-input{
    position: relative;
}
a.delete-pre-answer.text-danger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
textarea.form-control.greeting-message-field {
    padding-right: 30px;
}
.botavox-custom-select-dropdown-list li.active {
    background: var(--primary-color);
    color: var(--white-color);
}
.botavox-custom-select-dropdown-list li.active:after {
    position: absolute;
    content: '';
    background-image: url(../images/icon/check-circle-icon-white.svg);
    top: 18px;
    right: 0px;
    z-index: 1;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
}
/*-- Start Modal --*/
.botavox-modal-header .btn-close {
    background: none;
}
.botavox-modal-footer {
    background: #F0F1F5;
    border-top: 0;
}
.botavox-modal-header .btn-close {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.botavox-modal-header .btn-close img {
    width: 14px;
}

/*-- Start Login Page --*/
.botavox-form input:focus {
    box-shadow: 0 0 0 0.15rem rgb(240 94 56 / 25%);
    border-color: var(--primary-color);
}
.botavox-log-icon {
    background: #FCFCFC;
    border: 1px solid #D4D4D4; 
    border-radius: 50%;
    width: 90px;
    height: 90px;
}
.botavox-log-icon i {
    font-size: 56px;
    color: #8C8C8C;
}
.botavox-password-field .botavox-password-icon {
    top: 40px;
    right: 20px;
    cursor: pointer;
}

/*-- Start Forgot Password Page --*/
.botavox-form .botavox-log-icon img {
    width: 56px;
    margin: auto;
}
/*-- Start Pagination --*/
.pagination .page-item .active {
    background-color: var(--primary-color);
    border: 1px solid #C84D2D;
    color: #fff;
}
.page-link:focus {
    color: var(--text-color);
    box-shadow: none;
}
.page-link:hover {
    color: var(--text-color);
}

/*-- Start Chatbot --*/
.botavox-color-picker,.sp-replacer {
    color: var(--light-black-color);
    background: var(--gray-color);
}
.botavox-color-picker select,.sp-replacer select{
    appearance: auto;
    -webkit-appearance: auto;
}
.botavox-chatbot-profile .botavox-color-picker #myColor ,.sp-replacer,.sp-replacer .sp-preview{
    cursor: pointer;
    height: 40px;
    width: 100%;
    display: flex;
}
.botavox-chatbot-profile .botavox-color-picker .bi-eyedropper {
    line-height: 40px;
}
.botavox-copy {
    border: 1px solid var(--light-black-color);
}
.botavox-chatbot-profile .botavox-image-upload .form-control {
    display: none !important;
}
#chatLoader { 
    text-align: center;
    margin:auto;
    display:block;
}
.botavox-logo {
    width: 150px;
}
.botavox-logo img{ 
    width: 100%;
    height: 100%;
}
.log-header .button.highlight {
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}
.log-header {
    height: 60px;
}
.log-header .login {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    background-color: transparent;
    color: #666 !important;
    border: 2px solid #8b8b8bb8;
    line-height: normal;
}
.log-header .login:hover {
    background-color: #666 !important;
    color: #fff !important;
}
.botavox-form {
    height: calc(100vh - 80px);
}
.back-home {
    padding: 10px 20px;
}
.log-header {
    padding: 15px 40px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.botavox-chatbot-profile .botavox-image-upload {
    height: 35px;
    position: absolute;
    width: 35px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
    right: 0;
    top: 70%;
    background: #fff;
}
.botavox-chatbot-profile .botavox-image-upload .bi-camera {
    cursor: pointer;
}
.sp-preview {
    border:none !important;
}
/*-- Start Switch --*/
.botavox-switch .form-check-input:checked {
    background-color: #f05e38;
    border-color: #e05834;
}
.form-switch .form-check-input {
    width: 3em;
    height: 25px;
    cursor: pointer;
}
.form-switch .form-check-input:focus {
    box-shadow: none;
}
.botavox-switch-chatbot .form-check-label {
    margin-right: 10px;
}
.botavox-switch-chatbot .form-check-input {
    margin-left: 0px;
}
.botavox-switch {
    display: flex;
    align-items: center;
}
.label-tooltip {
    display: block;
    font-size: 13px;
    line-height: 13px;
    color: #777777;
    padding-left: 10px;
}
.botavox-switch .form-check-label {
    padding-left: 10px;
}
#bot-container .docked-list-content-chat.one-list {
    height: 70px;
    margin-top: 22px;
}
#bot-container div.chat-body.chat-no-option.active-chat-body,div.chat-body.chat-no-option {
    min-height: calc(100% - 160px) !important;
    max-height: calc(100% - 160px) !important;
}
#bot-container .docked-list-content-chat ul li {
    height: 76px;
}

#bot-container .docked-list-content-chat {
    height: 76px;
}
#bot-container form {
    position: relative !important;
    top: auto;
    right: auto !important;
    bottom: auto !important;
}
#bot-container #chatButton.middle-left {
    left: calc(50% - 145px) !important;
}
#bot-container .chat-popup form.form-container.middle-left,#bot-container .chat-popup form.form-container.middle-right {
    transition: none !important;
}
#bot-container .chat-body.font-18px.docked-two {
    min-height: calc(100% - 182px) !important;
    max-height: calc(100% - 182px) !important;
}
#bot-container .chat-body.font-14px.docked-two {
    min-height: calc(100% - 182px) !important;
    max-height: calc(100% - 182px) !important;
}
#bot-container .chat-body.font-16px.docked-two {
    min-height: calc(100% - 182px) !important;
    max-height: calc(100% - 182px) !important;
}
#bot-container .chat-body.font-20px.docked-two {
    min-height: calc(100% - 182px) !important;
    max-height: calc(100% - 182px) !important;
}
#bot-container #bot-container .chat-body.font-24px.docked-two {
    min-height: calc(100% - 182px) !important;
    max-height: calc(100% - 182px) !important;
}
#bot-container .chat-body.font-18px.docked-three {
    min-height: calc(100% - 218px) !important;
    max-height: calc(100% - 218px) !important;
}
#bot-container .chat-body.font-14px.docked-three {
    min-height: calc(100% - 218px) !important;
    max-height: calc(100% - 218px) !important;
}
#bot-container .chat-body.font-16px.docked-three {
    min-height: calc(100% - 218px) !important;
    max-height: calc(100% - 218px) !important;
}
#bot-container .chat-body.font-20px.docked-three {
    min-height: calc(100% - 218px) !important;
    max-height: calc(100% - 218px) !important;
}
#bot-container .chat-body.font-24px.docked-three {
    min-height: calc(100% - 218px) !important;
    max-height: calc(100% - 218px) !important;
}
#bot-container .chat-body.font-18px.docked-four {
    min-height: calc(100% - 285px) !important;
    max-height: calc(100% - 285px) !important;
}
#bot-container .chat-body.font-14px.docked-four {
    min-height: calc(100% - 285px) !important;
    max-height: calc(100% - 285px) !important;
}
#bot-container .chat-body.font-16px.docked-four {
    min-height: calc(100% - 285px) !important;
    max-height: calc(100% - 285px) !important;
}
#bot-container .chat-body.font-20px.docked-four {
    min-height: calc(100% - 285px) !important;
    max-height: calc(100% - 285px) !important;
}
#bot-container .chat-body.font-24px.docked-four {
    min-height: calc(100% - 285px) !important;
    max-height: calc(100% - 285px) !important;
}
#bot-container .chat-body.font-18px.docked-five {
    min-height: calc(100% - 328px) !important;
    max-height: calc(100% - 328px) !important;
}
#bot-container .chat-body.font-14px.docked-five {
    min-height: calc(100% - 316px) !important;
    max-height: calc(100% - 316px) !important;
}
#bot-container .chat-body.font-16px.docked-five {
    min-height: calc(100% - 316px) !important;
    max-height: calc(100% - 316px) !important;
}
#bot-container .chat-body.font-20px.docked-five {
    min-height: calc(100% - 318px) !important;
    max-height: calc(100% - 318px) !important;
}
#bot-container .chat-body.font-24px.docked-five {
    min-height: calc(100% - 318px) !important;
    max-height: calc(100% - 318px) !important;
}

#bot-container .chat-body.font-18px.docked-one {
    min-height: calc(100% - 130px) !important;
    max-height: calc(100% - 130px) !important;
}
#bot-container .chat-body.font-14px.docked-one {
    min-height: calc(100% - 130px) !important;
    max-height: calc(100% - 130px) !important;
}
#bot-container .chat-body.font-16px.docked-one {
    min-height: calc(100% - 130px) !important;
    max-height: calc(100% - 130px) !important;
}
#bot-container .chat-body.font-20px.docked-one {
    min-height: calc(100% - 132px) !important;
    max-height: calc(100% - 132px) !important;
}
#bot-container .chat-body.font-24px.docked-one {
    min-height: calc(100% - 132px) !important;
    max-height: calc(100% - 132px) !important;
}


div#bot-container .chat-body {
    min-height: calc(100% - 225px) !important;
    max-height: calc(100% - 225px) !important;
} 
div#bot-container .chat-body.docked-two {
    min-height: calc(100% - 218px) !important;
    max-height: calc(100% - 218px) !important;
}
div#bot-container .chat-body.docked-three {
    min-height: calc(100% - 266px) !important;
    max-height: calc(100% - 266px) !important;
}
div#bot-container div.chat-body.chat-no-option.docked-two {
    min-height: calc(100% - 175px) !important;
    max-height: calc(100% - 175px) !important;
}
div#bot-container .chat-body.docked-four {
    min-height: calc(100% - 312px) !important;
    max-height: calc(100% - 312px) !important;
}

div#bot-container .chat-body.docked-five {
    min-height: calc(100% - 315px) !important;
    max-height: calc(100% - 315px) !important;
}
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
    border: 1px solid #eaeaea;
}
.botavox-table-content table.chat_data tbody tr td:nth-child(5n){
    width: 120px;
}
.botavox-table-content table.chat_data tbody tr .botavox-check{
    width: 5px;
}
.botavox-table-content table.chat_data tbody tr td:first-child {
    width: 40px;
}
.botavox-table-content table.chat_data tbody tr td:last-child {
    width: 180px;
}
/* div#bot-container {
    align-items: center;
    justify-content: center;
}
div#bot-container .chat-body {
    height: calc(100vh - 105px) !important;
} */
 .chat-msg-section {
    width: calc(100%) !important;
 }
 div#bot-container {
    justify-content: center;
}
div#bot-container  .typing {
    bottom: 70px !important;
}
.settings-section {
    width: 100%;
    max-width: 600px;
}
select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
}
.date-picker-section img {
    cursor: pointer;
}
.web_url p {
    word-break: break-word;
}
div#bot-container div.chat-body.chat-no-option.docked-three {
    min-height: calc(100% - 220px) !important;
    max-height: calc(100% - 220px) !important;
}
div#bot-container div.chat-body.chat-no-option.docked-two {
    min-height: calc(100% - 175px) !important;
    max-height: calc(100% - 175px) !important;
}
div#bot-container div.chat-body.chat-no-option.docked-four {
    min-height: calc(100% - 269px) !important;
    max-height: calc(100% - 269px) !important;
}
div#bot-container div.chat-body.chat-no-option.docked-five {
    min-height: calc(100% - 315px) !important;
    max-height: calc(100% - 315px) !important;
}
/*-- Start Access Section --*/
.access-content {
    padding: 50px 0;
    height: 100%;
    margin: auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.access-content h1 {
    font-size: 45px;
    color: #f05e38;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.access-content h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
    align-items: center;
    margin-bottom: 0;
    margin-left: 7px;
}
.access-content h3 img {
    margin-right: 5px;
    width: 20px;
}
.customer-counter {
    text-align: center;
    background: #efefef;
    color: #555;
    border-radius: 40px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    animation: pulse 1.5s infinite;
}
.hourglass {
    animation: flip 4s ease-in-out infinite;
    border-bottom: solid 1px #630;
    border-top: solid 1px #630;
    padding: 0 3px;
}
.hourglass .top, .hourglass .bottom {
    background-color: #def;
    box-shadow: 0 0 1px 1px #bcd inset;
    height: 12px;
    overflow: hidden;
    position: relative;
    width: 16px;
}
.hourglass .top {
    border-radius: 0 0 50% 50%;
}
.hourglass .top::before {
    animation: top 4s linear infinite;
    background-color: #fc6;
    border-radius: 50%;
    content: "";
    display: block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 16px;
}
.hourglass .top::after {
    animation: top-drip 4s linear infinite;
    background-color: #fc6;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
}
.hourglass .bottom {
    border-radius: 50% 50% 0 0;
}
.hourglass .bottom::before {
    animation: bottom 4s linear infinite;
    background-color: #fc6;
    border-radius: 50%;
    content: "";
    display: block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 16px;
}
.hourglass .bottom::after {
    animation: bottom-drip 4s linear infinite;
    background-color: #fc6;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
}

/* Animations */
@keyframes flip {
    0%, 45% {
        transform: rotate(0);
    }
    50%, 95% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes bottom {
    0% {
        transform: translateY(100%);
    }
    50% {
        transform: translateY(50%);
    }
    51% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(-100%);
    }
}
@keyframes top {
    0% {
        transform: translateY(50%);
    }
    50% {
        transform: translateY(100%);
    }
    51% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(-50%);
    }
}
@keyframes bottom-drip {
    0% {
        left: 45%;
        transform: translateY(-100%);
        width: 10%;
    }
    5% {
        transform: translateY(0);
    }
    45%, 100% {
        left: 50%;
        transform: translateY(0);
        width: 0;
    }
}
@keyframes top-drip {
    0%, 50% {
        left: 45%;
        transform: translateY(100%);
        width: 10%;
    }
    55% {
        left: 45%;
        transform: translateY(0);
        width: 10%;
    }
    100% {
        left: 50%;
        transform: translateY(0);
        width: 0;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 102, 0, 0.79);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}
.access-content p {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
    text-align: center;
    line-height: 32px;
}
.access-content .form-group {
    text-align: left;
    margin: 0 0 15px 0;
}
.access-content label {
    color: #262b30;
}
.access-content input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #555;
}
.access-content input:focus-visible, textarea:focus-visible {
    outline: unset;
}
.access-content .submit-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #f05e38;
    color: #fff;
    border: 1px solid #C84D2D;
    text-decoration: none;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.access-content .cta-btn:hover {
    background-color: #e65c00;
}
.access-content form {
    width: 100%;
    max-width: 580px;
    margin-top: 30px;
}
.botavox-access-page .container {
    max-width: 1300px;
    padding: 15px;
    margin: auto;
}
/* .botavox-access-page .footer {
    background: #fcfcfd;
    border-top: 1px solid #dbdcdf;
}
.botavox-access-page .footer .footer-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.botavox-access-page .footer .footer-content p {
    margin: 0;
    font-size: 16px;
    color: #555;
}
.botavox-access-page .footer .footer-content a {
    margin-left: auto;
    color: #555;
    text-decoration: auto;
} */
.botavox-access-page .footer {
    background: #fcfcfd;
    border-top: 1px solid #dbdcdf;
    padding: 20px 16px;
    color: #555;
}
.botavox-access-page .footer a {
    color: #555;
}
.botavox-access-page .footer a:hover {
   color: #F05E38;
}
.botavox-access-page .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.botavox-access-page .header .nav-buttons {
    display: flex;
    gap: 15px;
}
.botavox-access-page .botavox-brand {
    width: 150px;
}
.botavox-access-page .botavox-brand img {
    width: 100%;
}
.botavox-access-page .button {
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}
.botavox-access-page .header .login {
    background-color: transparent;
    color: #666 !important;
    border: 2px solid #8b8b8bb8;
}
.botavox-access-page .header .login:hover {
    background-color: #666;
    color: #fff !important;
}
.botavox-access-page .header .back-btn {
    background: #f05e38;
    color: #fff;
    border: 1px solid #C84D2D !important;
}
.botavox-access-page .footer .footer-content a:hover {
    color: #f05e38;
}
.thank-you-content {
    padding: 50px 0;
    height: calc(100vh - 135px);
    margin: auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.thank-you-content h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 20px 0;
}
.thank-you-content p {
    font-size: 20px;
    line-height: 36px;
    width: 70%;
    text-align: center;
}
.thank-you-content .check-icon {
    width: 70px;
}
.thank-you-content .check-icon img {
    width: 100%;
    object-fit: contain;
}
.botavox-sidebar-menu .botavox-custom-select {
    width: auto !important;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}
.botavox-sidebar-menu .botavox-custom-select .botavox-custom-select-option {
    padding-right: 0 !important;
}
.botavox-mobile-header .menu-btn {
    height: 60px;
    padding: 15px;
}
.botavox-search-section .date-picker-section input#date-range {
    width: 275px !important;
}
.api-content {
    width: 100%;
}
.back-home {
    background: #f1f1f1;
    border-radius: 5px;
    padding: 6px 10px;
}
.single-account-list {
    display:none;
}
/* Header Styling */
.botavox-front-page {
    background-color: #f0f1f5;
}
.botavox-front-page .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.botavox-front-page .header .nav-buttons {
    display: flex;
    gap: 15px;
}
.botavox-front-page .botavox-brand {
    width: 150px;
}
.botavox-front-page .botavox-brand img {
    width: 100%;
}
.botavox-front-page .button {
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}
.botavox-front-page .header .login {
    background-color: transparent;
    color: #666 !important;
    border: 2px solid #8b8b8bb8;
}
.botavox-front-page .header .login:hover {
    background-color: #666;
    color: #fff !important;
}
.botavox-front-page .header .back-btn {
    background: #f05e38;
    color: #fff;
    border: 1px solid #C84D2D !important;
}

/* Botavox Home Page Navigation */
.botavox-home-page .navbar {
    padding: 15px 40px;
    transition: all 300ms ease-in-out;
    transform: translateY(0);
}
.botavox-home-page .navbar .navbar-brand img {
    width: 170px;
}
.botavox-home-page .navbar .nav-buttons .button.login {
    padding: 15px 30px;
    font-size: 18px;
    margin-right: 0px;
}
.botavox-home-page .navbar .nav-buttons .button.login:hover {
    background-color: #fff;
    border: 2px solid #C52D05 !important;
    color: #F05E38 !important;
}
.botavox-home-page .navbar .nav-buttons .button.demo {
    padding: 15px 30px;
    border: 2px solid #1d8c41;
    color: #fff !important;
    background-color: #48b36b;
    font-size: 18px;
    margin-left: 15px;
}
.botavox-home-page .navbar.scrolled {
    position: fixed;
    width: 100%;
    background-color: #fff;
    padding: 10px 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.botavox-home-page .navbar.scrolled .login {
    border-color: #f05e38 !important;
    color: #f05e38 !important;
}
.botavox-home-page .navbar .navbar-brand .logo-dark {
    display: none;
}
.botavox-home-page .navbar.scrolled .navbar-brand .logo-light {
    display: none;
}
.botavox-home-page .navbar.scrolled .navbar-brand .logo-dark {
    display: block;
}
.botavox-home-page .navbar .nav-buttons .button.pricing-btn {
    padding: 15px 0;
    color: #ffffff !important;
    font-size: 18px;
    margin-left: 15px;
}
.botavox-home-page .navbar.scrolled .nav-buttons .button.pricing-btn {
    color: #f05e38 !important;
}
.botavox-home-page .navbar .nav-buttons .button.pricing-btn:hover {
    text-decoration: underline !important;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px !important;
}
.botavox-home-page .navbar .nav-buttons {
    display: flex;
}

/*-- Botavox Banner --*/
.botavox-home-page .banner {
    background: #F05E38;
    height: 700px;
}
.botavox-home-page .container.banner-content.details {
    padding-top: 140px;
}
.botavox-home-page .banner:after {
    content: "";
    background-image: url("{% static 'images/home/banner-shape.png' %}");
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 220px;
}
.botavox-home-page .container.banner-content {
    max-width: 1600px;
    padding: 30px 10px;
}
.botavox-home-page .banner-content .headline {
    font-size: 65px;
    font-variant: small-caps;
    letter-spacing: -2.1px;
}
.botavox-home-page .banner-content .subtext {
    font-size: 85px;
    line-height: 100px;
}
.botavox-home-page .banner-content .demo.highlight-btn {
    border: 1px solid #C52D05;
    box-shadow: 0 4px 0 0 #CF2B00;
    padding: 20px 40px;
    width: max-content;
    margin: 30px auto 0;
    color: #F05E38;
    font-size: 24px;
}

/* Botavox Video Section */
.botavox-home-page .video-section {
    width: 1190px;
    margin: -80px auto 0;
    padding: 15px;
    box-shadow: 2px 12px 23px 0 rgba(240, 94, 56, 0.30);
}
.botavox-home-page .video-container {
    padding-bottom: 56.25%;
    background: #000;
}

/* Botavox Pricing */
.botavox-pricing {
    background: #ffffff;
    padding: 40px 0 140px;
}
.botavox-pricing .heading {
    color: #262B30;
    font-size: 52px;
    letter-spacing: -1.56px;
    padding-bottom: 80px;
}
.botavox-pricing .pricing-card {
    background: white;
    border: 1px solid #e5ffee;
    border-radius: 20px;
    padding-top: 25px;
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.botavox-pricing .pricing-card:hover {
    border-color: #48b36b;
    transform: scale(1.02);
}
.botavox-pricing .pricing-card .main-content {
    padding: 0 20px 20px;
}
.botavox-pricing .growth-plan .plan-label {
    background: #F05E38;
    color: #ffffff;
}
.botavox-pricing .pro-plan .plan-label{
    background: #cdf7f7;
}
.botavox-pricing .elite-plan .plan-label{
    background: #f5d472;
}
.botavox-pricing .growth-plan {
    transform: scale(1.12);
    z-index: 9;
    box-shadow: 0px 0px 25px 1px rgba(255, 136, 123, 0.38) !important;
    border: 1px solid #FFDAC9 !important;
}
.botavox-pricing .growth-plan:hover {
    transform: scale(1.13) !important;
}
.botavox-pricing .plan-label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #dee4ee;
    color: #000000;
    padding: 8px 28px;
    border-radius: 0 0 6px 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    white-space: nowrap;
}
.botavox-pricing .plan-label::after,
.botavox-pricing .plan-label::before {
    content: '';
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    background: #c5d0e3;
}
.botavox-pricing .growth-plan .plan-label::after,
.botavox-pricing .growth-plan .plan-label::before {
    background: #e97d63;
}
.botavox-pricing .pro-plan .plan-label::after,
.botavox-pricing .pro-plan .plan-label::before {
    background: #b3dfdf;
}
.botavox-pricing .elite-plan .plan-label::after,
.botavox-pricing .elite-plan .plan-label::before {
    background: #c9af62;
}
.botavox-pricing .plan-label::after {
    left: -15px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.botavox-pricing .plan-label::before {
    right: -15px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.botavox-pricing .highlight-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin: 25px auto 20px;
    color: #194a92;
    text-transform: uppercase;
    border-bottom: 1px solid #dddddd;    
    width: max-content;
    padding-bottom: 20px;
    min-width: 200px;
}
.botavox-pricing .highlight-text .lead-wrap {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 4px 0;
}
.botavox-pricing .growth-plan .highlight-text {
    color: #f14f16;
}
.botavox-pricing .pro-plan .highlight-text {
    color: #038b8d  ;
}
.botavox-pricing .elite-plan .highlight-text {
    color: #bd8702;
}
.botavox-pricing .price {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    margin-top: 0;
}
.botavox-pricing .billing-cycle { 
    color: #666666;
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 6px;
}
.botavox-pricing .savings-badge {
    display: inline-flex;
    align-items: center;
    background: #f3f3f3;
    border: 1px solid #a5a5a5;
    color: #636363;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin: 12px auto 15px;
}
.botavox-pricing .subscribe-btn {
    background: #ffffff;
    border: 2px solid #48b36b;
    color: #48b36b;
    font-weight: 600;
    font-size: 18px;
    padding: 14px 0;
    border-radius: 50px;
    transition: all 0.4s ease;
    width: 100%;
    margin-top: 35px;
}
.botavox-pricing .growth-plan .subscribe-btn {
    margin-top: 5px;
}
.botavox-pricing .subscribe-btn:hover {
    background: #48b36b;
    color: white;
}
.botavox-pricing .subscribe-btn i:before {
    font-weight: 900 !important;
    font-size: 16px;
}
.botavox-pricing .subscribe-btn i {
    position: relative;     
    left: 0; 
    transition: all 0.4s ease;
}
.botavox-pricing .subscribe-btn:hover i {
    left: 30px;
    transition: all 0.4s ease;
}
.botavox-pricing .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 35px;
    text-align: left;
}
.botavox-pricing .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 16px;
    font-size: 18px;
}
.botavox-pricing .feature-list li i {
    color: #555555;
    font-size: 16px;
    margin-top: 2px;
    line-height: 1.4;
    margin-right: 6px;
}
.botavox-pricing .pricing-card .footer-content {
    background: #eaeeec;
    border-radius: 0 0 20px 20px;
    padding: 15px 5px;
    font-weight: 400;
}
.botavox-pricing .pricing-card.growth-plan .footer-content {
    background: #fdf1e8;
}
.botavox-pricing .pricing-card.pro-plan .footer-content {
    background: #e6f2ed;
}
.botavox-pricing .pricing-card.elite-plan .footer-content {
    background: #f0f3ea;
}

/*-- Botavox CTA --*/
.botavox-home-page .cta-content {
    margin-bottom: 100px;
    padding: 70px 0;
    background: #262B30;
}
.botavox-home-page .cta-content h3 {
    font-size: 48px;
    line-height: 67px;
    letter-spacing: -1.53px;
}
.botavox-home-page .cta-content h3 span {
    color: #F05E38;
}
.botavox-home-page .cta-content .right-sec {
    padding-left: 130px;
}
.botavox-home-page .cta-content .right-sec h5 {
    font-size: 24px;
}
.botavox-home-page .cta-content .right-sec p {
    font-size: 20px;
    line-height: 32px;
}
.botavox-home-page .cta-content .right-sec .button.demo {
    font-size: 24px;
    margin-top: 40px;
    border: 1px solid #1d8c41;
    background: #48b36b;
    box-shadow: 0 4px 0 0 #319e54;
    width: max-content;
    padding: 15px 60px;
}

/*-- Customer Inquiries --*/
.botavox-home-page .inquiries-content {
    margin-bottom: 100px;
}
.botavox-home-page .inquiries-content .inquiries-details .row .item .item-details {
    border: 1px solid #eee;
    transition: 0.3s;
    box-shadow: 0 0 8px rgba(38, 43, 48, 0.30);
}

/*-- New --*/
.botavox-home-page .inquiries-content .inquiries-details .mobile-design {
    display: none;
}
.botavox-home-page .inquiries-content .inquiries-details .row .item .item-details {
    height: 100%;
}
.botavox-home-page .inquiries-content .inquiries-details .row .item .item-details:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

/*-- Features --*/
.botavox-home-page .features-content {
    margin-bottom: 100px;
}
.botavox-home-page .features-content h3, .botavox-home-page .inquiries-content h3, .testimonial-sec h3 {
    color: #262B30;
    font-size: 52px;
    letter-spacing: -1.56px;
    padding-bottom: 50px;
}
.botavox-home-page .features-content h3 span {
    color: #F05E38;
}
.botavox-home-page .features-content .row .content h5 {
    color: #000;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 12px;
}
.botavox-home-page .features-content .row .content p {
    color: #555;
    font-size: 20px;
    line-height: 32px;
}
.botavox-home-page .features-content .feature-card {
    border: 1px solid #eee;
    padding: 20px;
    transition: 0.3s;
    box-shadow: 0 0 8px rgba(38, 43, 48, 0.30);
}
.botavox-home-page .features-content .feature-card .icon-wrapper {
    display: flex;
    align-items: end;
    position: relative;
    right: -10px;
}
.botavox-home-page .features-content .feature-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.botavox-home-page .features-content .icon-wrapper:before {
    content: '';
    border-radius: 50%;
    background: #FFF3ED;
    width: 151px;
    height: 136px;
    right: -56px;
    position: absolute;
    bottom: -48px;
}
.botavox-home-page .features-content .icon-wrapper:after {
    content: '';
    border-radius: 50%;
    background: #FFDAC9;
    width: 130px;
    height: 135px;
    right: -48px;
    position: absolute;
    bottom: -50px;
}

/*-- Testimonial --*/
.botavox-home-page .testimonial-sec {
    padding: 60px 0 80px;
}
.botavox-home-page .testimonial-card {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.botavox-home-page .testimonial-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid #bbb;
    box-shadow: 0 0 20px 0 rgba(240, 94, 56, 0.40);
}
.botavox-home-page .testimonial-card h5 {
    font-size: 22px;
    line-height: 26px;
}
.botavox-home-page .testimonial-card p {
    color: #555;
    font-size: 18px;
    line-height: 28px;
}

/*-- New --*/
.botavox-home-page .carousel-control-prev-icon, .carousel-control-next-icon {
    filter: brightness(0) saturate(100%) invert(13%) sepia(3%) saturate(2619%) hue-rotate(169deg) brightness(100%) contrast(100%) !important;
}
.botavox-home-page .carousel-control-next, .carousel-control-prev {
    width: 28%;
}

/*-- Footer --*/
.botavox-home-page .footer {
    background: #fcfcfd;
    border-top: 1px solid #dbdcdf;
    padding: 20px 16px;
    color: #555;
}
.botavox-home-page .footer a {
    color: #555;
}
.botavox-home-page .footer a:hover {
    color: #F05E38;
}
#mobile-access {
    display:none;
}

/*-- Start Privacy Policy --*/
.privacy-content {
    padding: 50px 0;
}
.privacy-content h1 {
    font-size: 42px;
    color: #333;
    padding-bottom: 10px;
    font-weight: 700;
}
.privacy-content h3 {
    color: #333;
    font-size: 24px;
    line-height: 38px;
}
.privacy-content h2 {
    font-size: 22px;
    padding-bottom: 10px;
    font-weight: 600;
    color: #262b30;
    margin-top: 48px;
    margin-bottom: 0 !important;
}
.privacy-content p {
    color: #333;
    font-size: 18px;
    line-height: 32px;
    margin-top: 0 !important;
}
.privacy-content ul li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

/*-- Start Footer --*/
.botavox-front-page .footer {
    background: #fcfcfd;
    border-top: 1px solid #dbdcdf;
}
.botavox-front-page .footer .footer-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.botavox-front-page .footer .footer-content p {
    margin: 0;
    font-size: 16px;
    color: #555;
}
.botavox-front-page .footer .footer-content a {
    margin-left: auto;
    color: #555;
    text-decoration: auto;
}
.botavox-front-page .footer .footer-content a:hover {
    color: #f05e38;
}
.botavox-front-page .container {
    max-width: 1300px;
    padding: 15px;
    margin: auto;
}
.botavox-header .menu-list-content .botavox-nav-menu {
    height: calc(100vh - 132px);
    overflow-y: auto;
    display: block;
    scrollbar-color: #f05e38 #fde7e1;
    scrollbar-width: thin;
}
.extra-light-gray-bg.open .botavox-nav-menu {
    height: calc(100vh - 147px);
    overflow-y: auto;
    display: block;
    scrollbar-color: #f05e38 #fde7e1;
    scrollbar-width: thin;
}
.label-badge {
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: 1px;
    font-size: 12px;
    font-weight: 600;
    padding: 0px 2px;
    line-height: 10px;
    border-radius: 4px;
    min-width: max-content;
    max-width: fit-content;
    text-align: center;
    height: 19px;
    margin-top: -1px;
    background: rgb(217, 83, 79);
    color: rgb(255, 255, 255);
    display: inline-flex;
}
.extra-light-gray-bg.open .label-badge{
    display: none;
}
.label-badge.label-circle {
    width: 23px;
    border-radius: 50%;
    height: 23px;
    font-size: 12px;
    line-height: 20px;
    min-width: 10px;
    padding: 13px;
    font-weight: 700;
    color: #fff;
    margin-left: 10px;
}
.label-badge.label-rectangle {
    margin-left: 10px;
}
.botavox-header .botavox-nav-menu .nav-link.active:focus {
    color: #ffffff;
}
.chatbot-styles p.field, .chatbot-styles .row .ps-2 {
    width: auto;
}
.qa-field .wordCount.warning {
    color: #d9534f;
}
.qa-pair .heading .remove-qa:active {
    border: none;
}
.qa-field .label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.qa-field .form-label {
    margin-bottom: 0;
}

.qa-field .wordCount {
    font-size: 14px;
    color: #6c757d; /* Adjust color to match your theme */
}
.botavox-front-page .video-section {
    width: 300px;
}

.botavox-service-content .botavox-check {
    width: 50px;
}
.botavox-service-content .top-section .title{
    font-weight: 600;
    padding-bottom: 0 !important;
    font-size: 15px;
    color: var(--text-color);
}
.botavox-service-content .content-details {
    padding: 16px;
}
.botavox-service-content .body-section {
    background: #f9ffff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.botavox-service-content .body-section .service-qun-ans {
    background: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-left: 65px !important;
}
.botavox-service-content .service-questions {
    width: calc(100% - 130px);
}
.botavox-service-content .body-section .service-qun-ans .list .service-question:before {
    content: '';
    position: absolute;
    left: 0;
    width: 10px;
    height: 1px;
    background: #c4c8cb;
}
.botavox-service-content .body-section .option-details.mobile-option {
    display: none !important;
}
.note-content {
    background: #ff00001c;
    border: 1px solid #f7cece;
    border-radius: 5px;
    padding: 10px 15px;
    width: max-content;
    border-left: 2px solid #ffaaaa;
    color: #555;
}
#displayTabs .nav-item .nav-link {
    color: var(--bs-body-color);
    border-color: var(--bs-body-color);
    margin-right: 5px;
}
.tab-pane input {
    max-width: 500px;
}
ul#displayTabs {
    border-color: var(--bs-body-color);
}
#displayTabs .nav-item .nav-link.active {
    background: var(--primary-color) !important;
    color: #fff;
    border-color: var(--primary-color) !important;
}
.hidden {
    display: none !important;
}
#qa-container .heading {
    background: #eaeaea;
}
.drag-option {
    width: 80px;
}
.drag-option i {
    background: #ffffff;
}
.drag-option.drag-edit {
    width: 60px;
}
.blank-space {
    width: 80px;
}
.copy_code_container .copy-btn{
    position: relative;
    transition-duration: 0.9s;
    -webkit-transition-duration: 0.9s;
    width:140px;
}
.copy_code_container .copy-btn:hover {
    transition-duration: 0.9s;
    background-color: #3A3A3A;
}
.copy_code_container .copy-btn:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.9s;
    box-shadow: 0 0 0px 10px #1dd747;
    width: 140px;
    height: 40px;
    border-radius: 5px;
}
.copy_code_container .copy-btn:active:after {
    box-shadow: 0 0 0 0 #1dd747;
    position: absolute;
    left: 0;
    top:0;
    opacity: 1;
    transition: 0s;
}
.copy_code_container .copy-btn:active {
    top: 1px;
}
.btn-device-start {
    border-radius: 5px 0 0 5px !important;
}
.btn-device-middle {
    border-radius: 0 !important;
}
.btn-device-end {
    border-radius: 0 5px 5px 0 !important;
}

/*-- Start Responsive --*/
@media screen and (max-width: 1700px) {
    #bot-container #chatButton.middle-left {
        left: calc(50% - 140px) !important;
        padding: 10px;
    }
 }
@media screen and (max-width: 1367px) {
    
    .botavox-search-input {
        width: 320px;
    }

    .botavox-front-page .header {
        padding: 15px;
    }
    .botavox-front-page .botavox-brand {
        width: 200px;
    }
    .botavox-front-page .header .button {
        padding: 10px 15px;
    }
}
@media screen and (max-width: 1366px) {
    #bot-container #chatButton.middle-left {
        left: calc(50% - 70px) !important;
        padding: 10px;
    }
 }
@media screen and (max-width: 1200px) {
    .api-content {
        width: 100%;
    }
    .botavox-header .menu-list-content .botavox-nav-menu, .extra-light-gray-bg.open .botavox-nav-menu {
        height: 100%;
    }
    .botavox-search-section {
        width: 410px !important;
    }
}
@media screen and (max-width: 1024px) {
    
    .initial-content .top-content {
        width: 100% !important;
    }
    .botavox-forms {
        width: 100% !important;
    }
    .botavox-search-section .date-picker-section input#date-range {
        width: 155px !important;
    }
    .botavox-search-input {
        width: 110px;
    }
    .botavox-custom-select {
        width: 150px !important;
    }
    /* .extra-light-gray-bg.open .botavox-search-section {
        width: 450px !important;
    } */
    .extra-light-gray-bg.open .botavox-search-input {
        width: 200px;
    }
    .extra-light-gray-bg.open .botavox-search-section .date-picker-section input#date-range {
        width: 250px !important;
    }
    .botavox-search-section {
        width: 300px !important;
    }
    
    /*-- Start Enquiries --*/
    
    .botavox-content-wrap {
        padding: 20px 20px 20px 263px;
    }
    .botavox-content-wrap h4 {
        font-size: 18px;
    }
    .botavox-header {
        width: 245px;
    }
    .botavox-custom-select-dropdown-list.botavox-account-toggle {
        right: -247px;
    }

    /*-- Start Your Contact --*/
    .botavox-your-contact {
        width: auto !important;
    }
    .botavox-account-settings-content {
        width: 100% !important;
    }

    .log-header {
        height: auto;
        padding: 15px;
    }
}
@media screen and (max-width: 992px) {
    
    .botavox-service-content .body-section .option-details.mobile-option {
        display: block !important;
        margin-bottom: 15px;
        margin-top: 15px;
    }
    .botavox-service-content .option-details:before {
        content: "Options";
        font-size: 16px;
        font-weight: bold;
        top: 0;
        left: 12px;
        position: absolute;
        width: 120px;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .botavox-service-content .option-details {
        display: flex;
        position: relative;
        padding-left: 130px !important;
        margin-top: 10px;
    }
  
    .botavox-service-content .content-details.row .option-details {
        display: none !important;
    }
    .botavox-service-content .body-section .option-details {
        display: block !important;
    }
    .botavox-service-content .service-questions:before {
        content: "Services";
        font-size: 16px;
        font-weight: bold;
        top: 0;
        left: 0;
        position: absolute;
        width: 120px;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .botavox-service-content .service-questions {
        position: relative;
        margin-top: 10px;
        width: -webkit-fill-available;
    }
    .botavox-service-content .details {
        display: block;
        position: relative;
        padding-left: 110px !important;
    }
    .botavox-service-content .botavox-table-dropdown {
        margin-top: 15px;
        position: relative;
    }
    .botavox-service-content .body-section .service-qun-ans {
        padding-left: 16px !important;
    }
    .botavox-service-content .botavox-table-dropdown .option-dropdown {
        margin-left: 110px;
    }
    .botavox-service-content .botavox-table-dropdown:before {
        content: "Options";
        font-size: 16px;
        font-weight: bold;
        top: 0;
        left: 0;
        position: absolute;
        width: 120px;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .botavox-table-content thead tr th:nth-child(4n) {
        width: 100% !important;
        min-width: 160px;
    }
    .botavox-table-content {
        overflow-x: auto;
    }  
    .botavox-custom-select {
        width: 160px;
    }
    .botavox-search-input {
        width: auto;
        margin-left: auto;
    } 
    .botavox-search-section {
        width: 100% !important;
    }
    .botavox-table-content.settings-table thead tr th:nth-child(3n) {
        width: 150px;
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .mobile-header-option {
        border: none;
        padding-right: 0px !important;
    }
    .botavox-custom-select-option.mobile-header-option::before {
        background: none;
    }
    .botavox-header {
        position: unset;
        overflow-y: scroll;
    }
    .botavox-access-page .footer {
        padding: 0;
    }
    .botavox-access-page .footer .container {
        flex-direction: column-reverse;
    }
    .botavox-access-page .footer .container p {
        margin-bottom: 0;
        text-align:center;
    }
    .botavox-access-page .footer a {
        margin-bottom: 7px;
    }
    .botavox-access-page .footer .container p span {
        display:block;
    }
    .customer-counter {
        padding: 10px 10px;
    }
    .access-content .customer-counter h3 .queue_counter {
        padding: 0 5px;
    }
    .access-content .form-group {
        margin: 0 0 10px 0;
    }

    .botavox-switch .form-check-label {
        margin-right: 50px;
    }
    .drag-option {
        width: 110px;
    }
       
    .table-lists {
        flex-wrap: wrap;

    }
    .table-lists h6 {
        width: 100%;
    }
    .table-lists .total-items{
        margin-top: 15px;
        margin-left: unset !important;
    }
    .initial-content .collection-form .remove-form {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .botavox-modal .modal-header .btn-close {
        right: -8px;
        top: -8px;
    }
    .botavox-front-page .footer .footer-content p {
        margin: 8px 0 0;
        text-align: center;
    }
    .access-content h1 {
        font-size: 27px;
        margin: 15px 0 0px;
    }
    .botavox-search-input::before {
        background: none !important;
    }
    .daterangepicker {
        z-index: 0;
    }
    .botavox-search-section .date-picker-section input#date-range,.botavox-search-section .date-picker-section {
        width: 100% !important;
    }
    .log-header .botavox-logo {
        width: 125px;
    }
    
    .access-content h3 {
        font-size: 14px;
        display: inline-flex;
    }
    .access-content h3 img {
        width: 15px;
    }
    .botavox-access-page .header {
        padding:15px;
    }
    div#success-message {
        width: auto !important;
    }
    .botavox-table-top i, .botavox-table-top img {
        display: none;
    }
    .botavox-search-input input {
        cursor: pointer;
    }
    .botavox-forms{
        width: 100% !important;
    }
    .botavox-search-section {
        position: relative;
    }
    .search-full {
        position: absolute !important;
        width: 100% !important;
    }
    .search-full-data {
        width: 100% !important;
    }
    .botavox-search-input {
        width:min-content;
        margin-left:auto;
    }
    .botavox-form .form-section {
        width: 100% !important;
    }
    .log-header {
        padding: 15px !important;
    }
    .botavox-mobile-header .menu-btn i {
        font-size:25px;
    }
    .botavox-brand.m-auto {
        width:130px;
    }
    .botavox-brand.m-auto img{
        width:100%;
        height:100%;
        object-fit: contain;
    } 
    .botavox-table-content {
        overflow-x: unset;
    }
    .botavox-table-content table td:before {
        content: attr(data-label);
        font-size: 14px;
        font-weight: bold;
        top: 15px;
        left: 15px;
        position: absolute;
        width: 120px;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .botavox-table-content table td {
        display: block;
        position: relative;
        padding-left: 110px !important;
    }
    .botavox-table-content thead {
        display: none;
    }
    .botavox-table-content table tbody tr .botavox-check {
        padding-left: 20px !important;
        width: 100% !important;
    }
    .botavox-header {
        width: 100%;
        top: 60px;
    }
    .botavox-custom-select-dropdown-list.botavox-account-toggle {
        right: 16px;
        top: 66px;
        width: 320px;
    }
    .botavox-content-wrap {
        padding: 85px 15px 0px;
    }

    .botavox-header .botavox-nav-menu .nav-link.active {
        border-radius: 0;
    }
    .botavox-brand img {
        width: 140px !important;
    }
    .botavox-custom-select {
        width: 200px !important;
        margin-left: auto;
    }
    .botavox-front-page .footer .footer-content p/* ,.botavox-access-page .footer .footer-content p */ {
        text-align: center;
    }
    .botavox-front-page .footer .footer-content/* ,.botavox-access-page  .footer .footer-content */{
        flex-direction: column-reverse;
    }
    .botavox-front-page .footer .footer-content a/* ,.botavox-access-page .footer .footer-content a */  {
        margin-left: unset;
        padding-bottom: 5px;
    }
    .botavox-front-page .botavox-brand {
        width: 120px;
    }
    /*-- Privacy Policy --*/
    .privacy-content h1 {
        font-size: 27px;
        margin-top: 0;
    }
    .privacy-content {
        padding: 30px 0 0;
    }
    .privacy-content p {
        font-size: 18px;
        line-height: 28px;
    }
    .privacy-content h2 {
        margin-top: 30px;
    }
    .width-100 {
        width: 100%;
    }
}
@media screen and (max-width: 380px) {
    .botavox-brand img {
        width: 100px !important;
    }
}
@media screen and (max-width: 375px) {
    .botavox-access-page .footer {
        padding: 15px 0;
    }
    .footer p {
        font-size: 14px;
        padding-top: 5px;
    }
    .botavox-access-page .footer a {
        font-size: 14px;
    }
    .access-content h3 {
        margin-left: 4px;
    }
    .botavox-table-top h6 {
        font-size: 14px;
    }
    .botavox-content-wrap button {
        font-size: 14px;
    }
    .botavox-search-input {
        width: 250px;
    }
    .botavox-custom-select {
        width: 165px !important;
    }
    .botavox-front-page .botavox-brand {
        width: 94px;
    }
    .botavox-front-page .header .button {
        padding: 10px;
    }
    .access-content h3 {
        font-size: 12px;
        line-height: 22px;
    }
    .hourglass .top, .hourglass .bottom {
        height: 10px;
        width: 10px;
    }
    .hourglass .top::before, .hourglass .bottom::before {
        height: 10px;
        width: 10px;
    }
}
@media screen and (max-width: 360px) {
    .botavox-search-input {
        width: 235px;
    }
    .botavox-custom-select {
        width: 150px !important;
    }
    .hourglass .top, .hourglass .bottom {
        height: 8px;
        width: 8px;
    }
    .hourglass .top::before, .hourglass .bottom::before {
        height: 8px;
        width: 8px;
    }
    .access-content h3 {
        font-size: 10px;
        line-height: 20px;
    }
}

@media screen and (max-width: 1700px) {
    .botavox-home-page .carousel-control-next, .carousel-control-prev {
        width: 15%;
    }
}
@media screen and (max-width: 1367px) {
    .botavox-home-page .banner {
        height: 620px;
    }
    .botavox-home-page .banner-content .headline {
        font-size: 52px;
        letter-spacing: normal;
    }
    .botavox-home-page .banner-content .subtext {
        font-size: 70px;
        line-height: 85px;
    }
}
@media screen and (max-width: 1200px) {
    .botavox-pricing {
        padding: 80px 0 70px;
    }
    .botavox-home-page .banner-content .headline {
        font-size: 40px;
    }
    .botavox-home-page .banner-content .subtext {
        font-size: 45px;
        line-height: 60px;
    }
    .botavox-home-page .banner {
        height: 550px;
    }
    .botavox-home-page .video-section {
        width: 980px;
        margin: -80px auto 0;
    }
    .botavox-home-page .cta-content h3 {
        font-size: 40px;
        line-height: 56px;
        letter-spacing: unset;
    }
    .botavox-home-page .cta-content .right-sec {
        padding-left: 30px;
    }
    .botavox-home-page .cta-content {
        margin-bottom: 70px;
        padding: 50px 0;
    }
    .botavox-home-page .features-content h3, .botavox-home-page .inquiries-content h3, .testimonial-sec h3 {
        font-size: 40px;
        letter-spacing: 0;
        padding-bottom: 30px;
    }
    .botavox-home-page .inquiries-content, .botavox-home-page .features-content {
        margin-bottom: 70px;
    }
    .botavox-home-page .testimonial-sec {
        padding: 50px 0 60px;
    }
    .botavox-home-page .carousel-control-next, .carousel-control-prev {
        width: 4%;
    }
}
@media screen and (max-width: 1024px) {
    .botavox-home-page .navbar {
        padding: 15px !important;
    }
    .botavox-home-page .container.banner-content {
        max-width: 960px;
    }
    .botavox-home-page .video-section {
        width: 800px;
    }
    .botavox-home-page .carousel-control-next, .carousel-control-prev {
        width: 5%;
    }
}
@media screen and (max-width: 992px) {
    .botavox-home-page .banner {
        height: 600px;
    }
    .botavox-home-page .video-section {
        width: 600px;
    }
    .botavox-home-page .cta-content .right-sec {
        width: 100% !important;
        padding-left: 0;
    }
    .botavox-home-page .cta-content h3 {
        font-size: 32px;
        line-height: 42px;
        padding-bottom: 20px;
        width: 100% !important;
    }
    .botavox-home-page .features-content h3, .botavox-home-page .inquiries-content h3, .testimonial-sec h3 {
        font-size: 34px;
    }
    .botavox-home-page .features-content .row .content h5 {
        font-size: 20px;
        line-height: 24px;
    }
    .botavox-home-page .testimonial-card p {
        font-size: 16px;
        line-height: 26px;
    }
}
@media screen and (max-width: 767px) {
    .botavox-pricing {
        padding: 60px 0 50px;
    }
    #desktop-access {
        display:none;
    }
    #mobile-access {
        display:block;
    }
    .botavox-home-page .footer {
        padding: 10px 16px;
    }
    .botavox-home-page .footer .container p {
        margin-bottom: 0;
        text-align:center;
    }
    .botavox-home-page .footer a {
        margin-bottom: 5px;
    }
    .botavox-home-page .footer .container p span {
        display:block;
    }
    .botavox-home-page .navbar {
        padding: 10px 0 !important;
    }
    .botavox-home-page .navbar .navbar-brand img {
        width: 130px;
    }
    .botavox-home-page .navbar .nav-buttons .button.login {
        padding: 7px 8px;
        font-size: 14px;
        margin-right: 0;
    }
    .botavox-home-page .navbar .nav-buttons .button.demo {
        padding: 7px 8px;
        font-size: 14px;
        margin-left: 8px;
    }
    .botavox-home-page .navbar .nav-buttons .button.pricing-btn {
        padding: 7px 8px;
        margin-left: 8px;
        font-size: 14px;
    }
    .botavox-home-page .banner-content .headline {
        font-size: 22px;
    }
    .botavox-home-page .container.banner-content.details {
        padding-top: 120px;
    }
    .botavox-home-page .banner-content .subtext {
        font-size: 25px;
        line-height: 35px;
    }
    .botavox-home-page .banner-content .demo.highlight-btn {
        padding: 15px;
        margin: 20px auto 0;
        font-size: 18px;
    }
    .botavox-home-page .banner {
        height: 430px;
    }
    .botavox-home-page .video-section {
        width: 360px;
        margin: -50px auto 0;
    }
    .botavox-home-page .cta-content h3 {
        font-size: 24px;
        line-height: 34px;
        padding-bottom: 15px;
    }
    .botavox-home-page .cta-content .right-sec h5 {
        font-size: 20px;
    }
    .botavox-home-page .cta-content .right-sec p {
        font-size: 16px;
        line-height: 26px;
    }
    .botavox-home-page .cta-content .right-sec .button.demo {
        font-size: 18px;
        margin-top: 20px;
        padding: 15px 40px;
    }
    .botavox-home-page .cta-content {
        margin-bottom: 50px;
    }
    .botavox-home-page .features-content h3, .botavox-home-page .inquiries-content h3, .testimonial-sec h3 {
        font-size: 24px;
        line-height: 34px;
        padding-bottom: 20px;
    }
    .botavox-home-page .inquiries-content, .botavox-home-page .features-content {
        margin-bottom: 50px;
    }
    .botavox-home-page .features-content .row .content h5 {
        margin-bottom: 5px;
    }
    .botavox-home-page .features-content .row .content p {
        font-size: 16px;
        line-height: 26px;
    }
    .botavox-home-page .testimonial-sec {
        padding: 30px 0 40px;
    }
    /* .botavox-home-page .carousel-control-next, .carousel-control-prev {
        display: none;
    } */
    .botavox-home-page .footer .container {
        flex-direction: column-reverse;
    }

    /*-- New --*/
    .botavox-home-page .inquiries-content .inquiries-details .row {
        display: none;
    }
    .botavox-home-page .inquiries-content .inquiries-details .mobile-design {
        display: block;
    }
    .botavox-home-page .inquiries-content .inquiries-details .mobile-design .item-details {
        border: 1px solid #eee;
        transition: 0.3s;
        box-shadow: 0 0 8px rgba(38, 43, 48, 0.30);
        height: 100%;
    }
    .botavox-home-page  .carousel-indicators {
        bottom: -70px;
    }
    .botavox-home-page  .botavox-home-page .inquiries-content {
        margin-bottom: 80px;
    }
    .botavox-home-page .inquiries-details {
        width: 250px;
        margin: auto;
    }
    .botavox-home-page .inquiries-content .carousel-control-next, .inquiries-content .carousel-control-prev {
        width: 15%;
        z-index: 1;
    }
    .botavox-home-page .inquiries-content .carousel-control-prev .carousel-control-prev-icon {
        z-index: 1;
        left: -50px;
        position: absolute;
    }
    .botavox-home-page .inquiries-content .carousel-control-next .carousel-control-next-icon {
        z-index: 1;
        right: -50px;
        position: absolute;
    }
}
@media screen and (max-width: 420px) {
    .botavox-home-page .navbar .navbar-brand img {
        width: 110px;
    }
    .botavox-home-page .navbar .nav-buttons .button.login, .botavox-home-page .navbar .nav-buttons .button.demo {
        font-size: 14px;
    }
}
@media screen and (max-width: 375px) {
    /* .botavox-home-page .navbar .navbar-brand img {
        width: 113px;
    }
    .botavox-home-page .navbar .nav-buttons .button.login {
        padding: 10px;
        font-size: 16px;
        margin-right: 5px;
    }
    .botavox-home-page .navbar .nav-buttons .button.demo {
        padding: 10px;
        font-size: 14px;
    } */
    .botavox-home-page .footer {
        padding: 15px 0;
    }
    .footer p {
        font-size: 14px;
        padding-top: 5px;
    }
    .botavox-home-page .footer a {
        font-size: 14px;
    }
}
@media screen and (max-width: 360px) {
    .botavox-home-page .navbar .navbar-brand {
        margin-right: 0;
    }
    .botavox-home-page .navbar .navbar-brand img {
        width: 100px;
    }
    .botavox-home-page .navbar .nav-buttons .button.login, .botavox-home-page .navbar .nav-buttons .button.demo {
        padding: 7px 5px;
        font-size: 14px;
    }
}
@media screen and (max-width: 320px) {
    .botavox-home-page .inquiries-content .carousel-control-next .carousel-control-next-icon {
        right: -30px;
    }
    .botavox-home-page .inquiries-content .carousel-control-next, .inquiries-content .carousel-control-prev {
        width: 5%;
    }
    .botavox-home-page .video-section {
        width: 280px;
    }
    .botavox-home-page .inquiries-content .carousel-control-prev .carousel-control-prev-icon {
        left: -30px;
    }
}

/* Botavox Pricing Responsive */
@media (max-width: 991px) {
    .botavox-pricing .heading {
        font-size: 34px;
        padding-bottom: 40px;
    }
    .botavox-pricing .growth-plan {
        transform: scale(1.05);
    }
}
@media (max-width: 767px) {
    .botavox-pricing .heading {
        font-size: 24px;
        padding-bottom: 35px;
    }
    .botavox-pricing .price { 
        font-size: 34px; 
    }
    .botavox-pricing .growth-plan {
        transform: scale(1);
    }
    .botavox-pricing .highlight-text {
        font-size: 16px;
    }
    .botavox-pricing .highlight-text .lead-wrap {
        font-size: 60px;
    }
}