html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/*Scrollable Divs for product filtering*/
.product-filter-div {
 
 max-height:200px; overflow-y: scroll; overflow-x: hidden; padding: 5%;padding-left:0px;
 
}

button.navbar-toggler {
    position: absolute;
    top: -115px;
    right: 50px;
}

.flex-image {
    display: flex;
    gap: 40px;
    align-items: center;
}

.flex-image img {
    width: 255px;
    height: auto;
}

@media (max-width:765px){
.flex-image {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: column;
}
.image-icon {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 50%;
    padding: 10px !important;
}
.device .card-body.text-center.pb-5.min-h-300 {
    min-height: auto;
}
.device p.card-text {
    min-height: auto;
}
.icons .card-body.text-center.pb-5.min-h-300 {
    min-height: auto;
}
.cs.card.height {
    min-height: auto;
}

span.flex-gap {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.product-info .row {
    justify-content: center;
}

}

.image-icon{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* Style for the throbber overlay */
.throbber {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8); /* Light overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Make sure it's above all other content */
}

/* Spinner styles */
.spinner {
    border: 4px solid #f3f3f3; /* Light background */
    border-top: 4px solid #3498db; /* Blue spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*Landing Page*/

.landing {
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-bg{
    background-image: url(/alliot/images/Alliot-BG-Image.jpg);
    background-size: cover;
    background-position: 0px 70%;
}

.landing-form {
    padding: 3% 2%;
    text-align: center;
}

form#subscribeform, form#passwordform {
    height: 56px !important;
    width: 42%;
    margin: 15px auto;
}

.landing-form button {
    position: relative;
    top: -67px;
    left: 235px;
    width: auto !important;
    min-width: 120px;
}

.landing-form input.form-control {
    height: 55px;
    background-color: #F7F7F7;
    border: 0px;
}

form#subscribeform input {
    background-color: #ffffff;
}

@media (max-width:765px){
    .landing-form button {
        position: initial;
        width: 100% !important;
    }
    
    form#subscribeform, form#passwordform {
        height: auto !important;
        width: 100%;
        margin: 15px auto;
    }
}


/*Tiny Slider*/
.slider-container {
    padding: 0;
    background: transparent;
    margin: 2rem auto 0 auto;
    overflow: hidden;
    border-radius: 5px;
    position:relative;
}

img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}

.related-slider .related-slider2 {
    display: flex;
    position: relative;
}

.slider-item {
    background: transparent;
    border-right: 0px solid #333;
    /*padding: 1.5rem .75rem;*/
    padding-top: 0px;
    position: relative;

    &:hover {
        cursor: pointer;
    }
}

.controls {
    margin: 0;
    padding: 15% 0px;
    list-style: none;
    position: absolute;
    left: 0;
    background: transparent;
    width: 100%;
    top: 55%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    padding: 0px;
    &:focus {
        outline: none;
    }

    .fa-5x {
        font-size: 1.5em;
    }

    li:hover {
        cursor: pointer;
    }
}

button.tns-nav-active, .tns-nav button {
    background-color: transparent !important;
}

.card {
    text-align: left;
    margin: 0 auto;
    max-width: 100%;
    color: #333;
    background: white;
    border-radius: 5px;
    padding:0px;
    font-family: sans-serif;
    overflow: hidden;
    box-shadow: 2px 2px rgba(black, .3);
    position: relative;
    border:0px;
    img {
        margin-bottom: .25rem;
    }

    h2 {
        margin: 0 0 .25rem;
    }
    p {
        margin: 0;
        margin-bottom:20px;
        padding: 0;
    }
}

.card.height {
    min-height: 565px;
}

/*.card-body .min-h-40 {*/
/*    min-height: 70px;*/
/*}*/

.tns-nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 210px;
    z-index: 1;
}

.tns-outer {
    margin: 30px;
}

.cp-hide-desktop {
    display: none;
}

@media (max-width:765px){
    .slider-item{
        padding:0px;
    }
    #tns1-iw {
        margin: 0px;
    }
    .slider-container h2 {
        padding-left: 20px;
    }
}


/*Quantity price*/
span.price{
    text-decoration: line-through;
}

span.price:after {
    content: '*';
    text-decoration: none;
    display: inline-block;
    padding-left: 5px;
}


/*Hero sections styling*/

.cp-home-hero-bg {
    background-image: url('images/home-hero.png');
}

.cp-work-with-hero-bg {
    background-image: url('images/who-we-work-with-hero.png');
}

.cp-team-hero-bg {
     background-image: url(images/about-hero.jpg);
     
}

.cp-provision-hero-bg {
    background-image: url('images/iot-provisioning-hero.png');
}

.cp-contact-hero-bg {
    background-image: url('images/contact-hero-new.png');
}

.cp-blog-hero-bg {
    background-image: url('images/blog-hero.png');
}

.cp-faq-hero-bg {
    background-image: url('images/faq-hero-new.jpg');
}

.cp-case-studies-hero-bg {
    background-image: url('images/case-studies-hero.png');
}

.cp-single-hero-bg {
    background-image: url('images/single-hero.png');
}


.cp-hero-section {
    min-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  opacity: .8;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


.vert-center-container {
    position: relative;
    margin-bottom: -6px;
    overflow: hidden;
}
.vert-center-text {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.cp-responsive-vid {
    min-height: 80vh;
    max-height: 80vh;
    min-width: 100vw;
    object-fit: cover;
    max-width: 100vw;
}

video[poster] {
    object-fit: cover;
}

/*.cp-blue-bg, .cp-white-bg {*/
/*    min-width: 230px;*/
/*}*/

.cc-desktop-carousel {
    display: block;
}

.cc-excerpt {
    padding-bottom: 0px !important;
}

/*.cc-excerpt p {
    line-height: inherit;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 12rem;
    padding: 5px;
    margin-bottom: 0px;
    color: #333;
}*/


@media (max-width:765px){
    .cc-excerpt p {
        -webkit-line-clamp: 3;
        padding: 0px;
    }
    .cc-excerpt {
        padding: 0px !important;
    }

    .cc-desktop-carousel {
        display: none;
    }
}

/*header styling*/

.shipping-heading div {
    font-size: initial;
}

#cp-input-search:focus {
 box-shadow: none!important;
 border: 4px solid #0098DA!important;
}

a.nav-link {
 color: black!important;
 -webkit-font-smoothing: antialiased;
}

.cp-header-logo {
 max-width:150px;
}

/*.offcanvas-backdrop.fade.show:nth-of-type(2) {
    z-index: -100;
    opacity: 0;
}*/

.edit-btn-off {
 background: red!important;
}

.edit-btn-on {
 background: green!important;
}

.dropdown-menu li:hover {
 transform: translate(10px, 0%);
 transition: 0.5s;
}

.dropdown-item:hover {
 background: white;
 color: #0098DA;
}

a.nav-link.active {
    color: #0098DA!important;
}

a.nav-link:hover {
    color: #0098DA!important;
}

* {
  font-synthesis: none !important;
}

button.navbar-toggler {
 padding: 0px!important;
}

.cp-mob-nav {
  font-size: 24px;
}


/*Checkout Styling 
*/

textarea#ordernotes {
    height: 157px;
}

table#baskettable td {
    text-align: center;
}

input.form-check-input {
    margin-top: 15px;
}

td textarea {
    display: flex;
    margin: 0 auto;
    margin-bottom: 10px;
}

td button {
 margin-bottom: 15px;
 background-color: #0098DA;
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: myriad_pro !important;
    border: none;
    border-radius: 6px;
}

/*slide out basket styling 
*/

#baskettablesmall thead {
    background-color: #0098da;
    color: #fff;
    line-height: 0px;
    height: 40px;
}

#baskettablesmall th {
    border: 0px;
}

.cp-basket-btn {
     padding: 0px !important;
    background: none !important;
    border-radius: 30px;
}

.side-basket-scroll {
 /*height: 485px;*/
    overflow-y: scroll;
}

.side-basket-scroll .table-responsive {
    margin-top: 0px;
}

#baskettablesmall td p {
    text-align: left;
}

.cp-basket-btn:hover {
 background: none!important;
}

div#baskettablesmall_info.dt-info {
    display: none!important;
}

table#baskettablesmall p {
    font-size: 12px !important;
}

table#baskettablesmall > tbody > tr > th, table.dataTable > tbody > tr > td {
    padding: 0px 20px;
}

.dt-length label {
    display: none;
}

.cp-basket-scroll {
 max-height: 350px;
 overflow-y: scroll;
}

.offcanvas-body {
 overflow-y: scroll;
}

/*.offcanvas-backdrop:nth-child(2n-1) {
    opacity: 0;
}*/


.dt-length select {
    display: none;
}

/*-------
*/

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
 }
 
.header-icons {
 max-width: 50px;
}

.header-grey-border {
     border-top: 4px solid;
    border-image: linear-gradient(to right, #ffffff 100%, #F4F4F4 100%) 1 0 0 0;
}
 
 .cp-blue-bar-txt {
  font-size:16px;
 }

.cp-result-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 0px;
}

.result a:nth-child(2n) .cp-result-row {
    background: #F4F4F4EA;
}

.cp-result-row {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.cp-result-row img {
 border-radius: 5px;
}

.cp-result-row:hover {
  background: #b6d8e7!important;
}

.accordion-button:not(.collapsed) {
 background: #0098DA!important;
 box-shadow: none!important;
}

.disabled {
   opacity: 0.3!important;
  cursor: not-allowed!important;
}

.d-none {
        display: none;
      }

a.nav-link::after {
    color: #029be0;
    vertical-align: middle;
}

/*Nav Styles*/
@media (max-width:765px){
    li.nav-item {
        text-align: left;
        border-bottom: 1px solid #52a7e0;
    }
}

label.error {
    color: red;
}

/*Footer styling */

ul.certifications ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
ul.certifications ul li {
    height: 50px;
}
ul.certifications ul li img {
    height: 55px;
    width: 100%;
}
ul.certifications {
    padding: 0px;
}

.cp-footer {
        padding: 30px 15px;
}

.cp-footer i {
    color: #0098da;
}

/*Who we work with styling */

.cp-set-img-size {
 max-width: 150px;
 max-height: 80px;
}

/*our bootstrap styling/ re-usable*/

.min-h-60 {
    min-height: 40px;
}

button:hover {
 background-color: #f28f6a!important;
 color: white!important;
 transition: 0.4s;
}

button.btn {
    border-radius: 5px;
}

a.btn {
    min-width: 250px;
}

.lg-btn a.btn {
    min-width: 305px;
}

a.cp-blue-bg:hover {
 background-color: #f28f6a!important;
 color: white!important;
 transition: 0.4s;
}

button i {
    font-size: 17px;
    margin-left: 18px;
    margin-bottom: 5px;
}

.search-box::placeholder {
  color: #C1C1C1;
      font-family: myriad_pro!important;
      font-size: 23px;
}

input.form-control.search-box.py-md-2.py-0 {
    font-size: 24px;
}

/* Basic styling for the select */
select.form-control {

}

/* Adding the custom dropdown arrow */
select.form-control::after {
    content: '▼'; /* Unicode character for down arrow */
    font-size: 16px;
    color: #333;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* So that clicking on the arrow doesn't interfere with the select */
}


.min-h-40 {
 min-height: 40px;
}

.min-h-80 {
  min-height:80px;
}

.min-h-200 {
 min-height: 140px;
}

 .min-h-300 {
  min-height: 300px;
 }
 
  .min-h-350 {
  min-height: 350px;
 }
 
 .min-h-400 {
  min-height: 400px;
 }

.mw-60 {
  max-width: 60%;
}

.min-h-250 {
  min-height: 250px;
}

.cp-hover-grow :hover {
       transform: scale(1.05);
       transition: 0.3s;
       cursor: pointer;
}

.max-width-35 {
    max-width: 35px;
    object-fit: contain;
    margin-right: 20px;
}

.max-width-70 {
    max-width: 60px;
    object-fit: contain;
    margin-right: 10px;
}

.height-50 {
    height: 50px;
}

.dropshadow-hover:hover {
      box-shadow: 0px 2px 5px 2px grey;
      transition: 0.5s;
}

.font-regular {
    font-family: myriad_pro;
}

.font-bold {
        font-family: myriad_pro_bold;
}


body {
    font-size: 20px;
    font-family: myriad_pro;
}

.xs-font {
    font-size: 14px;
    line-height: 18px;
}

.sm-font {
  font-size: 15px;
}

.md-font {
  font-size: 20px;
}

H2, H1 {
    font-size: 40px;
    font-weight: 700;
    font-family: myriad_pro_bold;
}

h2 {
 margin-bottom: 1.5rem;
}

H3 {
  font-size: 30px;
  font-family: myriad_pro_bold;
}

img.object-fit-cover.mw-100.rounded {
 min-height: 600px;
 object-fit: cover;
}


/*Colours styling*/


.cp-white {
    color: white;
}

.cp-white-bg {
  background-color:white!important;
}

.cp-black {
    color: black;
}

.cp-light-grey {
    color: #C1C1C1;
}

.cp-light-grey-bg {
  background-color: #F4F4F4EA;
}

.cp-blue-bg {
    background-color: #0098DA;
}

a.cp-blue-bg {
    color: white!important;
}

.cp-blue-bg {
 font-weight: 700;
    font-size: 16px!important;
        font-family: myriad_pro!important;
        border: none;
        padding: 12px;
}

.cp-blue {
    color: #0098DA;
}

.cp-border {
 border: 1px solid #d1d1d1;
}


/*Login page styling */
.form-group a img {
    height: 100%;
}

.cp-login-btn {
 min-width: 100%!important;
}

.cp-errortext {
 color: red;
 font-weight: bolder;
}

.cp-successtext {
 color: green;
 font-weight: bolder;
}

.cp-linkedin-btn {
     height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

span.d-flex.w-100.justify-content-between input {
    margin-top: 3px !important;
}

/*Homepage styling */

.cp-product-title {
    font-weight: 700;
    font-size: 16px;
    border: 1px solid white;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    border-left: 1px solid white;
    border-right: 1px solid white;
    font-family: myriad_pro_bold;
}

.cp-product-title-text{
 /*This makes the line height 3 lines long - the webkit line clamp above adds the ... if title is longer*/
    height: 60px !important
}

.cp-home-content-bg-1 {
   background-image: url("images/home-bg-img-1-web.png");
   background-size: cover;
   background-repeat: no-repeat;
}

.cp-home-content-bg-2 {
   background-image: url("images/home-bg-img-2.png");
   background-size: cover;
   background-repeat: no-repeat;
   background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
}

.cp-flipped {
 transform: rotate(180deg);
}

.result {
    position: absolute;
    display: none;
    background: white;
    top: 60px;
    z-index: 99;
    box-shadow: 5px 10px 5px grey;
    border: 1px solid grey;
    border-top: 0px;
    max-height: 400px;
    overflow: scroll;
    overflow-x: hidden;
}

.cp-sku {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
        font-size: 14px;
    color: #666;
}

.cp-responsive-vid {
    min-height: 80vh;
    max-height: 80vh;
    min-width: 103vw;
    object-fit: cover;
    max-width: 103vw;
}

.cp-product-img {
    max-height: 200px;
    min-height: 200px;
    /*padding: 20%;*/
    object-fit: contain;
}

span.flex-gap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

button, btn {
  padding: 12px 30px!important;
  border:none!important;
  text-transform: capitalize;
}

td form button {
 background: #0098DA;
 color: white;
 border-radius: 10px;
}


btn i {
  margin-right: 10px;
}

.cp-partner-btn {
 font-size: 14px;
 font-family: myriad_pro;
}

.cp-product-btn {
    font-weight: 700;
    font-size: 20px;
        font-family: myriad_pro!important;
        border: none;
        color: white;
}

.col-12.product {
    padding: 10%;
    display: flex;
    align-items: center;
}

.icon-stack{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bullet-links a{
    text-decoration: none;
    color: #202629;
}


.row.logo-tiles {
    justify-content: center;
}

button.btn.btn-success,button.btn.btn-danger {
 font-weight: 700;
    font-size: 20px;
        font-family: myriad_pro!important;
        border: none;
        color: white;
        background: #0098DA;    
}

button.btn.btn-success:hover {
        color: #0098DA !important;
        background: #F4F4F4!important;
}

button.btn.btn-danger:hover {
        color: #0098DA !important;
        background: #F4F4F4!important;
}

.cp-white-bg {
 color: #0098DA!important;
}

/*header.cp-white-bg:hover {*/
/* color: white!important;*/
/* background: white !important*/
/*}*/

span a.cp-white-bg:hover {
 color: white!important;
 background: #0098DA!important;
}

/*.cp-product-tile{*/
/*    border:1px solid grey;*/
/*}*/

/*.cp-product-tile:hover {*/
/*    box-shadow: 0px 2px 5px 1px grey;*/
/*}*/


/*.cp-mob-scroll {*/
/*    display: flex;*/
/*}*/

nav {
    order: 1;
}

.page-link {
    color: #0098da;
}


#zsiq_float .zsiq_flt_rel{ background-color:#0498da !important;}
#zsiq_float .zsiq_seasonal .st2 { fill: #0498da !important;}


/*About page styling
*/
.cp-about-para {
  background-image: url("images/about-para.jpg");
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cp-team-name {
     /*height: 40px;*/
    padding-bottom: 15px;
    overflow: hidden;
}

.cp-team-photo {
     height: 400px;
    object-fit: cover;
}

/*faq Page styling
*/

.accordion-body {
 font-size: 16px;
}

.accordion-button {
 font-size: 24px;
}

.accordion-button:not(.collapsed) {
 color: white!important;
}

/*Teams page styling a
*/
.team-card-body {
    height: 375px;
    padding-top: 15px !important;
    padding: 30px 20px;
    overflow: hidden;
}

.cp-team-description {
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 8;*/
  /*-webkit-box-orient: vertical;  */
  overflow: scroll;
  height: 185px;
}

.cp-card-anchor {
 position: absolute;
 bottom: 10px;
}

.team-card-body p{
 font-size: 15px;
    margin-bottom: 15px;
}


/*single styling
*/

ul.bullet-links {
    padding-left: 20px;
}

.icon-stack h3 {
    text-align: center;
}

.header-blue-bg {
    width: 200px;
    background: #0098DA;
    padding-left: 15px;
    color: white;
        margin-left: -15px;
}

.list-spacing li {
    margin: 10px 0!important;
  }

/*our partners page styling
*/
.img-container {
    background: white;
    border-radius: 20px;
    height: 175px;
    align-items: center;
    display: flex;
    object-fit: contain;
    justify-content: center;
}

.img-container img {
  max-width: 150px;
}

.services-img-container img {
    width: 80px;
}

.card-img img {
    width: 130px;
}

.partner-card {
    background-color: #F4F4F4EA;
    border: 2px solid #F4F4F4EA;
    min-height: 450px;
}

.card-btn {
 position: absolute;
    bottom: 10px;
    width: 95%!important;
}

.cp-img-top {
 max-width: 200px;
}

.provisioning-icon {
    width: 85px;
    margin: 0 auto;
}

.card-body {
    color: #333;
}

.top-rounded-card {
      border-radius: 20px 20px 10px 10px;
}




/*Shop page styling
*/
.shop-titles {
 font-size:25px!important;
 font-family: myriad_pro!important;
 margin-bottom: 0px;
}

.cp-filter-btn {
     background: white;
    border: 1px solid #C1C1C1 !important;
    color: black;
}

.product-filter-div label {
    margin: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-indent: 35px;
    white-space: nowrap;
    font-size: 15px;
}

.bg-wrapper.rounded.cp-light-grey-bg.p-3 input {
    border-radius: 6px;

}

h3.mt-5.p-0:first-child {
    margin-top: 0px !important;
}

input#toSlider {
 z-index: 10!important;
}

input#fromInput {
 border: 1px solid #aaa;
  padding-left: 10px;
}

input#toInput {
 border: 1px solid #aaa;
 padding-left: 10px;
}

input#fromSlider {
 z-index: 11!important;
 background: white;
}

span.select2.select2-container.select2-container--default {
    font-family: sans-serif;
    font-size: 20px;
    letter-spacing: -0.5px;
}
.select2-container--default .select2-results__option--selectable {
    font-size: initial;
        padding: 10px;
    border-radius: 0.375rem;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #0098da;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: grey;
    line-height: 28px;
    font-size: initial;
}
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #dee2e6 !important;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    padding: 10px;
    border-radius: 0.375rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

.cp-tile-hover:hover {
  box-shadow: 0px 10px 10px #88888847;
}

.select2-container--default .select2-results__option--selected {
 background-color: white!important;
}

input[type="number"] {
 color: black!important;
}


/*iot provisioning page styling
*/

.cp-blue-light-grey-half-bg {
  background: #0098DA;
background: -moz-linear-gradient(left, #0098DA 50%, #F4F4F4EA 50%);
background: -webkit-linear-gradient(left, #0098DA 50%, #F4F4F4EA 50%);
background: linear-gradient(to right, #0098DA 50%, #F4F4F4EA 50%);
}

/*consulting page styling
*/

.cp-img-top-consulting {
 width: 85px;
}

/*case studies page 
*/
.case-study-min-250 {
    min-height: 270px;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
}

.case-study-min-250 p {
   font-size: 15px;
}

p.card-text {
    min-height: 200px;
}

.partner-card .card-body a {
    margin: 0 auto !important;
    width: 94% !important;
    min-width: fit-content;
}

/*our partners*/
.op-para {
    line-height: inherit;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    height: 17.8rem;
    padding: 10px 20px !important;
    margin-bottom: 70px !important;
    overflow: scroll;
}

/*case studies*/
.cs-para {
    line-height: inherit;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 3.6rem;
}

/*our team*/
.ot-para {
    line-height: inherit;
    overflow: hidden;
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 8;*/
    /*-webkit-box-orient: vertical;*/
    height: 12rem;
    padding: 10px 0px !important;
    margin-bottom: 5px !important;
    overflow: scroll;
}

.card-body.case-study-min-100 {
    padding: 0px;
}

@media (max-width:765px){
.op-para {
    height: auto;
}
.partner-card {
    min-height: 100%;
}    
.logo-tiles .min-h-250 {
    min-height: 135px;
}
.specs-table tbody tr td {
    font-size: 14px;
}
}

.card-body a {
    min-width: 100%;
}

.cp-case-title {
 display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height:72px;
}


a.read-more {
    color: #0098da;
    text-decoration: none;
    font-size: initial;
    line-height: 4;
}
a.read-more:hover {
    text-decoration: underline;
}


/*blog page styling
*/

.blog-post-thumbnail {
  height: 200px;
}

.card-body.p-2.blog-post-min-350 p {
  font-size: 15px;
}

.blog-post-min-350 {
  min-height: 330px;
    display: flex;
    flex-direction: column;
}

.blog-post-min-350 a {
 position: absolute;
    bottom: 10px;
    max-width: 95%;
}

.cp-blog-description {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 120px;
}

/*Product Details Page Styling
*/
div#nav-tabContent {
    height: 600px;
    overflow-y: scroll;
}

.cta-email-box {
 max-width: 600px;
}

.cta-email-box img {
    max-width: 100%;
}

.product-slider-img {
 width:500px!important;
}

#home-tab, #profile-tab {
 color: #0098DA;
}

div#home-tab-pane ul li a, .price-info-box a {
 text-decoration: none !important;
    color: #0098DA!important;
}

.specs-table tbody tr td:first-child {
    width: 30%;
}

.specs-table {
 width: 100%;
}

button.accordion:after {
    font-family: FontAwesome;
    content: "\f107";
    float: right;
    color: #0098DA;
}

button.accordion.active:after {
    font-family: FontAwesome;
    content: "\f106";
    float: right;
    color: #fff;
}

div#description-anchor a{
 text-decoration: none!important;
 color: #0098DA!important;
}

.specs-table tbody tr td {
 padding: 15px;
}

.specs-table tbody tr:nth-child(2n) {
   background: #F4F4F4EA;
}

.product-details-title {
    font-size: 35px!important;
    display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;  
   overflow: hidden;
}

button.active {
 background: #0098DA!important;
 font-weight: bolder;
 color: white!important;
}

button.carousel-control-prev , button.carousel-control-next {
 background: none!important;
}

.cp-thumbnail {
 height: 50px!important;
 object-fit: contain;
}

.cp-thumbnail-btn {
 width: 70px!important;
    height: 60px!important;
    padding: 0px!important;
}

input#myRange {
    overflow: hidden;
    width: 80px;
    -webkit-appearance: none;
    background-color: white;
    border: 1px solid #d1d1d1;
}

input[type="range"]::-moz-range-track {  
  background-color: #9a905d!important;
}

span.plus {
 margin-left: -30px;
 cursor: pointer;
 -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

span.minus {
 margin-right: -30px;
 position: relative;
 cursor: pointer;
 -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

span.minus1, span.plus1{
    font-size: 30px;
    cursor: pointer;
    color: #0498da;
    margin: 0px 7px;
    position: relative;
    top: 3px;
}

input.count {
 width: 110px;
 padding: 5px!important;
 text-align: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.carousel-indicators button {
    background: none !important;
}


/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


/*Product Table Styles*/
#description-anchor ul {
    line-height: 2;
    padding: 15px !important;
}

#description-anchor tbody tr {
    height: auto;
    line-height: 2;
    font-size: 20px;
}

#description-anchor .specs-table {
    margin-bottom: 20px;
}

#description-anchor table {
    margin-bottom: 20px;
}

#description-anchor .cta-email-box {
    display: flex !important;
    margin-top: 20px;
}

#description-anchor h3 {
    margin-top: 30px;
}

table#bulkpricingtable td {
    width: 50%;
}

/*Product no longer box styling*/

.alert.alert-primary {
    background-color: #0498da;
    color: #ffffff;
    text-align: center;
    border-radius: 0px;
    margin: 20px 0px;
}

.alert.alert-primary a {
    color: #c1c1c1;
}

/*.alert.alert-primary p {*/
/*    display: inline;*/
/*    padding: 10px;*/
/*}*/

/*Admin Header Page styling 
*/

div.dt-container .dt-paging .dt-paging-button:hover {
 background: none!important;
 border: none;
}

.video-pencil {
  margin-left: 5px!important;
  margin-top: 5px!important;
}

.tox-toolbar__group button {
    width: 30px !important;
    padding: 0px!important;
}

.bi-list {
    margin-left: 0px !important;
}

div#userstable_wrapper {
 overflow: visible;
}

#event-tickets .cp-product-btn {
    width: 250px;
}

td img {
    border-radius: 10px;
}

.btn-pencil {
    margin-left: -30px!important;
    margin-top: -10px!important;
}

div#ui-datepicker-div {
    background: white;
    z-index: 999999999 !important;
    padding: 10px;
    border: 1px solid black;
}

.table-responsive {
 overflow: visible;
 margin-top: 50px;
}

table.ui-datepicker-calendar td a {
    text-decoration: none;
    color: black;
    padding: 10px;
}

.cp-admin-imgs {
    height: 55px;
    width: 130px;
    object-fit: contain;
    background: white;
}

.ui-datepicker-header a {
    color: black;
    text-decoration: none;
    font-family: myriad_pro_bold;
    cursor: pointer;
}

.bi-pencil::before {
    content: "\f4cb";
    position: absolute;
    right: 25%;
    top: 25%;
}

i.bi.bi-pencil {
    font-size: 25px;
    background: #F50A69;
    color: #F8FF03 !important;
    text-align: center;
    border-radius: 30px;
    position: absolute;
    height: 50px;
    width: 50px;
    z-index: 1!important;
    padding-top: 7px;
    margin-top: -20px;
    margin-left: -50px;
}


.dataTable td a {
    text-decoration: none !important;
    color: #0098DA;
}

table col:nth-child(2n) {
    background: rgba(0, 0, 0, 0.054);
}

.tox .tox-tbtn--select {
    margin: 6px 1px 5px 0;
    padding: 0 4px !important;
    width: auto !important;
}

.tox-toolbar__group {
 padding: 0px!important;
}

button.btn-close i {
    display: none;
}

button.btn-close:hover {
    background-color: transparent !important;
}

/*What is this for??*/
/*.modal-dialog button.btn-close:before {*/
/*    content: 'Agree';*/
/*    position: relative;*/
/*    top: -5px;*/
/*    left: -40px;*/
/*    font-size: 12px;*/
/*}*/

td.dtr-control {
    padding: 10px !important;
}

tbody {
 font-size: 17px;
}

.btn-primary {
   background-color: #0098DA;
   color: white;
   font-weight: 700;
    font-size: 16px;
        font-family: myriad_pro!important;
        border: none;
    padding: 12px;
    /*min-width: 230px;*/
}

div.dt-container .dt-paging .dt-paging-button {
 border: 0px;
}

li.dt-paging-button.page-item {
 padding: 0px!important;
}

.dt-search {
 display: none;
}

.active>.page-link, .page-link.active {
  background: white;
 color: #0098DA;
 border: 1px solid #0098DA!important;
}

button.page-link {
 background: #0098DA;
 color: white;
 padding: 15px !important;
}

.buttons-html5 {
 background: #0098DA;
 font-weight: 700;
    font-size: 20px;
        font-family: myriad_pro!important;
        border: none;
}

.dt-buttons {
    position: absolute !important;
    top: -50px !important;
    right: 50px !important;
    margin-top: -50px !important;
}

td.dtr-control img {
    max-width: 150px;
}


.salesorders{
    padding: 0px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.order-items{
    width: 260px;
}

.row.sales {
    padding: 0px;
}

/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  height: 100%;
  width: 20%;
}

input.form-control,select.form-control {
    color: grey;
    padding: 10px;
    border-radius: 0.375rem;
}



/*.dataTable {
    text-align: center;
}

.dataTable p {
    margin:0px;
}*/

/* CTA Image Link Styles for Worpress Shortcodes */

 

.cta-email-box {position: relative; display: inline-block;}

 

.cta-email-box .cta-text {font-size:110%; position: absolute; margin: 0 auto; color:white; text-align: center;}

 

.cta-email-box .cta-right {left: 50%; right: 0; top: 20%; width: 50%;}

.cta-email-box .cta-left {left:0; right: 50%; top: 15%; width: 40%;}

.cta-email-box .cta-middle {left:0; right: 10%; top: 20%; width: 35%;}

.cta-email-box .cta-bottom-left {left:0; right: 50%; top: 50%; width:35%;}

 

.cta-email-box .cta-link {display:inline-block; background-color:white; padding:5px; margin-top:1.5em}

.cta-email-box .cta-link-right {position:absolute; bottom:18%; right:8%}

tbody tr {
  height: 150px;
 }
 
.ui-datepicker-calendar tbody tr {
    height: auto;
}
 
 .xs-button {
  padding: 5px !important;
 }

.cta-link {
 background-color: white;
    padding: 5px;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 rgba(0, 0, 0, 1);
    text-decoration: none;
    color: black;
}


/* Style the buttons inside the tab */
.tab button {
  /*display: block;*/
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}


/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/*Toggle admin tab content class
*/

.cont {
  margin: 0;
  width: 20%;
  transition: all .7s;
  &.hidden {
    width: 0;
    transition: all .7s;
    overflow: hidden;
  }
}

.cp-full-tab {
 width: 98%!important;
 transition: .7s;
}


/* Style the tab content */
.tabcontent {
  float: left;
  padding: 20px!important;
  border: 1px solid #ccc;
  width: 80%;
  border-left: none;
  background-color: #F4F4F4;
  /*height: 300px;*/
  margin-bottom: 40px;
}

div#event-tickets {
    min-height: 1150px;
}

/*media querys styling */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
      body {
      font-size: 14px;
  }
    H2, H1 {
        font-size: 35px;
    }
        H3 {
      font-size: 20px;
    }
    .cp-footer-bg {
        height: 45px;
    object-fit: cover;
    }
    
    .sm-font {
    font-size: 12px;
  }
  .cp-hero-section {
    min-height: 400px;
  }
  .cp-mt-sm-5 {
  margin-top: 35px;
}

.cp-blue-light-grey-half-bg {
  background: #0098DA;
background: -moz-linear-gradient(top, #0098DA 50%, #F4F4F4EA 50%);
background: -webkit-linear-gradient(top, #0098DA 50%, #F4F4F4EA 50%);
background: linear-gradient(to bottom, #0098DA 50%, #F4F4F4EA 50%);
}
  
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
      body {
      font-size: 16px;
  }
    H2, H1 {
        font-size: 40px;
    }
        H3 {
      font-size: 25px;
    }
}

@media only screen and (min-width: 768px) {
 .cp-hide-desk {
  display: none;
 }
 .dropdown-menu {
 padding: 0 20px;
    box-shadow: 0 0 3.76px .24px rgba(0, 0, 0, .15);
}

.dropdown-menu li {
    padding: 10px 0;
    line-height: 26px;
    overflow: hidden;
    border-bottom: 1px solid #0098DA;
    position: relative;
    display: block;
}
.dropdown-menu li:last-child {
    border-bottom: 0px solid #0098DA;
}

/*Remove hover effect of nav items*/
.nav-item .dropdown-menu li:hover {
    transform: translate(0px, 0%);
    transition: 0.5s;
}

.dropdown-item {
     color: #000;
}
 
}


/*input{*/
/*    width: 210px;*/
/*    box-sizing: border-box;*/
/*    border: 2px solid #ccc;*/
/*    border-radius: 4px;*/
/*    font-size: 16px;*/
/*    background-color: white;*/
/*    background-image: url(https://i.imgur.com/MACjo6S.png);*/
/*    background-position: 10px 10px;*/
/*    background-repeat: no-repeat;*/
/*    padding: 12px 20px 12px 40px;*/
/*    -webkit-transition: width 0.4s ease-in-out;*/
/*    transition: width 0.4s ease-in-out;*/
/*}*/

/*input:focus {*/
/*    width: 100%;*/
/*}*/


@media only screen and (max-width: 767px) {

.cp-blue-light-grey-half-bg {
        background: linear-gradient(to bottom, #0098DA 32%, #F4F4F4EA 32%);
        }
        
          .cp-mt-sm-5 {
  margin-top: 35px;
}

  .min-h-400 {
  min-height: auto!important;
 }
 
 .case-study-min-250 {
   min-height: auto!important;
 }
 
 .header-icons {
 max-width: 40px;
}
 
 .mt-sm-100 {
  margin-top:100px;
}

 .cp-basket {
  font-size: 35px;
 }
 
  .cp-blue-bar-txt {
  font-size:11px!important;
 }
 
 img.object-fit-cover.mw-100.rounded {
 min-height: 600px;
 }
 
 .cp-responsive-vid {

    min-width: 103vw;
    max-width: 103vw;
}

.cp-hide-mob {
 display: none;
}

.cp-hide-desktop {
    display: block;
}

/*.cp-header-logo {*/
/* max-width:110px;*/
/*}*/

.cp-slider-right {
    position: relative!important;
    padding-top: 50px;
}

img.object-fit-cover.mw-100.rounded {
        min-height: 375px;
    }
    
     .dropdown-menu {
      border: none;
    border-top: 1px solid;
    border-radius: 0px;
 }
 
 div#nav-tab button {
    width: 100%;
}

.edit-mode-btn {
    padding: 5px !important;
    font-size: 11px!important;
}

.siqembed {
    max-height: 350px!important;
    position: absolute!important;
    bottom: 15px!important;
    width: 95%!important;
}

.vert-center-text {
 top: 30%;
}

.tab {
 width: 100%;
 height: 0px;
}

.tabcontent {
 width: 100%;
 z-index: 1;
}
 
 .hidden {
    height: 850px!important;
    width: 100%!important;
    transition: all .7s;
    overflow: hidden;
  }
  
  .dt-buttons {
    position: relative!important;
    top: 0px!important;
    left: 0px!important;
}

.cp-mob-scroll {
 max-height: 600px;
 overflow-y: scroll;
}
  
  .cp-hide-display {
 display: none;
}

.product-slider-img {
 width:100%!important;
}

input.count {
 margin-left: 5px;
}

.remove-flex-mob {
 display: block!important;
}

.cp-footer-mob {
 text-align: center;
}

  
}



/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
      body {
      font-size: 18px;
  }
    H2, H1 {
        font-size: 45px;
    }
    
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
      body {
      font-size: 20px;
  }
    H2, H1 {
        font-size: 40px;
    }
      H3 {
    font-size: 30px;
  }
  .cp-hide-nav-desk {
     display: none;
    }
}


@media only screen and (max-width: 991px) {

 .cp-hide-nav-mob {
  display: none;
 }
 
 .edit-mode-btn {
  padding: 7px !important;
    font-size: 12px!important;
 }
 
 .case-study-min-250 {
  min-height: 550px;
 }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1201px) {
    body {
      font-size: 20px;
  }
    H2, H1 {
        font-size: 40px;
    }
}



@media only screen and (max-width: 1200px) {

 .cp-additional-info {
  margin-top: 20px;
 }
 
 .case-study-min-250 {
  min-height: 550px;
 }
 
}

@media only screen and (max-width: 1400px) {

 .min-h-300 {
  min-height: 400px;
 }
  .min-h-400 {
  min-height: 450px;
 }
 
}



/*The dropdown animation styling
*/

@media (min-width: 768px) {
  .animate {
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: e
    teY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}


/*carousel styling on homepage 
*/

.cp-slider-right {
     position: absolute;
    right: 0px;
}

.cp-right-row {
     min-height: 410px;
}

.row.py-5.cp-right-row {
    align-items: center;
}

@media (max-width: 767px) {
		.carousel-inner-home .carousel-item > div {
			display: none;
		}
		.carousel-inner-home .carousel-item > div:first-child {
			display: block;
		}
	}

	.carousel-inner-home .carousel-item.active,
	.carousel-inner-home .carousel-item-next,
	.carousel-inner-home .carousel-item-prev {
		display: flex;
	}

	/* medium and up screens */
	@media (min-width: 768px) {

		.carousel-inner-home .carousel-item-end.active,
		.carousel-inner-home .carousel-item-next {
			transform: translateX(25%);
		}

		.carousel-inner-home .carousel-item-start.active, 
		.carousel-inner-home .carousel-item-prev {
			transform: translateX(-25%);
		}
	}

	.carousel-inner-home .carousel-item-end,
	.carousel-inner-home .carousel-item-start { 
		transform: translateX(0);
	}
 
 /*Drag Drop*/
.ddArea {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 100px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      
      .ddArea_multiple {
        line-height: 35px!important;
        height: 80px!important;
      }
      
.ddArea0 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 100px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      
      .ddArea1 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea2 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea3 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea4 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea5 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea6 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea7 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea8 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea9 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea10 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea11 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }
      .ddArea12 {
        height: 200px;
        border: 2px dashed #ccc;
        line-height: 65px;
        text-align: center;
        font-size: 20px;
        background: #f9f9f9;
        margin-bottom: 15px;
      }

      .drag_over {
        color: #000;
        border-color: #000;
      }

      .thumbnail {
        width: 100px;
        height: 100px;
        padding: 2px;
        margin: 2px;
        border: 2px solid lightgray;
        border-radius: 3px;
        float: left;
      }
      
      .cp-group img {
      max-width: 100%;
      }

      .d-none {
        display: none;
      }
      
      label {
       margin: 10px;
      }
      
.range_container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.sliders_control {
  position: relative;
  min-height: 50px;
}

.form_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  color: #635a5a;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  width: 100%;
  position: absolute;
  background-color: #0098DA;
  pointer-events: none;
}

#fromSlider {
  height: 0;
  z-index: 1;
  top: 5px;
}

.shortPassword {  
    margin: auto;
    width: 60%;
    text-align: center;
    overflow: auto;
    margin-top: 5px;  
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;  
    font-size: 12px;  
    background-color: #dc3545;  
}  
.weakPassword {  
    margin: auto;
    width: 60%;
    text-align: center;
    overflow: auto;
    margin-top: 5px;  
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;  
    font-size: 12px;  
    background-color: #ffc107;  

}  
.goodPassword {  
    margin: auto;
    width: 60%;
    text-align: center;
    overflow: auto;
    margin-top: 5px;  
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;  
    font-size: 12px;  
    background-color: #28a745;  

}  