/* Lato Fonts */
@font-face {
    font-family: 'LatoRegular';
    src: url('../fonts/Lato-Regular.woff2') format('woff2'),
        url('../fonts/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LatoBold';
    src: url('../fonts/Lato-Bold.woff2') format('woff2'),
        url('../fonts/Lato-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'LatoLight';
    src: url('../fonts/Lato-Light.woff2') format('woff2'),
        url('../fonts/Lato-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'LatoItalic';
    src: url('../fonts/Lato-Italic.woff2') format('woff2'),
        url('../fonts/Lato-LightItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

/* Color Variables */
:root {
    --primary-color: #223263;
    --secondary-color: #F89B45;
    --background-color: #FFFFFF;
    --text-color: #303030;
    --highlight-color: #0A1F44;
    --border-color: #E3E3E5;
    --button-hover-bg: #fff;
    --button-hover-text: #223263;
    --grey-color: #60656B;
    --support-bg-color: #F7F9FF;
    --black-color: #000000;
}

body {
    font-family: 'LatoRegular', sans-serif !important;
    background: var(--background-color);
    margin: 0;
    padding: 0;
}
a {
    font-family: 'LatoBold', sans-serif;
    font-weight: bold;
    color: var(--primary-color);
}
a:hover {
    color: var(--primary-color);
}
::-webkit-scrollbar {
        width: 8px;
    }
    /* Track */
    ::-webkit-scrollbar-track {
        background: #f1f1f1; 
    }
        
    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #888; 
    }
    
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555; 
    } * {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background-color:  #e9ecef;
    /*background-image: linear-gradient(120deg, #FF4081, #81D4FA); */
}

/*Background color*/
#grad1 {
    background-color:  #e9ecef;
   /*background-image: linear-gradient(120deg, #FF4081, #81D4FA);*/
    height:100%; 
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    /* box-shadow: 0px 8px 24px -12px rgba(0, 0, 0, .08); */
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    /* box-shadow: 0 1px 30px rgba(0,0,0,0.2); */
    /* box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2); */
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;

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

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

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

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

#msform fieldset .form-card {
    text-align: left;
    /* color: #9E9E9E; */
}

#msform label {
    padding: 0px 8px 4px 8px;
    border: none;
    margin-bottom: 20px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    /* letter-spacing: 1px; */
    font-family: 'LatoRegular', sans-serif;
    font-weight: 400;
    color: var(--text-color);
}
#msform input, #msform textarea, #msform select {
    padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 20px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'LatoRegular', sans-serif;
    /* color: #2C3E50; */
    font-size: 16px;
    /* letter-spacing: 1px; */
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    /* font-weight: bold; */
    border-bottom: 2px solid var(--primary-color);
    outline-width: 0;
}

/*Blue Buttons*/
#msform .action-button {
    width: 100px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    background: var(--primary-color);
    color: var(--background-color);
    font-family: 'LatoBold', sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    border-radius: 4px;
    border: 2px solid transparent;
}

#msform .action-button:hover, #msform .action-button:focus {
    /* box-shadow: 0 0 0 2px white, 0 0 0 3px var(--primary-color); */
    color: var(--button-hover-text);
    border: 2px solid var(--button-hover-text);
    background-color: var(--button-hover-bg);
}

/*Previous Buttons*/
#msform .action-button-previous {
    width: 100px;
    font-family: 'LatoBold', sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    color: var(--button-hover-text);
    border: 2px solid var(--button-hover-text);
    background-color: var(--button-hover-bg);
    border-radius: 4px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    /* box-shadow: 0 0 0 2px white, 0 0 0 3px #616161; */
    background: var(--primary-color);
    color: var(--background-color);
}

/*Dropdown List Exp Date*/
select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
}

select.list-dt:focus {
    border-bottom: 2px solid var(--primary-color);
}

/*The background card*/
.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative;
	box-shadow: 0px 0px 85px #00000040;
}

/*FieldSet headings*/
.fs-title {
    font-size: 18px;
    /* color: #2C3E50; */
    margin-bottom: 10px;
    text-align: left;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    /* color: #000000; */
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 25%;
    float: left;
    position: relative;
}

/*Icons in the ProgressBar*/
#progressbar #client:before {
    font-family: FontAwesome;
    content: "\f023";
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007";
}

#progressbar #service:before {
    font-family: FontAwesome;
    /* content: "\f09d"; */
    content: "\f0c9";
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c";
}
#progressbar #app:before {
    font-family: FontAwesome;
    content: "\f013";
}
/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    /* background: var(--primary-color); */
    background-color: var(--primary-color);
}

/*Imaged Radio Buttons*/
.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display:inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor:pointer;
    margin: 8px 2px; 
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
.fit-image{
    width: 100%;
    object-fit: cover;
}

.color-picker {
    position: relative;
    display: inline-block;
  }
  
  .color-circle {
    width: 20px;
    height: 20px;
    /* border-radius: 50%; */
    border: 1px solid #ccc;
    position: absolute;
    /* right: calc(100% + 10px); Adjust as needed */
    top: 50%;
    transform: translateY(-60%);
    pointer-events: auto; /* Enable pointer events */
  }
  
  /* Update the color circle's color based on the selected color */
  #color-picker {
    background-color: transparent; /* or any other default color */
  }
  
  /* Hide the default color input */
  input[type="color"] {
    display: none;
  }
/* Style the tab */
.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    /* background-color: #f1f1f1; */
    background: var(--support-bg-color);
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 16px;
    border-bottom: 2px solid transparent;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #fff;
    border-bottom: 2px solid var(--primary-color); /* Highlight active tab */ 
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 20px 0px;
    border-top: 1px solid #ccc;
    /* border-top: none; */
  }
  #theme-settings {
    display: block;
  }
.service-details .service-title {
    font-weight: 600;
    color: #131415;
}
p.description {
    color: #212529;
    font-size: 16px;
    /* font-family: 'Karla', sans-serif; */
}
.required {color: red;font-weight: bold;}
#msform input.test_connection_button {
    width: 200px;
    background: var(--primary-color);
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}
#msform input.test_service_connection_button {
    width: 200px;
    background: var(--primary-color);
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}
/* new */
.top-header {
    background: var(--background-color);
    padding: 12px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 9px 0px rgba(183, 183, 183, 0.1);
    font-family: 'LatoBold', sans-serif;
    font-weight: bold;
}

.top-header .logo a {
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.top-header .logo img {
    margin-right: 10px;
}

.top-header .main-btn {
    background: var(--primary-color);
    color: var(--background-color);
    padding: 6px 16px 8px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'LatoBold', sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    border-radius: 4px;
    border: 2px solid transparent;
}

.top-header .main-btn:hover {
    text-decoration: none;
    color: var(--button-hover-text);
    border: 2px solid var(--button-hover-text);
    background-color: var(--button-hover-bg);
}

/* Dashboard Banner Section */
.dashboard-banner {
    margin-top: 24px;
    background: url('../images/banner-image.jpg') no-repeat center center;
    background-color: var(--highlight-color);
    background-size: cover;
    color: var(--background-color);
    padding: 98px 0 84px;
    text-align: center;
    font-family: 'LatoLight', sans-serif;
    border-radius: 8px;
}

.dashboard-banner h1 {
    font-weight: bold;
    font-family: 'LatoBold', sans-serif;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    margin-bottom: 25px;
}

.dashboard-banner p {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0px;
}

.dashboard-banner p.powered-by {
    font-size: 20px;
    line-height: 26px;
}

.dashboard-banner p.powered-by .org-name {
    color: var(--secondary-color);
    font-weight: bold;
    font-family: 'LatoItalic', sans-serif;
}

/* Statistics Section */
.stat-box {
    display: flex;
    border: 1px solid var(--border-color);
    background-color: var(--background-color);
    padding: 16px;
    border-radius: 5px;
    margin-top: 24px;
}

.stat-box .stat-box-content {
    margin-left: 10px;
}

.stat-box .stats-icon-img {
    width: 24px;
    height: 24px;
}

.stat-box p {
    font-family: 'LatoBold', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--text-color);
    margin-bottom: 6px;
}

.stat-box h2 {
    text-align: left;
    font-family: 'LatoBold', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0px;
    color: var(--text-color);
    margin: 0;
}

.support-box {
    background-color: var(--background-color);
    text-align: center;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid var(--background-color);
    font-family: 'LatoRegular', sans-serif;
}

/* Support Section */
.support-section {
    margin-top: 24px;
    padding: 16px;
    background: var(--support-bg-color);
    border-radius: 8px;
    margin-bottom: 160px;
    text-align: left;
}

.support-section h5 {
    font-family: 'LatoBold', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: var(--black-color);
    margin-bottom: 8px;
}

.support-section p {
    font-family: 'LatoRegular', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    color: var(--grey-color);
    margin-bottom: 16px;
}

.support-section .support-box {
    height: 100%;
}

.support-section .support-box p {
    font-family: 'LatoBold', sans-serif;
    font-weight: 700;
    color: #1D242B;
    line-height: 20px;
    margin-bottom: 0;
}

.support-section .support-box span {
    font-family: 'LatoRegular', sans-serif;
    font-weight: 400;
    color: var(--grey-color);
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    margin-bottom: 16px;
    display: block;
    min-height: 36px;
}

.support-section .support-box a {
    font-family: 'LatoBold', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
}

.icon-img {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}
.appConfig h1 {
    font-family: 'LatoBold', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    margin-bottom: 18px;
    color: var(--primary-color);
}
.appConfig p {
    font-family: 'LatoRegular', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.appConfig .row p {
    font-size: 16px;
    line-height: 24px; 
}
#progressbar li {
    font-family: 'LatoBold', sans-serif;
    font-weight: 700;
    color: #1D242B;
    line-height: 20px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
}
.back-btn:hover {
    text-decoration: none;
}
.dashboard-sec {
    display: none;
}
