/**
* Template Name: GotchaAdmin
* Updated: Aug 30 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
@charset "utf-8";

/*Font start*/

@font-face {
    font-family: 'Fairwater Script';
    src: url('../fonts/FairwaterScript-Bold.woff2') format('woff2'),
        url('../fonts/FairwaterScript-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "GT Walsheim Pro";
  src: local("GT Walsheim Pro Condensed Medium"),
    local("GT-Walsheim-Pro-Condensed-Medium"),
    url("../fonts/GTWalsheimPro-CondensedMedium.woff2") format("woff2"),
    url("../fonts/GTWalsheimPro-CondensedMedium.woff") format("woff"),
    url("../fonts/GTWalsheimPro-CondensedMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "GT Walsheim Pro";
  src: local("GT Walsheim Pro Condensed Bold"),
    local("GT-Walsheim-Pro-Condensed-Bold"),
    url("../fonts/GTWalsheimPro-CondensedBold.woff2") format("woff2"),
    url("../fonts/GTWalsheimPro-CondensedBold.woff") format("woff"),
    url("../fonts/GTWalsheimPro-CondensedBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjakartasans-extrabold-webfont.woff2") format("woff2"),
    url("../fonts/plusjakartasans-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjakartasans-bold-webfont.woff2") format("woff2"),
    url("../fonts/plusjakartasans-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjakartasans-semibold-webfont.woff2") format("woff2"),
    url("../fonts/plusjakartasans-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjakartasans-medium-webfont.woff2") format("woff2"),
    url("../fonts/plusjakartasans-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjakartasans-regular-webfont.woff2") format("woff2"),
    url("../fonts/plusjakartasans-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjakartasans-light-webfont.woff2") format("woff2"),
    url("../fonts/plusjakartasans-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plusjakartasans-extralight-webfont.woff2") format("woff2"),
    url("../fonts/plusjakartasans-extralight-webfont.woff") format("woff");
  /*font-weight: normal;*/
  font-weight: 200;
  font-style: normal;
}

/*Font End*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans";
  background: #f8f9fa;
  color: #707070;
}

a {
  color: #234495;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans";
}
.card-header-title {
  font-family: "Plus Jakarta Sans";
}
p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #707070;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 65px;
  padding: 30px 30px 25px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
  border: solid 1px #eaecef;
  background-color: #fff;
}

.card-header-title {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
}
.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
  margin-top: 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}
.card-body .tab-content {
  margin-bottom: 30px;
}
.faq .card-body {
  margin-top: 0;
}
h5.card-title {
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: -0.22px;
  text-align: left;
  color: #153073;
}
.accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
  color: #153073;
}
.faq p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}
.faq .card {
  height: 100%;
}
.faq .btn {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.04px;
  text-align: center;
  color: #3670f3;
  border-radius: 6px;
  border: solid 2px #3670f3;
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 148px;
  height: 48px;
}
.accordion-button::after {
  background: url(../img/Icon%20ionic-ios-arrow-down.png);
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.accordion-button:not(.collapsed)::after {
  /*  background: url(../img/Icon%20ionic-ios-arrow-up.png);*/
  background: url(../img/Icon%20ionic-ios-arrow-down.png);
}
#faq-group-1 .accordion-item {
  display: none;
}
#faq-group-2 .accordion-item {
  display: none;
}
:not(.btn-check) + .btn:active:focus-visible {
  border-color: #3670f3;
  color: #3670f3;
}
.brand-kit .card-body .activity {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.brand-kit .card-body .activity:last-child {
  border-bottom: 0;
}
.brand-kit .card-body .activity h5.card-title {
  margin-top: 0;
  padding-top: 0;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
}

.activity ul {
  padding: 0;
  margin: 0;
}
.activity ul li {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  background: url(../img/Group%20158361.png);
  background-position: left top 5px;
  background-repeat: no-repeat;
  padding-left: 25px;
  list-style: none;
  margin-bottom: 20px;
}
.donts ul li {
  background: url(../img/Group%2015836.png);
  background-position: left top 5px;
  background-repeat: no-repeat;
}
.activity img {
  max-width: 242px;
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 15px 15px 0px;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #153073;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Plus Jakarta Sans";
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 54px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Plus Jakarta Sans";
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  background-color: #fff;
  padding-left: 20px;
  /*  position: relative;*/
  /* Toggle Sidebar Button */
  /* Search Bar */
  z-index: 99;
}
.header:after {
  content: "";
  width: 300px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #153073;
  z-index: -1;
  border-bottom: 1px solid #364482;
}
.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  color: #012970;
  border: 0px solid rgba(1, 41, 112, 0.2);
  padding: 7px 8px 7px 38px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-right: -30px;
  background: none;
  z-index: 9;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav > ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: 0.11px;
  text-align: center;
  color: #153073;  
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.24px;
  text-align: center;
  color: #6c757d;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f8faff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 290px;
  padding-bottom: 0;
  top: 8px !important;
}
.header-nav .profile .dropdown-header .profile-image-main{
  max-width: 73px;
  height: auto;
  margin:  0 auto 15px auto;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: 0.11px;
  text-align: center;
  color: #153073;
}

.header-nav .profile .dropdown-header span {
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.24px;
  text-align: center;
  color: #6c757d
}

.header-nav .profile .dropdown-item {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.16px;
  text-align: left;
  color: #102456;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.header-nav .profile li:last-child .dropdown-item{
  background-color: #f8faff;
}
.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}
.header-nav li.dropdown ul.dropdown-menu {
    background-color: #fff;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f8faff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 70px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 0px 0 20px 0px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  /*  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);*/
  background-color: #153073;
}
.quick-access,
.selling-gotcha {
  padding: 20px 0 20px  20px;
}
.quick-access{
    border-bottom:1px solid #364482;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 0px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}
@media (min-width: 992px) {
  ul.nav-content {
    position: fixed;
    left: 300px;
    width: 270px;
    z-index: 999;
    background: #2751bc;
    top: 60px;
    height: calc(100% - 60px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
  }
}
@media (min-width: 1200px) {
  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
.only-active-projects .active-products-logos {
    max-width: 164px;
}
}

@media (min-width: 1200px) {
  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.1px;
  text-align: left;
  color: #a7c0ff;
  margin: 10px 0;
  padding-right: 20px;
}
.nav-content li {
  padding-right: 0;
}
.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  font-family: "Plus Jakarta Sans";
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  transition: 0.3 all ease;
  background: transparent;
  padding: 15px 15px;
  border-radius: 50px;
}
.nav-item a img , .nav-item a svg{
  margin-right: 10px;
}
.nav-item a svg g{
   opacity: 0.8 !important;
}
.nav-item a svg path{
  opacity: 0.8 !important;
 
}
.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4154f1;
}
.sidebar-nav .nav-link.active svg g, .sidebar-nav .nav-link:hover svg g{
   opacity: 1 !important;
}
.sidebar-nav .nav-link.active svg path, .sidebar-nav .nav-link:hover svg path{
   opacity: 1 !important;
}

.sidebar-nav .nav-link.collapsed {
  color: #fff;
  /*  background: #364482;*/
}

.sidebar-nav .nav-link.collapsed i {
  color: #fff;
}

.sidebar-nav .active .nav-link {
  color: #fff;
  background: #4178ff;
}
.sidebar-nav .nav-link:hover {
  color: #fff;
  background: #364482;
}

.sidebar-nav .nav-link:hover i {
  color: #fff;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 30px 15px;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  background: #4178ff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: 0.1px;
  text-align: left;
  color: #fff;
  transition: 0.3;
  padding: 15px 0 15px 30px;
  transition: 0.3s;
}
.sidebar-nav .nav-content a:hover, .sidebar-nav .nav-content .active a {
  color: #fff !important;
  background: #364482;
}
.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}
.sidebar-nav .nav-content a svg path, .sidebar-nav .nav-content a svg g{
  opacity: 1 !important;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item + .post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.icon-box {
  border-radius: 6px;
  box-shadow: 2px 5px 10px 0 rgba(9, 21, 52, 0.1);
  background-color: #fff;
  height: 100%;
  padding: 30px;
}
h1 {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.15px;
  text-align: left;
  color: #153073;
}
h5 {
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: -0.22px;
  text-align: left;
  color: #153073;
}
.widget-description {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  border-bottom: solid 1px #eaecef;
}
.vertical-nav-menu li a.mm-active {
  border-radius: 50px;
  background-color: #4178ff !important;
  color: #fff !important;
}
.widget-description h5 {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
}
.widget-description p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d;
}
.widget-description a {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d;
  display: block;

  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  text-decoration: underline;
}
a.view-all {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
}
.icon-wrap {
  margin-bottom: 30px;
}

.bg-red {
  background: #e1294b;
}

.verticalycentered .btn-close {
  background: transparent !important;
  padding: 0 !important;
  width: 40px;
  z-index: 999;
  opacity: 1 !important;
  position: absolute;
  right: 25px;
  top: 25px;
}
.verticalycentered .modal-header {
  border: 0;
}

/*form styles*/

/*inputs*/
.multi-step-form input,
.multi-step-form textarea,
.multi-step-form select {
  padding: 15px;
  border: 1px solid #cdd5df;
  border-radius: 4px;
  margin-bottom: 25px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: left;
  color: #8894a6;
}

.multi-step-form input:focus,
.multi-step-form textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #2098ce;
  outline-width: 0;
  transition: All 0.5s ease-in;
  -webkit-transition: All 0.5s ease-in;
  -moz-transition: All 0.5s ease-in;
  -o-transition: All 0.5s ease-in;
}

.form-group label {
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 8px;
  color: #20305b;
  font-family: "Plus Jakarta Sans";
}

.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #007bff;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer; /* Added cursor pointer */
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #007bff;
  z-index: -1;
}

#multi-step-form {
  overflow-x: hidden;
}
.chechk-box-wrap {
  flex-flow: row wrap;
  gap: 15px;
  margin: 30px 0;
}
.chechk-box-wrap .form-group {
  display: block;
  margin-bottom: 15px;
  width: 23.3%;
  box-sizing: border-box;
}

.chechk-box-wrap .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.chechk-box-wrap .form-group label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

.chechk-box-wrap .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #bbc1c7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.chechk-box-wrap .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 8px;
  width: 5px;
  height: 13px;
  border: solid #599eff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.chechk-box-wrap .form-group input:checked + label:before {
  border: 2px solid #599eff;
}
.btn-primary {
  border-radius: 6px !important;
  background-color: #3670f3 !important;
  height: 48px;
  padding: 0 22px;
}
.prev-step, .prev-step2, .prev-step3,  .prev-step4 {
  background: transparent !important;
  border: 2px solid #3670f3;
  color: #3670f3;
  height: 48px;
}
.prev-step:hover, .prev-step2:hover, .prev-step3:hover, .prev-step4:hover {
  background: #3670f3 !important;
  color: !important;
  border-color: #3670f3;
}

.button-wrap {
  width: 100%;
}
.step-2 .button-wrap,
.step-3 .button-wrap, .step-4 .button-wrap {
  justify-content: flex-end;
}

.step2:nth-of-type(2) .button-wrap, .step2:nth-of-type(3) .button-wrap, .step3:nth-of-type(2) .button-wrap, .step3:nth-of-type(3) .button-wrap, .step4:nth-of-type(2) .button-wrap, .step4:nth-of-type(3) .button-wrap {
  justify-content: flex-end;
}



.step-2 .button-wrap button:nth-of-type(2),
.step-3 .button-wrap button:nth-of-type(2), .step-4 .button-wrap button:nth-of-type(2)  {
  margin-left: 15px;
}

.step2:nth-of-type(2) .button-wrap button:nth-of-type(2), .step2:nth-of-type(3) .button-wrap button:nth-of-type(2), .step3:nth-of-type(2) .button-wrap button:nth-of-type(2), .step3:nth-of-type(3) .button-wrap button:nth-of-type(2), .step4:nth-of-type(2) .button-wrap button:nth-of-type(2), .step4:nth-of-type(3) .button-wrap button:nth-of-type(2) {
  margin-left: 15px;
}




.thanks-wrap img {
  margin: 30px auto;
  display: block;
}

.verticalycentered .modal-content {
  padding: 0 20px 30px 20px;
}
.thanks-content h6 {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: -0.24px;
  text-align: center;
  color: #153073;
}
.thanks-content p {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #20305b;
}
.thanks-content .btn {
  margin: 0 auto;
  line-height: 48px;
  display: block;
  width: fit-content;
}

.time-check-wrap {
  flex-flow: row wrap;
  gap: 15px;
  margin: 30px 0;
}
.time-check-wrap .form-group {
  display: block;
  width: 30.3%;
  box-sizing: border-box;
}
.time-check-wrap .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.time-check-wrap .form-group label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  color: #445072;
  padding: 10px 12px;
  border-radius: 4px;
  border: solid 1px #cdd5df;
  background-color: #fff;
}
.time-check-wrap .form-group input:checked + label {
  color: #3670f3;
  border-color: #3670f3;
}
.calender-box label {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
  margin-bottom: 20px;
  width: 100%;
}
.verticalycentered .modal-body > h5 {
  margin-bottom: 30px;
}

/*Calender Css Start*/

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
    border-top: 1px solid #ddd !important;
  }*/
}
.datepicker-inline {
  width: 220px;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.datepicker > div {
  display: none;
}
.datepicker.days div.datepicker-days {
  display: block;
}
.datepicker.months div.datepicker-months {
  display: block;
}
.datepicker.years div.datepicker-years {
  display: block;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 40px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: none;

  font-size: 13px;
  font-weight: 700;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #3670f3;

  color: #fff !important;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #3670f3;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #3670f3;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #3670f3;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666 \9;
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #3670f3;

  color: #fff !important;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.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: #3670f3;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #3670f3;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}
.datepicker th.datepicker-switch {
  width: 145px;
}
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #20305b;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 20px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  color: #333333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
}
.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
  padding: 4px 5px;
}

.datepicker .dow {
  border-bottom: 1px solid #e7e7e7;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: normal;
  text-align: center;
  color: #20305b;
}

.datepicker-months .prev,
.datapicker-months .next,
.datepicker-years .prev,
.datepicker-years .next {
  width: 58px;
}

.datepicker-days tbody td:nth-child(6),
.datepicker-days tbody td:nth-child(7) {
  /*  color: #D44;*/
}



/* app */
.charset {
  box-shadow: 1px 1px 10px #000;
}

/*.app {
  width: 100%; 
  height: 100%;
  margin: 00px auto;
}*/
.app:after {
  content: "";
  display: table;
  clear: both;
}
.app__side {
  background: #333;
  width: 35%;
  height: 100%;
  padding: 40px;
  float: left;

  color: #3670f3;
}
.app__main {
  width: 332px;
  height: 336.1px;
  object-fit: contain;
  border-radius: 4px;
  border: solid 1px #cdd5df;
  background-color: #fff;
  /*  float: left;*/
  padding: 0px;
}

/* b-calendar */
.calendar .datepicker {
  width: 100%;
}
.calendar .datepicker table {
  width: 100%;
}

/*Caleder Css End*/

.brand-kit-and-guidelines2 .card-header .card-header-title {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.15px;
  text-align: left;
  color: #153073;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-kit-and-guidelines2 h5.card-title {
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
}
.brand-kit-and-guidelines2 .card-body ul {
  margin: 0 0 30px 15px;
  padding: 0;
}
.brand-kit-and-guidelines2 .card-body ul li {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  margin-bottom: 10px;
}
.brand-kit-and-guidelines2 .card-body p {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  margin-bottom: 30px;
}
.brand-kit-and-guidelines2 .right-box .cus-logo-wrap {
  width: 100%;
  border-radius: 8px;
  border: solid 1px #d7dee6;
  background-color: #fff;
  padding: 30px;
}
.brand-kit-and-guidelines2 .right-box .cus-logo-wrap img {
  display: block;
  margin: 0 auto;
}
.brand-kit-and-guidelines2 {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.download-logo-wrap {
  flex-flow: row wrap;
}
.download-title h5 {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
  padding-bottom: 0;
  margin-bottom: 0;
}
.download-logo-wrap {
  margin-top: 0px;
}
.color-variations .card {
  height: auto;
}

.brand-kit-and-guidelines2 .card-header .card-header-title span {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
}

/*.Products-and-Services .download-logo-box {
    width: fit-content;
}*/

.Products-and-Service2 .download-title h5 {
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: center;
  color: #153073;
}
.Products-and-Service2 .download-logo img {
  max-width: 100px;
}
.Products-and-Service3 .download-logo img {
  max-width: 84px;
}

.download-logo-box .download-title {
  margin-top: 20px;
}

.brand-kit-and-guidelines2 .left-box .cus-logo-wrap .download-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  bottom: 10px;
  right: 10px;
  z-index: -111;
  transition: a33 3s ease;
  -moz-transition: a33 3s ease;
  -webkit-transition: a33 3s ease;
}
.brand-kit-and-guidelines2 .left-box .cus-logo-wrap {
  position: relative;
  width: fit-content;
  transition: a33 3s ease;
  -moz-transition: a33 3s ease;
  -webkit-transition: a33 3s ease;
}
.brand-kit-and-guidelines2 .left-box .cus-logo-wrap:hover .download-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 10px;
  z-index: 9;
  opacity: 1;
  background-color: #4178ff;
  color: #fff;
}

.download-logo {
  position: relative;
}
.download-logo .download-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  bottom: 10px;
  right: 10px;
  z-index: -111;
  transition: a33 3s ease;
  -moz-transition: a33 3s ease;
  -webkit-transition: a33 3s ease;
}
.download-logo:hover .download-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 10px;
  z-index: 9;
  opacity: 1;
  background-color: #4178ff;
  color: #fff;
}
.Products-and-Services .download-logo {
  width: fit-content;
}

.color-empty {
  width: 100%;
  height: 85px;
  object-fit: contain;
  position: relative;
}
.color-empty span {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.color-box {
  padding: 0;
  width: 103px;
  height: 111px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
  overflow: hidden;
  /*    margin-right: 15px;*/
}
.text_colors_row .color-box {
  width: 15%;
  height: 143px;
}
.text_colors_row .color-empty {
  height: 115px;
}

.color-plate-wrap .card-body {
  margin-top: 30px;
}
.color-plate-wrap h5.card-title {
  margin-top: 0;
  padding-top: 0;
}
.text_colors_row,
.royal_dark_blue {
  flex-flow: row wrap;
  gap: 20px;
}
.color-plate-wrap .title {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #647893;
  font-family: "Plus Jakarta Sans";
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typeface-contect h6 {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
  font-family: "Plus Jakarta Sans";
}
.typeface-contect p {
  font-size: 17px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  font-family: "Plus Jakarta Sans";
}
.typeface-contect .content p:nth-of-type(1) {
  font-family: "Plus Jakarta Sans";
  font-size: 27px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: 0.27px;
  text-align: left;
  text-transform: uppercase;
  color: #152657;
}
.typeface-contect .content p {
  margin-bottom: 0;
}
.typeface-contect .content p:nth-of-type(2) {
  font-family: "Plus Jakarta Sans";
  font-size: 27px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: 0.27px;
  text-align: left;
  color: #152657;
}
.typeface-contect .content p:nth-of-type(3) {
  font-family: "Plus Jakarta Sans";
  font-size: 27px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: 0.27px;
  text-align: left;
  color: #152657;
}
.typeface-contect h1 {
  font-family: "Plus Jakarta Sans";
  font-size: 90px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
}
.typeface-contect {
  border-radius: 8px;
  border: solid 1px #d7dee6;
  background-color: #fff;
  padding: 40px;
  gap: 20px;
}
.typeface-contect-bottom {
  border-radius: 8px;
  border: solid 1px #d7dee6;
  background-color: #fff;
  padding: 40px;
}
.typeface-right {
  flex-flow: column;
  display: flex;
  gap: 20px;
}
.typeface-contect-bottom h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 58px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.95;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
  margin-bottom: 20px;
}
.table {
  vertical-align: middle;
}
.table:last-child {
  margin-bottom: 0;
}
.table h1,
.table h2,
.table h3,
.table h4,
.table h5,
.table p {
  padding: 0 !important;
  margin: 0 !important;
  font-family: "Plus Jakarta Sans";
}

.table p {
  font-family: "Plus Jakarta Sans";
  font-size: 17px;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.24;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
}

.table th {
  font-family: "Plus Jakarta Sans";
  background: #e9ecf0;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
  color: #697586;
}
.table td,
.table th {
  padding: 1rem 1rem;
}
.table p span {
  margin-right: 8%;
}

.typescale-table .card-body {
  margin-bottom: 60px;
}
.typescale-table .card-body:last-child {
  margin-bottom: 0;
}
.typescale-table .table{
  margin-top: 30px;
}

.bouutns-box {
  margin-bottom: 30px;
}
.bouutns-box:last-child {
  margin-bottom: 0;
}
.btn-default {
  font-family: "Plus Jakarta Sans";
  object-fit: contain;
  border-radius: 6px;
  background-color: #e0294b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.4;
  letter-spacing: 0.2px;
  text-align: center;
  color: #fff;
}
.bouutns-box p {
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.11;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
  margin-bottom: 12px !important;
}

.large-btn {
  width: 222px;
  height: 65px;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.4;
  letter-spacing: 0.2px;
  text-align: center;
  color: #fff;
}
.medium-btn {
  width: 184px;
  height: 53px;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.5;
  letter-spacing: 0.16px;
  text-align: center;
  color: #fff;
}
.small-btn {
  width: 148px;
  height: 53px;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.5;
  letter-spacing: 0.16px;
  text-align: center;
  color: #fff;
}
.buttons-row {
  margin-top: 30px;
}

.blue-button {
  background: #122147;
  color: #fff;
}
.blue-button:hover {
  background: #122147;
  color: #fff;
}
.red-button {
  background: #e0294b;
  color: #fff;
}
.red-button:hover {
  background: #e0294b;
  color: #fff;
}
.transparent-btn {
  background: transparent;
  border-radius: 6px;
  border: solid 2px #152657;
  color: #122147;
}
.transparent-btn:hover {
  background: transparent;
  border-radius: 6px;
  border: solid 2px #152657;
  color: #122147;
}

.Disabled,
.Disabled:hover {
  background: #d7dee6;
}
.common-colum h5 {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.78;
  letter-spacing: normal;
  text-align: left;
  color: #152657;
}
.buttons-row .row {
  justify-content: space-between;
}
.buttons-row .buttons-row-common:nth-of-type(odd) {
  padding-right: 5%;
}
.buttons-row .buttons-row-common:nth-of-type(even) {
  padding-left: 5%;
}

.form-group {
  position: relative;
}

.form-wrapper .form-group input {
  pointer-events: none;
}


.form-group input {
  font-family: "Plus Jakarta Sans";
  width: 100%;
  height: 52px;
  object-fit: contain;
  border-radius: 4px;
  border: solid 1px #bcc8d4;
  background-color: #fff;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #8394ad;
  background: #fff;
  padding: 0 15px;
}
.hint input,
.focus input {
  border: solid 1px #234495;
}
.form-group span {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #6a7b99;
}
.form-group label.animate-label {
  position: absolute;
  top: 30px;
  left: 15px;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  color: #8394ad;
}
.error span {
  color: #f04438;
}
.error input {
  border-color: #f04438;
}
.disable input {
  background: #f5f7f9;
  color: #bcc8d4;
}
.form-wrapper .row {
  margin-top: 30px;
}

.sales_pipeline_main .btn {
  margin: 0;
}

.sales_pipeline_main .card-body {
  padding: 20px 20px 20px 20px;
}

.sales_pipeline_main .btn {
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
  position: relative;
  margin-right: 1.6%;
  width: fit-content;
  padding: 0 10px;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn:last-child {
  margin-right: 0;
}
.sales_pipeline_main .btn span.number {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);
  background-color: #fff1f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 32px;
  letter-spacing: normal;
  text-align: center;
  color: #102456;
  margin-right: 10px;
}
.sales_pipeline_main .btn:nth-of-type(1) span.number {
  background-color: #fff1f2;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn:nth-of-type(2) span.number {
  background: #facdd4;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn:nth-of-type(3) span.number {
  background: #f5a9b6;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn:nth-of-type(4) span.number {
  background: #ef8699;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn:nth-of-type(5) span.number {
  background: #ea627b;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn:nth-of-type(6) span.number {
  background: #e53757;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn:nth-of-type(7) span.number {
  background: #e1294b;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn:nth-of-type(8) span.number {
  background: #c91536;
  border: solid 1px #bcc8d4;
}
.sales_pipeline_main .btn.active:nth-of-type(1) {
  background-color: #fff1f2;
  color: #102456;
}
.sales_pipeline_main .btn.active:nth-of-type(2) {
  background: #facdd4;
  color: #102456;
}
.sales_pipeline_main .btn.active:nth-of-type(3) {
  background: #f5a9b6;
  color: #102456;
}
.sales_pipeline_main .btn.active:nth-of-type(4) {
  background: #ef8699;
  color: #ffffff;
}
.sales_pipeline_main .btn.active:nth-of-type(5) {
  background: #ea627b;
  color: #ffffff;
}
.sales_pipeline_main .btn.active:nth-of-type(6) {
  background: #e53757;
  color: #ffffff;
}
.sales_pipeline_main .btn.active:nth-of-type(7) {
  background: #e1294b;
  color: #ffffff;
}
.sales_pipeline_main .btn.active:nth-of-type(8) {
  background: #c91536;
  color: #ffffff;
}
.sales_pipeline_main .btn.active span.number {
  background: #fff;
  color: #102456;
}

.sales_pipeline_main .btn span.sup-number {
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #234495;
  position: absolute;
  right: -15px;
  top: -15px;
  width: 30px;
  height: 30px;
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
  border: solid 1px #eaecef;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sales_pipeline_transparent-card {
  background: transparent !important;
  height: auto !important;
  box-shadow: none !important;
  border: 0;
}

.sales_pipeline_main .radio-wrap .btn {
  margin: 0 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  object-fit: contain;
  background-color: #f5a9b6;
  border-radius: 50%;
  box-shadow: none;
  border: 0;
  position: relative;
  background: transparent;
  cursor: auto;
  border: 2px solid transparent;
  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.sales_pipeline_main .radio-wrap .btn.active {
  background: #dee2e6;
  border: 2px solid #fff;
  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
  cursor: pointer;
}
.sales_pipeline_main .radio-wrap .btn:after {
  width: 14px;
  height: 14px;
  background-color: #f5a9b6;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}

.radio-wrap .btn:after {
  width: 30px;
  height: 100%;
  position: absolute;
  content: "";
}

.tooltip-cus {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  width: 30px;
  height: 30px;
  background-color: #dee2e6;
  border: 2px solid #fff;
}

.tooltip-cus .tooltiptext {
  visibility: hidden;
  width: fit-content;
  background-color: #ea627b;
  text-align: center;
  border-radius: 6px;
  padding: 8px 15px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}

.tooltip-cus .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ea627b transparent transparent transparent;
}

.tooltip-cus.active:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.dropdown-cus {
  position: relative;
}
.dropdown-cus .btn {
  box-shadow: none;
  background: transparent;
  width: fit-content;
  margin: 0 auto;
  border: 0;
}
.dropdown-cus .btn img {
  display: block;
  margin: 0 auto;
}
.dropdown-menu-cus {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 120%;
  width: 150px;
  padding: 0px 0;
  border: 0;
  right: 47%;
  z-index: 99;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 20px 0 rgba(35, 68, 149, 0.16);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.bg-invoice-menu {
  width: 240px;
}
.dropdown-cus:hover .dropdown-menu-cus {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.dropdown-cus .dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: solid 1px #bcc8d4;
  opacity: 1;
}
 .dropdown-cus .dropdown-item{
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  font-family: "Plus Jakarta Sans";
  display: flex;
  align-items: center;
}
.dropdown-cus .dropdown-item img{
  margin-right: 8px;
}
.dropdown-cus .dropdown-item:hover {
  background: #f6f9ff;
}
.dropdown-cus .dropdown-item i {
  color: #939292;
  margin-right: 10px;
}
.sales_pipeline_table td {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  font-family: "Plus Jakarta Sans";
}
.sales_pipeline_table td a {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
  font-family: "Plus Jakarta Sans";
}
.sales_pipeline_table td .custom-call a {
  line-height: 1.75;
}
.sales_pipeline_table th {
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
}
.sales_pipeline_table td:nth-of-type(2),
.sales_pipeline_table td:nth-of-type(6) {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}
.sales_pipeline_table td:nth-of-type(6) a img {
  margin-left: 5px;
}
.sales_pipeline_transparent-card .card-body {
  padding: 20px 0 0 0;
}

.custom-pagination a,
.custom-pagination a:focus {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  border: 0;
  box-shadow: none;
  outline: none;
  stroke: none;
  padding: 10px 15px;
}
.custom-pagination {
  width: fit-content;
  margin: 0 auto;
  display: flex;
}
.custom-pagination a:hover {
  background: #f6f9ff;
}

.sales_pipeline_main .card {
  height: auto;
}



.sales_pipeline_button-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 65%;
    transform: translateY(-50%);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #6c757d;
    width: 100%;
    height: 1px;
    border-style: dashed;
    z-index: -1;
}

.sales_pipeline_button-wrap{
  justify-content: space-between;
}




/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
}
#msform  fieldset:nth-of-type(1) .action-button{
  margin-left: 0 !important;
  margin-right: auto !important;
  display: block;
}

#msform fieldset {
    border: 0 none;
    width: 100%;
    margin: 0 0%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea, #msform select {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#msform input:focus, #msform textarea:focus, #msform select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #2098ce;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #2098ce;
}

#msform .action-button-previous {
    width: 100px;
    background: #aCbEd0;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #aCbEd0;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: #666;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps blue*/
/*The number of the step and the connector before it = blue*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #2098ce;
    color: white;
}






/*calender Css Start*/


.calendar, .calendar_weekdays, .calendar_content {
  max-width: 450px; }

.calendar {
  margin: auto;
  font-weight: 400; }

.calendar_content {
  background: #fff; }

.calendar_weekdays {
  background: #1089ff; }

.calendar_header {
  padding: 10px 0; }

.calendar_content, .calendar_weekdays, .calendar_header {
  position: relative;
  overflow: hidden; }

.calendar_weekdays div {
  display: inline-block;
  vertical-align: top;
  color: #fff !important; }

.calendar_weekdays div, .calendar_content div {
  width: 14.28571%;
  overflow: hidden;
  text-align: center;
  background-color: transparent;
  color: #000;
  font-size: 16px;
  padding: 15px 0; }

.calendar_content div {
  border: 1px solid transparent;
  float: left;
  position: relative;
  z-index: 0; }

.calendar_content div:hover {
  border: 1px solid #dcdcdc;
  cursor: default; }

.calendar_content div.blank:hover {
  cursor: default;
  border: 1px solid transparent; }

.calendar_content div.past-date {
  color: #d5d5d5; }

.calendar_content div.today {
  font-weight: bold;
  font-size: 16px;
  color: #fff !important; }
  .calendar_content div.today:after {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto;
    background: #1089ff;
    z-index: -1;
    -webkit-box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48);
    -moz-box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48);
    box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48); }

.calendar_content div.selected {
  background-color: #f0f0f0; }

.calendar_header {
  width: 100%;
  text-align: center; }

.calendar_header h2 {
  padding: 0 10px;
  font-weight: 500;
  font-size: 20px;
  color: #1089ff;
  float: left;
  width: 70%;
  margin: 0 0 10px; }

button.switch-month {
  background-color: transparent;
  padding: 0;
  outline: none;
  border: none;
  color: #dcdcdc;
  float: left;
  width: 15%;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s; }

button.switch-month:hover {
  color: #1089ff; }



/*calender Css End*/



.process-tab ul.nav {
    flex-flow: column;
}
.process-tab ul.nav .tab-herader{
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.process-tab ul.nav li{
  margin-bottom: 30px;
}
.process-tab ul.nav li:last-child{
  margin-bottom: 0;
}
.tab-herader .tab-icon {
    width: 80px;
    height: 80px;
    padding: 12.2px 12px 12.2px;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
    border: solid 1px #eaecef;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.tab-herader .tab-head {
    width: calc(100% - 130px);
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: -0.2px;
    text-align: left;
    color: #153073;

}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.process-tab .nav-tabs .nav-link, .process-tab .nav-tabs, .process-tab .accordion-item{
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
}

.process-tab span.count {
    width: 34px;
    height: 34px;
    object-fit: contain;
    background-color: #234495;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.18px;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    position: relative;
    z-index: 9;
}

.process-tab span.count:before{
  content: "";
  position: absolute;
  top: 100%;
  height: 100px;
  left: 0;
  right: 0;
  width: 1px;
  display: block;
  margin: 0 auto;
  background: #d5dbe1;
  z-index: -1;
}
.process-tab ul.nav li:last-child span.count:before{
  display: none;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    isolation: unset;
}
.process-tab .active span.count{
  background: #599eff;
}
.process-tab .description p strong{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}

.process-tab .description ul{
  padding: 0;
  margin: 0;
}
.process-tab .description ul li {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
    background: url(../img/Group%20158361.png);
    list-style: none;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    padding-left: 22px;
    margin-bottom: 5px;
}


.resources-image-wrap img {
    margin: 0 auto;
    display: block;
}
.resources-box h6{
    font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: -0.22px;
  text-align: left;
  color: #153073;
  position: absolute;
  left: 25px;
  top: 25px;
}
.resources-box{
  position: relative;
}
.resource-updates .widget-description{
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.resource-updates .widget-description h5{
  margin-bottom: 0;
}
.resource-updates .widget-description p:last-child{
  margin-bottom: 0;
}
.resource-updates .widget-description a{
  text-decoration: none;
}
.resource-updates .widget-description a img{
  margin-left: 5px;
  text-decoration: none;
}



.article-box {
    padding: 0;
    box-shadow: none;
    background: transparent;
}
.article-box .article-image-wrap{
  border-radius: 8px;
  overflow: hidden;
}
.article-box .description{
  padding: 15px 0 0;
}
.articale-wrap .card {
    margin-bottom: 30px;
    border: none;
    border-radius: 6px;
    box-shadow: none;
    border: solid 0px #eaecef;
    background-color: transparent;
}
.articale-wrap .card-body{
  padding: 0;
}
.article-box .description h6 {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: left;
    color: #212529;
}
.article-box .description p{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d;
}

.article-box-common{
  display: none;
}

.articale-wrap .btn {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.04px;
    text-align: center;
    color: #3670f3;
    border-radius: 6px;
    border: solid 2px #3670f3;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 148px;
    height: 48px;
}

.blog-wrap .card-header, .blog-wrap .card-footer{
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.blog-left-column .card-header{
  border-bottom: 0;
}
.blog-left-column .card-body, .recent-post .card-body{
  margin-top: 0;
}
.blog-right-column .card-header{
  border-bottom: 1px solid #dee2e6;
}
.recent-post .card-header{
  border-bottom: 0;
}
.news-resource .post-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-resource .post-item .thub-image{
  width: 40%;
  border-radius: 4px;
  overflow: hidden;
}
.news-resource .post-item .thumb-desc{
  width: 55%;
}
.blog-image-wrap{
  border-radius: 8px;
  overflow: hidden;
}
.news-resource{
  display: flex;
  gap: 20px;
  flex-flow: column;
  margin-bottom: 30px;
}
.thumb-desc h4 a, .thumb-desc h4 {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #212529;
}
.thumb-desc  p{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d;
  margin-bottom: 0;
}

.blog-box .description h6{
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: -0.24px;
  text-align: left;
  color: #153073;
}
.blog-box .description p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
}
.blog-box .description span{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
}

.recent-blog .owl-nav {
    position: absolute;
    top: -40px;
    right: 0;
}

.recent-blog .owl-nav button i {
    color: #bdc3c9;
}
.recent-blog .owl-nav button:hover i{
  color: #234495;
}

.recent-blog .article-box .description h6{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
}
.recent-blog .article-box .description p{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d;
}

.blog-left-column .card {
    padding-right: 8%;
}

.recent-post{
  margin-top: 50px;
}
.blog-wrap .card-header-title {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.28;
    letter-spacing: 0.11px;
    text-align: left;
    color: #212529;
}


.resources-box-common .resources-image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sales_pipeline_table a {
    text-decoration: underline;
}
.form-group span.error-message {
    margin-top: -15px;
    color: red !important;
    display: block;
    margin-bottom: 10px;
}

.downloads-tab .article-image-wrap{
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.downloads-tab .article-image-wrap img {
    margin: 0 auto;
    display: block;
}
.downloads-tab .article-image-wrap > img {
  height: 100%;
  width: auto;
}
.downloads-common-box .btn.download-btn {
    position: absolute;
    left: 0;
    right: 0;
    height: 0%;
    width: 0%;
    background-color: rgb(222 0 29 / 82%);
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    gap: 19px;
    visibility: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.downloads-common-box .btn.download-btn p{
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  visibility: hidden;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}
.downloads-common-box .article-image-wrap:hover .btn.download-btn{
  width: 100%;
  height: 100%;
  visibility: visible;
}
.downloads-common-box .article-image-wrap:hover .btn.download-btn p{
  visibility: visible;
}

.downloads-wrap .card {
    margin-bottom: 30px;
    border: none;
    border-radius: 6px;
    box-shadow: none;
    border: solid 0px #EAECEF;
    background-color: transparent;
}
.downloads-common-box h6{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
}
.downloads-common-box p{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d;
}



/*Video Popup */
#lvideo-wrap {
  position: fixed;
  padding: 12px;
  height: 100vh;
  display: flex;
  z-index: 9991;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
#lvideo-wrap, #lvideo-wrap:after,
#lvideo-wrap .lvideo-overlay {
  left: 0;
  top: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}
#lvideo-wrap:after,
#lvideo-wrap .lvideo-overlay {
  height: 100%;
  position: absolute;
}
#lvideo-wrap:after {
  content: "";
  display: block;
  background-color: #000;
  opacity: 0;
  z-index: -1;
}
#lvideo-wrap .lvideo-container,
#lvideo-wrap video,
#lvideo-wrap iframe {
  border-radius: 12px;
  position: relative;
  box-sizing: border-box;
  background-color: #000;
}
#lvideo-wrap .lvideo-container {
  width: 95%;
  z-index: 5;
}
#lvideo-wrap video,
#lvideo-wrap iframe {
  z-index: 10;
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: 100vh;
  max-height: 85vh;
  display: block;
}
#lvideo-wrap video {
  object-fit: cover;
}
#lvideo-wrap .lvideo-close {
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5%;
  top: 5%;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: solid 2px #153073;
  padding: 0;
  transition: all 0.3s ease-in-out;
  z-index: 150;
}
#lvideo-wrap .lvideo-close:before, #lvideo-wrap .lvideo-close:after {
  content: "";
  width: 60%;
  height: 3px;
  background-color: #153073;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
#lvideo-wrap .lvideo-close:before {
  transform: rotate(42deg);
}
#lvideo-wrap .lvideo-close:after {
  transform: rotate(-42deg);
}
#lvideo-wrap .lvideo-close:focus {
  outline: none;
}
#lvideo-wrap .lvideo-close:hover {
  background-color: #153073;
}
#lvideo-wrap .lvideo-close:hover:before, #lvideo-wrap .lvideo-close:hover:after {
  background-color: #fff;
}
#lvideo-wrap.active {
  opacity: 1;
  visibility: visible;
}
#lvideo-wrap.active:after {
  opacity: 0.5;
}
@media (max-width: 1659px) and (min-width: 1330px) {
  #lvideo-wrap .lvideo-container {
    max-width: 978px;
  }
}
@media (min-width: 1660px) {
  #lvideo-wrap .lvideo-container {
    max-width: 80%;
  }
}


.btn-animated {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
  line-height: 100px;
  position: relative;
  padding: 0;
  cursor: pointer;
  border: 0;
}
.btn-animated:before, .btn-animated:after {
  content: "";
  border: 1px solid;
  border-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  animation: 1s it-zoom linear infinite;
}
.btn-animated:before {
  animation-delay: 0.5s;
}
.btn-animated:hover {
  transform: scale(1.1);
}
.btn-animated i {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #333;
  margin: auto;
}

@keyframes it-zoom {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}


.video-image-wrap {
    position: relative;
}

.video-image-wrap .download-btn {
    display: flex;
    align-items: center;
    width: 129px;
    height: 31px;
    object-fit: contain;
    border-radius: 200px;
    border: solid 1px #d7dbec;
    background-color: #fff;
}

.video-image-wrap .download-btn p{
  margin-bottom: 0;
}
.video-image-wrap .download-btn img{
  margin-left: 10px;
}

.video-image-wrap .download-btn {
    display: flex;
    align-items: center;
    width: 115px;
    height: 31px;
    object-fit: contain;
    border-radius: 200px;
    border: solid 1px #d7dbec;
    position: absolute;
    right: 10px;
    bottom: 10px;
    justify-content: center;
    box-shadow: 2px 5px 10px 0 rgba(9, 21, 52, 0);
    background-color: #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.video-image-wrap .download-btn:hover{
  box-shadow: 2px 5px 10px 0 rgba(9, 21, 52, 0.2);
    background-color: #fff;
}

.video-image-wrap {
    position: relative;
    height: 240px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}
.video-image-wrap button.lvideo {
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    background: transparent;
    border: 0;
}
.video-image-wrap .download-btn p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: right;
    color: #212529;
}
.video-box .description{
  margin-top: 15px;
}
.video-box .description p{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d;
}
.video-box .description h6 {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: left;
    color: #212529;
}

.Reseller-Help-Handbook-box .download-btn {
    display: flex;
    align-items: center;
    width: 129px;
    height: 31px;
    object-fit: contain;
    border-radius: 200px;
    border: solid 1px #d7dbec;
    background-color: #fff;
    position: absolute;
    right: 10px;
    bottom: 10px;
    justify-content: center;
}
.Reseller-Help-Handbook-box .download-btn p{
  margin-bottom: 0;
}
.Reseller-Help-Handbook-box .download-btn img{
  margin-left: 10px;
}
.Reseller-Help-Handbook-box .download-btn p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: right;
    color: #212529;
}
.Reseller-Help-Handbook-box .description h6 {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: left;
    color: #212529;
}
.reseller-image-wrap {
    background: #dee2e6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    width: 100%;
}
.reseller-image-wrap img{
  width: auto !important;
  height: auto !important;
}
.pdf-icon {
    position: absolute;
    top: 15px;
    left: 15px;
}
.recent-post .card-body{
  padding: 0;
}

.downloads-wrap .recent-post .card-header, .downloads-wrap .recent-post .card-footer{
  padding-left: 0;
  background: transparent;
}
.description{
  margin-top: 15px;
}
.Product-Promotion-Video{
  margin-top: 30px;
}
.Product-Promotion-Video .card-header, .Product-Promotion-Video .card-footer{
  padding-left: 0;
  background: transparent;
}
.downloads-wrap .card-header{
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: 0.11px;
  text-align: left;
  color: #212529;

}
.downloads-wrap .card-body {
    padding: 0 0px 20px 0px;
}
.download-btn p{
  margin-bottom: 0;
}


.faq .accordion-body h5 {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
    position: relative;
    padding-left: 30px;
}
.faq .accordion-body h5:before {
    position: absolute;
    content: "";
    width: 20px;
    margin-right: 15px;
    background: #234495;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


.gotcha-Suite-Products .card-header-title {
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #212529;
}
.gotcha-Suite-Products .card-body{
  margin-top: 0;
}
.gotcha-Suite-Products .card-header{
  background: transparent;
  border-bottom: 0;
  padding: 15px 0 ;
}
.foundational-Services-header{
  align-items: center;
  justify-content: space-between;
}
.foundational-Services-header-content{
  width: calc(100% - 70px);
}
.foundational-Services-box {
    padding: 20px 15px 50px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
    border: solid 1px #eaecef;
    background-color: #fff;
    height: 100%;
    position: relative;
}
.foundational-Services-header-content h6 {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.78;
    letter-spacing: normal;
    text-align: left;
    color: #212529;
    margin-bottom: 0;
}
.foundational-Services-header-content p{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d;
  margin-bottom: 0;
}
.description p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
}
.foundational-Services-footer {
    border-top: 1px solid #eaecef;
    padding-top: 10px;
    position: absolute;
    bottom: 15px;
    width: calc(100% - 30px);
}
.manage-btn {
    width: 117px;
    height: 31px;
    object-fit: contain;
    border-radius: 200px;
    border: solid 1px #d7dbec;
    background-color: #fff;
    display: flex;
    margin-left: auto;
    margin-right: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0px 12px;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: right;
    color: #212529;
    overflow: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.manage-btn span {
    font-size: 10px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 3;
    letter-spacing: normal;
    text-align: right;
    color: #212529;
    border-left: solid 1px #d7dbec;
    padding-left: 10px;
}
.manage-btn:hover{
  background: #4178ff;
  color: #fff;
}
.manage-btn:hover span{
  color: #fff;
}




.Case_Studies_box .article-box {
    border-radius: 8px;
    box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
    border: solid 1px #eaecef;
    background-color: #fff;
    overflow: hidden;
}
.Case_Studies_box .article-box .description {
    padding: 0px 25px 25px;
    margin: 0;
}
.Case_Studies_box .article-box .description h4 {
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: -0.24px;
    text-align: left;
    color: #30d1b8;
}
.Case_Studies_box .article-box .description h6, .Case_Studies_box .article-box .description h6 a{
   font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: normal;
  text-align: left;
  color: #153073;
}
.Case_Studies_box .article-box .description h6 a:hover{
  color: #364482;
}
.Case_Studies_box .article-box .description p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}
.Case_Studies_box .article-box .description p:last-child{
  margin-bottom: 0;
}
.Case_Studies_box .logo-wrap {
    height: 84px;
    padding: 0 25px;
    display: flex;
    align-items: center;
}
.Case_Studies_box .article-box .article-image-wrap img{
  width: 100%;
}

.contact-box-wrap .card-header-title {
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.14px;
    text-align: left;
    color: #153073;
}
.contact-box .description h5 {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.18px;
    text-align: center;
    color: #152657;
    margin-bottom: 0;
}
.contact-box .description p{
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.33;
  letter-spacing: 0.24px;
  text-align: center;
  color: #445072;
}
.button-wrapper{
  justify-content: center;
  gap: 12px;
}
.button-wrapper .btn {
    border: 1px solid #dee2e6;
    border-radius: 41px;
    padding: 0px 15px;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 31px;
    overflow: hidden;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.button-wrapper .btn span{
  border-left: 1px solid #dee2e6;
  line-height: 34px;
  padding-left: 10px;
}
.button-wrapper .btn:hover{
  background: #153073;
  color: #fff;
  border-color: #153073;
}
.button-wrapper .btn:hover span{
  border-color: #fff;
}
.contact-box .icon-box {
    padding: 40px 0;
}
.contact-box .button-wrapper{
  padding-top: 30px;
  border-top: 1px solid #dee2e6;
}
.contact-box .description {
    margin-top: 15px;
    margin-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.what-is-new-box .description ul {
    padding: 0;
    margin: 20px 0 0 0; 
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.what-is-new-box .description ul li{
  padding-left: 25px;
  background: url(../img/group-16542.png);
  list-style: none;
  background-repeat: no-repeat !important;
  background-position: left top !important;
  width: 48%;
  margin-bottom: 10px;
  margin-top: 10px;
}
.what-is-new-box .description ul li p{
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  margin-bottom: 0;
}
.what-is-new-box .description ul li p strong{
  display: block;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #599eff;
}

.what-is-new-box .description ul.three-item li{
  width: 32%;
}

.what-is-new-box .description{
  margin-top: 0;
}
.what-is-new-box{
  display: none;
}
.what-is-new-wrap .btn {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.04px;
    text-align: center;
    color: #3670f3;
    border-radius: 6px;
    border: solid 2px #3670f3;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 148px;
    height: 48px;
}



/*gotcha! Pricing Sheet – Update*/
.pricing-sheet-table_main .card{
  height: auto;
}
.pricing-sheet-table_main .card-body{
  padding: 20px;
}
.pricing-sheet-table_main .pricing-sheet_services-wrap ul{
  margin: 0 0 20px 0;
}
.pricing-sheet_services-wrap ul li{
  padding: 0;
  margin-right: 20px;
  list-style: none;
}
.pricing-sheet_services-wrap ul li a{
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #234495;
  display: flex;
  align-items: center;
}
.pricing-sheet_services-wrap ul li:nth-of-type(2) a{
  color: #234495;
}
.pricing-sheet_services-wrap ul li:nth-of-type(3) a{
  color: #234495;
}
.pricing-sheet_services-wrap ul li a img{
  margin-right: 12px;
}
.pricing-sheet-table h6{
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  padding: .5rem .5rem;
  margin: 0;
}

.pricing-sheet-table_main .pricing-sheet-table p{
  font-family: "Plus Jakarta Sans";
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.pricing-sheet-table_main .pricing-sheet-table th p span{
  font-family: "Plus Jakarta Sans";
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  padding: .5rem .5rem !important;
}
.pricing-sheet-table_main .pricing-sheet-table p span{
  font-family: "Plus Jakarta Sans";
  width: 50%;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
  padding: 0;
  margin: 0;
}
.pricing-sheet-table th{
  vertical-align: top;
}
.pricing-sheet-table th:nth-of-type(1){
  background: #f7f8f9;
}
.pricing-sheet-table th:nth-of-type(2){
  background: #f1f3f5;
}
.pricing-sheet-table th:nth-of-type(3){
  background: #f0f1f4;
}
.pricing-sheet-table th:nth-of-type(4){
  background: #e8ecf2;
}
.pricing-sheet-table th:nth-of-type(5){
  background: #c8ddfb;
}
.pricing-sheet-table th:nth-of-type(6){
  background: #f7f8f9;
}

.pricing-sheet-table th:nth-of-type(2), .pricing-sheet-table th:nth-of-type(3), .pricing-sheet-table th:nth-of-type(4), .pricing-sheet-table td:nth-of-type(2), .pricing-sheet-table td:nth-of-type(3), .pricing-sheet-table td:nth-of-type(4){
  border-right: 3px solid #fff;
}
.pricing-sheet-table th{
  border-bottom: 0px solid #dee2e6;
}
.pricing-sheet-table td:nth-of-type(1){
  border-left: 10px solid #153073;
}
.pricing-sheet-table .Inbound-Marketing td:nth-of-type(1){
  border-left: 10px solid #3159b6;
}
.pricing-sheet-table .Outbound-Marketing td:nth-of-type(1){
  border-left: 10px solid #4d81f9;
}
.pricing-sheet-table th:nth-of-type(1){
  border-left: 10px solid #f7f8f9;
}


.pricing-sheet-table td:nth-of-type(2){
  background: #f7f8f9;
}
.pricing-sheet-table td:nth-of-type(3){
  background: #f5f6f8;
}
.pricing-sheet-table td:nth-of-type(4){
  background: #eff2f8;
}
.pricing-sheet-table td:nth-of-type(5){
  background: #cde2ff;
}

.pricing-sheet-table th:nth-of-type(2) h6{
  width: 100%;
  text-align: center;
}
.pricing-sheet-table th:nth-of-type(3) h6{
  width: 100%;
  text-align: center;
  background: #dee2e6;
}
.pricing-sheet-table th:nth-of-type(4) h6{
  width: 100%;
  text-align: center;
  background: #c1cbe0;
}
.pricing-sheet-table th:nth-of-type(5) h6{
  width: 100%;
  text-align: center;
  background: #9cc4fd;
}
.pricing-sheet-table th:nth-of-type(6) h6{
  width: 100%;
  text-align: center;
}
.pricing-sheet-table td:nth-of-type(6) a img{
  max-height: 25px;
}
.pricing-sheet-table td:nth-of-type(6) a{
  width: fit-content;
  margin: 0 auto;
  display: none;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}
.pricing-sheet-table tr:hover td:nth-of-type(6) a{
  width: fit-content;
  margin: 0 auto;
  display: block;
}
.pricing-sheet-table.table td{
    padding: 0.8rem 0.5rem;
}
.pricing-sheet-table.table th {
    padding:0;
}
.pricing-sheet-table_main .pricing-sheet-table .btn {
    font-family: "Plus Jakarta Sans";
    width: 157px;
    height: 25px;
    border-radius: 12.5px;
    border: solid 1px #eaecef;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: left;
    color: #102456;
    padding: 0 10px;
    margin: 0 auto;
    overflow: hidden;
}
.pricing-sheet-table_main .pricing-sheet-table .btn:hover{
    background: #234495;
    color: #fff;
}
.pricing-sheet-table_main .pricing-sheet-table .btn:hover span{
  color: #fff;
  border-color: #fff;
}
.pricing-sheet-table_main .pricing-sheet-table .btn span{
  width: 15px;
  height: 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #102456;
  font-size: 10px;
  line-height: 1;
  position: relative;
}
.pricing-sheet-table_main .pricing-sheet-table .btn span:after {
    position: absolute;
    content: "";
    left: -11px;
    width: 1px;
    background: #eaecef;
    height: 27px;
    top: -6px;
}

.pricing-sheet_button-wrap .btn {
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #153073;
    border-radius: 6px;
    border: solid 1px #dee2e6;
    background-color: #fff;
    padding: 10px 20px;
    margin-right: 15px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-sheet_button-wrap .btn:hover, .pricing-sheet_button-wrap .btn.active{
  background: #234495;
  color: #fff;
}


.Sales-Potential{
  position: relative;
  padding-top: 20px;
}
.Sales-Potential .common-box{
  width: 25%;
  position: relative;
  padding-top: 50px;
}
.Sales-Potential .common-box:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    object-fit: contain;
    box-shadow: 0 3px 6px 0 rgba(35, 68, 149, 0.32);
    background-color: transparent;
    border: 5px solid #234495;
    border-radius: 50px;
    top: 1px;
    z-index: 2;
    left: 0;
    right: 0;
    margin: -3px auto 0 auto;
}
.Sales-Potential .common-box:before{
    content: "";
    position: absolute;
    width: 2px;
    height: 30px;
    background: #234495;
    top: 14px;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.Sales-Potential:after {
    content: "";
    position: absolute;
    background: rgb(89,158,255);
    background: linear-gradient(90deg, rgba(89,158,255,1) 50%, rgba(102,219,25,1) 50%);
    height: 20px;
    border-radius: 10px;
    width: 100%;
    top: 18px;
    left: 0;
    border: 5px solid #fff;
    box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.brand-kit-and-guidelines2 .Sales-Potential p{
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #234495;
  margin-bottom: 0;
}
.brand-kit-and-guidelines2 .Sales-Potential p span{
  display: block;
}
.Sales-Potential-wrap .card-header-title h5 {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
}
.Sales-Potential-wrap .row {
    margin-bottom: 30px;
}
.Sales-Potential-wrap .row:last-child {
    margin-bottom: 0px;
}
.Sales-Potential-wrap .row:nth-of-type(1) .Sales-Potential{
  max-width: 50%;
}
.Sales-Potential-wrap .row:nth-of-type(2) .Sales-Potential{
  max-width: 60%;
}
.Sales-Potential-wrap .row:nth-of-type(3) .Sales-Potential{
  max-width: 70%;
}
.Sales-Potential-wrap .row:nth-of-type(4) .Sales-Potential{
  max-width: 80%;
}
.Sales-Potential-wrap .row:nth-of-type(5) .Sales-Potential{
  max-width: 90%;
}

.pricing-sheet-table_main-card .card-header-tab {
    background: transparent;
}
.pricing-sheet-table_main-card .card-header-tab h4{
  margin: 0 ;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.15px;
  text-align: left;
  color: #153073;
}
.pricing-sheet-table_main-card p:last-child{
  margin-bottom: 0;
}




/*Login page Start*/
.login-sec{
  background: #fff;  
}
.login-right-box{
  background: #153073;
  height: 100vh;
  display: flex;
  align-items: center;
}
.login-top-mage{
  margin: 50px auto;
}
.login-top-mage img{
  max-width: 73%;
  display: block;
  margin: 0 auto;
}
.login-desc p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.42px;
  text-align: center;
  color: #fff;
  opacity: .8;
}
.login-desc img{
  max-width: 50px;
  margin: 0 auto;
  display: block;
}
.login-form-wrap img {
    max-width: 257px;
    margin-bottom: 15px;
}
.login-form-wrap h6{
  font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #153073;
  text-transform: capitalize;
  margin-bottom: 0;
}
.login-form-wrap p{
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.275;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
}
.login-left-box{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.login-form-wrap {
    max-width: 550px;
    margin: 0 15%;
    padding: 30px 0;
}
.form-wrap{
  row-gap: 20px;
  align-items: center;
}
.login-form-wrap  .chechk-box-wrap {
    margin: 0px 0;
}
.login-form-wrap  .chechk-box-wrap .form-group{
  margin-bottom: 0;
}
.login-form-wrap .chechk-box-wrap .form-group{
  width: 100%;
}
.login-form-wrap input{
  border-radius: 6px;
  border: solid 1px #dce4f8;
  background-color: #fafafa;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.13;
  letter-spacing: 0.16px;
  text-align: left;
  color: #8394ad;
}
.login-form-wrap .form-control:focus {
    color: #8394ad;
    background-color:#fafafa;
    border-color: #8394ad
    outline: 0;
    box-shadow: none;
}

.login-form-wrap  .chechk-box-wrap .form-group label{
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.43;
  letter-spacing: normal;
  color: #8394ad;
}
.login-form-wrap a{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.7px;
  text-align: right;
  color: #4c6cb7;
  text-decoration: underline;
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: fit-content;
}
.login-form-wrap .chechk-box-wrap .form-group label:before {
  border-radius: 4px;
  border: solid 1px #bcc8d4;
  background-color: #fff;
}
.login-form-wrap .chechk-box-wrap .form-group input:checked + label:after{
  top: 9px;
}
.login-form-wrap .chechk-box-wrap .form-group input:checked + label:before {
    border: 1px solid #599eff;
}
.login-form-wrap input.btn {
    height: 54px;
    margin-top: 30px;
    object-fit: contain;
    border-radius: 6px;
    background-color: #e1294b;
    border: 1px solid #e1294b;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 0.96px;
    text-align: center;
    color: #fff;
}
.login-form-wrap input.btn:hover{
  background-color: #4c6cb7;
  border: 1px solid #4c6cb7;
}
.login-content {
    max-width: 927px;
    margin: 0 auto;
}


#multi-step-form4 .next-step4{
    width: 100%;
    background-color: #e02a4b !important;
    color: #fff;
    border-color: #e02a4b;
}
#multi-step-form4 .prev-step4{
  background-color: transparent!important;
  color: #e02a4b;
  border-color: #e02a4b;
}
#multi-step-form4 .step4-2 .btn{
 width: 48%;
}
.login-application-sec{
  padding-top: 120px;
  padding-bottom: 120px;
  /*background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 15%, rgba(21,48,115,1) 15%);*/
  background-position: top center !important;
  background-repeat: no-repeat !important;
}
.login-application-sec h1{
  font-size: 60px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}
.distributor-application-content{
  padding-right: 10%;
}
.distributor-application-content p{
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}
.distributor-application-form h5{
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: -0.22px;
  text-align: left;
  color: #153073;
}
.distributor-application-form {
    border-radius: 16px;
    box-shadow: 0 4px 10px 0 rgba(9, 21, 52, 0.08);
    border: solid 0.5px #cdd5df;
    background-color: #fff;
    padding: 30px;
}
.pb-120{
  padding-bottom: 120px;
}
.pt-120{
  padding-top: 120px;
}
.custom-phone-number {
    position: relative;
}
.custom-phone-number select {
    width: 54px;
    padding: 0;
    height: 48px;
    border: 0;
    position: absolute;
    left: 2px;
    top: 2px;
    margin-bottom: 0 !important;
}
.custom-phone-number select:focus{
  outline: none;
  box-shadow: none;
}
.custom-phone-number input{
  padding-left: 60px;
  display: block;
  width: 100%;
}
.form-group .custom-phone-number span.error-message{
  width: 100%;
}

.login-application-sec .form-group label {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    color: #20305b;
}
.form-group label span{
  font-size: 20px;
  color: #e02a4b;
}
.form-group.error-message label span {
    color: #e02a4b;
}

.profile-right-content .table{
  margin-bottom: 40px;
}
/*.profile-right-content .table:last-child{
  margin-bottom: 0;
}*/
.profile-right-content .table td {
    padding: 0.5rem 0rem;
    border: 0;
}
.profile-right-content .table th {
    padding: 0rem 0rem 0.9rem 0rem;
}
.profile-right-content .table th{
  background: transparent;
  border: 0;
}
.profile-right-content .table td:first-child{
  width: 35%;
}
.profile-right-content .table td:nth-of-type(2){
  width: 65%;
}
.myprofile-new-section .profile-right-content .table h6{
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  border-bottom: 1px solid #dee2e6;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
}

.myprofile-new-section .profile-right-content .table td {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #102456;
}
.copy-wrap input {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #102456 !important;
    width: fit-content !important;
    border: 0;
    outline: 0;
    text-decoration: underline;
}
.copy-wrap input::-webkit-input-placeholder { 
  color: #102456 !important;
}
.copy-wrap input::-moz-placeholder {
  color: #102456 !important;
}
.copy-wrap input:-ms-input-placeholder { 
  color: #102456 !important;
}
.copy-wrap input:-moz-placeholder { 
  color: #102456 !important;
}
.copy-button {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.myprofile-new-section .card-body .profile-desc-wrap h6 {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 0.13px;
    color: #153073;
    text-align: center;
}
.myprofile-new-section .card-body .profile-desc-wrap p{
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #102456;
}

.profile-desc-wrap .btn {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: center;
    color: #3670f3;
    border-color: #3670f3;
    width: 162px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.profile-desc-wrap .btn:hover{
  background: #3670f3;
  border-color: #3670f3;
  color: #fff;
}
.profile-content-wrap .profile-image{
  position: relative;
  margin-bottom: 50px;
}
.profile-content-wrap {
    max-width: 205px;
    margin-left: 5%;
}
.profile-content-wrap .profile-image .camera-icon {
    position: absolute;
    width: 38px;
    height: 38px;
    object-fit: contain;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 20px;
    bottom: 10px;
}

.my-profile-title {
    margin-bottom: 20px;
}
.myprofile-new-section .card-body {
    padding: 30px 20px;
}
.account-settings-button-wrap .btn {
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);
    background-color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: normal;
    text-align: left;
    color: #102456;
    padding: 7px 20px 7px 7px;
}

.account-settings-button-wrap .btn:hover, .account-settings-button-wrap .btn.active{
  color: #234495;
  border-color: #234495;
}
.account-settings-button-wrap .btn span {
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);
    background-color: #eef2fb;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.account-settings-button-wrap .btn span img{
  transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.account-settings-button-wrap .btn:hover span, .account-settings-button-wrap .btn.active span{
  background: #234495;
}
.account-settings-button-wrap .btn:hover span img, .account-settings-button-wrap .btn.active span img{
  filter: brightness(2000%);
}

/*Radio Button Css Start*/

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: solid 1px #bcc8d4;
    background-color: #fff;
    border-radius: 18px;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #599eff;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/*Radio Button Css End*/

.distributor-application-form{
  position: relative;
}
.distributor-application-form:before{
  contain: "";
  position: absolute;
/*  background: url(img/Form-illustration.png);*/
}
img.allpy-image {
    position: absolute;
    right: -54px;
    top: -92px;
    max-width: 183px;
}
.notification-form-wrap{
  flex-flow: row wrap;
  margin-top: 30px;
}
.notification-form-wrap:last-child{
  margin-bottom: 30px;
}
.notification-content h6 {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 0.13px;
    text-align: left;
    color: #153073;
}
.notification-form-wrap .form-group h6 {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #234495;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.brand-kit-and-guidelines2 .card-body .notification-form-wrap p{
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
  margin-bottom: 20px;
}
.notification-form-wrap label {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #102456;
}

.cus-check{
  margin-bottom: 30px;
}
.cus-check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.cus-check label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

.cus-check label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #bbc1c7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.cus-check input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #599eff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cus-check input:checked + label:before {
  border: 1px solid #599eff;
}
.notification-form input[type="submit"], .notification-form input[type="reset"] {
    border-radius: 6px;
    background-color: #234495;
    width: 178px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: center;
    color: #fff;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.notification-form input[type="submit"]:hover, .notification-form input[type="reset"]:hover{
  background-color: #3670f3;
  color: #fff;
}

.change-your-password .table{
  margin-bottom: 30px !important;
  margin-top: 30px !important;
}
.password-wrap{
  position: relative;
}
.password-wrap span.toggle-password {
    position: absolute;
    right: 14px;
    top: 10px;
    font-size: 24px;
}
.change-your-password .table td a {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: left;
    color: #599eff;
    margin-top: 10px;
    display: block;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.change-your-password .table td a:hover{
  text-decoration: underline;
}
.change-your-password{
  margin-bottom: 40px;
}
.profile-right-content .btn {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: center;
    color: #3670f3;
    border-color: #3670f3;
    width: 162px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.profile-right-content .btn:hover{
  background: #3670f3;
  border-color: #3670f3;
  color: #fff;
}


.my-profile-basic-wrap .profile-right-content select, .my-profile-basic-wrap .profile-right-content select:focus, .my-profile-basic-wrap .profile-right-content input, .my-profile-basic-wrap .profile-right-content input:focus {
    border: 0;
    outline: none;
    box-shadow: none;
}
.profile-right-content input[type=submit] {
    border-radius: 6px;
    background-color: #234495;
    border: 1px solid #234495;
    width: 178px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: center;
    margin-top: 50px;
    color: #fff;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.profile-right-content input[type=submit]:hover{
  background-color: #3670f3;
  color: #fff;
  border-color: #3670f3;
}
.left-basic-content{
  position: relative;
}
.left-basic-content:after{
  content: "";
  position: absolute;
  left: 100%;
  height: 93%;
  width: 1px;
  top: -65px;
  background: #dee2e6;
}
.my-profile-basic-wrap .notification-content h6{
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 1;
}
.my-profile-basic-wrap .left-basic-content .profile-right-content .table:nth-of-type(1) td:nth-of-type(2){
  border-bottom: 0;
}
.my-profile-basic-wrap .left-basic-content .profile-right-content .table:nth-of-type(2) tr:last-child td:nth-of-type(2){
  border-bottom: 0;
}
.my-profile-basic-wrap .left-basic-content .profile-right-content .table:nth-of-type(2) tr:nth-of-type(4) td:nth-of-type(2){
  border-bottom: 0;
  padding: 0;
}
.my-profile-basic-wrap .left-basic-content .profile-right-content .table:nth-of-type(2) tr:nth-of-type(4) select{
  border-bottom: 1px solid #eaecef;
  padding: 0.5rem 0;
}
.my-profile-basic-wrap .left-basic-content .profile-right-content .table:nth-of-type(2) tr:nth-of-type(3) select{
  width: 100%;
}
.right-basic-content .profile-right-content select{
  width: 100%;
}
.my-profile-basic-wrap .profile-right-content .table td:nth-of-type(2) {
  border-bottom: 1px solid #eaecef;
}
.left-basic-content{}

.my-profile-basic-wrap .profile-right-content select{
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
  text-indent: 0;
}
.birthday-wrap {
    display: flex;
    justify-content: space-between;
}
.my-profile-basic-wrap input{
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}
.my-profile-basic-wrap input::-webkit-input-placeholder {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}
.my-profile-basic-wrap input::-moz-placeholder { 
  color: pink;
}
.my-profile-basic-wrap input:-ms-input-placeholder {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}
.my-profile-basic-wrap input:-moz-placeholder {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}
#profile-image-view {
    border-radius: 50%;
}
.profile-image-main {
    border: 5px solid #eef2fb;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.profile-image-main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.upload-file-cus .btn{
  width: 175px;
}
.upload-file-cus .btn img{
  margin-right: 5px;
}
.upload-file-cus .btn:hover img{
 filter: brightness(1500%);
}

.delet-button {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #e0294b !important;
    border: 0;
    background: transparent;
    display: block;
    margin: 30px auto 0 auto;
    width: fit-content;
}

.change-your-password input[type="password"]::-webkit-input-placeholder {
  color: #234495 !important;
}
.change-your-password input[type="password"]::-moz-placeholder { 
  color: #234495 !important;
}
.change-your-password input[type="password"]:-ms-input-placeholder {
  color: #234495 !important;
}
.change-your-password input[type="password"]:-moz-placeholder {
  color: #234495 !important;
}
.change-your-password input[type="password"]{
  color: #234495 !important;
}


.what-is-new-wrap-update:nth-of-type(even) > .row {
    flex-flow: column-reverse;
}
.what-is-new-wrap-update{
  display: none;
}
ul.tag-cus{
  display: flex;
  padding: 0;
  margin: 0;
}
ul.tag-cus li{
  list-style: none;
  margin-right: 15px;
  padding-right: 15px;
  border-right: solid 1px #8894a6;
}
ul.tag-cus li:last-child{
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
ul.tag-cus li a, ul.tag-cus li{
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
}
.what-is-new-wrap-update .logo-wrap{
  padding-top: 30px;
  padding-bottom: 30px;
  height: auto !important;
}
.what-is-new-filter select, .what-is-new-filter select:focus {
    margin: 15px 0;
    width: 295px;
    padding: 16px 15px 16px 15px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);
    background-color: #fff;
    appearance: none;
    background: url(../img/arrow-waht.png) #fff;
    background-position: right 12px center !important;
    background-repeat: no-repeat;
    border: 0;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: normal;
    text-align: left;
    color: #6c757d;
    outline: none;
}

.what-is-new-filter select appearance:{
  right: 15px !important;
}
.what-is-new-wrap-update .article-box .article-image-wrap {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}


/* 14.11.23 Start */
.pt-100{
  padding-top: 100px;
}
.pb-100{
  padding-bottom: 100px;
}
.pt-80{
  padding-top: 80px;
}
.pb-80{
  padding-bottom: 80px;
}
.gotcha-preferred-new-section2{
  background: #fff;
}
.gotcha-preferred-new-section .ghero-txt h1 {
    font-size: 48px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.gotcha-preferred-new-section .ghero-txt p{
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}
.gotcha-preferred-new-section2 .ghero-txt p{
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: center;
  color: #445072;
}
.gotcha-preferred-new-section2 .form-txt-wite p{
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}
.gotcha-preferred-new-section2 h2{
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #153073;
}

.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #007bff;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer; /* Added cursor pointer */
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #007bff;
  z-index: -1;
}

#multi-step-form {
    overflow-x: hidden;
    max-width: 1062px;
    margin: auto;
    border-top: 0px solid #153073;
}
.gotcha-preferred-new-section2 .form-group label {
    display: block;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  margin-bottom: 5px;
  position: relative;
}
.gotcha-preferred-new-section2 .form-group label span {
    font-size: 16px;
    font-weight: 800;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #153073;
    position: absolute;
    left: -25px;
    top: 4px;
}
.gotcha-preferred-new-section2 .form-group input{
    width: 100%;
    padding: 13px 20px;
    object-fit: contain;
    border-radius: 6px !important;
    border: solid 1px #a9bcea !important;
    background-color: #f4f7ff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: 1.6 !important;
    letter-spacing: normal !important;
    text-align: left !important;
    color: #445072 !important;
}
.gotcha-preferred-new-section2 .next-step, .gotcha-preferred-new-section2 .btn-success, .gotcha-preferred-new-section2 .prev-step {
    height: 60px;
    flex-grow: 0;
    object-fit: contain;
    border-radius: 6px !important;
    width: 100%;
    background-color: #153073 !important;
    border: 1px solid #153073 !important;
}
.gotcha-preferred-new-section2 .next-step:hover, .gotcha-preferred-new-section2 .btn-success:hover, .gotcha-preferred-new-section2 .prev-step:hover{
  border-color: #3f6dd8 !important;
  background: #3f6dd8 !important;
}

/* .gotcha-preferred-new-section2 .btn-success, .gotcha-preferred-new-section2 .prev-step{
  width: 49%
} */
.gotcha-preferred-new-section2 .step-2 .form-group:last-child{
  display: flex;
  justify-content: space-between;
}
.gotcha-preferred-new-section2 .form-wrap.new {
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
    border: 0;
    background-color: #fff;
}
.gotcha-preferred-new-section2 .form-wrap.new::after{
  display: none;
}
.gotcha-preferred-new-section .ghero-txt img.img-fluid{
  margin-bottom: 50px;
  max-width: 204px;
}
#multi-step-form .form-txt-wite {
    padding-right: 10%;
}

/* 14.11.23 End */
.need-helps-form{
  padding-top: 40px;
  padding-bottom: 40px;
}
.need-helps-form input{
  background: #fff;
  border-radius: 4px;
  border: solid 1px #cdd5df;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.16px;
  text-align: left;
  color: #8394ad;
}
.need-helps-form textarea {
  background-color: #fff;
  width: 100%;
  height: 130px;
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  border: solid 1px #cdd5df;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.16px;
  text-align: left;
  color: #8394ad;
}
.need-helps-form input:focus, .need-helps-form textarea:focus{
  border-color: #000 !important;
  background: #fff !important;
}
.need-helps-form{
  max-width: unset;
  margin: 0 auto;
}
.brand-kit-and-guidelines2 .card-body .need-helps-form p{
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.73;
  letter-spacing: normal;
  text-align: center;
  color: #102456;
}
.brand-kit-and-guidelines2 .card-body .need-helps-form h2{
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.27;
  letter-spacing: 0.19px;
  text-align: center;
  color: #153073;
}
.brand-kit-and-guidelines2 .card-body .need-helps-form img{
  max-width: 56px;
  margin: 0 auto 12px auto;
  display: block;
}
.need-helps-form input.btn {
  width: 178px;
  height: 48px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 6px;
  background-color: #234495;
  display: block;
  border-color: #234495;
}
.need-helps-form input.btn:hover{
  background: #e1294b;
  border-color: #e1294b;
}
.brand-kit-and-guidelines2 .card-body .contract-agreement  p{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
  margin-bottom: 15px;
}
.contract-agreement h6{
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
  
}
.contract-agreement h4 {
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: -0.2px;
    text-align: left;
    color: #153073; 
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;   
}
.contract-agreement .left-content {
  min-height: 100px;
  border-left: 3px solid #234495;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 5px 10px;
}
.contract-agreement span.counter {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: -0.2px;
    color: #153073;
    width: 80px;
    display: block;
}
.contract-agreement ul{
  width: 100%;
  margin: 0 !important;
  padding: 0;
}
.contract-agreement ul ul{
  margin-left: 80px !important;
}
.contract-agreement ul li{
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 0px !important;
  display: flex;
  flex-flow: row wrap;
}
.contract-agreement ul li .content{
  width: calc(100% - 80px);
}
.contract-agreement .left-content span {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.18px;
    text-align: center;
    color: #fff;
    width: 34px;
    height: 34px;
    background-color: #234495;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.contract-agreement {
    margin-bottom: 20px;
    border-bottom: solid 1px #dee2e6;
}
.contract-agreement-section .card-header-tab {
    justify-content: space-between;
}
.contract-agreement-section .button-wrap {
    width: fit-content;
    display: flex;
}
.contract-agreement-section .btn {
    width: 116px;
    height: 51px;
    object-fit: contain;
    border-radius: 6px;
    background-color: #3670f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: left;
    color: #fff;
    margin-left: 10px;
}
.contract-agreement-section .transparent-btn{
  color: #3670f3;
  border-color: #3670f3;
  background: transparent;
}
.contract-agreement-section .btn:hover{
  color: #fff;
  border-color: #599eff;
  background: #599eff;
}
.contract-agreement-section .btn img{
  margin-left: 10px;
}

.contract-agreement-section .transparent-btn:hover{
  background: #599eff;
  color: #fff;
  border-color: #599eff;
}
.contract-agreement-section  .chechk-box-wrap .form-group {
    display: block;
    margin-bottom: 0px;
    width: 100%;
    box-sizing: border-box;
    height: 24px;
}
.contract-agreement-section  .chechk-box-wrap .form-group label{
    font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
  padding-left: 30px;
}
.contract-agreement-section .chechk-box-wrap .form-group label:before {
    position: absolute;
    left: 0;
}
.contract-agreement-section .chechk-box-wrap {
    flex-flow: row wrap;
    gap: 15px;
    margin: 0px 0;
}
.contract-agreement-section .contract-agreement-content p input {
    width: 184px;
    height: 36px;
    margin: 0 0 5px 0px;
    padding: 6px 15px;
    object-fit: contain;
    border-radius: 2px;
    background-color: #eff4ff;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: normal;
    text-align: left;
    color: #102456;
}
img.intro-1 {
    margin-left: -40px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

.contract-agreement-sec h6{
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
  border-bottom: solid 1px #dee2e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.contract-agreement-sec{
  padding: 50px;
}
.contract-agreement-sec .card {
    padding: 40px 50px 40px 50px;
    object-fit: contain;
    border-radius: 30px;
    border: solid 0px #9fa7af;
    background-color: #f8faff;
    box-shadow: none !important;
}
.contract-agreement-sec .card-header, .contract-agreement-sec .card-footer{
  background: transparent;
}

.contract-agreement-form .form-group{
  margin-bottom: 20px;
}
.contract-agreement-form .btn{
  margin-left: 0;
}
.contract-agreement-sec .left-content{
  padding-right: 10%;
}

.contract-agreement-sec{
  display: none;
}
.contract-agreement-sec.open{
  display: flex;
}

.closed.agree-section{
  display: none !important;
}
.contract-agreement-section .custom-radio-button-wrap .form-group label {
    width: 24px;
    height: 24px;
    border-radius: 28px;
    padding: 0;
    margin: 0;
}
.contract-agreement-section .custom-radio-button-wrap .form-group label:after{
  display: none !important;
}
.contract-agreement-section .custom-radio-button-wrap .form-group label:before{
  display: none !important;
}
.contract-agreement-section .custom-radio-button-wrap{
  flex-flow: row;
}
.contract-agreement-section .custom-radio-button-wrap .form-group input:checked + label{
  -webkit-box-shadow: 0px 0px 0px 5px rgba(190,204,217,1);
-moz-box-shadow: 0px 0px 0px 5px rgba(190,204,217,1);
box-shadow: 0px 0px 0px 5px rgba(190,204,217,1);
}
.contract-agreement-popup .form-group{
  margin-bottom: 20px;
}
.contract-agreement-popup .form-group select {
    padding: 10px 15px 11px 20.5px;
    object-fit: contain;
    border-radius: 25px;
    border: solid 1px #e9f0ff;
    background-color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.27;
    letter-spacing: 0.09px;
    text-align: left;
    color: #102456;
    width: 100%;
}
.clear-btn{
  border-radius: 16px;
  box-shadow: 2px 4px 10px 0 rgba(9, 21, 52, 0.08);
  background-color: #fff;
  border: 0;
  margin-top: 30px;
  padding: 5px 20px;
}
.clear-btn i{
  color: #6c757d;
}
.contract-agreement-popup .form-group label{
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 0.1px;
  text-align: left;
  color: #102456;
}
.type-text-here {
    border-radius: 6px;
    border: solid 1px #e7e9eb;
    background-color: #fff;
    width: 414px;
    height: 120px;
    margin: 50px auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-radio-button-wrap {
    border-radius: 25px;
    border: solid 1px #e9f0ff;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
}
.custom-radio-button-wrap .form-group{
  margin-bottom: 0 !important;
}
.custom-radio-button-wrap .form-group input{
  height: 24px;
}
.contract-agreement-popup .modal-body .contract-agreement-popup-content > h5 {
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: 0.25px;
    text-align: center;
    color: #153073;
}
.type-text-wrap{
  display: none;
}
.type-text-wrap.open{
  display: block;
}
.contract-agreement-section .e-signature-btn{
  width: 201px;
  height: 53px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 6px;
  background-color: #3670f3;
  border-color: #3670f3;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: 0.04px;
  text-align: left;
  color: #fff;
}
.e-signature-btn img{
  margin-left: 10px;
}
.reseller-agreeent{
  display: none;
}
.reseller-agreeent.open{
  display: flex;
}
.consent-signature.closed{
  display: none !important;
}
.contract-agreement:last-child{
  border-bottom: 0 !important;
}
.contract-agreement-sec .card-body{
  padding-bottom: 0;
  padding-top: 0;
}
.agree-section{
  padding-bottom: 50px;
  border-top: 0;
}
.contract-agreement-form .btn.esign-button{
  background: #234495;
  border-color: #234495;
}
.contract-agreement-popup .modal-lg, .contract-agreement-popup .modal-xl {
    --bs-modal-width: 1200px;
}
.contract-agreement-popup-content {
    max-width: 600px;
    margin: 0 auto;
}
.img-fluid.closed{
  display: none;
}
.definitions{
  border-bottom: 0 !important;
}

.contract-agreement-sec .card-header-tab {
    margin-bottom: 30px;
}
.consent-signature .chechk-box-wrap .form-group input:checked + label:after {
    top: 4px;
  }
.agree-section .chechk-box-wrap .form-group input:checked + label:after {
    top: 4px;
  }
.e-sign-wrap img.img-fluid{
  display: none;
}
.e-sign-wrap{
  align-items: center;
}
.e-sign-wrap img.img-fluid.show{
  display: block;
  margin-right: 15px;
}
.contract-agreement-form .form-group input[type="date"]{
  appearance: none;
}

.Onboarding-Call-Schedule .form-group input{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
}
.when-schedule-wrsp{
  gap: 15px;
}
.Onboarding-Call-Schedule .form-group input[type="date"]{
  width: 50%;
}
.Onboarding-Call-Schedule .form-group select.time {
    width: 30%;
}
.Onboarding-Call-Schedule .form-group select.time-zone {
    width: 17%;
}
.Duration-wrap{
  align-items: center;
}
.Duration-wrap p{
  padding: 15px 30px 15px 15px;
  margin-bottom: 25px;
}
.Duration-wrap select{
  width: 30%;
}
#multi-step-form4.Onboarding-Call-Schedule .next-step4{
  border-radius: 6px !important;
  background-color: #3670f3 !important;
  height: 48px;
  padding: 0 22px;
  border-color: #3670f3 !important ;
  margin-right: 15px !important;
  width: fit-content;
}
.button-wrap{
  justify-content: flex-start;
}

/*Our Proposal Css Start*/

.card-header-title {
  font-family: "Plus Jakarta Sans";
}
.proposal-section p {
  font-family: "Plus Jakarta Sans";
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
}
.proposal-section h1{
  font-size: 50px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.96;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}
.proposal-section h2{
  font-family: "Plus Jakarta Sans";
  font-size: 28px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #adcfff;
}
.proposal-section h3{
  font-size: 22px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

.proposal-section h4 {
    font-size: 13px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #0d65df;
}
.proposal-section h5 {
    font-size: 11px;
/*    font-weight: 500;*/
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #0d65df;
    margin-bottom: 8px;
}
.pt-20{
  padding-top: 15px;
}
.pb-20{
  padding-bottom: 15px;
}
.mt-20{
  margin-top: 15px;
}
.mb-20{
  margin-bottom: 15px;
}
 .proposal-section .container{
  max-width: 612px;
  box-shadow: 10px 16px 24px 0 rgba(18, 66, 133, 0.35), 0 4px 4px 0 rgba(14, 63, 132, 0.16)
 }
 .proposal-container{
  height: 792px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
 }
.web-dev-wrap {
    flex-flow: column;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    padding: 30px 15px;
}
.client_name_here p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}

.footer-content p {
    font-size: 16px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}
.PartnerLogo-wrap img{
  margin-right: 10px;
}
.summary-wrap h2{
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #0d65df;
  border-bottom: 1px solid #4291ff;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.summary-wrap h4{
  border-bottom: 1px solid #4291ff;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.overview-content h4{
  margin-bottom: 0;
}
.website-development-new .icon-wrap img {
    height: 25px;
    width: auto;
    margin-bottom: 12px;
}
.Website_Development-box p{
  margin-bottom: 0;
}
.summary-wrap .result-content h2{
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #4291ff;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.result-content h2 span{
  font-size: 17px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #6c4aed;
}
.overview-content h4{
  border-bottom: 0;
}
.incrise-box{
  display: flex;
  position: relative;
  height: 160px;
  align-items: flex-end;
  z-index: 9;
}
.incrise-box:after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e9f2ff;
  z-index: -2;
}
.incrise-box:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 67%;
  background: #4291ff;
  z-index: -1;
}
.incrise-box:nth-of-type(2):before{
  height: 72%;
}
.incrise-box:nth-of-type(3):after{
  width: 100%;
  height: 100%;
}
.incrise-box:nth-of-type(3):before{
  width: 100%;
  height: 81%;
}
.incrise-box h5{
  font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #153073;
  margin-bottom: 8px;
  margin-top: 8px;
}
.summary-wrap .incrise-box:nth-of-type(3) .result-content h2, .summary-wrap .incrise-box:nth-of-type(3) .result-content h2 span, .summary-wrap .incrise-box:nth-of-type(3) .result-content h5{
  color: #fff;
}
.summary-wrap .incrise-box:nth-of-type(3) .result-content {
    margin-bottom: 10px;
}

.incrise-box p{
  margin-bottom: 0;
  font-size: 8px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  text-align: left;
  color: #8f9bb9;
}

.Goals-and-Objectives-row {
    padding: 17px 12px 14px 14px;
    border-radius: 8px;
    border: solid 2px #4291ff;
    background-color: #fff;
}
.Goals-and-Objectives-row p{
  margin-bottom: 0;
}
.Goals-and-Objectives-box {
    align-content: flex-start;
    justify-content: space-between;
}
.Goals-and-Objectives-box .icon-wrap{
  width: 22px;
}
.Goals-and-Objectives{
  position: relative;
}
.Goals-and-Objectives h4{
  margin-top: 0px !important;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 15px;
}
.Goals-and-Objectives-row .Goals-and-Objectives-box:first-child{
  margin-top: 0;
}
.Goals-and-Objectives-row .Website_Development-content{
  width: calc(100% - 35px);
}
.Goals-and-Objectives-row .icon-wrap{
  position: relative;
  z-index: 2;
}
.Goals-and-Objectives-row .icon-wrap:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 67%;
  background: #d5d5d5;
  z-index: -1;
}
.Goals-and-Objectives-row .icon-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 30px;
    width: 2px;
    height: calc(100% - 20px);
    background: #d5d5d5;
    z-index: -1;
}
.Goals-and-Objectives-row .Goals-and-Objectives-box:last-child .icon-wrap:after{
  display: none;
}
.Ineffective-Website-box {
  justify-content: space-between;
  align-items: flex-start;
}
.Ineffective-Website-box .icon-wrap{
  width: 19px;
}
.Ineffective-Website-box .Website_Development-content{
  width: calc(100% - 35px);
}
.Ineffective-Website-box .Website_Development-content p{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #8f9bb9;
}
.Ineffective-Website-box .Website_Development-content h5{
  margin-bottom: 8px;
}
.web-client-requirements-wrap .web-client-requirements p{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
  margin-bottom: 0;
}
.bg-light-grey{
  background-color: #f1f7ff;
}
.proposed-solution-right ul{
  padding: 0;
  margin: 0;
  padding-left: 15px;
}
.proposed-solution-right ul li {
    font-size: 8px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #617093;
    list-style: none;
    margin-bottom: 8px;
    z-index: 2;
    position: relative;
    font-family: "Plus Jakarta Sans";
}
.proposed-solution-right ul li strong{
  font-weight: bold;
  color: #0d65df;
}
.proposed-solution-right ul li:after {
    content: "";
    position: absolute;
    left: -14px;
    top: 2px;
    width: 8px;
    height: 1px;
    background: #617093;
    z-index: -1;
}
.proposed-solution-right{
  padding: 15px;
  margin: 0;
}
.proposed-solution-wrap2 .Goals-and-Objectives-row{
  padding: 0;
  overflow: hidden;
}
.proposed-solution-left h4{
  border-bottom: 0;
  margin-bottom: 0;
}
.proposed-solution-left{
  padding: 10px;
  margin: 0;
}
.proposed-solution-box .icon-wrap {
    background: #4291ff;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 8px;
}
.proposed-solution-box .icon-wrap img{
  height: 23px;
}
.proposed-solution-box .Website_Development-content p{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
  margin-bottom: 10px;
}
.proposed-solution-box ul{
  padding: 0;
  margin: 0;
}
.proposed-solution-box ul li{
  font-size: 8px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: normal;
  text-align: left;
  color: #8f9bb9;
  margin-bottom: 10px;
  list-style: none;
  z-index: 2;
  position: relative;
  border: 0;
  border-left: 1px solid #acceff;
  border-style: dashed;
  padding-left: 10px;
  font-family: "Plus Jakarta Sans";
}
.proposed-solution-box ul li strong{
  font-weight: bold;
  color: #153073;
}
.proposed-solution-box ul li:after {
    content: "";
    position: absolute;
    left: -5px;
    top: 0px;
    z-index: -1;
    width: 10px;
    height: 10px;
    background-color: #4291ff;
    border-radius: 10px;
}
.proposed-solution-box ul li:last-child{
  border-left: 0;
}
.title-wrap{
  border-bottom: 1px solid #4291ff;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.title-wrap h2{
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.title-wrap img{
  max-width: 24px;
}
.overview-content p{
  margin-bottom: 0;
}
.proposed-solution-wrap3 h4{
  margin-bottom: 0;
}
.proposed-solution-wrap3-row .proposed-solution-box .icon-wrap{
  margin-bottom: 6px;
}

.proposed-solution-right-content .icon-wrap {
    width: 30px;
    height: 30px;
    background-color: #4291ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 37px;
}
.proposed-solution-right-content h4{
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 8px;
}
.proposed-solution-right-content .Website_Development-content {
    width: calc(100% - 40px);
}
.proposed-solution-right-content-top{
  justify-content: space-between;
  margin-bottom: 8px;
}
.proposed-solution-right .proposed-solution-right-content ul {
    padding: 0;
    margin: 0;
    padding-left: 40px;
}
.proposed-solution-right .proposed-solution-right-content ul li:after {
    content: "";
    position: absolute;
    left: -29px;
    top: 2px;
    z-index: -1;
    width: 8px;
    height: 8px;
    flex-grow: 0;
    margin: 0 21px 10px 0;
    background-color: #4291ff;
    border-radius: 10px;
}
.proposed-solution-right-content{
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
.proposed-solution-right-content:last-child{
  margin-bottom: 0;
}
.proposed-solution-right-content:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    border: 0;
    border-left: 1px solid #acceff;
    border-style: dashed;
    left: 14px;
    z-index: -1;
    top: 0;
}
.Goals-and-Objectives-row .proposed-solution-right-content .icon-wrap:after{
  display: none;
}
.proposed-solution-right .proposed-solution-right-content ul li strong {
    font-weight: bold;
    color: #153073;
}
.additional-services-box{
  margin-bottom: 10px;
}
.scope-of-Work2 .proposed-solution-wrap2{
  overflow: hidden;
}
.additional-services-box:last-child{
  margin-bottom: 0;
}
.additional-services-box img{
  max-height: 18px;
  margin-bottom: 12px;
}
.additional-services-box p {
    font-size: 8px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: normal;
    text-align: left;
    color: #8f9bb9;
    margin-bottom: 0;
}
.additional-services-box h5{
  margin-bottom: 5px;
}
.scope-of-Work-row{
  border: 0;
}

.scope-of-Work-row .proposed-solution-right{
  padding-left: 15px;
  padding-right: 25px;
  margin-top: 0;
}
.scope-of-Work-row .proposed-solution-left{
  position: relative;
  z-index: 2;
}
.scope-of-Work-row .proposed-solution-left:after{
  width: 100%;
  height: 100%;
  left: 100%;
  content: "";
  background: #f1f7ff;
  top: 0;
  position: absolute;
  z-index: 99;
}
.scope-of-Work-container .web-dev-wrap{
  height: auto;
  padding-bottom: 0;
}

.proposed-solution-wrap2{
  padding-right: 0;
}
.scope-of-Work2 .proposed-solution-left {
    padding: 15px;
    margin: 0;
    padding-right: 30px;
}
.Strategy-icon img{
  max-height: 25px  ;
  max-width: 22px;
}

.Strategy-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    background-color: #4291ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -31px;
    z-index: 9;
}
.web-timeline .row:nth-of-type(even) {
    flex-flow: row-reverse;
}
.Strategy-content{
  position: relative;
  padding-left: 20px;
}
.Strategy-content p{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #617093;
  margin-bottom: 0;
}
.Strategy-content h4{
  font-size: 12px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #0d65df;
  border-bottom: 0;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-bottom: 0;
}

.timeline-tab .Strategy-content .timeline-time{
  padding: 1px 4px;
  object-fit: contain;
  border-radius: 11px;
  border: solid 1px #4291ff;
  background-color: #4291ff;
  font-size: 9px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}
.timeline-tab .Strategy-content .timeline-time img{
  margin-right: 5px;
}
.planning-design-box .Strategy-content:nth-of-type(1) 
.web-timeline .row{
  margin-bottom: 10px;
}
.web-timeline .row:last-child{
  margin-bottom: 0;
}
.web-timeline .row:nth-of-type(even) .Strategy-content{
  padding-left: 0;
  padding-right: 20px;
  text-align: right;
}
.web-timeline .row:nth-of-type(even) .Strategy-content p{
  text-align: right;
}
.web-timeline .row:nth-of-type(even) .Strategy-content h4{
  text-align: right;
}
.web-timeline .row:nth-of-type(even) .Strategy-content .Strategy-icon{
  left: auto;
  right: -31px;
}
.Strategy-icon:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    border: 0;
    border-left: 1px solid #8f9bb9;
    border-style: dashed;
    left: 18px;
    z-index: -1;
    top: 41px;
}
.web-timeline .row:last-child .Strategy-icon:after {
  display: none;
}
.solutions-products-content p {
    font-size: 9px;
    font-weight: 400;
}
 .solutions-products-content h5{
    margin-bottom: 5px;
}
.proposed-solution-wrap2 .proposed-solution-left h4{
  margin-bottom: 15px;
}


.Approach_Method_Process h4{
  border-bottom: 0;
}

.proposed-solution-wrap3-row{
  position: relative;
  z-index: 2;
}
.Approach_Method_Process .proposed-solution-wrap3-row:after {
    content: "";
    position: absolute;
    height: 1px;
    width: calc(100% - 24px);
    border: 0;
    border-top: 1px solid #acceff;
    border-style: dashed;
    left: 9px;
    z-index: -1;
    top: 34px;
}
.budget-top-sec ul{
  padding: 0;
  margin: 0;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 15px;
}
.budget-top-sec ul.d-flex li {
    border: solid 0px #fff;
    background-image: linear-gradient(to left, #0e66df 100%, #4392ff 0%);
    width: 33.33%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}
.budget-top-sec ul.d-flex li:after {
    content: "";
    width: 40px;
    height: 40px;
    border: 2px solid #0000;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    position: absolute;
    background-image: linear-gradient(to left, #0e66df 100%, #4392ff 0%);
    top: 0;
    right: 12px;
    transform: rotate(45deg);
    z-index: -1;
}
.budget-top-sec .budget-content{
  display: flex;
  align-items: center;
  padding: 12px 40px 12px 15px;
  justify-content: center;
}
.budget-top-sec .budget-content p{
  font-size: 8px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-bottom: 0;
}
.budget-top-sec .budget-content h2{
  font-size: 22px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.67;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  padding: 0;
  margin: 0;
  border-bottom: 0;
  margin-right: 5px;
}
.budget-top-sec .budget-content h2 span{
  font-weight: 300;
}
.budget-top-sec ul.d-flex li:last-child:before {
    content: "";
    width: 30px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0px;
    z-index: -2;
}

.Budget-container{
  background-size: cover !important;
}
 .deposit-sec ul li span {
    width: 39px;
    height: 39px;
    border: solid 2px #4291ff;
    background-color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #0d65df;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: #0d65df;
}
.deposit-sec ul li span img{
  max-width: 25px;
  max-height: 25px;
}
 .deposit-sec ul li span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 41px;
    width: 0px;
    height: 53px;
/*    background: #acceff;*/
    border: 0;
    border-left: 1px solid #acceff;
    border-style: dashed;
    z-index: -1;
 }
 .deposit-sec ul li:last-child span:after{
  display: none;
 }

.deposit-sec ul li{
  display: flex;
  justify-content: space-between;
}
.deposit-sec ul li .content{
  width: calc(100% - 50px);
}
p strong{
  font-weight: 800;
  color: #0d65df;
}
.deposit-sec{
  padding: 15px 20px;
  position: relative;
}
.deposit-sec ul{
  padding: 0;
  margin: 0;
}
.proposed-solution-box{
  margin-top: 0;
}
.Total-Build-Cost {
    width: 217px;
    height: 101px;
    border-radius: 8px;
    border: solid 1px #4291ff;
    background-color: #fbfcff;
    position: absolute;
    right: 20px;
    bottom: 0px;
    overflow: hidden;
}
.Total-Build-Cost h4{
  font-size: 12px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #0d65df;
  padding: 15px;
  background: #f1f7ff;
}
.Total-Build-Cost h2{
  font-size: 32px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.5;
  letter-spacing: normal;
  text-align: left;
  color: #0d65df;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 15px 10px;
}
.Total-Build-Cost h2 span{
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.89;
  letter-spacing: normal;
  text-align: left;
  color: #0d65df;
  margin-top: -5px;
}

.team-sec-weap {
    background-position: top 30px right 20px !important;
    background-repeat: no-repeat !important;
}
.team-sec-weap {
    padding: 25px 20px 0 20px;
    position: relative;
}
.team-sec-weap ul{
  margin: 0;
  padding: 0;
}
.team-sec-weap ul li span.circle{
  width: 18px;
  height: 18px;
  flex-grow: 0;
  margin: 0 0 137px;
  background-color: #4291ff;
  border-radius: 18px;
  position: absolute;
  left: -9px;
  top: 13px;
}
.team-sec-weap ul li:last-child span.circle{
  top: 4px;
}
.team-sec-weap ul li h4 span{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
}
.team-sec-weap ul li img{
  margin-bottom: 5px;
}
.team-sec-weap ul li .content p{
  font-size: 8px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
  margin-bottom: 0;
}
ul.team-sec-weap-list li{
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
}
ul.team-sec-weap-list li:last-child{
  margin-bottom: 0;
}
ul.team-sec-weap-list {
    position: relative;
    z-index: 2;
    width: 42%;
    padding-bottom: 20px;
}
ul.team-sec-weap-list:after{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 1px;
  height: calc(100% - 18px);
  border: 0;
  border-left: 1px solid #acceff;
  border-style: dashed;
  z-index: -1;
}
ul.web-dev-bottom{
  position: relative;
  z-index: 2;
}
ul.web-dev-bottom li{
  position: relative;
  padding-left: 20px;
  max-width: 33.33%;
}
ul.web-dev-bottom li:last-child{
  padding-top: 45px;
}
ul.web-dev-bottom:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    border-left: 1px solid #acceff;
    border-bottom: 1px solid #acceff;
    border-style: dashed;
    width: 100%;
    height: 26px;
    z-index: -1;
}
.team-sec-weap ul.web-dev-bottom li:last-child span.circle {
    width: 18px;
    height: 18px;
    flex-grow: 0;
    margin: 0 0 137px;
    background-color: #4291ff;
    border-radius: 18px;
    position: absolute;
    left: 15px;
    top: 16px;
}


.empty-image{
   width: 172px;
  height: 112px;
  flex-grow: 0;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #f1f7ff;
}

.Portfolio-and-Case-Studies-left h4{
  font-size: 12px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #0d65df;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 8px;
}
.Portfolio-and-Case-Studies-left p{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #8f9bb9;
}
 .Portfolio-and-Case-Studies-right h5 {
    font-size: 10px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #0d65df;
    margin-bottom: 5px;
}
.Portfolio-and-Case-Studies-right .content p{
  font-size: 8px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #8f9bb9;
  margin-bottom: 10px;
}
.for-border{
  border-top: 1px solid #d1d8e8;
  margin-bottom: 0;
  padding-bottom: 0;
}
.proposal-section .icon-wrap{
  margin-bottom: 0;
}
.Brand-guide .icon-wrap {
    background: #0d65df;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 8px;
}
.summary-wrap .Brand-guide h4{
  margin-bottom: 20px;
}
.Brand-guide .Website_Development-content p{
  font-size: 8px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  text-align: left;

}
.total-incrise h5.low-blance {
    position: absolute;
    top: 7px;
    left: 15px;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.97;
    letter-spacing: normal;
    text-align: left;
    color: #617093;
    margin: 0;
}
.total-incrise h5.low-blance strong {
    font-size: 12px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.97;
    letter-spacing: normal;
    text-align: left;
    color: #4291ff;
}
.Ineffective-Website-box .Website_Development-content p{
  margin-bottom: 0;
}
.Approach_Method_Process-new h4{
  margin-bottom: 0;
  padding-bottom: 0;
}
.scope-of-Work-row .proposed-solution-right-content .icon-wrap img {
    height: 18px;
    width: auto;
    margin-bottom: 5px;
}
.planning-design-box {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: solid 1px #acceff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto;
    border-style: dashed;
}
.planning-design-box h5{
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}
.planning-design-box .Strategy-content {
    position: absolute;
    width: 190px;
}
.planning-design-box:after{
  content: "";
    position: absolute;
    height: 40px;
    width: 1px;
    border: 0;
    border-left: 1px solid #8f9bb9;
    border-style: dashed;
    left: 0;
    right: 0;
    z-index: 2;
    top: 100%;
    margin: 0 auto;
  }
.timeline-tab .Strategy-content h4{
  padding-bottom: 0;
  margin-bottom: 8px;
  margin-top: 0;
  padding-top: 0;
}
.timeline-tab .Strategy-content{
  min-height: 90px;
}
.planning-design-box .Strategy-content:nth-of-type(1){
  right: 100%;
  padding-left: 0;
  padding-right: 20px;
  text-align: right;
}
.planning-design-box .Strategy-content:nth-of-type(2){
  left: 93%;
  top: 10px;
  text-align: left;
}
.planning-design-box .Strategy-content:nth-of-type(3) {
    left: 91%;
    top: 117px;
    text-align: left;
}
.planning-design-box .Strategy-content:nth-of-type(1) .Strategy-icon {
    right: -31px;
    left: auto;
    z-index: 9;
}
.planning-design-box .Strategy-content:nth-of-type(1) h4{
  text-align: right;
}
.planning-design-box .Strategy-content:nth-of-type(1) p{
  text-align: right;
}
.planning-design-box .Strategy-icon:after{
  display: none;
}
.proposal-section .nav-link  img{
  max-width: 174px;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(66, 145, 255, 0.0);
  background-color: #fff;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.proposal-section .nav-link:hover img{
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(66, 145, 255, 0.25);
  border: solid 1px #006bff;
  background-color: #fff;
}
.proposal-section .nav-link.active  img{
  border: solid 1px #006bff;
}
.proposal-section .card{
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.cover-right-column .profile-image-main{
  display: none;
}
.cover-right-column{
  box-shadow: 0 4px 16px 0 rgba(49, 99, 167, 0.08);
  background-color: #fff;
  height: calc(100vh - 70px);
  padding: 0;
  overflow: scroll;
}
.cover-right-column::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}
.cover-right-column::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}
.proposal-left-column{
  box-shadow: 0 4px 16px 0 rgba(49, 99, 167, 0.08);
  background-color: #fff;
  padding: 50px;
  height: calc(100vh - 70px);
  overflow: scroll;
}
.proposal-left-column::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.proposal-left-column::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}
.proposal-section .card-body{
  padding: 0;
  margin-top: 0;
}
.proposal-main{
  padding: 0 24px !important;
  margin-left: 290px !important;
  height: calc(100vh - 70px);
  overflow: ;
}
.proposal-main .card-body .tab-content {
    margin-bottom: 0px;
}
.proposal-main .proposal-section.for-prient{
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proposal-section-wrap{
  height: calc(100vh - 70px);
/*  overflow: hidden;*/
  width: 100%;
}
.cover-right-column .form-group label{
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}
.cover-right-column .form-group p{
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #838da9;
}
.cover-right-column .form-group input{
  padding: 13px 20px;
  object-fit: contain;
  border-radius: 6px;
  border: solid 1px #a9bcea;
  background-color: #f4f7ff;
  margin-bottom: 15px;
}
.goals-form-wrap textarea{
  padding: 13px 20px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #8394ad;
}
.cover-right-column h4{
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #222529;
  margin: 0 !important;
  padding: 0 !important;
}
.cover-right-column .cover-title{
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  padding: 20px 30px;
}
.cover-right-column .cover-title p{
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: right;
  color: #445072;
  margin-bottom: 0;
}
.cover-form {
    padding: 30px;
    display: flex;
    flex-flow: column;
    height: calc(100% - 66px);
    justify-content: space-between;
}
.cover-right-column .upload-file-cus label.btn {
    width: 100%;
    height: 123px;
    flex-grow: 0;
    border-radius: 6px;
    border: solid 1px #a9bcea;
    background-color: #f4f7ff;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    opacity: 0.4;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
  color: #445072;
}
.cover-right-column .upload-file-cus .btn:hover img {
    filter: brightness(100%);
}
.massage-info h6 span {
    width: 20px;
    height: 20px;
    background-color: #445072;
    display: inline-block;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    font-style: italic;
}
.massage-info h6 {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
}
.massage-info button {
    width: 100%;
    height: 55px;
    border-radius: 8px;
    background-color: #2a3f75;
    border: 1px solid #2a3f75;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    text-align: center;
}
.massage-info button[disabled="disabled"]{
  background: #a9bcea;
  border-color: #a9bcea;
}
.massage-info{
  padding-top: 15px;
}
.massage-info button img{
  max-width: 24px;
  margin-right: 8px;
}
.proposal-left-column .nav-pills .nav-link.active, .proposal-left-column .nav-pills .show>.nav-link{
  background: transparent;
}
.proposal-left-column .nav-pills .nav-link p{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #6f7880;
  margin-bottom: 0;
  padding: 10px;
}
.proposal-left-column .nav-pills .nav-link.active p{
  color: #006bff;
}
#v-proposal-tab{
  height: 100%;
  display: flex;
  flex-flow: column;
}
.deposit-sec .tag-wrap a {
    font-size: 8px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    border-radius: 8px;
    border: solid 4px #4291ff;
    background-color: #4291ff;
    padding: 2px 15px;
    margin-right: 4px;
    margin-bottom: 5px;
}
.dolor-cus {
    position: absolute;
    bottom: 29px;
    left: 10px;
}
img#company-logo-view {
    max-width: 130px;
}
.cover-title h4 {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1;
    display: flex;
    align-items: center;
}
.goals-form-wrap textarea {
    height: 123px;
    width: 100%;
    flex-grow: 0;
    margin: 4px 0;
    border-radius: 6px;
    border: solid 1px #a9bcea;
    background-color: #f4f7ff;
}
.goals-form-wrap h5 {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
    border-bottom: 2px solid #93a5d1;
}
.goals-form-wrap label{
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}
.goal-main-form .top-form{
  height: calc(100% - 160px );
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 15px;
}
.goal-main-form .top-form::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.goal-main-form .top-form::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}
.goal-main-form .form-switch {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d1d8e8;
    margin: 0;
    padding: 8px 0;
}
.goal-main-form .form-switch label{
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}
.goal-main-form .form-switch .form-check-input{
  margin: 0;
  box-shadow: none;
/*  outline: none;*/
  border: 1px solid #bfbfbf;
}
.form-switch .form-check-input:checked{
  background-color: #6785cf;
}
.goal-main-form .form-switch .form-check-input{
  cursor: pointer;
}
.form-switch label{
  cursor: pointer;
}
/*5.12.23 Start*/
.proposal-gotcha-logo{
  max-width:100px;
}
.proposed-solution-right .proposed-solution-right-content ul ul.sub-text{
  padding: 0;
  margin: 0;
  margin-left: 25px;
  margin-top: 2px;
}
.proposed-solution-right .proposed-solution-right-content ul ul.sub-text li {
    font-size: 8px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #7a88a9;
    margin-bottom: 0;
    list-style: disc;
}
.proposed-solution-right .proposed-solution-right-content ul ul.sub-text li:after{
  display: none;
}
.sublist-wrap{
  display: flex;
  justify-content: space-between;
}
.development-process2 .proposed-solution-right-content-top{
  align-items: center;
}
.development-process2 .proposed-solution-right-content-top h4{
  margin-bottom: 0px;
}


/*distributor-contract-agreement-section-new  Css Start*/
.distributor-contract-agreement-section-new.brand-kit-and-guidelines2 .card-body .contract-agreement p {
    margin-bottom: 20px;
    font-size: 16px;
}
.distributor-contract-agreement-section-new{
  background: #f5f5f5;
}
.distributor-contract-agreement-section-new.brand-kit-and-guidelines2 .card-header .top-title{
  font-size: 48px;
  color: #fff;
  text-align: center;
  background: #234495;
  justify-content: center;
}
.pt-50{
  padding-top: 50px;

}
.pb-50{
  padding-bottom: 50px;
}
.pt-30{
  padding-top: 30px;
}
.pb-30{
  padding-bottom: 30px;
}
.transparent-header{
  background: transparent;
  padding: 0;
}
.distributor-contract-agreement-section-new .contract-agreement-sec {
    display: block;
}
.distributor-contract-agreement-section-new .contract-agreement-sec .card{
  border: 1px solid #9fa7af;
    border-style: dashed;
    background: #fff;
    padding: 0;
    margin: 0;
}
.distributor-contract-agreement-section-new .contract-agreement-sec .card .card-header-title{
  padding: 20px;
  margin-bottom: 20px;
  margin-bottom: 0;
}
.distributor-contract-agreement-section-new .contract-agreement-sec .card .card-header-tab{
  padding: 0;
}
.distributor-contract-agreement-section-new .contract-agreement-sec .e-sign-wrap img.img-fluid{
  display: block;
  max-width: 90px;
}
.distributor-contract-agreement-section-new .contract-agreement-sec .form-group label{
  font-weight: 800;
  color: #153073;
}
.distributor-contract-agreement-section-new .contract-agreement-sec .form-group p{
  margin-bottom: 0;
}
.distributor-contract-agreement-section-new .contract-agreement-sec p{
  color: #20305b;
  font-weight: 500;
}
.distributor-contract-agreement-section-new .contract-agreement-sec p strong {
    font-weight: 800;
    color: #153073;
}
.distributor-contract-agreement-section-new .contract-agreement-sec h6 {
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.distributor-contract-agreement-section-new .contract-agreement-form .form-group {
    margin-bottom: 25px;
}
.distributor-contract-agreement-section-new span.input-text {
    background: #eff4ff;
    padding: 5px 11px;
    display: inline-block;
    border-bottom: 1px solid #153073;
}
.distributor-contract-agreement-section-new a{
  color: #599eff;
}

.distributor-contract-agreement-section-new .card{
  box-shadow: none;
  border: 0;
}
.distributor-contract-agreement-section-new .container{
  max-width: 780px;
  background: #fff;
}
.distributor-contract-agreement-section-new.brand-kit-and-guidelines2 .card-header .top-title {
    font-size: 36px;
    font-weight: 800;
}
.distributor-contract-agreement-section-new .contract-agreement-sec {
    padding: 0;
    margin-top: 50px;
}
.distributor-contract-agreement-section-new .contract-agreement-sec .card-body{
  margin-top: 0;
}

/*distributor-contract-agreement-section-new  Css End*/

.scope-of-Work-tab .proposed-solution-right ul li{
  margin-bottom: 5px;
}
.scope-of-Work-tab .proposed-solution-right-content{
  margin-bottom: 0;
}
.scope-of-Work-row .proposed-solution-right-content .icon-wrap img {
    height: 14px;
}
.scope-of-Work-row .proposed-solution-right-content .icon-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
}
.development-process2 .scope-of-Work2 .proposed-solution-right-content-top p{
  margin-top: 8px;
}
.scope-of-Work-form .form-group {
    position: relative;
}
.scope-of-Work-form button.edit {
    position: absolute;
    border: 0;
    right: 10px;
    bottom: 15px;

    background: transparent;
    outline: none;
    box-shadow: none;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scope-of-Work-form button.edit img{
  max-width: 21px;
}
.cover-right-column .scope-of-Work-form .form-group input{
  border: 0;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid #d1d8e8;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  padding: 0;
  height: 40px;
  border-radius: 0;
}

.cover-right-column .scope-of-Work-form .form-group input::-webkit-input-placeholder { 
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  padding: 0;
  height: 40px;
}
.cover-right-column .scope-of-Work-form .form-group input::-moz-placeholder {
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  padding: 0;
  height: 40px;
}
.cover-right-column .scope-of-Work-form .form-group input:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  padding: 0;
  height: 40px;
}
.cover-right-column .scope-of-Work-form .form-group input:-moz-placeholder {
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
  padding: 0;
  height: 40px;
}



.PartnerLogo-wrap h2{
  margin-bottom: 0;

}
.development-type button{
  width: 48%;
  outline: none !important;
  box-shadow: none !important;
  border: 0;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.development-type button img{
  max-width: 19px;
  margin-right: 4px;
}
.development-type{
  justify-content: space-between;
  margin-top: 20px;
}
.waterfall-button{
  border-radius: 6px;
  background-color: #4291ff;
  border-color: #4291ff;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #fff;
}
.agile{
  border-radius: 6px;
  background-color: #f4f7ff;
  border-color: #f4f7ff;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #4291ff;
}

.userExperience .Brand-guide .icon-wrap {
    background-color: #4291ff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.userExperience .Brand-guide .icon-wrap img{
  max-width: 19px;
  max-height: 19px;
}
.userExperience .Brand-guide .Website_Development-box{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.userExperience .Brand-guide .Website_Development-content{
  width: calc(100% - 40px);
}
.User-Experience.Brand-guide .Website_Development-box{
  flex-flow: column;
  justify-content: flex-start;
}
.User-Experience.Brand-guide .Website_Development-box .Website_Development-content{
  width: 100%;
}
.userExperience .goals-form-wrap p {
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
}
.Next-Steps-Graphic .hero-image {
    margin-left: -27px;
    width: calc(100% + 27px);
    max-width: calc(100% + 27px);
    margin-top: -20px;
    margin-bottom: 30px;
}
.Next-Steps-Graphic .proposed-solution-right-content {
    margin-bottom: 30px;
}
.Next-Steps-Graphic .proposed-solution-right{
  padding-left: 0;
  padding-right: 0;
}
.Next-Steps-Graphic .proposed-solution-right-content:after {
    content: "";
    position: absolute;
    height: calc(100% + 25px);
    width: 1px;
    border: 0;
    border-left: 1px solid #acceff;
    border-style: dashed;
    left: 14px;
    z-index: -1;
    top: 0;
}
.Next-Steps-Graphic .proposed-solution-right-content:last-child .proposed-solution-right-content:after {
  display: none !important;
}
.Next-Steps-Graphic .proposed-solution-right ul li{
  padding-left: 7px;
  position: relative;
}
.Next-Steps-Graphic .proposed-solution-right ul li span{
  margin-left: -6px;
}
.Next-Steps-Graphic .proposed-solution-right .Website_Development-content p{
  margin-bottom: 0;
}
.Next-Steps-Graphic .proposed-solution-right-content:last-child:after{
  display: none;
}
.maintenance-and-Support .proposed-solution-right{
  padding: 0;
}
.maintenance-and-Support .proposed-solution-right ul {
    padding: 0;
    margin: 20px 0 0 20px;
    padding-left: 15px;
}
.maintenance-and-Support .client_name_here p{
  font-size: 10px;
  color: #617093;
}
.maintenance-and-Support .Brand-guide .icon-wrap {
    background: #4291ff;
}
.maintenance-and-Support .Brand-guide .icon-wrap img{
  max-width: 22px;
  max-height: 22px;
}
.maintenance-and-Support .proposed-solution-left{
  flex-flow: column;
  padding: 15px;
}
.maintenance-and-Support .proposed-solution-left h4{
  padding-bottom: 0;
}

.maintenance-and-Support .terms-and-conditions-new .proposed-solution-right ul {
    padding: 0;
    margin: 0;
    padding-left: 15px;
}
.summary-wrap .proposed-solution-left-gols h4{
  border-bottom: 0;
  padding-bottom: 0;
}
.communication-and-collaboration .Brand-guide .Website_Development-content p{
  font-size: 10px;
}
.communication-and-collaboration .proposed-solution-right ul li {
    font-size: 10px;
  }
.goals-and-condition{
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #d1d8e8;
}
.goals-and-condition:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.goals-and-condition .proposed-solution-right ul li:after{
  top: 4px;
}
.goals-and-condition .proposed-solution-right ul li:last-child{
  margin-bottom: 0;
}
.web-back-wrap .web-dev-wrap {
    flex-flow: column;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
    padding: 110px 15px;
    max-width: 390px;
    margin: 0 auto;
}
.web-back-wrap .web-desc p {
    font-size: 10px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}
.web-back-wrap .web-desc ul{
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
  gap: 5px;
}
.web-back-wrap .web-desc ul li{
  list-style: none;
  display: flex;
  align-items: center;
}
.web-back-wrap .web-desc ul li a {
    font-size: 10px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 200px;
    border: solid 1px #bdd0ff;
    background-color: #3684f1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.web-back-wrap .web-desc ul li a:hover{
  background: #4291ff;
  color: #fff;

}
.web-back-wrap .web-desc h4{
  font-size: 10px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-top: 25px;
}
.web-back-wrap .contact-deatils h4{
  font-size: 10px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-top: 25px;
}
.web-back-wrap .contact-deatils ul{
  padding: 0;
  margin: 0;
}
.web-back-wrap .contact-deatils ul li{
  list-style: none;
}
.web-back-wrap .contact-deatils ul li img{
  max-width: 16px;
  margin-right: 10px;
}
.web-back-wrap .contact-deatils ul li a{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.web-back-wrap .contact-deatils ul li a:hover{
  color: #bdd0ff;
}
.web-back-wrap .PartnerLogo-wrap{
  margin-bottom: 70px;
}
.web-back-wrap .proposal-container{
  background-size: cover !important;
  background-position: center center !important;
}
.budget-deposit-sec ul li{
  margin-bottom: 30px;
}
.budget-deposit-sec ul li:last-child{
  margin-bottom: 0;
}
.budget-deposit-sec ul li span:after{
  height: 113px;
}
.budget-deposit-sec{
  margin-top: 15px;
}

.top-form .edit-custom-pan-point {
    border-radius: 8px;
    border: solid 2px #6785cf;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #617093;
    height: 55px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.top-form .add-more {
    border-radius: 8px;
    border: solid 2px #6785cf;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #617093;
    height: 55px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.your-storyStep2 .goals-form-wrap{
  position: relative;
}
.your-storyStep2 .delete-button {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
}
.your-storyStep2 .delete-button img{
  max-width: 24px;
}
.your-storyStep2{
  display: none;
}
.your-storyStep2.show{
  display: block;
}
.your-storyStep1.hide{
  display: none;
}
.common-item{
  display: none;
}
.your-stroy-back{
  display: none;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}
.your-stroy-back img{
  max-width: 24px;
}
.your-stroy-back.show{
  display: block;
}
.cover-title p.hide{
  display: none;
}
.pt-35{
  padding-top: 30px;
}

.planning-and-design-form-wrap .form-group label span {
    font-size: 12px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
}
.planning-and-design-form-wrap .form-group label{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.planning-and-design-form-wrap .form-group label span:nth-of-type(2){
  font-size: 10px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: right;
  color: #838da9;
}
.planning-and-design-form-wrap .chechk-box-wrap .form-group label{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
  justify-content: flex-start;
}
.planning-and-design-form-wrap .chechk-box-wrap .form-group{
  width: 47%;
  margin-bottom: 0;
}
.planning-and-design-form-wrap .chechk-box-wrap .form-group label:before{
  padding: 0px;
  border: 1px solid #bbc1c7;
  width: 12px;
  height: 12px;
}
.planning-and-design-form-wrap .chechk-box-wrap .form-group input:checked + label:before {
    border: 1px solid #0d65df;
    background-color: #0d65df;
}
.planning-and-design-form-wrap .chechk-box-wrap .form-group input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 4px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.planning-and-design-form-wrap .chechk-box-wrap {
    flex-flow: row wrap;
    row-gap: 12px;
    column-gap: 6px;
    margin: 0px 0 30px 0;
}
.form-group .accordion-header .accordion-button {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
}
.form-group .accordion-header .accordion-button:after{
  width: 14px;
}
.form-group .accordion-item, .form-group .accordion-item:last-child {
    border-bottom: 1px solid #d1d8e8;
}
.planning-and-design-form-wrap .goals-form-wrap textarea {
    height: 85px;
}
.company-logos-wrap{
  flex-flow: row wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.company-logos-wrap .logo-box{
    width: 31.5%;
    border-radius: 6px;
    border: solid 1px #a9bcea;
    background-color: #f4f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 109px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    cursor: pointer;
}
.company-logos-wrap .logo-box:hover{
  border: solid 4px #4178ff;
  background-color: #f4f7ff;
}
.company-logos-wrap .logo-box img{
  max-height: 56px;
  cursor: pointer;
}
.company-logos-wrap .logo-box label.btn {
    font-size: 10px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #838da9;
    height: auto;
    background: transparent;
    border: 0;
    opacity: 1;
    padding: 0;
}
.company-logos-wrap .logo-box .upload-file-cus img{
  max-width: 24px;
  margin-bottom: 5px;
  margin-right: 0;
  cursor: pointer;
}
/*Our Proposal Css Start*/


/*12.12.2023 Start gsuite*/
.recommendation-or-proposed-products .Website_Development-content p, .recommendation-or-proposed-products .results-content p{
    font-size: 8px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #617093;
    margin: 0;
}
.recommendation-or-proposed-products .Website_Development-content h5{
  margin-bottom: 0;
}
.recommendation-or-proposed-products .row{  
  border-bottom: 1px solid #d1d8e8;
}
.recommendation-or-proposed-products .left-column{
  padding-left: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}
.recommendation-or-proposed-products .icon-wrap {
    width: 33px;
}
.recommendation-or-proposed-products .Website_Development-content{
  width: calc(100% - 45px);
}
.recommendation-or-proposed-products .proposed-solution-right-content-top{
  justify-content: space-between;
}
.recommendation-or-proposed-products .right-column{
  background-color: #f6f4ff;
  padding-top: 13px;
  padding-bottom: 13px;
}


.recommendation-or-proposed-products .row:first-child .right-column{
  border-radius: 8px 8px 0 0;
}
.recommendation-or-proposed-products .row:last-child .right-column{
  border-radius: 0 0 8px 8px ;
}
.recommendation-or-proposed-products .row:last-child{
  border-bottom: 0;
}
.recommendation-or-proposed-products .row:first-child h5{
  margin-bottom: 0;
  padding-bottom: 0;
}
.how-our-products-work{
  position: relative;
  margin-top: 22px;
}
.how-our-products-work ul{
  padding: 0;
  margin: 0;
  flex-flow: row wrap;
  width: 327px;
  position: absolute;
  left: 15px;
  top: 15px;
  column-gap: 2px;
  row-gap: 4px;
}
.how-our-products-work ul li{
  list-style: none;
}
.how-our-products-work ul li a{
  font-size: 8px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
  line-height: 1;
  padding: 1px 4px;
  border-radius: 56px;
  border: solid 1px #d5e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-our-products-work ul li a:hover{
  background-color: #6c4aed;
  border-color: #6c4aed;
  color: #fff;
}
.how-our-products-work-content {
    position: absolute;
    top: 0;
}
.how-our-products-work-content:nth-of-type(1){
  width: 160px;
  left: 59%;
}
.how-our-products-work-content:nth-of-type(2){
  width: 175px;
  left: 15%;
  top: 144px;
}
.how-our-products-work-content:nth-of-type(3){
  width: 117px;
  left: 15%;
  top: 290px;
}
.how-our-products-work-content:nth-of-type(4) {
  width: 119px;
  left: 66%;
  top: 457px;
}
.how-our-products-work-wrapper .row {
    margin-left: -28px;
    margin-right: -28px;
}

.Next-Steps-Graphic .proposed-solution-right-content ul li {
    padding-left: 15px;
}
.Next-Steps-Graphic .proposed-solution-right-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 8px;
    height: 1px;
    background: #617093;
    z-index: -1;
}
.reporting-and-analytics{
  flex-flow: column;
  gap: 13px;
}
.reporting-and-analytics .icon-wrap{
  width: 60px;
}
.reporting-and-analytics .Website_Development-content{
  width: calc(100% - 70px);
}
.reporting-and-analytics .Website_Development-content h5{
  margin-bottom: 5px;
}

.reporting-and-analytics-2 ul li a{
  width: 117px;
  height: 61px;
  border-radius: 6px;
  background-color: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reporting-and-analytics-2 ul{
  padding: 0;
  margin: 0;
  gap: 10px;
  margin-top: 12px;
}
.reporting-and-analytics-2 ul li{
  list-style: none;
}
.reporting-and-analytics-2 ul li:first-child img{
  max-width: 71px;
}
.reporting-and-analytics-2 ul li:nth-of-type(2) img{
  max-width: 94px;
}
.communication-and-collaboration-list .proposed-solution-right ul li{
  font-size: 10px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
}
.summary-wrap .communication-and-collaboration-list h4{
  border-bottom: 0;
  padding: 0;
  margin-bottom: 0;
}
.communication-and-collaboration-list .proposed-solution-right ul li:after{
  top: 6px;
}

.goals-and-condition {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #d1d8e8;
}
.goals-and-condition:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.goals-and-condition .proposed-solution-right{
  padding: 0;
}

.foundational-services .foundational-services-left, .foundational-services .foundational-services-right{
  padding-bottom: 15px;
  border-bottom: 1px solid #d1d8e8;
}
.foundational-services .row:last-child .foundational-services-left, .foundational-services .row:last-child .foundational-services-right{
  padding-bottom: 0px;
  border-bottom: 0px solid #d1d8e8;
}
.foundational-services .foundational-services-left{
  padding-left: 0;
}
.foundational-services .foundational-services-right{
  padding-right: 0;
}
.foundational-services .Services-content h4{
  border-bottom: 0;
  padding-bottom: 0;
  padding-top: 17px;
  margin-bottom: 8px;
}
table.rwd-table {
    background: #fff;
    width: 100%;
    border-collapse: collapse;
}
table.rwd-table td, table.rwd-table th{
  padding: 11px 8px;
  border: 2px solid #fff;
  font-size: 10px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #153073;
  width: 27%;
  background: #f6f4ff;
}

table.rwd-table td:first-child, table.rwd-table th:first-child{
  border-radius: 10px 0px 0 10px;
}
table.rwd-table td:last-child, table.rwd-table th:last-child{
  border-radius: 0px 10px 10px 0px;
}
table.rwd-table td p{
  font-size: 5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #153073;
  margin-bottom: 0;
}
table.rwd-table td:first-child, table.rwd-table th:first-child{
  width: 46%;
}
table.rwd-table th{
  background: #fff;
}


.how-our-products-work ul{
  padding: 0;
  margin: 0;
  flex-flow: row wrap;
  width: 327px;
  position: absolute;
  left: 15px;
  top: 15px;
  column-gap: 2px;
  row-gap: 4px;
}
.how-our-products-work ul li{
  list-style: none;
}
.how-our-products-work ul li a{
  font-size: 8px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #617093;
  line-height: 1;
  padding: 1px 4px;
  border-radius: 56px;
  border: solid 1px #d5e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-our-products-work ul li a:hover{
  background-color: #6c4aed;
  border-color: #6c4aed;
  color: #fff;
}
.how-our-products-work-content {
    position: absolute;
    top: 0;
}
.how-our-products-work-content:nth-of-type(1){
  width: 160px;
  left: 59%;
}
.how-our-products-work-content:nth-of-type(2){
  width: 175px;
  left: 15%;
  top: 144px;
}
.how-our-products-work-content:nth-of-type(3){
  width: 117px;
  left: 15%;
  top: 290px;
}
.how-our-products-work-content:nth-of-type(4) {
  width: 119px;
  left: 66%;
  top: 457px;
}

.Next-Steps-Graphic .proposed-solution-right-content ul li {
    padding-left: 15px;
}
.Next-Steps-Graphic .proposed-solution-right-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 8px;
    height: 1px;
    background: #617093;
    z-index: -1;
}
.reporting-and-analytics{
  flex-flow: column;
  gap: 13px;
}
.gSuite-proposal-builder-main-wrap .reporting-and-analytics .Website_Development-content p{
  margin-bottom: 0;
}
.reporting-and-analytics .icon-wrap{
  width: 60px;
}
.reporting-and-analytics .Website_Development-content{
  width: calc(100% - 70px);
}
.reporting-and-analytics .Website_Development-content h5{
  margin-bottom: 5px;
}

.reporting-and-analytics-2 ul li a{
  width: 117px;
  height: 61px;
  border-radius: 6px;
  background-color: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reporting-and-analytics-2 ul{
  padding: 0;
  margin: 0;
  gap: 10px;
  margin-top: 12px;
}
.reporting-and-analytics-2 ul li{
  list-style: none;
}
.reporting-and-analytics-2 ul li:first-child img{
  max-width: 71px;
}
.reporting-and-analytics-2 ul li:nth-of-type(2) img{
  max-width: 94px;
}
.summary-wrap .communication-and-collaboration-list h4{
  border-bottom: 0;
  padding: 0;
  margin-bottom: 0;
}
.communication-and-collaboration-list .proposed-solution-right ul li:after{
  top: 6px;
}

.goals-and-condition {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #d1d8e8;
}
.goals-and-condition:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.goals-and-condition .proposed-solution-right{
  padding: 0;
}
.goals-and-condition .proposed-solution-right ul li:last-child{
  margin-bottom: 0;
}
.summary-wrap .terms-and-conditions-new h4 {
    border-bottom: 0px solid #d1d8e8;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.gSuite-proposal-builder-main-wrap .summary-wrap .terms-and-conditions-new ul li{
      font-size: 10px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #617093;
}
.summary-wrap .terms-and-conditions-new ul li:after{
  top: 6px;
}
.pt-50{
  padding-top: 50px;
}
.proposed-solution-left-gols{
  margin-top: 0;
}

.web-back-wrap .web-dev-wrap {
    flex-flow: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    padding: 40px 15px;
    max-width: 370px;
    margin: 0 auto;
}
.web-back-wrap .web-desc p {
    font-size: 10px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}
.web-back-wrap .web-desc ul{
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
  gap: 5px;
}
.web-back-wrap .web-desc ul li{
  list-style: none;
  display: flex;
  align-items: center;
}
.web-back-wrap .web-desc ul li a {
    font-size: 10px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 200px;
    border: solid 1px #bdd0ff;
    background-color: #3684f1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.web-back-wrap .web-desc ul li a:hover{
  background: #4291ff;
  color: #fff;

}
.web-back-wrap .web-desc h4{
  font-size: 10px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-top: 25px;
}
.web-back-wrap .contact-deatils h4{
  font-size: 10px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin-top: 25px;
}
.web-back-wrap .contact-deatils ul{
  padding: 0;
  margin: 0;
}
.web-back-wrap .contact-deatils ul li{
  list-style: none;
}
.web-back-wrap .contact-deatils ul li img{
  max-width: 16px;
  margin-right: 10px;
}
.web-back-wrap .contact-deatils ul li a{
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.web-back-wrap .contact-deatils ul li a:hover{
  color: #bdd0ff;
}
.web-back-wrap .PartnerLogo-wrap{
  margin-bottom: 70px;
}
.web-back-wrap .proposal-container{
  background-size: cover !important;
  background-position: center center !important;
}
.budget-deposit-sec ul li{
  margin-bottom: 30px;
}
.budget-deposit-sec ul li:last-child{
  margin-bottom: 0;
}
.budget-deposit-sec ul li span:after{
  height: 113px;
}
.budget-deposit-sec{
  margin-top: 15px;
}

.prod-budget .foundational-services .row:last-child .Services-content p{
  margin-bottom: 15px;
}
.prod-budget .foundational-services .row:last-child .Services-content p:last-child{
  margin-bottom: 0;
}
.prod-communication-and-collaboration .Brand-guide .icon-wrap{
  width: 45px;
  height: 45px;
}
.pt-40{
  padding-top: 40px;
}

.proposed-solution-right-content:last-child:after{
  display: none;
}
.goals-form-wrap table{
  width: 100%;
}
.goals-form-wrap table tr{
  border-bottom: 1px solid #d1d8e8;  
}
.goals-form-wrap table td{
    font-size: 14px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
.goals-form-wrap table th {
    font-size: 10px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #445072;
    padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.goals-form-wrap table td:first-child, .goals-form-wrap table th:first-child{
  font-weight: 500;
}
.budget-main-form .form-switch{
  border: 0;
  padding: 0;
}

/*12.12.2023 Start*/
.gSuite-proposal-builder-main-wrap .title-wrap h2, .gSuite-proposal-builder-main-wrap .proposal-section h4, .gSuite-proposal-builder-main-wrap .proposal-section h5{
  color: #6c4aed;
}
.gSuite-proposal-builder-main-wrap .title-wrap{
  border-color: #6c4aed ;
}
.gSuite-proposal-builder-main-wrap .summary-wrap h4{
  border-color: #6c4aed ;
}
.gSuite-proposal-builder-main-wrap .summary-wrap .result-content h2 {
    color: #6c4aed;
}
.gSuite-proposal-builder-main-wrap .incrise-box:before {
/*    background-image: linear-gradient(13deg, #6c4aed 44%, #4175fa 51%, #4175fa 51%);*/
    background-image: linear-gradient(38deg, #6c4aed 24%, #4175fa 100%, #4175fa 100%);
}

.gSuite-proposal-builder-main-wrap .incrise-box h5 {
    color: #153073;
  }
.gSuite-proposal-builder-main-wrap .Goals-and-Objectives-row .icon-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 27px;
    width: 2px;
    height: calc(100% - 15px);
    background: #6c4aed;
    z-index: -1;
}
.gSuite-proposal-builder-main-wrap .Goals-and-Objectives-row {
    border-color: #6c4aed;
}
.recommendation-or-proposed-products h5{
  color: #6c4aed;
}
.gSuite-proposal-builder-main-wrap .recommendation-or-proposed-products .proposed-solution-right-content-top{
  margin-bottom: 0;
}
.gSuite-proposal-builder-main-wrap .how-our-products-work p strong{
  color: #153073;
}
.gSuite-proposal-builder-main-wrap .cover-right-column h4{
  color: #222529;
}
.gSuite-proposal-builder-main-wrap .cover-right-column .goals-form-wrap h5 {
    color: #445072;
}
.gSuite-proposal-builder-main-wrap .proposed-solution-right .proposed-solution-right-content ul li:after {
    background-color: #6652f0;
}
.gSuite-proposal-builder-main-wrap .proposed-solution-right-content:after {
    border-left: 1px solid #acceff;
    border-style: dashed;
  }
.gSuite-proposal-builder-main-wrap .Next-Steps-Graphic .proposed-solution-right-content-top {
    margin-bottom: 12px;
}
.gSuite-proposal-builder-main-wrap .proposed-solution-right ul li strong {
    color: #153073;
}

.gSuite-proposal-builder-main-wrap .terms-and-conditions .title-wrap {
    margin-bottom: 20px;
}
.pt-40{
  padding-top: 40px;
}
/*12.12.2023 End*/

/*Partner Applications Start 13.12.2023 Start*/
.partner-applications-main .pricing-sheet_button-wrap .btn{
  padding: 10px 20px;
}
.partner-applications-main .pricing-sheet_button-wrap .btn:hover, .partner-applications-main .pricing-sheet_button-wrap .btn.active {
    background: #234495;
    color: #fff;
    border-color: #234495;
}
.partner-applications-main .pricing-sheet_button-wrap .btn:hover span{
  border-color: #fff;
}
.partner-applications-main .table th {
    background: #dee2e6;
}
.partner-applications-column .foundational-Services-header-icon{
  max-width: 44px;
  margin-right: 15px;
}
.partner-applications-column p{
  margin-bottom: 0;
}
.partner-applications-column .foundational-Services-box{
  padding: 30px;
}
.partner-applications-buttons{
  margin-bottom: 20px;
  margin-top: 20px;
}
.partner-applications-buttons .btn{
  border-radius: 30px;
  box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, 0.06);
  border: solid 1px #eef6ff;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: -0.3px;
  text-align: left;
  color: #153073;
  display: flex;
  align-items: center;
  padding:6px 15px;
  margin-right: 10px;
}
.partner-applications-buttons .btn:hover{
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #eef6ff;
  background-color: #fff; 
}

.partner-applications-buttons .btn:last-child{
  margin-right: 0;
}
.partner-applications-buttons .btn span{
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.12px;
    text-align: left;
    color: #153073;
    border-radius: 12.5px;
    background-color: #d6e5fb;
    padding: 4px 8px;
    margin-left: 5px;
}
.bg-light-hexa{
  background: #d6e5fb !important;
}
.bg-light-green{
  background: #dcffc2 !important;
}
.bg-light-purple{
  background: #fde1e6 !important;
}
.partner-applications-buttons .btn:nth-of-type(2) span{
  background: #fde1e6;
}
.sidebar-nav img{
  max-width: 20px;
  max-height: 20px;
}

.partner-applications-column .foundational-Services-header-content h6 a, .partner-applications-column .foundational-Services-header-content h6{
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.78;
    letter-spacing: normal;
    text-align: left;
    color: #212529;
    margin-bottom: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.partner-applications-column .foundational-Services-header-content h6 a:hover{
  color: #4178ff;
}

/*Partner Applications Start 13.12.2023 End*/


/*14.12.2023 Strat*/
.reschedule-demo-call-popup .btn{
  padding: 0 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.reschedule-demo-call-popup .prev-step:hover, .reschedule-demo-call-popup .prev-step2:hover, .reschedule-demo-call-popup .prev-step3:hover, .reschedule-demo-call-popup .prev-step4:hover {
    background: #3670f3 !important;
    color: #fff!important;
    border-color: #3670f3;
}
.reschedule-demo-call-popup .thanks-content p{
  text-align: center;
}
.active-products-logos {
    max-width: 250px;
    flex-flow: row wrap;
    justify-content: space-between;
    row-gap: 4px;
    margin: 0 auto;
}
.active-products-logos a img{
  max-width: 24px;
  max-height: 24px;
  border-radius: 24px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transform: scale(1.0);
}
.active-products-logos a:hover img{
  transform: scale(1.3);
  box-shadow: 2px 8px 30px 0 rgba(188, 200, 212, 0.92);
  z-index: 99;
}

.multi-step-form .chechk-box-wrap .form-group {
    margin-bottom: 0px;
}
.multi-step-form .chechk-box-wrap .form-group label:before{
  padding: 8px;
}
.call-common-modal .btn-primary {
    border-radius: 6px !important;
    background-color: #3670f3 !important;
    height: 48px;
    padding: 0 22px;
    box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    position: relative;
    margin-right: 1.6%;
    width: fit-content;
    padding: 0 10px;
    border: solid 1px #3670f3;
}

.call-common-modal .prev-step {
    background: transparent !important;
    border: 2px solid #3670f3;
    color: #3670f3;
    height: 48px;
}
.call-common-modal .prev-step:hover{
    background: #3670f3 !important;
    color: #fff!important;
    border-color: #3670f3;
}

.call-common-modal .btn-primary i{
  margin-left: 5px;
}
.custom-call {
    background: transparent;
}
.custom-call img{
  margin: 0 auto;
  display: block;
}
.tooltip-cus a.tooltiptext {
    border-radius: 24px;
    box-shadow: 2px 8px 30px 0 rgba(188, 200, 212, 0.92);
    background-color: #143073;
    color: #ffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}
.tooltip-cus a.tooltiptext:after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #143073 transparent transparent transparent;
}
.chris {
    width: fit-content;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #102456;
    margin: 0 auto;
}
.chris img{
  max-width: 18px;
  max-height: 18px;
}
.chris .tooltiptext{
  border-radius: 10px;
  box-shadow: 2px 8px 30px 0 rgba(188, 200, 212, 0.63);
  background-color: #f8faff;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #143073;
}
.chris .tooltiptext:after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #f8faff transparent transparent transparent;
}
.call-common-modal .chechk-box-wrap .form-group input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 8px;
    width: 6px;
    height: 12px;
    border: solid #599eff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.sidebar-nav .nav-item:hover .nav-link {
    color: #fff;
    background: #364482;
}

.sales_pipeline_table tr{
  z-index: 9;
}
.sales_pipeline_table tr:hover{
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #f8faff;
  z-index: 99;
}
/*14.12.2023 End*/

/*.active-products-logos a img{
  border-radius: 50%;
  margin: 0 auto !important;
}*/
.active-products-logos a .icon-inactive{
  display: blcok;
}
.active-products-logos a .icons-active{
  display: none;
}
.active-products-logos a.active .icons-active{
  display: block;
}
.active-products-logos a.active .icon-inactive{
  display: none;
}
.proposal-builder-web-box{
  margin: 10px  auto 40px auto;
}
.proposal-builder-web-box .btn{
  width: fit-content;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);
  background-color: #234495;

  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  border: 0;
  outline: none;
  box-shadow: none;
}
.proposal-builder-web-box .button-wrapper{
  border: 0;
}
/*admin-salse-table start*/
.admin-salse-table{
  vertical-align: middle;
}
.admin-salse-table .accordion-button {
    padding: 0;
}
.admin-salse-table .accordion-button td, .admin-salse-table .accordion-button tr, .admin-salse-table .accordion-button th{
  vertical-align: middle;
}
.admin-salse-table .admin-salse-table-part-wrap{
  padding: 0 !important;
}
.admin-salse-table-part-wrap .accordion-body {
    padding: 0;
}

.admin-salse-table-part-wrap .accordion-button:not(.collapsed)::after, .admin-salse-table-part-wrap .accordion-button::after {
    position: absolute;
    left: 6px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: solid 1px #e7ecf1;
    background-color: #f8faff;
    background-size: 14px !important;
    background-position: top 8px center !important;
}
.admin-salse-table-part tr:nth-of-type(1) td:first-child{
  padding-left: 40px;
}
/*.dropdown-cus .btn{
  height: auto !important;
}*/
.admin-salse-table-part-wrap td:nth-of-type(5) a img {
    margin-left: 5px;
}

.admin-salse-table th:nth-of-type(1), .admin-salse-table td:nth-of-type(1){
  width: 22%;
}
.admin-salse-table th:nth-of-type(2), .admin-salse-table td:nth-of-type(2){
  width: 15%;
}
.admin-salse-table th:nth-of-type(3), .admin-salse-table td:nth-of-type(3){
  width: 9%;
}
.admin-salse-table th:nth-of-type(4), .admin-salse-table td:nth-of-type(4){
  width: 9%;
}
.admin-salse-table th:nth-of-type(5), .admin-salse-table td:nth-of-type(5){
  width: 9%;
}
.admin-salse-table th:nth-of-type(6), .admin-salse-table td:nth-of-type(6){
  width: 12%;
}
.admin-salse-table th:nth-of-type(7), .admin-salse-table td:nth-of-type(7){
  width: 9%;
}
.admin-salse-table th:nth-of-type(8), .admin-salse-table td:nth-of-type(8){
  width: 9%;
}
.admin-salse-table th:nth-of-type(9), .admin-salse-table td:nth-of-type(9){
  width: 6%;
}


/*sales_pipeline_new Start*/

.sales_pipeline_new .admin-salse-table th:nth-of-type(1), .sales_pipeline_new .admin-salse-table td:nth-of-type(1){
  width: 22%;
}
.sales_pipeline_new .admin-salse-table th:nth-of-type(2), .sales_pipeline_new .admin-salse-table td:nth-of-type(2){
  width: 15%;
}
.sales_pipeline_new .admin-salse-table th:nth-of-type(3), .sales_pipeline_new .admin-salse-table td:nth-of-type(3){
  width: 9%;
}
.sales_pipeline_new .admin-salse-table th:nth-of-type(4), .sales_pipeline_new .admin-salse-table td:nth-of-type(4){
  width: 9%;
  text-align: center;
}
.sales_pipeline_new .admin-salse-table th:nth-of-type(5), .sales_pipeline_new .admin-salse-table td:nth-of-type(5){
  width: 9%;
}

.sales_pipeline_new .admin-salse-table th:nth-of-type(6), .sales_pipeline_new .admin-salse-table td:nth-of-type(6){
  width: 27%;
  text-align: center;
}
.sales_pipeline_new .admin-salse-table th:nth-of-type(7), .sales_pipeline_new .admin-salse-table td:nth-of-type(7){
  width: 9%;
}

.sales_pipeline_new .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(5), .sales_pipeline_new .admin-salse-table .admin-salse-table-part-innertable td:nth-of-type(5){
  width: 27%;
  text-align: center;
}
.sales_pipeline_new .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(6), .sales_pipeline_new .admin-salse-table .admin-salse-table-part-innertable td:nth-of-type(6){
  width: 9%;
}

.sales_pipeline_new .radio-wrap .btn {
    margin: 0 2px;
    width: 26px;
    height: 26px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.sales_pipeline_new .radio-wrap:hover .btn {
  margin: 0 4px;
}
.sales_pipeline_new .radio-wrap{
  justify-content: center;
}

.admin-salse-table .admin-salse-table-part-innertable td, .admin-salse-table .admin-salse-table-part-innertable th{
  width: fit-content;
}
.admin-salse-table .company-name h3 {
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 0.15px;
    text-align: center;
    color: #153073;
}
.admin-salse-table .company-name{
  padding-top: 20px;
  padding-bottom: 20px;
}

.admin-salse-table  .admin-salse-table-part tr:hover{
  background-color: #f8faff;
}
.admin-salse-table  .admin-salse-table-part tr td{
  background: transparent !important;
}
.admin-salse-table .admin-salse-table-part-innertable th {
    background: #eef2fb;
}
.admin-salse-table .admin-salse-table-part-innertable tr {
    background-color: #f8faff;
}
.admin-salse-table .admin-salse-table-part-innertable tr td{
  background: transparent !important;
}
.admin-salse-table-part-wrap .accordion-body{
  background-color: #f8faff;
}
.admin-salse-table .tooltip-cus{
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-new-company-button-wrap .btn{
  margin-right: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-new-company-button-wrap .btn span {
    border: solid 0px #6c757d;
    width: 15px;
    height: 15px;
    line-height: 1;
    margin-right: 3px;
    margin-top: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*.add-new-company-button-wrap .btn span img{
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}*/
.add-new-company-button-wrap .btn:hover span img{
  filter: brightness(2000%);
}
/*27.12.2023 Satrt*/

#search-nav input[type="text"] {
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    width: 100%;
    color: #fff;
}
#search-nav button{
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
}
#search-nav .search-form {
    width: 100%;
    border-radius: 50px;
    background-color: #364482;
    padding: 10px ;
}
#search-nav input::-webkit-input-placeholder { 
  color: #fff;
}
#search-nav input::-moz-placeholder {
  color: #fff;
}
#search-nav input:-ms-input-placeholder { 
  color: #fff;
}
#search-nav input:-moz-placeholder {
  color: #fff;
}

.dashboard-overview .overview-left .card-body, .dashboard-overview .overview-left .card {
    background: transparent !important;
    box-shadow: none !important;
    border: 0;
}
.new_button-wrap a{
  margin-right: 15px;
}
.new_button-wrap a:last-child{
  margin-right: 0;
}
.dashboard-overview .widget-description h5{
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: left;
    color: #212529;
}
.dashboard-overview .widget-description p{
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #6c757d;
}
.dashboard-overview .card-header-title {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.28;
    letter-spacing: 0.11px;
    text-align: left;
    color: #212529;
}
.admin-salse-table .custom-call.tooltip-cus{
  text-align: left;
}
.admin-salse-table .custom-call.tooltip-cus a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.admin-salse-table .custom-call.tooltip-cus a img{
  margin-left: 0;
  margin-right: 8px;
}

.companies-table-wrap-new .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(5){
  text-align: center;
}



.sales_pipeline_main .radio-wrap.partner_applications_radio-button .btn{
    background: #dee2e6;
    border: 2px solid #fff;
    box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
    cursor: pointer;
}
.sales_pipeline_main .radio-wrap.partner_applications_radio-button .btn:after{
  background: #bcc8d4;
}
.sales_pipeline_main .radio-wrap.partner_applications_radio-button .btn.approve:after{
    background: #90df19;
}
.sales_pipeline_main .radio-wrap.partner_applications_radio-button .btn.denied:after{
  background: #e0294b;
}

.partner-applications-table-wrap-one th:nth-of-type(5), .partner-applications-table-wrap-one th:nth-of-type(6), .partner-applications-table-wrap-one td:nth-of-type(5), .partner-applications-table-wrap-one td:nth-of-type(6){
  text-align: center;
}

.partner-applications-table-wrap-two th:nth-of-type(5), .partner-applications-table-wrap-two td:nth-of-type(5){
  text-align: center;
}
.partner_applications_radio-button{
  margin: 0 auto;
  width: fit-content;
}
.partner-applications-table-wrap-three th:nth-of-type(5), .partner-applications-table-wrap-three td:nth-of-type(5){
  text-align: center;
}
.search-close{
  cursor: pointer;
}
/*.sales_pipeline_new .radio-wrap{
  position: relative;
  z-index: 2;
  width: fit-content;
}
.sales_pipeline_new .radio-wrap:after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #6c757d;
  width: calc(100% - 18px);
  height: 1px;
  border-style: dashed;
  z-index: -1;
}*/



/*03.01.2024 Start*/
table.billable-table{
  margin: 0 !important;
  border-radius: 5px !important;
  overflow: hidden;
}
table.billable-table, table.billable-table tr, table.billable-table td{
  border: 1px solid #fff !important;
  text-align: center !important;
}
table.billable-table td{
  background: #234495;
  color: #fff !important;
}
table.billable-table tr td {
    padding: 7px;
}
.table td.billable-table-column{  
  padding: 0;
  vertical-align: top;
}
.gotcha-user-table .name-wrap {
    align-items: center;
}
.gotcha-user-table .name-wrap img{
  margin-right: 10px ;
}

/*04.01.2024 Start*/

.gotcha-new-user .profile-content-wrap {
    max-width: 220px;
}
.gotcha-new-user .profile-image-main {
    width: 220px;
    height: 220px;
}
.gotcha-new-user .upload-file-cus .btn{
  width: 220px;
}
.gotcha-new-user .card-body .profile-desc-wrap h6{
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  border-radius: 6px;
/*  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);*/
  border: 0;
  padding: 10px 0;
  border-bottom: solid 1px #eaecef;
}
.profile-content-wrap.gotcha-new-user .profile-image {
    margin-bottom: 30px;
}
.gotcha-new-user .delet-button {
    margin: 20px auto;
}
.gotcha-new-user .notification-content p{
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #599eff;
}
table.working-time-table{
  width: 100%;
}
.gotcha-new-user .my-profile-basic-wrap .profile-right-content .table td:nth-of-type(2){
  border: 0;
}
.myprofile-new-section .profile-right-content .table td table.working-time-table tr td {
    width: 14.28% !important;
    text-align: center;
    position: relative;
    z-index: 2;
    border: 0;
}
table.working-time-table tr td span.hr {
    position: absolute;
    top: 9px;
    left: 30px;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #102456;
    z-index: -1;
}
table.working-time-table tr td input[type="number"] {
    width: 55px;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #102456 !important;
    z-index: 99;
    background: transparent !important;
    border-bottom: solid 1px #dee2e6;
}
.brand-kit-and-guidelines2 .card-body  table.working-time-table tr td p{
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #234495;
  margin-bottom: 0;
  text-align: center;
  padding-top: 5px !important;
}

.goal-main-form .form-switch .form-check-input {
    margin: 0;
    box-shadow: none;
    /* outline: none; */
    border: 1px solid #bfbfbf;
}
.gotcha-new-user .goal-main-form .form-switch {
    border-bottom: 0px solid #d1d8e8;
    padding: 10px 0
}
.gotcha-new-user .notification-content {
    height: 60px;
}
.gotcha-new-user .left-basic-content:after {
    top: 0;
}

.gotcha-new-user .goal-main-form .form-switch label {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: rgb(16 36 86 / 66%);
}
.gotcha-new-user .my-profile-basic-wrap td:nth-of-type(2){
  color: rgb(16 36 86 / 66%);
}
.gotcha-new-user .my-profile-basic-wrap td input{
  color: rgb(16 36 86 / 66%) !important;
}
.gotcha-new-user .my-profile-basic-wrap td input::-webkit-input-placeholder { 
  color: rgb(16 36 86 / 66%);
}
.gotcha-new-user .my-profile-basic-wrap td input::-moz-placeholder { 
  color: rgb(16 36 86 / 66%);
}
.gotcha-new-user .my-profile-basic-wrap td input:-ms-input-placeholder { 
  color: rgb(16 36 86 / 66%);
}
.gotcha-new-user .my-profile-basic-wrap td input:-moz-placeholder { 
  color: rgb(16 36 86 / 66%);
}
.gotcha-new-user a.back-button {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.03px;
    text-align: center;
    color: #234495;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    align-items: center;
    width: fit-content;
    text-decoration: underline;
}
.gotcha-new-user a.back-button svg{
  margin-right: 5px;
}
.gotcha-work-order-form-wrapper .col-custom {
    flex: 0 0 auto;
    width: 20%;
}
.brand-kit-and-guidelines2.gotcha-work-order-form-wrapper .card-body ul {
    max-width: 1000px;
    margin-bottom: 0;
}
.terms-and-conditions .tab-content{
  margin-bottom: 0;
}
.terms-and-conditions .description {
    margin-top: 0px;
}
.brand-kit-and-guidelines2.gotcha-work-order-form-wrapper .card-body ul li{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #132657;
}
.gotcha-work-order-form-wrapper input{
  padding: 15px 12px;
  object-fit: contain;
  border-radius: 6px;
  border: solid 1px #a9bcea;
  background-color: #f7faff;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #132657;
}
.gotcha-work-order-form-wrapper textarea{
  background-color: #f4f4f5;
  height: 280px;
  width: 100%;
  padding: 15px 12px;
  object-fit: contain;
  border-radius: 6px;
  border: solid 1px #a9bcea;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #132657;
}

.gotcha-work-order-form-wrapper select{
  padding: 15px 12px;
  object-fit: contain;
  border-radius: 6px;
  border: solid 1px #a9bcea;
  background-color: #f7faff;
  height: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #132657;
}
.gotcha-work-order-form-wrapper .table td, .gotcha-work-order-form-wrapper .table th {
    padding: .5rem 0.5rem;
}
.gotcha-work-order-form-wrapper .table, .gotcha-work-order-form-wrapper .table tr, .gotcha-work-order-form-wrapper .table th, .gotcha-work-order-form-wrapper .table td {
  border: 0;
  vertical-align: middle;
}

.gotcha-work-order-form-wrapper .card-header .card-header-title{
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
}

.gotcha-work-order-form-wrapper .worke-order-table h5 {
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #222529;
}


.gotcha-work-order-form-wrapper .table input{
  text-align: center;
  width: 100%;
  min-width: 120px;
}
.gotcha-work-order-form-wrapper .worke-order-table th:nth-of-type(1), .gotcha-work-order-form-wrapper .worke-order-table td:nth-of-type(1){
  width: 20%;
}
.gotcha-work-order-form-wrapper .worke-order-table th:nth-of-type(2), .gotcha-work-order-form-wrapper .worke-order-table td:nth-of-type(2){
  width: 41%;
}
.gotcha-work-order-form-wrapper .worke-order-table th:nth-of-type(3), .gotcha-work-order-form-wrapper .worke-order-table td:nth-of-type(3){
  width: 13%;
}
.gotcha-work-order-form-wrapper .worke-order-table th:nth-of-type(4), .gotcha-work-order-form-wrapper .worke-order-table td:nth-of-type(4){
  width: 13%;
}
.gotcha-work-order-form-wrapper .worke-order-table th:nth-of-type(5), .gotcha-work-order-form-wrapper .worke-order-table td:nth-of-type(5){
  width: 13%;
}
tr.sub-total-row span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 12px;
    object-fit: contain;
    border-radius: 6px;
    font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #3159b6;
    background-color: #eef5ff;
}
.foundational_services-table th:nth-of-type(1), .foundational_services-table td:nth-of-type(1){
  width: 20%;
}
.foundational_services-table th:nth-of-type(2), .foundational_services-table td:nth-of-type(2){
  width: 40%;
}
.foundational_services-table th:nth-of-type(3), .foundational_services-table  td:nth-of-type(3){
  width: 10%;
}
.foundational_services-table th:nth-of-type(4), .foundational_services-table td:nth-of-type(4){
  width: 10%;
}
.foundational_services-table th:nth-of-type(5), .foundational_services-table td:nth-of-type(5){
  width: 10%;
}
.foundational_services-table th:nth-of-type(6), .foundational_services-table td:nth-of-type(6){
  width: 10%;
}


.gotcha-work-order-form-wrapper .table input{
  text-align: center;
}

.gotcha-work-order-form-wrapper .table th{
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #234495;
  background: transparent;
}
.gotcha-work-order-form-wrapper .table td{
  text-align: center;
}
.gotcha-work-order-form-wrapper .table th:nth-of-type(1), .gotcha-work-order-form-wrapper .table td:nth-of-type(1){
  text-align: left;
}

.gotcha-work-order-form-wrapper .cus-check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.gotcha-work-order-form-wrapper .cus-check label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

.gotcha-work-order-form-wrapper .cus-check label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #bbc1c7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.gotcha-work-order-form-wrapper .cus-check {
    margin-bottom: 0px;
}
.gotcha-work-order-form-wrapper .cus-check input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4.5px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.gotcha-work-order-form-wrapper .cus-check input:checked + label:before {
  border: 2px solid #599eff;
  background: #599eff;
}
.gotcha-work-order-form-wrapper .terms-and-conditions .cus-check label {
    width: fit-content;
    margin: 0 auto;
}
.gotcha-work-order-form-wrapper .terms-and-conditions .cus-check{
  margin-bottom: 20px;
}
.gotcha-work-order-form-wrapper .terms-and-conditions .btn{
  width: 155px;
  height: 43px;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #234495;
  margin: 0 auto;
  border: 0;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}
.gotcha-new-user .copy-wrap input {
    width: calc(100% - 28px) !important;
}
.gotcha-new-user .goal-main-form .contact-information td input{
  width: 100%;
}
.gotcha-new-user .profile-content-wrap .profile-image {
    position: relative;
    margin-bottom: 30px;
}
.terms-and-conditions label{
  position: relative;
  padding-left: 30px;
}
.gotcha-work-order-form-wrapper .terms-and-conditions .cus-check label:before{
  position: absolute;
  top: 0;
  left: 0;
}
.gotcha-work-order-form-wrapper .terms-and-conditions .cus-check input:checked + label:after {
    top: 2.5px;
}
.partner-applications-main .custom-call.tooltip-cus a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.partner-applications-main .custom-call.tooltip-cus a img {
    margin-left: 0;
    margin-right: 8px;
}


/*08.01.2024 Start*/
.recommendation-product-list .left-column .proposed-solution-right-content-top{
  flex-flow: column;
}
.recommendation-product-list .left-column .Website_Development-content {
    width: 100%;
}
.recommendation-product-list .left-column {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #f4f2ff;
}
.recommendation-product-list .left-column .icon-wrap{
  margin-top: -23px;
  margin-bottom: 5px;
  background: #f4f2ff;
  position: relative;
  z-index: 2;
  width: 24px;
}
.recommendation-product-list .left-column .icon-wrap:after{
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  background: #f4f2ff;
  width: 40px;
  height: 100%;
  z-index: -1;
}
.recommendation-product-list .right-column {
    background-color: transparent;
    padding-top: 12px;
    padding-bottom: 8px;
}
.recommendation-product-list .row{
  background: #fbfbff;
}
.recommendation-product-list .row:first-child{
  border-radius: 8px 0 0 0 ;
}
.recommendation-product-list .web-dev-wrap {
    padding: 30px 0px 30px 15px;
}
.recommendation-product-list .row:first-child .left-column{
  background: #fff;
}
.recommendation-product-list .row:first-child .right-column{
  background: #fff;
}
.recommendation-product-list .row:nth-of-type(1) {
    border-bottom: 0px solid #d1d8e8;
}
.recommendation-product-list .row:nth-of-type(2) .left-column{
  border-radius: 8px 0 0 0;

}
.recommendation-product-list .title-wrap{
  margin-bottom: 0;
}
.recommendation-product-list .recommendation-or-proposed-products .row{
  margin-left: 0;
}

.recommendation-product-list-2 .row:nth-of-type(1) .left-column{
  border-radius: 8px 0 0 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.recommendation-product-list-2 .row:first-child .left-column{
  background: #f4f2ff;
}
.recommendation-product-list-2 .row:first-child .right-column{
  background: #fbfbff;
}
.recommendation-product-list-2 .row:nth-of-type(1) {
    border-bottom: 1px solid #d1d8e8;
}

.recommendation-product-list-2 .left-column{
  padding-bottom: 15px;
}
.recommendation-product-list-2 .web-dev-wrap {
    padding: 15px 0px 15px 15px;
}

.recommendation-product-list .Website_Development-content h5 {
    color: #153073;
}
.past-proposals-wrap .proposal-builder-web-box .proposal-builder-image-wrap {
  position: relative;
}
.past-proposals-wrap .proposal-builder-web-box .dropdown-cus .btn{
    box-shadow: none;
    background: transparent;
    width: fit-content;
    margin: 0 auto;
    border: 0;
}

.past-proposals-wrap .proposal-builder-web-box .dropdown-cus {
    position: absolute;
    top: 10px;
    right: 10px;
}
.past-proposals-wrap .contact-box .button-wrapper {
    padding-top: 15px;
  }
.past-proposals-wrap .card{
  background: transparent;
  box-shadow: none;
  border: 0;
}
.past-proposals-wrap .card-body {
    padding: 0;
    margin: 0;
}
.past-proposals-wrap .proposal-builder-web-box {
    margin: 0px auto;
}
.past-proposals-wrap .proposal-builder-web-box h5 {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #143073;
}
.past-proposals-wrap .button-wrapper .btn {
    width: fit-content;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);
    background-color: #234495;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    border: 0;
    outline: none;
    box-shadow: none;
}
.past-proposals-wrap .proposal-builder-web-box .dropdown-cus .btn img {
    filter: brightness(2000%);
}


.demo-call-status-table-wrap .demo-call-question h6 {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #102456;
}
.demo-call-status-table-wrap .demo-call-question h6 span{
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
  padding-right: 10px;
}

.demo-call-status-table-wrap .demo-call-question p{
   font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: rgb(16 36 86 / 66%);
  padding-left: 20px;
  margin-bottom: 15px;
}
.demo-call-status-table-wrap .demo-call-question p span{
   font-weight: bold !important;
  font-stretch: normal ;
  opacity: 1 !important;
  font-style: italic;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456 !important;
  padding-right: 10px;
}
.demo-call-status-table-wrap .demo-call-question ul{
  margin: 0;
  padding: 0;
  flex-flow: row wrap;

}
.demo-call-status-table-wrap .demo-call-question ul li{
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
  padding-left: 20px;
  margin-bottom: 10px;
  opacity: .66;
  list-style: none;
}
.demo-call-status-table-wrap .profile-right-content h6, .demo-call-status-table-wrap .left-demo-call-status .profile-right-content h6 {
  font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #234495;
    border-bottom: 1px solid #dee2e6;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
    padding-top: 15px;
}
.demo-call-status-table-wrap .right-demo-call-status{
  position: relative;
}
.demo-call-status-table-wrap .right-demo-call-status:after{
  content: "";
    position: absolute;
    left: 0%;
    height: 100%;
    width: 1px;
    top: 0px;
    background: #dee2e6;
}

.demo-call-status-table-wrap .left-demo-call-status select{
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
  opacity: .66;
  border-bottom: 1px solid #dee2e6;
}

.sales_pipeline_table th:nth-of-type(1), .sales_pipeline_table td:nth-of-type(1){
  text-align: left !important;
}
.sales_pipeline_table th, .sales_pipeline_table td{
  text-align: center !important;
}

.demo-call-status-table-wrap .button-wrapper{
  margin-top: 0;
  justify-content: flex-start;
}

.demo-call-status-table-wrap .button-wrapper .btn {
    width: 162px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(16, 36, 86, 0.33);    
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    border: 1px solid;
    background-color: #234495;
    outline: none;
    box-shadow: none;
    margin-top: 20px;
}

.demo-call-status-table-wrap .button-wrapper .transparent-btn{
  background: transparent;
  color: #3670f3;
  border-color: #3670f3;
}

.pt-10{
  padding-top: 10px;
}
.pb-10{
  padding-bottom: 10px;
}

.summary-update .website-development-new .icon-wrap img {
    height: 18px;
    width: auto;
    margin-bottom: 10px;
}




/*15.01.2024 Start*/
.add-new-company-details .add-new-company-details-table .table td:nth-of-type(2) {
    border-bottom: 1px solid #eaecef !important;
}
.add-new-company-details .add-new-company-details-table .btn {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: center;
    color: #3670f3;
    border-color: #3670f3;
    width: 162px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 6px;
}
.add-new-company-details .add-new-company-details-table .btn:hover{
  background: #3670f3;
    border-color: #3670f3;
    color: #fff;
}
.add-new-company-details .add-new-company-details-table td input[type=submit] {
    border-radius: 6px;
    background-color: #234495;
    border: 1px solid #234495;
    width: 178px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: center;
    margin-top: 20px;
    color: #fff !important;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.add-new-company-details .add-new-company-details-table td input[type=submit]:hover{
    background-color: #3670f3;
    color: #fff !important;
    border-color: #3670f3;
}
.add-new-company-details .add-new-company-details-table .button-wrapper {
    justify-content: flex-start;
    gap: 12px;
}


#addclientpro p{
  position: relative;
}
.add-new-company-details .add-new-company-details-table td select{
  width: 100%;
}
.add-new-company-details .add-new-company-details-table td .birthday-wrap select{
  width: fit-content;
  border-bottom: 1px solid #eaecef !important;
  padding: 10px 0;
}

.gotcha-new-user .my-profile-basic-wrap .profile-right-content .table td.date-of-join-warp{
  border-bottom: 0 !important;
}





.add-project-details #extend{
  position: absolute;
  top: 0;
  right: 0;
}
.add-project-details #extend img{
  max-width: 20px;
}

#extend-field a {
    border-radius: 2px !important;
    border: solid 1px #6c757d;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: #fff;
    margin-left: 4px;
    overflow: hidden;
}

#extend-field button{
  background: transparent !important;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
  color: #6c757d;
}

.add-project-details {
    position: relative;
}
.add-project-details input {
    width: 100%;
}

#addclientpro #addNewpro {
    position: absolute;
    top: 0;
    right: 0px;
}
#addNewpro img {
    max-width: 20px;
}
#extend-field > div{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eaecef !important;
  padding: 8px 0;
}
#extend-field {
  border-top: 1px solid #eaecef !important;
  margin-top: 8px;
}
.gotcha-new-user .my-profile-basic-wrap .profile-right-content .table td.add-project-details-column{
border-bottom: 0 !important;
}
.gotcha-new-user .my-profile-basic-wrap td select, .add-new-company-details .add-new-company-details-table .table select {
    color: rgb(16 36 86 / 66%) !important;
}



.user-birthday-wrap{
  justify-content: flex-start;
}
.user-birthday-wrap select{
  margin-right: 15px;
}

.add-new-user-section .contact-information input[type="tel"], .add-new-user-section .contact-information input[type="E-mail"], .add-new-user-section .contact-informationinput[type="e-mail"]{
  width: calc(100% - 28px )!important;
}

.only-companies-table .sales_pipeline_table th, .only-companies-table .sales_pipeline_table td {
    text-align: left !important;
}

/*.only-companies-table .admin-salse-table th:nth-of-type(1), .only-companies-table .admin-salse-table td:nth-of-type(1) {
    width: 20%;
}
.only-companies-table .admin-salse-table th:nth-of-type(2), .only-companies-table .admin-salse-table td:nth-of-type(2) {
    width: 15%;
}
.only-companies-table .admin-salse-table th:nth-of-type(3), .only-companies-table .admin-salse-table td:nth-of-type(3) {
    width: 9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(4), .only-companies-table .admin-salse-table td:nth-of-type(4) {
    width: 9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(5), .only-companies-table .admin-salse-table td:nth-of-type(5){
  text-align: center !important;
  width: 9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(6), .only-companies-table .admin-salse-table td:nth-of-type(6) {
    width: 12%;
}
.only-companies-table .admin-salse-table th:nth-of-type(7), .only-companies-table .admin-salse-table td:nth-of-type(7) {
    width: 9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(8), .only-companies-table .admin-salse-table td:nth-of-type(8) {
    width: 9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(9), .only-companies-table .admin-salse-table td:nth-of-type(9){
    text-align: center !important;
    width: 8%;
}
*/


.only-companies-table .admin-salse-table th:nth-of-type(1), .only-companies-table .admin-salse-table td:nth-of-type(1) {
    width: 18.8%;
}
.only-companies-table .admin-salse-table th:nth-of-type(2), .only-companies-table .admin-salse-table td:nth-of-type(2) {
    width: 14.4%;
}
.only-companies-table .admin-salse-table th:nth-of-type(3), .only-companies-table .admin-salse-table td:nth-of-type(3) {
    width: 8.9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(4), .only-companies-table .admin-salse-table td:nth-of-type(4) {
    width: 8.8%;
}
.only-companies-table .admin-salse-table th:nth-of-type(5), .only-companies-table .admin-salse-table td:nth-of-type(5){
  text-align: center !important;
  width: 9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(6), .only-companies-table .admin-salse-table td:nth-of-type(6) {
    width: 11.7%;
}
.only-companies-table .admin-salse-table th:nth-of-type(7), .only-companies-table .admin-salse-table td:nth-of-type(7) {
    width: 9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(8), .only-companies-table .admin-salse-table td:nth-of-type(8) {
    width: 9%;
}
.only-companies-table .admin-salse-table th:nth-of-type(9), .only-companies-table .admin-salse-table td:nth-of-type(9){
    text-align: center !important;
    width: 8%;
}

.only-companies-table .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(1), .only-companies-table .admin-salse-table .admin-salse-table-part-innertable tr:nth-of-type(1){
  width: 20%;
}
.only-companies-table .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(2), .only-companies-table .admin-salse-table .admin-salse-table-part-innertable tr:nth-of-type(2){
  width: 15%;
}
.only-companies-table .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(3), .only-companies-table .admin-salse-table .admin-salse-table-part-innertable tr:nth-of-type(3){
  width: 9%;
}
.only-companies-table .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(4), .only-companies-table .admin-salse-table .admin-salse-table-part-innertable tr:nth-of-type(4){
  width: 9%;
}
.only-companies-table .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(5), .only-companies-table .admin-salse-table .admin-salse-table-part-innertable tr:nth-of-type(5){
  width: 21%;
  text-align: center !important;
}
.only-companies-table .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(6), .only-companies-table .admin-salse-table .admin-salse-table-part-innertable tr:nth-of-type(6){
  width: 9%;
}
.only-companies-table .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(7), .only-companies-table .admin-salse-table .admin-salse-table-part-innertable tr:nth-of-type(7){
  width: 9%;
}
.only-companies-table .admin-salse-table .admin-salse-table-part-innertable th:nth-of-type(8), .only-companies-table .admin-salse-table .admin-salse-table-part-innertable tr:nth-of-type(8){
  width: 8%;
  text-align: center !important;
}

.only-companies-table .chris{
  margin: 0;
}
.component-settings img{
  max-width: 32px;
}
.only-companies-table td.admin-salse-table-part-wrap {
    padding: 0 !important;
    margin: 0 !important;
}
.only-companies-table .accordion-item {
    border: 0px solid #ebeef4;
}

.only-companies-table .admin-salse-table-part-innertable .dropdown-cus {
    min-width: 88px;
}

.onlygotcha-user-table .gotcha-user-table th, .onlygotcha-user-table .gotcha-user-table td{
  text-align: left !important;
}
.onlygotcha-user-table .gotcha-user-table th:nth-of-type(4), .onlygotcha-user-table .gotcha-user-table td:nth-of-type(4), 
.onlygotcha-user-table .gotcha-user-table th:nth-of-type(5), .onlygotcha-user-table .gotcha-user-table td:nth-of-type(5), 
.onlygotcha-user-table .gotcha-user-table th:nth-of-type(6), .onlygotcha-user-table .gotcha-user-table td:nth-of-type(6){
  text-align: center !important;
}

.onlygotcha-user-table .gotcha-user-table .custom-call{
  margin: 0 auto;
}
.onlygotcha-user-table .gotcha-user-table .chris{
  margin-left: 0;
}
.onlygotcha-user-table .gotcha-user-table .billable-table th, .onlygotcha-user-table .gotcha-user-table .billable-table td{
  text-align: center !important;
}

.only-user-table .sales_pipeline_table th, .only-user-table .sales_pipeline_table td{
  text-align: left !important;
}
.only-user-table .sales_pipeline_table .chris {
  margin-left: 0;
}
.live-webinar-table .sales_pipeline_table th, .live-webinar-table .sales_pipeline_table td{
  text-align: left !important;
}
.live-webinar-table .sales_pipeline_table th:nth-of-type(3), .live-webinar-table .sales_pipeline_table td:nth-of-type(3), 
.live-webinar-table .sales_pipeline_table th:nth-of-type(5), .live-webinar-table .sales_pipeline_table td:nth-of-type(5), 
.live-webinar-table .sales_pipeline_table th:nth-of-type(6), .live-webinar-table .sales_pipeline_table td:nth-of-type(6){
  text-align: center !important;
}
.live-webinar-pending-table .sales_pipeline_table th, .live-webinar-pending-table .sales_pipeline_table td{
  text-align: left !important;
}
.live-webinar-pending-table  .sales_pipeline_table .chris {
  margin-left: 0;
}
.live-webinar-pending-table .sales_pipeline_table th:nth-of-type(4), .live-webinar-pending-table .sales_pipeline_table td:nth-of-type(4), 
.live-webinar-pending-table .sales_pipeline_table th:nth-of-type(5), .live-webinar-pending-table .sales_pipeline_table td:nth-of-type(5){
  text-align: center !important;
}



.live-webinar-approved-table .sales_pipeline_table th, .live-webinar-approved-table .sales_pipeline_table td{
  text-align: left !important;
}
.live-webinar-approved-table  .sales_pipeline_table .chris {
  margin-left: 0;
}
.live-webinar-approved-table .sales_pipeline_table th:nth-of-type(3), .live-webinar-approved-table .sales_pipeline_table td:nth-of-type(3), 
.live-webinar-approved-table .sales_pipeline_table th:nth-of-type(5), .live-webinar-approved-table .sales_pipeline_table td:nth-of-type(5){
  text-align: center !important;
}



.live-webinar-denied-table .sales_pipeline_table th, .live-webinar-denied-table .sales_pipeline_table td{
  text-align: left !important;
}
.live-webinar-denied-table  .sales_pipeline_table .chris {
  margin-left: 0;
}
.live-webinar-denied-table .sales_pipeline_table th:nth-of-type(3), .live-webinar-denied-table .sales_pipeline_table td:nth-of-type(3), 
.live-webinar-denied-table .sales_pipeline_table th:nth-of-type(5), .live-webinar-denied-table .sales_pipeline_table td:nth-of-type(5){
  text-align: center !important;
}


.userExperience .Brand-guide.pain-points-and-challenges .icon-wrap{
  background: transparent;
}


.verticalycentered .btn-primary {
    border-radius: 6px !important;
    background-color: #3670f3 !important;
    height: 48px;
    padding: 0 22px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
    outline: none;
    border: 2px solid #3670f3;
}
.verticalycentered .prev-step, .verticalycentered .prev-step2, .verticalycentered .prev-step3, .verticalycentered .prev-step4 {
    background: transparent !important;
    border: 2px solid #3670f3;
    color: #3670f3;
    
}

.sales_pipeline_table .radio-wrap{
  margin: 0 auto;
  width: fit-content;
}


.live-webinar-approved-table .sales_pipeline_table th:nth-of-type(4), .live-webinar-approved-table .sales_pipeline_table td:nth-of-type(4){
    text-align: left !important;
}
.live-webinar-denied-table .sales_pipeline_table th:nth-of-type(4), .live-webinar-denied-table .sales_pipeline_table td:nth-of-type(4){
    text-align: left !important;
}
.modal-body p strong {
    font-weight: 800;
    color: #153073;
}

.scope-of-work-wrap .button-wrap{
  justify-content: flex-end;
}

.scope-of-work-demo-call .foundational-Services-box{
  border-radius: 0;
  border: 0;
  box-shadow: none;
  padding: 15px;
}
/*.scope-of-work-demo-call  .chechk-box-wrap .form-group label:before {
    border: 2px solid #0d65df;
  }
*/
.notes-wrap textarea {
    height: 580px;
}
.scope-of-work-menu ul {
  padding: 0 ;
  margin: 0;
}
.scope-of-work-menu ul li{
  list-style: none;
  padding: 10px;
  border-right: 1px solid #e6e6e6;
  margin: 5px 0;
}
.scope-of-work-menu ul li:last-child{
  border-right: 0;
}
.scope-of-work-menu ul li a{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  padding: 10px 0;
  color: #445072;
  position: relative;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}
.scope-of-work-menu ul li a:after{
  content: "";
  position: absolute;
  left: 0;
  top: 113%;
  width: 100%;
  height: 4px;
  background: transparent;
}
.scope-of-work-menu ul li a.active:after, .scope-of-work-menu ul li a:hover:after{
  background-color: #234495;
}
.scope-of-work-menu ul li a.active, .scope-of-work-menu ul li a:hover{
  font-size: 16px;
  color: #234495;
}
.scope-of-work-demo-call .menu-card{
  border: 0;
}

.scope-of-work-demo-call .top-form .goals-form-wrap {
    margin-top: 20px;
}
.scope-of-work-demo-call .top-form .goals-form-wrap:first-child{
  margin-top: 10px;
}
.scope-of-work-demo-call .form-group input, .scope-of-work-demo-call textarea{
  background: #f4f7ff;
}
.Competitors_market ul {
  padding: 0;
  margin: 0;
}
.Competitors_market ul li{
  list-style: none;
}
.Competitors_market ul li a{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #707070;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.Competitors_market ul li a:hover{
  color: #234495;
}
.additional-competitor-website  textarea{
  height: 113px;
}
.audit-list-menu{
  border-top: 1px solid #e6e6e6;
}
.scope-upload-image {
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scope-upload-image .profile-content-wrap{
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.scope-upload-image .profile-desc-wrap .btn{
  width: 375.8px;
  height: 214px;
  display: flex;
  flex-flow: column;
  border-radius: 8px;
  border: solid 1px #e6e6e6;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #212529;
}
.scope-upload-image .profile-desc-wrap .btn:hover{
  color: #212529;
}
.scope-upload-image .profile-desc-wrap .btn svg{
  margin-bottom: 10px;
  display: block;
}
.scope-of-work-wrap .button-wrap button:nth-of-type(2), .scope-of-work-wrap .button-wrap button:nth-of-type(2), .scope-of-work-wrap .button-wrap button:nth-of-type(2) {
    margin-left: 15px;
}
.scope-of-work-wrap .prev-step-work-demo-call, .scope-of-work-wrap .prev-step2, .scope-of-work-wrap .prev-step3, .scope-of-work-wrap .prev-step4 {
    background: transparent !important;
    border: 2px solid #3670f3;
    color: #3670f3;
    height: 48px;
}
.scope-of-work-wrap .prev-step-work-demo-call:hover{
    background: #3670f3 !important;
    color: #fff !important;
    border-color: #3670f3;
}

.scope-upload-image{
  background: transparent;
  box-shadow: none;
}

.myprofile-new-section .button-wrapper .btn{
      font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: center;
    color: #3670f3;
    border-color: #3670f3;
    width: 162px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 6px;
}
.myprofile-new-section .button-wrapper .btn:hover{
  background: #3670f3;
  border-color: #3670f3;
  color: #fff;
}
.myprofile-new-section .button-wrapper{
  justify-content: flex-start;
}
.myprofile-new-section .button-wrapper input[type=submit] {
    border-radius: 6px;
    background-color: #234495;
    border: 1px solid #234495;
    width: 178px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 0.03px;
    text-align: center;
    margin-top: 20px;
    color: #fff !important;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}
.myprofile-new-section .button-wrapper input[type=submit]:hover{
  background-color: #3670f3;
  color: #fff !important;
  border-color: #3670f3;
}

.blank-document .btn{
  width: 100%;
  height: 300px;
  border-radius: 6px;
  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
  border: solid 1px #eaecef;
  background-color: #fff;
}
.blank-docoment-wrap .proposal-builder-image-wrap{
  width: 100%;
  height: 300px;
  border-radius: 6px;
  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
  border: solid 1px #eaecef;
  background-color: #fff;
  overflow: hidden;
}
.blank-docoment-wrap .proposal-builder-image-wrap img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.blank-docoment-wrap .button-wrapper {
  margin-top: 20px;
}
.blank-docoment-wrap .button-wrapper h5 {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #143073;
    text-align: left;
    width: 100%;
}
.blank-docoment-wrap a .button-wrapper h5 {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #143073;
    text-decoration: underline;
    text-align: left;
}
.recent-documents, .recent-documents-table{
  background: #fff !important;
}
.downloads-wrap .recent-documents .card-body{
  padding: 15px;
}

.downloads-wrap .recent-documents .card-header-tab{
  justify-content: space-between;
  border-bottom: 0;
}
.right-filter select{
  border: 0;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}
.right-filter .filter-icon{
  margin: 0 25px;
}
.recent-documents .docoment-common-box {
    width: 20%;
}
.recent-documents .docoment-common-box h5{
  line-height: 1;
}
.recent-documents .docoment-common-box h5 a{
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #143073;
}
.recent-documents .docoment-common-box p{
  font-size: 14px;
  font-weight: 500;
  color: #143073;
  margin-bottom: 0;
}
.recent-documents .docoment-common-box .proposal-builder-image-wrap{
  width: 100%;
}
.recent-documents .docoment-common-box .proposal-builder-image-wrap img{
  width: 100%;
}
.recent-documents .docoment-common-box .proposal-builder-web-box .btn{
  background: transparent;
}
.recent-documents .docoment-common-box .content-wrapper .dropdown-cus {
    position: absolute;
    top: 10px;
    right: 0;
}
.recent-documents .docoment-common-box .content-wrapper{
  position: relative;
  padding-top: 15px;
}


.grid-icon{
  cursor: pointer;
}
.recent-documents-table th{
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}
.recent-documents-table .docoment-title .open-docoment{
  display: flex;
  align-items: center;
}
.recent-documents-table td{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: left;
  color: #143073;
}
 .recent-documents-table td h5 a{
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: left;
  color: #143073;
 }

.recent-documents-table th h6{
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.11px;
  text-align: left;
  color: #212529;
  margin-bottom: 0;
}
.recent-documents-table select{
  border: 0;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
  background: transparent !important;
}
.recent-documents-table .open-docoment h5{
  padding-left: 15px !important;
}
.recent-documents-table tbody, .recent-documents-table td, .recent-documents-table tfoot, .recent-documents-table th, .recent-documents-table thead, .recent-documents-table tr {
    border-color: #2d4495;
}
.recent-documents-table thead th{
  border: 0;
  border-color: #fff;
}
.recent-documents-table .card-body{
  padding: 15px !important;
}

.recent-documents-table th{
  background: transparent !important;
}
.recent-documents-table .docoment-title{
  position: relative;
  z-index: 9;
}
.recent-documents-table .docoment-title:after {
    content: "";
    width: 65px;
    left: -17px;
    top: 103%;
    background: #ffffff;
    z-index: -1;
    height: 18px;
    position: absolute;
}
.recent-documents{
  display: block;
}
.recent-documents{
  display: none;
}
.recent-documents-table{
  display: none;
}
.recent-documents-table.open{
  display: block;
}
.recent-documents.open{
  display: block;
}
.recent-documents-table .list-icon{
  cursor: pointer;
  width: fit-content;
}
.blank-document, .blank-document .profile-content-wrap{
  width: 100%;
  margin: 0;
  max-width: 100%;
}
.recent-documents-table .card-header-title, .recent-documents .card-header-title  {
    font-size: 18px;
    font-weight: 600;
  }
.recent-documents-main-wrap .proposal-builder-web-box{
  margin-bottom: 0;
  margin-top: 0;
}
.documents-header{
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 0;
}
.recent-documents .proposal-builder-web-box {
    margin: 0px auto 0px auto;
}
.menu-card{
  overflow: hidden;
}

.scope-of-work-next-steps .btn{
  width: fit-content;
  height: 42px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 15px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #234495;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}
.scope-of-work-main .btn{
  margin: 0 auto;
}
.scope-of-work-main .scope-banner {
    box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.16);
    background-color: #f7f8f9;
    border-radius: 8px;
    overflow: hidden;
}



.admin-salse-pipeline-demo .sales_pipeline_table th, .admin-salse-pipeline-demo .sales_pipeline_table td{
  text-align: left !important;
}
.admin-salse-pipeline-demo .sales_pipeline_table th:last-child, .admin-salse-pipeline-demo .sales_pipeline_table td:last-child{
  text-align: center !important;
}

.admin-salse-pipeline-demo .sales_pipeline_table .chris {
    width: 100%;
}

.buttonWrp2 {
    justify-content: flex-end;
}
.buttonWrp2 .btn:nth-of-type(2){
    margin-left: 15px;
}
.buttonWrp2 .btn{
    background: transparent !important;
    border: 2px solid #3670f3;
    color: #3670f3;
}
.buttonWrp2 .btn:hover{
  background: transparent !important;
  border: 2px solid #3670f3 !important;
  color: #3670f3 !important;
}
.buttonWrp2 .btn:nth-of-type(2){
  background-color: #3670f3 !important;
  color: #fff !important;
  border-color:  #3670f3 !important;
}
.waitingsvg svg{
  width: 18px;
  margin-left: 6px;
  margin-top: -4px;
}
.waitingsvg{
  align-items: center;
}
.myprofile-new-section .reschedule-demo-button .btn{
  color: #fff;
  border: 1px solid;
  background-color: #234495;
}

.myprofile-new-section .reschedule-demo-button .transparent-btn {
    background: transparent;
    color: #3670f3;
    border-color: #3670f3;
}


/*30.01.2024 Training Page Start*/
.bg-grey {
    background: #f8f9fb;
}
.abt-story h2, .abt-values h2, .abt-team h2, .abt-achiev h2 {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.09;
    letter-spacing: -0.44px;
    text-align: left;
    color: #153073;
    margin-bottom: 32px;
}
.Partner-3 .cus-tab-list {
    flex-flow: column;
    border: 0;
}
.Partner-3 .accordion-body{
    padding-top: 0!important;
}
.Partner-3 .accordion-item {
    border: 0 !important;
}
.Partner-3 .nav-link {
    display: flex;
    justify-content: space-between;
    padding: 0;
    align-items: center;
    border: 0;
    outline: none;
    box-shadow: none;
}
.Partner-3 li.nav-item {
    background: transparent;
    padding: 0;
}

.Partner-3 .counter {
    background: #264aa3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    position: relative;
    border: 5px solid #fff;
}
.Partner-3 .counter:after {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    height: 120px;
    width: 1px;
    background: #dee3ea;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.Partner-3 .nav-item:last-child .counter:after {
    display: none;
}
.Partner-3 .active .counter {
    background:#f24161;
}
.Partner-3 .cus-tab-icon {
    width: 109px;
    height: 109px;
}
.Partner-3 .cus-tab-content {
    width: calc(100% - 170px);
}
.Partner-3 .cus-tab-content h5 {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #153073;
}
.Partner-3 p {
 font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
  color: #445072;
}
.Partner-3 .val-txt h2, .Partner-4 .val-txt h2{
    margin-top: 0;
}
.Partner-3 .accordion-button {
    padding: 15px 0;
}


/*Custom-popup*/
.information-popup .form-wrap {
    padding: 0 !important;
    box-shadow: none;
}

.information-popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 9999;
}
.information-popup .popup__content {
  width: 80%;
  max-width: 970px;
  overflow: auto;
  padding: 50px 50px 40px;
  background: white;
  color: black;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  text-align: left;
  border-radius: 8px;
    box-shadow: 0 12px 32px 0 rgb(0 0 0 / 8%);
    border: solid 1px rgba(0, 0, 0, 0);
    background-color: #fff;
}
.information-popup .popup__content .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  padding-top: 8px;
  cursor: pointer;
  display: block;
}
.information-popup .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #099ccc;
}
.information-popup .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}
.information-popup .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}
.information-popup input[type="submit"] {
    width: 188px;
    height: 50px;
    border-radius: 6px;
    background-color: #3670f3;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.11;
    letter-spacing: 0.04px;
    text-align: center;
    color: #fff;
    border: 0;
    outline: none;
    box-shadow: none;
}

.videoOverlap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.information-popup-thank {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 9999;
}
.information-popup-thank .popup__content {
  width: 80%;
  max-width: 970px;
  overflow: auto;
  padding: 50px 50px 50px;
  background: white;
  color: black;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  text-align: left;
  border-radius: 8px;
    box-shadow: 0 12px 32px 0 rgb(0 0 0 / 8%);
    border: solid 1px rgba(0, 0, 0, 0);
    background-color: #fff;
}
.information-popup-thank .popup__content .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  padding-top: 8px;
  cursor: pointer;
  display: block;
}
.information-popup-thank .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #099ccc;
}
.information-popup-thank .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}
.information-popup-thank .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}


.video-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);*/
}
div#circle-play-b img {
    margin: 0 !important;
    top: 0;
}
.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.play-button-wrapper #circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}
.home-video .VideoSec {
    position: relative;
    top: 0;
    margin-top: -320px;
    border-radius: 16px;
    overflow: hidden;
}
.partner-333 h3 {
    font-size: 30px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: -0.3px;
    text-align: center;
    color: #fff;
}
.partner-333 h3 a{
    color: #4ee5c9;
}
.Partner-33 .accordion-button{
    background: transparent;
}
.Partner-3 .accordion-button {
    background: transparent;
    border: 0;
    box-shadow: none;
}
.partner-333 h2{
  color: #fff;
  text-align: center;
}
.partner-333 {
    background: #153073;
}
.partner-333 .title-wrap{
  border: 0;
  padding: 0;
  margin: 0;
}
.pt-60 {
    padding-top: 60px;
}
.pb-60 {
    padding-bottom: 60px;
}
.move-text {
    padding: 30px 40px;
    border-radius: 16px;
    background-color: #fff;
    -webkit-box-shadow: -10px 10px 0px 0px rgba(54,112,243,1);
-moz-box-shadow: -10px 10px 0px 0px rgba(54,112,243,1);
box-shadow: -10px 10px 0px 0px rgba(54,112,243,1);
}
.move-text h4{
      font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: bold;
    color: #153073;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
} 
.move-text h6 {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.78;
    letter-spacing: -0.18px;
    text-align: left;
    color: #3670f3;
}
.move-text p{
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    color: #647893;
}
.move-text a {
    background: #e1294b;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    margin-right: 0;
    margin-left: auto;
}

.ab-hero{
  padding-bottom: 350px;
}
.ab-hero .ghero-txt {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
/*    height: 300px;*/
}
.ab-hero .ghero-txt img{
  margin: 0 auto;
}

.gs-hero .ghero-txt h1, .ab-hero .ghero-txt h1 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: normal;
    color: #fff;
    margin-bottom: 24px;
}
.gs-hero .ghero-txt p, .ab-hero .ghero-txt p {
    font-size: 24px;
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: #ffffff;
    margin-bottom: 34px;
}
.ab-hero .ghero-txt p.sub-code {
    color: #4ee5c9;
    font-size: 16px;
    margin-bottom: 0 !important;
}
.ab-hero {
    background-position: center center !important;
    background-size: cover !important;
}
.abt-values .nav-link{
  background: transparent !important;
  border: 0;
}
.abt-values .accordion-body, .abt-values .accordion-item{
  background: transparent;
}
.tab-content-wrap h4{
      font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: bold;
    color: #153073;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    margin-bottom: 15px;
}
/*30.01.2024 Training Page End*/




.progress-multi-step-new .chechk-box-wrap{
  flex-flow: column;
}
.progress-multi-step-new [type="radio"]:checked + label:before, .progress-multi-step-new [type="radio"]:not(:checked) + label:before{
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  padding: 0;
}
.progress-multi-step-new [type="radio"]:checked + label:after, .progress-multi-step-new [type="radio"]:not(:checked) + label:after{
  width: 10px;
  height: 10px;
  background: #599eff !important;
  border: 0;
}
.progress-multi-step-new .chechk-box-wrap .form-group input:checked + label:after{
  width: 10px;
  height: 10px;
  background: #599eff !important; 
  border: 0;
  left: 4px;
  top: 4px;
}
.progress-multi-step-new .chechk-box-wrap .form-group{
  width: 100%;
  margin-bottom: 0;
}
.progress-multi-step-new h3{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: bold;
  color: #153073;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  margin-bottom: 30px;
}
.progress-multi-step-new .chechk-box-wrap {
    flex-flow: row wrap;
    gap: 15px;
    margin: 20px 0;
}
.progress-multi-step-new .btn-success{
  border-radius: 6px !important;
  background-color: #3670f3 !important;
  height: 48px;
  padding: 0 22px;
}


.gotcha-partner-registration .login-form-wrap img {
    max-width: 457px;
    margin-bottom: 50px;
}
.login-form-wrap .google-authenticator{
  width: 100%;
  height: 54px;
  margin: 40px 0px 36px 0;
  padding: 0px 20px 0px 20px;
  object-fit: contain;
  border-radius: 6px;
  border: solid 1px #dce4f8;
  background-color: #fafafa;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.13;
  letter-spacing: 0.16px;
  text-align: left;
  color: #102456;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.authenticator{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.login-form-wrap .authenticator a{
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.43;
  letter-spacing: normal;
  text-align: left;
  color: #599eff;
  padding: 0;
  outline: none;
  border: none;
  box-shadow: none;
}
.login-form-wrap .authenticator a:hover{
  color: #153073;
}
.login-form-wrap .authenticator a svg{
  margin-left: 6px;
}
.seperate{
  background: #bbc1c7 !important;
  height: 25px;
  margin: 0 10px;
  width: 1px;
  border: 0;
}

.login-form-wrap .login-information p{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  text-align: left;
  color: #102456;
}
.login-form-wrap .login-information h5{
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.13;
  letter-spacing: normal;
  text-align: left;
  color: #20305b;
}
.gotcha-partner-registration .form-wrap{
  margin:25px 0 15px;
}
.gotcha-partner-registration .form-group p{
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.275;
  letter-spacing: normal;
  text-align: left;
  color: #4c6cb7;
}
.gotcha-partner-registration .partner-login-step .btn-primary {
    height: 54px;
    width: 100%;
    margin-top: 30px;
    object-fit: contain;
    border-radius: 6px;
    background-color: #e1294b !important;
    border: 1px solid #e1294b !important;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 0.96px;
    text-align: center;
    color: #fff;
}


.progress{
  height: 20px !important;
  border-radius: 15px;
  margin-bottom: 30px;
  background: #d2d6dc !important;
  padding: 0 !important;
}
.progress-bar {
    color: #fff !important;
    background-color: #1e7ac4 !important;
}

.thankyou-msg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 9999;
}
.thankyou-msg .popup__content {
  width: 80%;
  max-width: 970px;
  overflow: auto;
  padding: 50px 50px 50px;
  background: white;
  color: black;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  text-align: left;
  border-radius: 8px;
    box-shadow: 0 12px 32px 0 rgb(0 0 0 / 8%);
    border: solid 1px rgba(0, 0, 0, 0);
    background-color: #fff;
}
.thankyou-msg .popup__content .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  padding-top: 8px;
  cursor: pointer;
  display: block;
}
.thankyou-msg .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #099ccc;
}
.thankyou-msg .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}
.thankyou-msg .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}


.dashboard-overview  .competitors-and-market-left .card{
  background: #fff !important;
  box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08);
  border: solid 1px #eaecef;
  border-radius: 6px;
  overflow: hidden;
}
.development-left-column .goals-form-wrap label {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
}
.development-left-column .goals-form-wrap p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #707070;
}
.development-left-column .goals-form-wrap ul {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}
.development-left-column .goals-form-wrap ul li{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #707070;
  list-style: none;
  border-top: 1px solid #ebeef4;
  padding: 8px 0;
  margin: 0;
}
/*.development-left-column .goals-form-wrap ul li:last-child{
  border-bottom: 1px solid #ebeef4;
}*/
.development-left-column .goals-form-wrap ul li strong{
  font-weight: bold;
  color: #212529;
  display: block;
}
.development-left-column .multi-step-form .chechk-box-wrap .form-group label:before {
    padding: 7px;
}
.development-left-column  .chechk-box-wrap .form-group input:checked + label:after {
    top: 5px;
    left: 7px;
    width: 5px;
    height: 11px;
}
.development-left-column .card{
  border-radius: 6px;
  overflow: hidden;
}
.development-left-column .goals-form-wrap label {
    display: flex;
    align-items: center;
}

.login-form-wrap-inner .form-group {
    position: relative;
    padding: 0;
}


.partner-sales_pipeline_main.sales_pipeline_main .radio-wrap .btn {
    background-color: #f5a9b6;
    background: #dee2e6;
    border: 2px solid white;
    margin: 0 2px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
.partner-sales_pipeline_main.sales_pipeline_main .radio-wrap .btn.active:after {
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border: 5px solid #e0294b;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}
.partner-sales_pipeline_main .tooltip-cus:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.partner-sales_pipeline_main .radio-wrap:hover .btn {
    margin: 0 4px;
}
.partner-sales_pipeline_main .radio-wrap{
  min-width: 300px;
}
.partner-sales_pipeline_main .radio-wrap .btn {
    margin: 0 2px;
  }
.signature-short {
    max-width: 130px;
}
.no-ans h6, .no-ans p, .no-ans span, .no-ans p span{
  color: #e0294b !important;
}
.demo-call-status-table-wrap .demo-call-question.no-ans p span{
  color: #e0294b !important;
}
.partner-applications-approved-space .sales_pipeline_table th:nth-of-type(1), .partner-applications-approved-space .sales_pipeline_table td:nth-of-type(1){
  width: 20%;
}
.partner-applications-approved-space .sales_pipeline_table th:nth-of-type(2), .partner-applications-approved-space .sales_pipeline_table td:nth-of-type(2){
  width: 15%;
}
.partner-applications-approved-space .sales_pipeline_table th:nth-of-type(3), .partner-applications-approved-space .sales_pipeline_table td:nth-of-type(3){
  width: 17%;
}
.partner-applications-approved-space .sales_pipeline_table th:nth-of-type(4), .partner-applications-approved-space .sales_pipeline_table td:nth-of-type(4){
  width: 18%;
}
.partner-applications-approved-space .sales_pipeline_table th:nth-of-type(5), .partner-applications-approved-space .sales_pipeline_table td:nth-of-type(5){
  width: 20%;
}
.partner-applications-approved-space .sales_pipeline_table th:nth-of-type(6), .partner-applications-approved-space .sales_pipeline_table td:nth-of-type(6){
  width: 10%;
}



.partner-applications-approved-space-8column .sales_pipeline_table th:nth-of-type(1), .partner-applications-approved-space-8column .sales_pipeline_table td:nth-of-type(1){
  width: 13%;
}
.partner-applications-approved-space-8column .sales_pipeline_table th:nth-of-type(2), .partner-applications-approved-space-8column .sales_pipeline_table td:nth-of-type(2){
  width: 11%;
}
.partner-applications-approved-space-8column .sales_pipeline_table th:nth-of-type(3), .partner-applications-approved-space-8column .sales_pipeline_table td:nth-of-type(3){
  width: 15%;
}
.partner-applications-approved-space-8column .sales_pipeline_table th:nth-of-type(4), .partner-applications-approved-space-8column .sales_pipeline_table td:nth-of-type(4){
  width: 11%;
}
.partner-applications-approved-space-8column .sales_pipeline_table th:nth-of-type(5), .partner-applications-approved-space-8column .sales_pipeline_table td:nth-of-type(5){
  width: 14%;
}
.partner-applications-approved-space-8column .sales_pipeline_table th:nth-of-type(6), .partner-applications-approved-space-8column .sales_pipeline_table td:nth-of-type(6){
  width: 14%;
}
.partner-applications-approved-space-8column .sales_pipeline_table th:nth-of-type(7), .partner-applications-approved-space-8column .sales_pipeline_table td:nth-of-type(7){
  width: 11%;
}
.partner-applications-approved-space-8column .sales_pipeline_table th:nth-of-type(8), .partner-applications-approved-space-8column .sales_pipeline_table td:nth-of-type(8){
  width: 10%;
}

.partner-applications-approved-space-8column-active .sales_pipeline_table th:nth-of-type(1), .partner-applications-approved-space-8column-active .sales_pipeline_table td:nth-of-type(1){
  width: 13%;
}
.partner-applications-approved-space-8column-active .sales_pipeline_table th:nth-of-type(2), .partner-applications-approved-space-8column-active .sales_pipeline_table td:nth-of-type(2){
  width: 20%;
}
.partner-applications-approved-space-8column-active .sales_pipeline_table th:nth-of-type(3), .partner-applications-approved-space-8column-active .sales_pipeline_table td:nth-of-type(3){
  width: 11%;
}
.partner-applications-approved-space-8column-active .sales_pipeline_table th:nth-of-type(4), .partner-applications-approved-space-8column-active .sales_pipeline_table td:nth-of-type(4){
  width: 11%;
}
.partner-applications-approved-space-8column-active .sales_pipeline_table th:nth-of-type(5), .partner-applications-approved-space-8column-active .sales_pipeline_table td:nth-of-type(5){
  width: 11%;
}
.partner-applications-approved-space-8column-active .sales_pipeline_table th:nth-of-type(6), .partner-applications-approved-space-8column-active .sales_pipeline_table td:nth-of-type(6){
  width: 11%;
}
.partner-applications-approved-space-8column-active .sales_pipeline_table th:nth-of-type(7), .partner-applications-approved-space-8column-active .sales_pipeline_table td:nth-of-type(7){
  width: 11%;
}
.partner-applications-approved-space-8column-active .sales_pipeline_table th:nth-of-type(8), .partner-applications-approved-space-8column-active .sales_pipeline_table td:nth-of-type(8){
  width: 10%;
}


.partner-applications-7column .sales_pipeline_table th:nth-of-type(1), .partner-applications-7column .sales_pipeline_table td:nth-of-type(1){
  width: 15%;
}
.partner-applications-7column .sales_pipeline_table th:nth-of-type(2), .partner-applications-7column .sales_pipeline_table td:nth-of-type(2){
  width: 15%;
}
.partner-applications-7column .sales_pipeline_table th:nth-of-type(3), .partner-applications-7column .sales_pipeline_table td:nth-of-type(3){
  width: 11%;
}
.partner-applications-7column .sales_pipeline_table th:nth-of-type(4), .partner-applications-7column .sales_pipeline_table td:nth-of-type(4){
  width: 13%;
}
.partner-applications-7column .sales_pipeline_table th:nth-of-type(5), .partner-applications-7column .sales_pipeline_table td:nth-of-type(5){
  width: 15%;
}
.partner-applications-7column .sales_pipeline_table th:nth-of-type(6), .partner-applications-7column .sales_pipeline_table td:nth-of-type(6){
  width: 10%;
}
.partner-applications-7column .sales_pipeline_table th:nth-of-type(7), .partner-applications-7column .sales_pipeline_table td:nth-of-type(7){
  width: 10%;
}





.onboarding-8th-column .sales_pipeline_table th:nth-of-type(1), .onboarding-8th-column .sales_pipeline_table td:nth-of-type(1){
  width: 13%;
}
.onboarding-8th-column .sales_pipeline_table th:nth-of-type(2), .onboarding-8th-column .sales_pipeline_table td:nth-of-type(2){
  width: 20%;
}
.onboarding-8th-column .sales_pipeline_table th:nth-of-type(3), .onboarding-8th-column .sales_pipeline_table td:nth-of-type(3){
  width: 11%;
}
.onboarding-8th-column .sales_pipeline_table th:nth-of-type(4), .onboarding-8th-column .sales_pipeline_table td:nth-of-type(4){
  width: 11%;
}
.onboarding-8th-column .sales_pipeline_table th:nth-of-type(5), .onboarding-8th-column .sales_pipeline_table td:nth-of-type(5){
  width: 11%;
}
.onboarding-8th-column .sales_pipeline_table th:nth-of-type(6), .onboarding-8th-column .sales_pipeline_table td:nth-of-type(6){
  width: 11%;
}
.onboarding-8th-column .sales_pipeline_table th:nth-of-type(7), .onboarding-8th-column .sales_pipeline_table td:nth-of-type(7){
  width: 11%;
}
.onboarding-8th-column .sales_pipeline_table th:nth-of-type(8), .onboarding-8th-column .sales_pipeline_table td:nth-of-type(8){
  width: 10%;
}


.contract-agreement-submit {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-custom h4{
  font-size: 35px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.22px;
  color: #102456;
}


/*Responsive Css Start*/

/*============= 992 css start  =============*/
@media (min-width: 992px) {
.article-box-common{
      width: 20%;
}
.downloads-common-box, .video-common-box{
      width: 20%;
}
}
/*============= 992 css end  =============*/

/*============= 1200 css start  =============*/

@media (min-width: 1200px) {

/*.nav-profile{
  padding-top: 0;
  padding-bottom: 10px;
}*/
ul.profile.show{
  position: absolute; 
  inset: 0px 0px auto auto; 
  margin: 0px; 
  transform: translate(-16px, 38px);
  z-index: 9999;
}
/*.header-nav ul.profile.show {
    min-width: 290px;
    padding-bottom: 0;
    top: 78px !important;
    position: absolute; 
    inset: 0px 0px auto auto; 
    margin: 0px; 
    transform: none ;
    z-index: 9999;
}


.header-nav .nav-profile:hover ul.profile{
  display: block !important;

}*/


}

/*============= 1200 css end  =============*/



/*============= 1801 css start  =============*/
@media (min-width: 1801px) {
  .common-colum {
    width: fit-content;
  }
}
/*=============  1801 css end  =============*/

/*============= 2580 css start  =============*/
@media (max-width: 2580px) {
  .blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 386px;
}
}
/*=============  2580 css end  =============*/
/*============= 2380 css start  =============*/
@media (max-width: 2380px) {
  .blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 332px;
}
}
/*=============  2380 css end  =============*/

/*============= 1920 css start  =============*/
@media (max-width: 1920px) {
 /*============= 2560 css start  =============*/
@media (max-width: 2560px) {
  .blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 300px;
}
.waitingsvg svg{
  width: 18px;
}
}
/*=============  2560 css end  =============*/ 
}
/*=============  1920 css end  =============*/

/*============= 1920 css start  =============*/
@media (max-width: 1920px) {
}
/*=============  1920 css end  =============*/

/*============= 1900 css start  =============*/
@media (max-width: 1900px) {
  .buttons-row .buttons-row-common:nth-of-type(odd) {
    padding-right: 15px;
  }
  .buttons-row .buttons-row-common:nth-of-type(even) {
    padding-left: 15px;
  }
  .btn-default {
    max-width: 100%;
  }
.chris{
  font-size: 15px;
}
.sales_pipeline_table th, .sales_pipeline_table td, .sales_pipeline_table td a{
  font-size: 15px;
}
.table td, .table th {
    padding: 1rem 0.5rem;
}
.active-products-logos a img {
    max-width: 21px;
    max-height: 21px;
}
.component-settings img {
    max-width: 29px;
}
.component-wrap {
    max-width: 258px ;
    margin: 0 auto;
}
.only-active-projects .active-products-logos {
    max-width: 213px;
  }

.sidebar-nav svg{
  max-width: 16px;
  max-height: 16px;
}
.sidebar-nav .nav-link {
    font-size: 14px;
    padding: 12px 15px;
}
.sidebar-nav .nav-content a {
    font-size: 14px;
    padding: 12px 0 12px 20px;
}
.partner-applications-buttons .btn{
  padding: 6px 11px;
}
.partner-applications-buttons .btn span {
    font-size: 11px;
  }
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 254px;
}
.waitingsvg svg{
  width: 16px;
}
}
/*=============  1900 css end  =============*/

/*============= 1680 css start  =============*/
@media (max-width: 1680px) {
  .sales_pipeline_main .btn {
    font-size: 12px;
    padding: 0 7px;
  }
  .sales_pipeline_main .btn span.number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .sales_pipeline_main .radio-wrap .btn {
    margin: 0 4px;
    width: 25px;
    height: 25px;
  }
  .sales_pipeline_main .radio-wrap .btn:after {
    width: 11px;
    height: 11px;
  }
.pagetitle h1 {
    font-size: 20px;
}
.typeface-contect h1{
  font-size: 72px;
}
.typeface-contect-bottom h2{
  font-size: 48px;
}
.typeface-contect .content p:nth-of-type(1){
  font-size: 22px;
}
.typeface-contect .content p:nth-of-type(2){
  font-size: 20px;
}
.typeface-contect .content p:nth-of-type(3){
  font-size: 18px;
}

.what-is-new-box .description ul li p {
    font-size: 14px;
}
.what-is-new-box .description ul li p strong {
  font-size: 16px;
}
.pricing-sheet-table_main .pricing-sheet-table th p span{
  font-size: 13px;
}
.pricing-sheet-table_main .pricing-sheet-table p span{
  font-size: 13px;
}
.distributor-application-content p{
  font-size: 20px;
}
.login-application-sec h1 {
    font-size: 50px;
}
.brand-kit-and-guidelines2 .card-body p {
    font-size: 16px;
  }
.contract-agreement-sec .card {
    padding: 30px 10px 30px 10px;
}
.proposal-left-column{
  padding: 30px;
}
.cover-right-column .upload-file-cus label.btn{
  height: 90px;
}

.proposal-section p{
/*  font-size: 9px;*/
}
.summary-wrap h2 {
    font-size: 16px;
}
.title-wrap {
    padding-bottom: 6px;
    margin-bottom: 13px;
}
.budget-top-sec ul {
    margin-top: 20px;
    margin-bottom: 20px;
}
.budget-top-sec .budget-content h2 {
    font-size: 20px;
}
.budget-top-sec .budget-content {
    padding: 10px 35px 10px 13px;
}
.budget-top-sec ul.d-flex li:after{
  width: 36px;
  height: 36px;
}
.proposal-section h4 {
    font-size: 12px;
}

/*.proposal-container {
    height: 700px;
}*/
.web-dev-wrap {
    padding: 25px 15px;
}
.website-development-new .icon-wrap img {
    height: 20px;
    width: auto;
    margin-bottom: 6px;
}
.summary-wrap h4 {
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.summary-wrap .overview-content h4{
  margin-bottom: 0;
}
.pt-20 {
    padding-top: 12px;
}
.pb-20 {
    padding-bottom: 12px;
}
.mt-20 {
    margin-top: 12px;
}
.mb-20 {
    margin-bottom: 12px;
}
.Goals-and-Objectives h4 {
    margin-top: -34px;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 15px;
}
.goals-form-wrap textarea {
    height: 100px;
}
.cover-right-column .form-group input {
    padding: 10px 20px;
    height: 44px;
    font-size: 14px;
}
.dolor-cus {
    position: absolute;
    bottom: 25px;
    left: 8px;
}
.goals-form-wrap textarea{
  padding: 10px 20px;
  font-size: 14px;
}
.goal-main-form .form-switch label {
    font-size: 13px;
    font-size: 14px;
}
.proposal-section .nav-link img {
    max-width: 150px;
}
.proposal-left-column, .cover-right-column-main, .cover-right-column, .proposal-main .proposal-section.for-prient {
  min-height: 800px;
  height: calc(100vh - 70px);
}
.cover-form{
  height: calc(100vh - 136px);
  padding: 20px 20px;
}
.Approach_Method_Process-new h4 {
    margin-bottom: 0;
    padding-bottom: 0;
}
.proposed-solution-right ul li{
  margin-bottom: 7px;
}
.pt-35{
  padding-top: 30px;
}
.pt-50{
  padding-top: 50px;
}
.your-stroy-back, .top-form .edit-custom-pan-point, .top-form .add-more {
    font-size: 14px;
}
.your-stroy-back img{
  max-width: 16px;
}
.top-form .edit-custom-pan-point, .top-form .add-more{
  height: 44px;
}
.company-logos-wrap .logo-box{
  height: 100px;
  width: 31%;
}

/*12.12.2023 Start*/
.gSuite-proposal-builder-main-wrap .how-our-products-work {
    min-height: 668px;
    overflow: hidden;
}
.gSuite-proposal-builder-main-wrap .how-our-products-work img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gSuite-proposal-builder-main-wrap .terms-and-conditions .title-wrap {
    margin-bottom: 20px;
}
.goals-form-wrap table td {
    font-size: 12px;
}
/*12.12.2023 End*/
/*13.12.2023 Start*/
.partner-applications-buttons .btn {
    font-size: 20px;
    padding: 6px 15px;
}
.partner-applications-column .foundational-Services-box {
    padding: 25px;
}
.partner-applications-buttons .btn span {
    font-size: 8px;
    padding: 4px 6px;
}
/*13.12.2023 End*/
.table td, .table th {
    padding: 1rem 0.5rem;
}
table.billable-table tr td {
    padding: 5px 7px;
}
.gotcha-work-order-form-wrapper .table th {
    font-size: 16px;
}
.gotcha-work-order-form-wrapper .worke-order-table h5, tr.sub-total-row span {
    font-size: 18px;
}
.gotcha-work-order-form-wrapper textarea {
    height: 200px;
}
.gotcha-work-order-form-wrapper input{
  font-size: 14px;
}
.recommendation-or-proposed-products .Website_Development-content p, .recommendation-or-proposed-products .results-content p {
    font-size: 7.8px;
    line-height: 1.45;
}

.chris{
  font-size: 14px;
}
.sales_pipeline_table th, .sales_pipeline_table td, .sales_pipeline_table td a{
  font-size: 14px !important;
}
.component-settings img {
    max-width: 20px;
}
.active-products-logos a img {
    max-width: 19px;
    max-height: 19px;
}
.admin-salse-table-part-wrap td:nth-of-type(5) a img {
    margin-left: 2px;
}
.component-wrap {
    max-width: 190px;
    margin: 0 auto;
}
.chris img {
    max-width: 14px;
    max-height: 14px;
}
.verticalycentered .btn-primary {
  padding: 0 22px;
  height: 40px;
}
.verticalycentered .modal-body > h5 {
    margin-bottom: 20px;
}
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn{
  height: 208px;
}
.recent-documents .docoment-common-box h5 a, .blank-docoment-wrap a .button-wrapper h5 {
    font-size: 14px;
}
.recent-documents .docoment-common-box p{
  font-size: 12px;
}
.scope-of-work-menu ul li a{
  font-size: 14px;
}
.scope-of-work-menu ul li a.active, .scope-of-work-menu ul li a:hover {
    font-size: 15px;
}
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 243px;
}
}
/*=============  1680 css end  =============*/

@media (max-width: 1600px) {
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 227px;
}
.waitingsvg svg {
    width: 13px;
}
}
/*============= 1500 css start  =============*/
@media (max-width: 1500px) {
  .text_colors_row,
  .royal_dark_blue {
    flex-flow: row wrap;
    gap: 15px;
  }
  .color-plate-wrap .title {
    font-size: 12px;
    font-weight: 500;
  }

  .sales_pipeline_main .btn {
    font-size: 12px;
  }
  .sales_pipeline_table th {
    font-size: 14px;
  }
  .sales_pipeline_table td {
    font-size: 13px;
  }
  .sales_pipeline_main .radio-wrap .btn {
    margin: 0 2px;
    width: 24px;
    height: 24px;
  }
  .sales_pipeline_main .radio-wrap .btn:after {
    width: 10px;
    height: 10px;
  }
  .sales_pipeline_table td {
    font-size: 13px;
  }
  .sales_pipeline_table td:nth-of-type(2),
  .sales_pipeline_table td:nth-of-type(6),
  .sales_pipeline_table td a {
    font-size: 13px;
  }

  .table td,
  .table th {
    padding: 0.5rem 0.5rem;
  }
  .table th {
    padding: 1rem 0.5rem;
  }
  .sales_pipeline_main .btn span.number {
    width: 22px;
    height: 22px;
    font-size: 12px;
    line-height: 22px;
    margin-right: 5px;

  }
.sales_pipeline_main .btn span.sup-number {
    font-size: 11px;
    right: -15px;
    top: -15px;
    width: 24px;
    height: 24px;
}
.sales_pipeline_main .btn{
  line-height: 1;
}
.tab-herader .tab-head {
    width: calc(100% - 110px);
    font-size: 16px;
}
.tab-herader .tab-icon {
    width: 60px;
    height: 60px;
}
.process-tab span.count {
    width: 28px;
    height: 28px;
    font-size: 14px;
}
.process-tab span.count:before {
    height: 66px;
}
.blog-left-column .card {
    padding-right: 5%;
}
.sidebar-nav .nav-link {
    padding: 12px 15px;
}
.icon-box-common .icon-box {
    padding: 25px;
}

.common-colum h5 {
    font-size: 14px;
  }
.large-btn {
    font-size: 16px;
  }
.medium-btn{
  font-size: 14px;
}
.small-btn{
  font-size: 14px;
}

h5 {
    font-size: 18px;
  }
.pagetitle h1 {
    font-size: 20px;
}
.typeface-contect h1{
  font-size: 64px;
}
.typeface-contect-bottom h2{
  font-size: 38px;
}
.typeface-contect .content p:nth-of-type(1){
  font-size: 18px;
}
.typeface-contect .content p:nth-of-type(2){
  font-size: 18px;
}
.typeface-contect .content p:nth-of-type(3){
  font-size: 18px;
}
.downloads-tab .article-image-wrap{
  height: 160px;
}
.downloads-common-box .btn.download-btn p {
    font-size: 16px;
}
.foundational-Services-header-content h6 {
    font-size: 16px;
}
.foundational-Services-header-content p {
    font-size: 14px;
    line-height: 1.3;
}
.foundational-Services-header-content {
    width: calc(100% - 55px);
}
.foundational-Services-header-icon{
  max-width: 46px;
}
.Case_Studies_box .article-box .description {
    padding: 0px 15px 25px;
    margin: 0;
}
.Case_Studies_box .logo-wrap {
    height: 60px;
}
.Case_Studies_box .logo-wrap img{
    max-height: 90%;
}
.what-is-new-box .description ul li {
    padding-left: 20px;
}
.what-is-new-box .description ul li p {
    font-size: 14px;
}
.what-is-new-box .description ul li p strong {
  font-size: 14px;
}
.contact-box .icon-box {
    padding: 30px 0;
}
.login-top-mage img {
    max-width: 64%;
}
.login-top-mage {
    margin: 40px auto;
}
.distributor-application-content p{
  font-size: 18px;
}
.login-application-sec h1{
  font-size: 48px;
}
.pt-120{
  padding-top: 100px;
}
.pb-120{
  padding-bottom: 100px;
}
.profile-image-main {
    width: 180px;
    height: 180px;
}
.profile-content-wrap .profile-image .camera-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    right: 35px;
    bottom: 6px;
}
.copy-wrap input {
    width: 80% !important;
}
.what-is-new-wrap-update .logo-wrap{
  padding: 15px;
}
ul.tag-cus li {
    margin-right: 10px;
    padding-right: 10px;
}
ul.tag-cus li a, ul.tag-cus li {
    font-size: 12px;
}
.Case_Studies_box .article-box .description p{
  font-size: 14px;
}
.video-image-wrap .download-btn{
  width: 110px;
}
.contract-agreement h4 {
    font-size: 16px;
  }
.contract-agreement h4 br{
  display: none;
}
.contract-agreement span.counter {
    width: 53px;
    font-size: 16px;
}
.contract-agreement ul ul {
    margin-left: 60px !important;
}
.contract-agreement ul li .content {
    width: calc(100% - 60px);
}
.brand-kit-and-guidelines2 .card-body .contract-agreement p{
  font-size: 14px;
}
.contract-agreement-sec {
    padding: 15px 30px;
}
.contract-agreement-popup .modal-lg, .contract-agreement-popup .modal-xl {
    --bs-modal-width: 1100px;
}
.contract-agreement .left-content span {
    font-size: 16px;
    width: 30px;
    height: 30px;
  }

.proposal-section .nav-link img {
    max-width: 130px;
}
.cover-right-column .upload-file-cus label.btn{
  height: 80px;
}
.cover-right-column .form-group input {
    padding: 7px 20px;
    font-size: 14px;
    margin-bottom: 15px;
    height: 40px;
}
/*.proposal-section .container{
  max-width: 450px;
}
.proposal-container{
  height: 630px;
}*/
.proposal-left-column{
  padding: 30px;
}
.proposal-section h3 {
    font-size: 16px;
}
.client_name_here p {
    font-size: 12px;
}
.proposal-section h1 {
    font-size: 38px;
}
/*.footer-content p {
    font-size: 12px;
}
.proposal-section p{
  font-size: 8px;
}
.deposit-sec .content p{
  margin-bottom: 8px;
}
.summary-wrap h2 {
    font-size: 14px;
}
.proposal-section h4 {
    font-size: 12px;
}
.proposal-section h5 {
    font-size: 8px;
}
.solutions-products-content p {
    font-size: 7px;
    font-weight: 400;
}*/
.website-development-new .icon-wrap img {
    height: 15px;
    width: auto;
    margin-bottom: 9px;
}
.incrise-box h5 {
    font-size: 10px;
}
.summary-wrap .result-content h2 {
    font-size: 20px;
}
.incrise-box {
    height: 120px;
}

.cover-right-column .form-group p {
    font-size: 10px;
}
.summary-wrap h4 {
    margin-bottom: 15px;
}
.summary-wrap .overview-content h4{
  margin-bottom: 0;
}
.budget-top-sec .budget-content h2 {
    font-size: 18px;
}
.budget-top-sec .budget-content p {
    font-size: 6px;
}
.budget-top-sec .budget-content {
    padding: 8px 30px 8px 10px;

}
.budget-top-sec ul.d-flex li:after {
    width: 28px;
    height: 28px;
}
.Total-Build-Cost h2 {
    font-size: 20px;
  }
.deposit-sec .tag-wrap a {
    font-size: 6px;
    padding: 0px 10px;
    margin-right: 4px;
    margin-bottom: 5px;
}
.Total-Build-Cost {
    width: 160px;
    height: 90px;
    border-radius: 8px;
    border: solid 1px #4291ff;
    background-color: #fbfcff;
    position: absolute;
    right: 10px;
    bottom: 10px;
    overflow: hidden;
}
.deposit-sec {
    padding: 10px 20px;
}
.budget-top-sec ul {
    margin-top: 20px;
    margin-bottom: 20px;
}
.cover-title h4 {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1;
    display: flex;
    align-items: center;
}
.goal-main-form .form-switch label {
    font-size: 12px;
}
.goals-form-wrap textarea {
    height: 90px;
}
.Goals-and-Objectives h4 {
    margin-top: -15px;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 8px;
}
.cover-right-column .cover-title {
    padding: 20px 20px;
}
.cover-form {
    height: calc(100vh - 136px);
    padding: 20px 20px;
}
.cover-right-column .cover-title p {
    font-size: 12px;
}
.scope-of-Work-row .proposed-solution-right {
    padding-left: 15px;
    padding-right: 25px;
    margin-top: 0;
    padding-top: 0;
}
.planning-design-box .Strategy-content {
    width: 160px;
}
.planning-design-box .Strategy-content:nth-of-type(3) {
    left: 86%;
    top: 127px;
}
.Approach_Method_Process-new h4 {
    margin-bottom: 0;
    padding-bottom: 0;
}
.communication-and-collaboration .proposed-solution-right ul li {
    font-size: 9px;
}
.communication-and-collaboration .Brand-guide .Website_Development-content p {
    font-size: 9px;
}
.Total-Build-Cost h2 span {
    font-size: 12px;
}
.pt-35{
  padding-top: 30px;
}
.pt-50{
  padding-top: 50px;
}
.proposal-section .your-storyStep2 h5 {
    font-size: 15px;
}
.your-stroy-back, .top-form .edit-custom-pan-point, .top-form .add-more {
    font-size: 12px;
}
.your-stroy-back img{
  max-width: 16px;
}
.top-form .edit-custom-pan-point, .top-form .add-more{
  height: 40px;
}


/*12.12.23 satrt*/
.how-our-products-work ul{
  width: 286px;
}
.goals-form-wrap table td {
    font-size: 12px;
  }

/*12.12.2023 End*/

/*13.12.2023 Start*/
.partner-applications-buttons .btn {
    font-size: 16px;
    padding: 5px 9px;
    margin-right: 5px;
}
.partner-applications-buttons .btn:last-child{
  margin-right: 0;
}
.partner-applications-column .foundational-Services-box {
    padding: 20px;
}
.partner-applications-buttons .btn span {
    font-size: 8px;
    padding: 2px 4px;
}
.partner-applications-column .foundational-Services-header-content h6 a, .partner-applications-column .foundational-Services-header-content h6 {
  font-size: 16px;
}
/*13.12.2023 End*/
.gotcha-work-order-form-wrapper .table th {
    font-size: 15px;
}
.gotcha-work-order-form-wrapper .worke-order-table h5, tr.sub-total-row span {
    font-size: 18px;
}
.gotcha-work-order-form-wrapper textarea {
    height: 180px;
}
.recommendation-or-proposed-products .Website_Development-content p, .recommendation-or-proposed-products .results-content p {
    font-size: 7.8px;;
    line-height: 1.35;
}
.gSuite-proposal-builder-main-wrap .summary-wrap .terms-and-conditions-new ul li {
    font-size: 8px;
}
.quick-access, .selling-gotcha {
    padding: 15px 0 15px 20px;
}
.chris{
  font-size: 12px !important;
}
.sales_pipeline_table th, .sales_pipeline_table td, .sales_pipeline_table td a{
  font-size: 12px !important;
}
.active-products-logos a img {
    max-width: 16px;
    max-height: 16px;
}
.only-companies-table .admin-salse-table-part-innertable .dropdown-cus {
    min-width: 59px;
}

.modal-lg, .modal-xl {
    --bs-modal-width: 700px;
}
.modal-body {
    padding: 0;
}
.time-check-wrap .form-group {
    width: 29.3%;
}
.time-check-wrap .form-group label{
  font-size: 12px;
}
.btn-close img{
  max-width: ;
}
.form-group input{
  font-size: 12px;
  height: 40px;
}
.gotcha-work-order-form-wrapper input {
    padding: 4px 10px;
    height: 40px;
  }
.brand-kit-and-guidelines2.gotcha-work-order-form-wrapper .card-body ul li {
    font-size: 14px;
}
.gotcha-work-order-form-wrapper select{
  font-size: 12px;
  height: 40px;
  padding: 5px 10px;
}
.form-group label{
  font-size: 12px;
}
.chechk-box-wrap .form-group {
    width: 22.3%;
}
.form-group label:before {
    padding: 6px;
}
.chechk-box-wrap .form-group input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 10px;
    border: solid #599eff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.btn-close img {
    max-width: 29px;
}
.multi-step-form .chechk-box-wrap .form-group label:before {
    padding: 6px;
}
.faq p {
    font-size: 14px;
}
.calender-box label {
    font-size: 16px;
}
.app__main {
    width: 300px;
    height: 300px;
}
.datepicker td, .datepicker th {
    height: 35px;
  }
.only-active-projects .active-products-logos {
    max-width: 180px;
}
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 180px;
}
.recent-documents .docoment-common-box h5 a, .blank-docoment-wrap a .button-wrapper h5 {
    font-size: 14px;
}
.recent-documents .docoment-common-box p{
  font-size: 12px;
}
.scope-of-work-menu ul li a{
  font-size: 13px;
  line-height: 1;
}
.scope-of-work-menu ul li a.active, .scope-of-work-menu ul li a:hover {
    font-size: 13px;
}
.scope-of-work-menu ul li{
  padding: 10px 5px;
}
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 195px;
}

.gs-hero .ghero-txt h1, .ab-hero .ghero-txt h1 {
    font-size: 46px;
}
.gs-hero .ghero-txt p, .ab-hero .ghero-txt p {
    font-size: 20px;
}
.Partner-3 .cus-tab-icon {
    width: 90px;
    height: 90px;
}
.development-left-column .goals-form-wrap ul li, .development-left-column .goals-form-wrap p{
  font-size: 14px;
}
.development-left-column .goals-form-wrap label{
  font-size: 14px;
}
}
/*=============  1500 css end  =============*/

@media (max-width: 1400px) {
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 186px;
}
}
/*============= 1366 css start  =============*/
@media (max-width: 1366px) {
.proposal-left-column, .cover-right-column-main, .cover-right-column, .proposal-main .proposal-section.for-prient {
  height: 800px;
}
.cover-form{
  height: calc(800px - 66px);
  padding: 20px 20px;
}
.massage-info button {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }
.proposed-solution-right ul li {
    font-size: 7.5px;
}
.scope-of-Work2 .proposed-solution-right ul li {
    font-size: 7px;
}
.proposed-solution-right .proposed-solution-right-content ul ul.sub-text{
      margin-left: 15px;
      font-size: 7px;
}
.proposal-container {
    height: 720px;
}
.proposal-section h5 {
    font-size: 9px;
}
.proposal-section p {
    font-size: 9px;
}
.proposal-section h4 {
    font-size: 10px;
}
.proposed-solution-right .proposed-solution-right-content ul ul.sub-text li {
    font-size: 7px;
  }
.additional-services-box p{
    font-size: 7px;
}
.cover-right-column-main .proposal-section h5 {
    font-size: 12px;
}
.your-storyStep2 .delete-button img {
    max-width: 16px;
}

/*12.12.23 Start*/
.goals-form-wrap table td {
    font-size: 12px;
}
.goals-form-wrap table td {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
table.rwd-table td, table.rwd-table th {
    padding: 9px 4px;
}
.recommendation-or-proposed-products .right-column {
    padding-top: 8px;
    padding-bottom: 8px;
}
.recommendation-or-proposed-products .left-column {
    padding-top: 8px;
    padding-bottom: 8px;
}
.gSuite-proposal-builder-main-wrap .how-our-products-work {
    min-height: 599px;
    overflow: hidden;
}
.how-our-products-work-content:nth-of-type(2) {
    width: 175px;
    left: 14%;
    top: 133px;
}
.how-our-products-work-content:nth-of-type(3) {
    width: 117px;
    left: 14%;
    top: 263px;
}
.how-our-products-work-content:nth-of-type(4) {
    top: 430px;
}
/*12.12.2023 Enad*/

.recommendation-or-proposed-products .Website_Development-content p, .recommendation-or-proposed-products .results-content p {
    font-size: 7.5px;;
    line-height: 1.25;
}
.recommendation-product-list-2 .left-column {
    padding-bottom: 15px;
}
.past-proposals-wrap .proposal-builder-web-box .dropdown-cus{
    position: absolute;
    top: 1px;
    right: 2px;
}
.past-proposals-wrap .proposal-builder-web-box .dropdown-cus .btn{
  height: 32px;
}
.past-proposals-wrap .proposal-builder-web-box .dropdown-cus .btn img{
  max-height: 15px;
}
.myprofile-new-section .profile-right-content .table td, .my-profile-basic-wrap input, .my-profile-basic-wrap select {
  font-size: 12px;
}
.gotcha-new-user .profile-image-main {
    width: 180px;
    height: 180px;
}
.gotcha-new-user .upload-file-cus .btn {
    width: 180px;
    font-size: 12px;
    padding: ;
}
.add-new-company-details .add-new-company-details-table .btn{
  width: 120px;
}
.add-new-company-details .add-new-company-details-table td input[type=submit] {
    width: 160px;
  }
.add-new-company-button-wrap .btn span {
    margin-top: 0px;
}
.chris{
  font-size: 11px !important;
}
.sales_pipeline_table th, .sales_pipeline_table td, .sales_pipeline_table td a{
  font-size: 11px !important;
}

.myprofile-new-section .button-wrapper .btn{
  width: 120px;
}
.myprofile-new-section .button-wrapper input[type=submit] {
    width: 160px;
}
.table td, .table th, .table input, .table select, .table textarea, .table select{
  font-size: 12px !important;
}
 td input::-webkit-input-placeholder { 
  font-size: 12px !important;
}
td input::-moz-placeholder { 
  font-size: 12px !important;
}
td input:-ms-input-placeholder { 
  font-size: 12px !important;
}
 td input:-moz-placeholder { 
  font-size: 12px !important;
}
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 179px;
}
.recent-documents .docoment-common-box h5 a, .blank-docoment-wrap a .button-wrapper h5 {
    font-size: 12px;
}
.recent-documents .docoment-common-box p{
  font-size: 11px;
}

.home-video .VideoSec {
    margin-top: -200px;
}
.ab-hero {
    padding-bottom: 230px;
}
.ghero-txt{
  height: auto;
}
.information-popup .popup__content{
    padding: 30px;
    mamx-width: 800px;
}
.information-popup-thank .popup__content, .thankyou-msg .popup__content{
  padding: 30px;
  max-width: 800px;
}
.development-left-column .chechk-box-wrap .form-group input:checked + label:after {
    top: 4.5px;
    left: 5px;
    width: 5px;
    height: 9px;
}
.development-left-column .multi-step-form .chechk-box-wrap .form-group label:before {
    padding: 6px;
}
}
/*=============  1366 css end  =============*/

@media screen and (min-device-width: 119px) and (max-device-width: 1300px){
  .proposed-solution-box .Website_Development-content p {
    font-size: 8px;
}
.web-client-requirements-wrap .web-client-requirements p {
    font-size: 9px;
  }
.proposed-solution-box ul li {
    font-size: 7px;
}
.proposed-solution-right ul li {
    font-size: 7px;
}
.proposal-section p {
    font-size: 8px;
}
.Brand-guide .Website_Development-content p {
    font-size: 8px;
    line-height: 1.253;
  }
.web-client-requirements-wrap .web-client-requirements p {
    font-size: 8px;
}
/*.solutions-products-content p{
  font-size: 7px;
}*/
.additional-services-box p {
    font-size: 7px;
}
.scope-of-Work2 .proposed-solution-right ul li {
    font-size: 6px;
}
.chris{
  font-size: 10px !important;
}
.sales_pipeline_table th, .sales_pipeline_table td, .sales_pipeline_table td a{
  font-size: 10px !important;
}
.active-products-logos a img {
    max-width: 15px;
    max-height: 15px;
}
}

/*============= 1280 css start  =============*/
@media (max-width: 1280px) {
.sidebar-nav .nav-link{
  padding: 8px 15px;
}
.quick-access, .selling-gotcha {
    padding: 13px 0 13px 20px;
}
.sidebar-nav li {
    margin: 6px 0;
}

.sidebar-nav .nav-content a {
    padding: 9px 0 9px 20px;
}
.sidebar-nav .nav-content svg{
  max-width: 18px;
  max-height: 18px;
}
.login-desc p br{
  display: none;
}
.active-products-logos a img {
    max-width: 18px;
    max-height: 18px;
  }
.active-products-logos {
    max-width: 200px;
}
.company-logos-wrap .logo-box {
    height: 80px;
}
.recommendation-or-proposed-products .Website_Development-content p, .recommendation-or-proposed-products .results-content p {
    font-size: 7px;
    line-height: 1.25;
}
.gSuite-proposal-builder-main-wrap .summary-wrap .terms-and-conditions-new ul li{
  font-size: 7px;
    line-height: 1.25;
}
table.rwd-table td, table.rwd-table th{
  font-size: 8px;
}
.past-proposals-wrap .proposal-builder-web-box .dropdown-cus{
    position: absolute;
    top: 1px;
    right: 2px;
}
.past-proposals-wrap .proposal-builder-web-box .dropdown-cus .btn{
  height: 32px;
}
.past-proposals-wrap .proposal-builder-web-box .dropdown-cus .btn img{
  max-height: 15px;
}
.chris{
  font-size: 10px !important;
}
.sales_pipeline_table th, .sales_pipeline_table td, .sales_pipeline_table td a{
  font-size: 10px !important;
}
.active-products-logos a img {
    max-width: 14px;
    max-height: 14px;
}
.only-active-projects .active-products-logos {
    max-width: 153px;
}
.blank-docoment-wrap .proposal-builder-image-wrap, .blank-document .btn {
    height: 162px;
}
.gs-hero .ghero-txt h1, .ab-hero .ghero-txt h1 {
    font-size: 42px;
}
.gs-hero .ghero-txt p, .ab-hero .ghero-txt p {
    font-size: 18px;
}
.ab-mission h2, .ab-gnumber h2, .abt-company h2, .abt-model h2, .asses-bx h2, .val-community h2, .val-gdin h2, .team-wrap h2, .h-discover h2, .h-getstart h2, .h-find h2, .abt-story h2, .abt-values h2, .abt-team h2, .abt-achiev h2, .h-platfom h2, .g-foundational h2, .g-inbound h2, .g-movefast h2, .g-business h2, .g-faq h2, .g-needs h2, .qr-sec-common h2 {
    font-size: 38px;
}.development-left-column .chechk-box-wrap .form-group input:checked + label:after {
    top: 4.5px;
    left: 5.5px;
    width: 5px;
    height: 9px;
}
}
/*=============  1280 css end  =============*/

/*============= 1279 css start  =============*/
@media (max-width: 1279px) {
.table th, .table td {
    padding: .5rem 0.3rem;
}
.active-products-logos a img {
    max-width: 12px;
    max-height: 12px;
}
.only-active-projects .active-products-logos {
    max-width: 150px;
}
}


/*============= 1199 css start  =============*/
@media (max-width: 1199px) {
  .header .toggle-sidebar-btn {
    margin-right: 20px;
  }
  .chechk-box-wrap .form-group {
    width: 30.3%;
  }
  .modal {
    margin: 0 auto;
    --bs-modal-width: unset !important;
    width: 90%;
    left: 0;
    right: 0;
  }
  .time-check-wrap .form-group label {
    padding: 8px 8px;
  }
  .app__main {
    width: 300px;
    height: 324.1px;
  }

  .sidebar-nav .nav-content a:hover,
  .sidebar-nav .nav-content a.active {
    color: #4154f1;
  }
  .sidebar-nav .nav-content a:hover {
    color: #fff !important;
    background: #364482;
  }
  .sidebar-nav .nav-content a {
    padding: 15px 0 15px 20px;
  }
.toggle-sidebar-btn.d-lg-none{
  display: block !important;
}

.login-form-wrap {
    margin: 0 5%;
}

.proposal-main {
    margin-left: 0px !important;
  }
.proposal-container {
    height: 750px;
}
/*12.12.2023 Start*/
.gSuite-proposal-builder-main-wrap .how-our-products-work {
    min-height: 633px;
    overflow: hidden;
}
/*12.12.2023 End*/
.active-products-logos a img {
    max-width: 15px;
    max-height: 15px;
}
.component-wrap {
    max-width: 166px;
}
.only-active-projects .active-products-logos {
    max-width: 164px;
}
}
/*=============  1199 css end  =============*/

/*============= 991 css start  =============*/
@media (max-width: 991px) {
  .header .toggle-sidebar-btn {
    margin-right: 20px;
  }
  .chechk-box-wrap .form-group {
    width: 30.3%;
  }
  .modal {
    margin: 0 auto;
    --bs-modal-width: unset !important;
    width: 90%;
    left: 0;
    right: 0;
  }
  .time-check-wrap .form-group label {
    padding: 8px 8px;
  }
  .app__main {
    width: 300px;
    height: 324.1px;
  }
  .sidebar-nav .nav-content a:hover,
  .sidebar-nav .nav-content a.active {
    color: #4154f1;
  }
  .sidebar-nav .nav-content a:hover {
    color: #fff !important;
    background: #364482;
  }
  .sidebar-nav .nav-content a {
    padding: 15px 0 15px 20px;
  }
  .Products-and-Service2 .download-title h5 {
    font-size: 16px;
  }
  .brand-kit-and-guidelines2 .card-header .card-header-title {
    font-size: 18px;
  }
  .brand-kit-and-guidelines2 .card-header .card-header-title {
    font-size: 18px;
  }
  .text_colors_row .color-box {
    width: 22%;
    min-width: 130px;
  }
.tab-content>.tab-pane {
    display: block;
    opacity: 1;
  }
.process-tab span.count:before{
  display: none;
}
.process-tab .tab-herader {
    width: 100%;
    align-items: center;
}
.accordion-item:first-of-type .accordion-button{
  border-bottom: 0;
  outline: none;
  box-shadow: none;
}
.blog-left-column .card {
    padding-right: 8%;
}
.blog-left-column .card {
    padding-right: 0;
}
.what-is-new-box .description ul.three-item li {
    width: 50%;
}
.login-left-box {
    justify-content: center;
}
.login-form-wrap {
    padding: 30px 0 50px 0;
}
.login-right-box{
  height: auto;
}
.login-content{
  padding: 50px 0;
}
.login-top-mage {
    margin: 0px auto 30px auto;
}
.distributor-application-content {
    padding-right: 0%;
}
.login-application-sec h1 {
    font-size: 42px;
}
.pt-120{
  padding-top: 60px;
}
.pb-120{
  padding-bottom: 60px;
}
.distributor-application-content p {
    text-align: center;
}
img.allpy-image{
  display: none;
}

/*14.11.23*/
.gotcha-preferred-new-section2 .form-wrap.new{
  margin-top: 30px
}
#multi-step-form .form-txt-wite {
    padding-right: 0%;
}
.gotcha-preferred-new-section2 .form-group label span {
    font-size: 16px;
    font-weight: 800;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #153073;
    position: relative;
    left: 1px;
    top: 0;
}
.pt-100{
  padding-top: 50px;
}
.pb-100{
  padding-bottom: 50px;
}
.pt-80{
  padding-top: 50px;
}
.pb-80{
  padding-bottom: 50px;
}

.gotcha-preferred-new-section .ghero-txt img.img-fluid {
    margin-bottom: 30px;
    max-width: 180px;
}
.gotcha-preferred-new-section .ghero-txt h1{
  font-size: 38px;
}
.proposal-left-column {
    padding: 15px;
}
.proposal-section .nav-link img {
    max-width: 100px;
}
.proposal-section .tab-content>.tab-pane {
     display: none;
}
.proposal-section .tab-content>.active {
    display: block;
}
.proposal-section-wrap {
    height: auto;
}
.cover-form, .cover-right-column, .cover-right-column-main {
    height: auto;
}
.proposal-left-column{
  height: calc(100vh - 60px);
/*  margin-right: -8px;*/
}
.cover-right-column-main .cover-right-column{
  margin-left: 25px;
  margin-right: 25px;
  margin-bottom: 30px;
  width: calc(100% - 50px);
}
#v-pills-tabContent {
    height: calc(100vh - 60px);
    overflow-y: scroll;
    overflow-x: hidden;
}
#v-pills-tabContent::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

#v-pills-tabContent::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}
.proposal-container {
    height: 710px;
}
.cover-right-column-main, .cover-right-column{
  min-height: unset;
}
.chris{
  font-size: 9px !important;
}
.sales_pipeline_table th, .sales_pipeline_table td, .sales_pipeline_table td a{
  font-size: 9px !important;
}
.active-products-logos{
  justify-content: flex-start;
}
.gs-hero .ghero-txt h1, .ab-hero .ghero-txt h1, .ab-hero.case-studies-details1 .ghero-txt h1 {
    font-size: 36px;
}
.g-foundational p, .g-inbound p .g-faq p, .testimonials-sec .content p, .abt-story p, .abt-values p, .abt-team p, .abt-achiev p, .gs-hero .ghero-txt p, .ab-hero .ghero-txt p, .abt-values p, .val-txt p, .abt-mission p {
    font-size: 18px;
}
.ab-mission h2, .ab-gnumber h2, .abt-company h2, .abt-model h2, .val-community h2, .val-gdin h2, .team-wrap h2, .h-discover h2, .h-getstart h2, .h-find h2, .abt-story h2, .abt-values h2, .abt-team h2, .abt-achiev h2, .h-platfom h2, .g-foundational h2, .g-inbound h2, .g-movefast h2, .g-business h2, .g-faq h2, .g-needs h2, .qr-sec-common h2 {
    font-size: 34px;
}
.Partner-3 .counter:after{
  display: none;
}
.Partner-3 .cus-tab-icon {
    margin: 0 10px;
}
}
/*=============   991 css end  =============*/

/*============= 767 css start  =============*/
@media (max-width: 767px) {
  .sidebar-nav .nav-content a {
    padding: 15px 15px 15px 20px;
  }
  #verticalycentered .modal-content {
    padding: 0;
  }
  .app__main {
    width: 300px;
    height: 324.1px;
    margin: 0 auto 30px auto;
  }
  .time-check-wrap .form-group {
    display: block;
    width: 29.3%;
    box-sizing: border-box;
  }
.sidebar-nav .nav-content {
    padding: 30px 0px;
  }
.typeface-contect{
  flex-flow: row wrap;
  padding: 25px;
}
.typeface-contect-bottom{
  padding: 25px;
}
.typescale-table .card-body {
    width: 100%;
    overflow: scroll;
}
.typescale-table .card-body .table {
    min-width: 500px;
}
.brand-kit-and-guidelines2 .card-body p {
    font-size: 14px;
}
.distributor-application-content p {
    font-size: 16px;
    text-align: center;
}
.profile-content-wrap{
  margin: 0 auto;
}
.profile-right-content {
    overflow: scroll;
}
.account-settings-button-wrap {
    overflow: scroll;
}
.account-settings-button-wrap {
    overflow: scroll;
    padding-bottom: 15px;
}
.account-settings-button-wrap .btn{
  white-space: nowrap;
}
}
/*=============  767 css end  =============*/

/*============= 576 css start  =============*/
@media (max-width: 576px) {
  .header:after {
    content: "";
    width: 180px;
  }
  .header .toggle-sidebar-btn {
    margin-right: 10px;
  }
  .header-nav .nav-icon {
    margin-right: 19px;
  }
  .chechk-box-wrap .form-group {
    width: 46.3%;
  }
  .chechk-box-wrap .form-group label {
    font-size: 14px;
  }
  .text_colors_row .color-box {
    width: 47.5%;
    min-width: 130px;
  }
.process-tab .tab-herader{
  flex-flow: column;
}
.process-tab .accordion-button:after {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 8px;
    text-align: center;
}
.tab-herader .tab-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto;
}
.tab-herader .tab-head {
    width: 100%;
    font-size: 16px;
    text-align: center;
}
.process-tab .accordion-item {
    padding: 0;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(21, 34, 50, 0.08) !important;
    border: solid 1px #eaecef;
    background-color: #fff;
    margin-bottom: 34px;
}
.process-tab .accordion-header .accordion-button{
  padding: 25px 15px 30px !important;
}
.tab-herader .tab-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
}
.icon-box-common .icon-box {
    padding: 20px 15px;
}
.button-wrapper .btn {
    padding: 0px 8px;
}
.contact-box .icon-box {
    padding: 20px 0;
}
.login-application-sec h1 {
    font-size: 26px;
}
.distributor-application-form{
  padding: 20px;
}
.gotcha-preferred-new-section .ghero-txt h1 {
    font-size: 32px;
    line-height: 1.25;
}

.Partner-3 .cus-tab-content {
    width: 100%;
    text-align: center;
    padding: 0 15px;
}
.Partner-3 .accordion-button {
    padding: 25px 0;
    flex-flow: column;
}
.Partner-3 .cus-tab-icon {
    margin: 15px;
}
.Partner-3 .accordion-button::after {
    left: 0;
    right: 0;
    margin: 0 auto;
}
.Partner-3 .cus-tab-content h5{
    text-align: center;
}
.Partner-3 .accordion-body {
    padding-top: 25px !important;
    
}

.Partner-3 .tab-content .tab-pane{
    margin-bottom: 25px;
    border-radius: 16px;
    box-shadow: 2px 6px 12px 0 rgba(9, 21, 52, 0.08);
    background-color: #fff;
    overflow: hidden;
}
.Partner-3 .tab-content>.tab-pane:last-child{
    margin-bottom: 0;
}
.Partner-4 button.slide-arrow {
    left: 24%;
}
.Partner-4 button.slide-arrow.next-arrow {
    right: 24%;
}
.Partner-3 .accordion-button::after {
    left: 0;
    right: 0;
    margin: 15px auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: url(../img/down-arrow.png) #e1294b;
    background-size: 24px !important;
    background-position: center !important;
}

}
/*============= 576 css end  =============*/

/*============= 400 css start  =============*/
@media (max-width: 400px) {
  .app__main {
    width: 280px;
    height: 324.1px;
    margin: 0 auto 30px auto;
  }
}
/*============= 400 css end  =============*/
