/* DEFAULT */
:root {
    --prione: #3d587f;
    --pritwo: #ffffff;
    --prithree: #ffa62b;
    --secone: #e63946;
    --sectwo: #295135;
    --font-color: #333;
    --vq-blue: #447efc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

hr {
    max-width: 200px;
    margin: 25px auto 0;
    border-width: 1px;
    border-color: rgba(34, 34, 34, .1);
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.45rem;
}

h4,
.h4 {
    font-size: 1.35rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 28px;
}

table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

th,
td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2
}

th {
    background-color: #4c8baf;
    color: white;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}
/* COMPONENT: BUTTONS */
.btn-primary {
    background-color: #35b4d1;
    border-color: #35b4d1
}

.btn-primary:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(238, 9, 121, .5);
    box-shadow: 0 0 0 .2rem rgba(238, 9, 121, .5)
}

.btn-xl {
    text-transform: uppercase;
    padding: 1.1rem 3rem;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1rem
}

.return-btn,
.return-btn:hover {
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 10px 15px;
    margin-bottom: 30px;
    background: #4caf6a;
    display: inline-block;
    border-radius: 5px;
    background-clip: padding-box;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-color: var(--prione);
    border-color: var(--prione);
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.btn-group-lg>.btn,
.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
    appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

/* COMPONENT: CHECK ICON */
.fa-check {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(1);
    width: 22px;
    height: 22px;
    border: 2px solid var(--vq-blue);
    border-radius: 100px;
    vertical-align: middle;
}

.fa-check:before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: -1px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: var(--vq-blue);
    transform-origin: bottom left;
    transform: rotate(45deg)
}

/* COMPONENT: LIST */
.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
li[data-list="bullet"] {
    list-style-type: disc;
}

/* Custom list check */
li[data-list="check"] {
    list-style-type: none;
    display: flex;
    align-items: center;
}
li[data-list="check"]::before {
    content: '✅';
    margin-right: 0.5em;
    font-size: 1rem;
    line-height: 1;
}
li[data-list=checked] > .ql-ui:before {
    content: '✅';
    margin-right: 0.5em;
    font-size: 1.2em;
    line-height: 1;
}
li[data-list=unchecked] > .ql-ui:before {
    content: '⬜';
    margin-right: 0.5em;
    font-size: 1.2em;
    line-height: 1;
}

/* PAGE STYLES */
.page-section {
    padding: 30px 0;
    background: #f3f3f3
}

.used-by,
.featured-in {
    background: #ffffff;
    padding: 24px 0;
}

.used-by img {
    width: 135px;
}
.fold-one,
.fold-three {
    background: #fff
}

.fold-four,
.fold-two {
    background: #f4f4f4
}

.showcase .showcase-img {
    min-height: 30rem;
    background-size: cover !important;
    background-position: top center;
    background-repeat: no-repeat;
}

/* BLOG */
header.masthead-blog {
    position: relative;
    background-color: #FFF;
    background-size: cover;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-top: 65px;
    margin-bottom: 65px;
    min-height: 250px;
    display: flex;
    align-items: center;
    background-position-x: -100px;
    background-repeat: no-repeat;
}
header.masthead-blog .container {
    padding-top: 50px;
}
header.masthead-blog .subtitle {
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    header.masthead-blog .container {
        padding-top: 0;
    }
    header.masthead-blog .row {
        display: grid;
        grid-template-columns: 100%;
        gap: 2%;
        align-items: center;
    }
    header.masthead-blog .title {
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: 1rem;
    }
}
.blog-index a {
    color: #34a2f2;
    display: block;
    margin-bottom: 1rem;
}

.blog-index {
    padding: 0;
}

.blog-index .col {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blogpost .row-1,
.blogpost > article,
.blog-page > article {
    max-width: 100%;
}

.blogpost > article,
.blog-page > article {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.blogpost h1 {
    font-size: 1.75rem;
}

.blogpost h2 {
    font-size: 1.5rem;
}

.blogpost h3 {
    font-size: 1.375rem;
}

.blogpost h4 {
    font-size: 1.25rem;
}

.blogpost h5 {
    font-size: 1.125rem;
}

.blogpost h6 {
    font-size: 1rem;
}

.blogpost > article p,
.blogpost > article li,
.blogpost .author-text,
.blogpost header p,
.blogpost .row-1 p {
    font-size: 1.10rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.blogpost article img {
    display: block;
    margin-bottom: 1rem;
    max-width: 100%;
    width: 100%;
}

.container.author {
    justify-content: start;
    border-top: 1px solid #eee;
}
.author .author-text {
    padding: 1rem 0;
}

.blogpost header .btn-share {
    position: absolute;
    top: 30px;
    left: 30px;
    appearance: none;
    border: none;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
    margin: auto;
}
.blogpost header .btn-share img {
    margin-bottom: 0;
}
.blogpost dialog {
    display: none;
    align-items: center;
    justify-content: center;
}
.blogpost dialog[open] { 
    display: flex;
}
.dialog-share-list {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.dialog-share-list img {
    margin-bottom: 0;
}

.dialog-share-list a {
    background-color: #4d7ff6;
    box-shadow: 0 .125rem 2.25rem rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
}
.blogpost dialog.dialog-share {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.blogpost .subtitle {
    font-size: 18px;
    margin: 0;
}
.blog-header.masthead-blog {
    margin-top: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 100%;
    text-align: left;
    align-items: start;
}
.blog-header .container {
    display: grid;
    gap: 1rem;
}
.back-link {
    display: flex;
    gap: 5px;
    align-items: center;
}
.blog-title {
    font-size: 2.5rem;
    font-weight: bold;
}
.blogpost header .publish-date {
    font-size: 0.9rem;
    opacity: 0.8;
}
.blog-image-container {
    align-self: center;
}
.blog-header .blog-image {
    width: 100%;
    border-radius: 15px;
}
.ql-hidden,
.ql-table-toggle_hidden {
    display: none;
}
@media (min-width: 576px) {
    .blogpost > article,
    .blog-page > article {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .blogpost > article,
    .blog-page > article {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .blogpost > article,
    .blog-page > article,
    .author.container {
        max-width: 992px;
    }
    .blog-header.masthead-blog {
        grid-template-columns: 30% 60%;
        gap: 10%;
    }
}

@media screen and (min-width: 1200px) {
    .blog-header.masthead-blog {
        max-width: 1200px;
    }
    .blogpost > article,
    .blog-page > article,
    .author.container {
        max-width: 1200px;
    }
}

/* COMPONENT: CAROUSEL */
.carousel {
    color: #ffffff;
    padding: 2rem 6rem 3rem 6rem;
}

#slide {
    background: #041121;
}

@media screen and (max-width:768px) {
    .carousel-control-next {
        right: 0;
        display: none;
    }

    .carousel-control-prev {
        left: 0;
        display: none;
    }

    .carousel {
        padding: 1rem;
    }

    .carousel-item p {
        padding-bottom: 1rem;
    }
}

/* COMPONENT: IntlTelInput */
.iti {
    margin-bottom: 0.5em;
    width: 100%;
}

.iti__flag {
    height: 15px;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url("../img/flags.png");
    background-repeat: no-repeat;
    background-color: #DBDBDB;
    background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
    .iti__flag {
        background-image: url(../img/flags@2x.png)
    }
}

​ .iti__flag.iti__np {
    background-color: transparent
}

/* COMPONENT: TOAST MESSAGE */
#toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    color: #ff0000;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

/* COMPONENT: FORM */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row>.col,
.form-row>[class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
/* COMPONENT: NAVBAR */
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .3rem;
    padding-bottom: .7rem;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.navbar>.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    width: 120px !important;
    height: auto;
    margin-bottom: auto !important
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0;
    list-style: none;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
}

.navbar-nav .nav-link {
    display: block;
    cursor: pointer;
    white-space: nowrap;
    color: #555;
    text-align: center;
}

.btn-nav {
    padding: 5px 10px;
    border: 0;

}

.callback a.nav-link {
    background: var(--prione);
    color: #fff;
    border-radius: 10rem;
    padding: 6px 12px;
}

.nav-item {
    list-style-type: none !important;
}

.navbar .dropdown-item:not(.submenu-text) {
    padding: .2em 1.5em !important
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-flow: row nowrap;
        justify-content: flex-start;
        padding-bottom: .3rem;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        top: 25px;
        left: 7px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        /* padding-right: 0.5rem;
      padding-left: 0.5rem; */
        text-align: left;
    }

    .navbar-expand-lg>.container {
        flex-wrap: nowrap;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex;
        align-items: center;
        /* flex-basis: auto;
      height: auto;
      overflow: inherit; */
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

/* COMPONENT: DROPDOWN */
.dropdown-menu {
    z-index: 1000;
    padding: .5rem 0;
    margin: .125rem 0 0;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown {
    position: relative;
}

.dropdown-item {
    display: block;
    width: 100%;
    position: relative;
    padding: .25rem 0 .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item.has-submenu::after {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 5px;
    top: 8px;
    content: "";
    border-top: 0.5em solid transparent;
    border-right: 0;
    border-bottom: 0.5em solid transparent;
    border-left: 0.5em solid;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #48b7f2
}

.dropdown-link {
    color: #212529;
    cursor: pointer;
}

@media (min-width:992px) {
    .dropdown-item {
        padding: 0.2em 1.5em;
        ;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown:not(:hover) .dropdown-menu {
        display: none;
    }

    .dropdown-item.has-submenu::after {
        top: 50%;
        transform: translateY(-50%);
    }

    .dropdown-item.has-submenu>.submenu-text+.submenu {
        position: absolute;
        left: 100%;
        top: -5%;
        padding: .5rem 0;
        border: 1px solid rgba(0, 0, 0, .15);
        border-radius: .25rem;
        background: #fff;
        margin-top: 0;
        width: auto;
    }

    .dropdown-item.has-submenu:hover>.submenu-text+.submenu {
        display: block;
    }
}

/* COMPONENT: FOOTER */
footer.page-footer {
    background-image: url("../img/lucep-bg-white.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: -10px;
}

footer.page-footer .row-6 {
    grid-template-columns: 7% 16.4% 13.3% 24.3% 15% 19.5%
}

footer.page-footer p,
footer.page-footer a,
footer.page-footer h6,
footer.page-footer span {
    font-size: 0.9rem;
    color: var(--font-color);
}

footer img {
    padding: 0 !important
}

/* line in the end of footer */
footer hr+.row-2 {
    display: grid;
}

footer a:hover {
    color: #36c;
    border-bottom: 1px solid #36c;
}

/* in footer by default submenu dropdown item is not collapsed*/
footer .has-submenu ul {
    list-style-type: square;
    color: #fff;
    padding-left: 35px;
}

footer .has-submenu {
    position: relative;
}

/* in large screen hide toggle icon */
footer .has-submenu::after {
    display: none;
}

/* and show submenu as list */
footer .has-submenu .collapse {
    display: block;
}

/* fix footer icon odd shape on safari browser */
footer a[type=button].btn-floating {
    -webkit-appearance: unset;
    appearance: unset;
}

@media (max-width: 768px) {
    footer .has-submenu .collapse:not(.show) {
        display: none;
    }

    footer .has-submenu ul {
        list-style: none;
        padding: 0;
        margin-bottom: 0;
    }

    footer .has-submenu>[data-toggle="collapse"] {
        min-width: 16em;
        position: relative;
    }

    footer .bg-medium-dark-blue {
        background: #3d405b;
    }

    footer .has-submenu>[data-toggle="collapse"]::after {
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        right: 13px;
        top: 40%;
        content: "";
        border-top: 0.35em solid transparent;
        border-right: 0;
        border-bottom: 0.35em solid transparent;
        border-left: 0.35em solid;
        color: #fff;
        transform: rotate(90deg);
    }

    footer p {
        min-height: 48px;
        margin-top: auto;
        margin-bottom: auto;
        padding-top: 13px;
        padding-bottom: 13px;
    }

    footer .col {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 992px) {
    footer.page-footer .row-6 {
        grid-template-columns: 1fr
    }
}

/* COMPONENT: CAROUSEL */
.carousel {
    position: relative;
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: 0s 0.6s opacity;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

/* COMPONENT: VIDEO WRAPPER - display image before video loaded */
.videowrapper {
    width: 100%;
    position: relative;
}

.video-placeholder {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}

.videowrapper#header-video .video-content {
    padding-bottom: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.videowrapper>div {
    width: 100%;
}

/* COMPONENT: SHIMMER */
@keyframes placeHolder-shimmer {
    0% {
        background-position: 0px 0;
    }

    100% {
        background-position: 100em 0;
    }
}

.animated-placeholder {
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolder-shimmer;
    animation-timing-function: linear;
    background: #fff;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    padding: 1vw;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 10px;
}

/* COMPONENT: CUSTOM SCROLLBAR */
.customized-scrollbar {
    scrollbar-color: #000 #aaa;
    scrollbar-width: thin
}

.customized-scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #aaa;
}

.customized-scrollbar::-webkit-scrollbar-thumb {
    background: #000;
}

/* COMPONENT: MODAL */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeInOpacity 0.7s;
}

.industry-modal {
    position: relative;
    margin: auto;
    width: 75%;
    max-height: 75vh;
    overflow-y: auto;
    border: 1px solid #3d587f;
    box-shadow: 14px 14px 0px rgba(0, 0, 0, .3);
    background: #fff;
    animation: fadeInOpacity 0.7s;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}

@media (max-width:768px) {
    .industry-modal {
        box-shadow: 7px 7px 0px rgba(0, 0, 0, .3);
    }

    .btn-close {
        top: 10px;
        right: 10px;
    }

    .industry-modal {
        overflow-y: auto;
        width: 90%;
    }
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* UTILITIES */
#error-msg {
    color: red;
}

#valid-msg {
    color: #00C900;
}

input.error {
    border: 1px solid #FF7C7C;
}

.hide {
    display: none;
}

.fw-bold {
    font-weight: bold;
}

.rounded-pill {
    border-radius: 5rem
}

.bg-warning {
    background-color: #e9e4d6 !important;
}

.bg-dark-blue {
    background-color: #021227 !important;
}

.fade-in {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.5s;
}

.fade {
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.row-1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    grid-gap: 10px;
    align-items: center;
}

.row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    align-items: center;
}

.row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    align-items: center;
}

.row-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    align-items: center;
}

.row-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    align-items: center;
}

.row-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
    align-items: center;
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.reverse {
    grid-row: 1;
}

.no-gutters {
    grid-gap: 0px !important;
}

.onespan {
    grid-column: span 1;
}

.twospan {
    grid-column: span 2;
}

.threespan {
    grid-column: span 3;
}

.fourspan {
    grid-column: span 4;
}

.vh-75 {
    grid-template-rows: 75vh;
}

.pad-1 {
    padding: 1em !important;
}

.m-02 {
    margin: 0.2em !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.d-inline-block {
    display: inline-block !important;
}

@media (max-height: 768px) {
    .vh-75 {
        grid-template-rows: auto;
    }
}

@media screen and (max-width: 768px) {
    .reverse {
        grid-row: unset;
    }

    .row-2 {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
        align-items: center;
    }

    .row-3 {
        grid-template-columns: repeat(auto-fill, minmax(213px, 1fr));
    }

    .masthead .row-2 {
        grid-template-columns: 1fr;
    }

    .row-4 {
        grid-template-columns: repeat(auto-fill, minmax(153px, 1fr));
    }

    .row-5 {
        grid-template-columns: 1fr;
    }

    .row-6 {
        grid-template-columns: 1fr;
    }

    .row-1 .form-row {
        display: block;
    }

    .container-fluid {
        padding: 10px !important;
    }

    .blogpost .row-1 {
        grid-template-columns: 1fr;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .masthead .row-2 {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        grid-gap: 10px;
        align-items: center;
    }
}

@media only screen and (min-width: 1224px) {
    .masthead .row-2 {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-gap: 10px;
        align-items: center;
    }
}

.align-start {
    align-items: flex-start;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.gap-100 {
    grid-gap: 100px;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.ml-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important;
}

.p-3 {
    padding: 2rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important;
}

.text-white {
    color: #fff !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-justify {
    text-align: justify !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.rounded-sm {
    border-radius: 0.2rem !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
    border-radius: 0.3rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.fixed-top {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.shadow-m {
    box-shadow: 0 .125rem 2.25rem rgba(0, 0, 0, 0.2) !important;
}

.pb-5 {
    padding-bottom: 5rem;
}

.showcase .showcase-text {
    padding: 3rem;
}

.masthead-safe-margin {
    margin-top: 76px;
}

.p-1vw {
    padding: 1vw;
}

@media (min-width: 768px) {
    .showcase .showcase-text {
        padding: 7rem;
    }
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

/* COMPONENT: HEADERS */
/* this should be moved to specific page */
.minimal-masthead {
    margin-top: 70px;
}
header.masthead {
    background-image: url("../img/lucep-bg-white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: -10px;
    position: relative;
}

header.masthead-financial {
    position: relative !important;
    background-color: #343a40 !important;
    background: url(../img/banner-financial.jpg) no-repeat center center !important;
    background-size: cover !important;
    padding-top: 12rem !important;
    padding-bottom: 6rem !important;
}

header.masthead-healthcare {
    position: relative !important;
    background-color: #343a40 !important;
    background: url(../img/banner-2.jpg) no-repeat center center !important;
    background-size: cover !important;
    padding-top: 9rem !important;
    padding-bottom: 12rem !important;
}

header.masthead-healthcare .row {
    position: relative;
    z-index: 1;
}

.masthead-healthcare .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

header.masthead-government {
    position: relative !important;
    background-color: #343a40 !important;
    background: url(../img/banner-3.jpg) no-repeat center center !important;
    background-size: cover !important;
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
    opacity: 0.8;
}

header.masthead-imda {
    position: relative !important;
    /*background-size: cover !important;*/
    padding-top: 3.5rem !important;
    padding-bottom: 3rem !important;
    color: var(--font-color);
    /*background: #6c8fcf;*/
    background: url(../img/bg-pattern.png), linear-gradient(to left, #48b7f2, #447efc);
}

.masthead-restaurant {
    position: relative !important;
    background-color: #343a40 !important;
    background: url(../img/restaurant-queue-management-system.jpg) no-repeat center center !important;
    background-size: cover !important;
    padding-top: 6rem !important;
    padding-bottom: 13rem !important;
}

header.masthead-retail {
    position: relative !important;
    background-color: #343a40 !important;
    background: url(../img/retail-queue-management-system.jpg) no-repeat 100% 100% !important;
    background-size: cover !important;
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
    opacity: 0.8;
}

header.masthead-about {
    position: relative !important;
    background-color: #343a40 !important;
    background: url(../img/company.jpg) no-repeat center center !important;
    background-size: cover !important;
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
}

header.masthead-alternative {
    position: relative !important;
    background: #ade0fd4a !important;
    color: #fff !important;
    background-size: cover !important;
    padding-top: 5rem !important;
    padding-bottom: 1rem !important;
}

header.masthead-features {
    position: relative!important;
    background-size: cover!important;
    padding-top: 3rem!important;
    padding-bottom: 1rem!important;
    color: #fff;
    background: #6c8fcf;
}

@media (min-width: 768px) {
    .masthead-restaurant {
        padding-top: 12rem;
        padding-bottom: 12rem;
    }

    .masthead-restaurant h1 {
        font-size: 3rem;
    }

    header.masthead-about {
        padding-top: 12rem;
        padding-bottom: 12rem;
      }
      header.masthead-about h1 {
        font-size: 3rem;
        white-space: nowrap;
      }
}

@media screen and (max-width:768px) {
    .masthead-restaurant {
        background: url(../img/banner-2-small.jpg) no-repeat center center !important;
        background-size: cover !important;
    }
}

/* Style for other pages */
/* this should be moved to specific page */

/* For Author Page */
.author-page .row-3 {
    align-items: flex-start;
}

.author-page .card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 10px;
}

.card-title {
    margin-top: auto;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125);
    padding: .75rem 1.25rem;
}

.author-page .card-footer {
    margin-top: auto;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125);
    padding: .75rem 1.25rem;
}

.author-page .card-body {
    padding: 1.25rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7; /* Number of lines to show */
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.author-page .card-img-top-container img {
    max-width: 100%;
    border-radius: 10px 10px 0 0;
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.author-page .row-3{
    grid-template-columns: 1fr;
} 
@media screen and (min-width: 768px) {
    .author-page .row-3{
        grid-template-columns: 50% 50%;
    } 
}
@media screen and (min-width: 992px) {
    .author-page .row-3{
        grid-template-columns: 33.33% 33.33% 33.33%;
    } 
}
/* for the COVID-19 landing page */
.contact-mid {
    margin: auto;
    max-width: 450px;
    width: 100%;
    padding: 10%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 .125rem 2.25rem rgba(0, 0, 0, 0.2);
}

.contact-mid:hover {
    background-color: #3d587f;
    color: #fff;
    transition: 0.5s ease all;
}

.contact-mid .form-group {
    margin: auto;
    max-width: 270px;
    margin-bottom: 13px;
}

.in-container-auto {
    display: block;
    width: 100%;
    height: 0;
    margin: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
}

.covid-19-page .in-container {
    min-height: auto;
}

.covid-19-page .bg-image {
    background-color: #f3f3f3;
}

.covid-19-page .in-container-auto {
    border-radius: 3rem !important;
}

.covid-19-page li {
    padding: 1.75rem;
    transition: 0.5s ease all;
}

.covid-19-page li:hover {
    background-color: #3d587f;
    color: #fff;
}

.covid-big-text {
    font-size: 4em;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    color: #111c;
}

.covid-header-bg {
    background-color: #3396b1;
}

@media(max-width:767.9px) {
    .contact-mid {
        width: 100%;
        border-radius: 10px;
        margin: auto;
        padding: 0;
    }

    .covid-19-page .form-container {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 25px 25px rgba(0, 0, 0, 0.2);
    }
}

/* for IMDA page */
.logo-container .col.sgd {
    justify-self: right;
}

.logo-container .col.imda {
    justify-self: left;
}

@media screen and (max-width:768px) {
    .logo-container .col.sgd {
        justify-self: center;
    }

    .logo-container .col.imda {
        justify-self: center;
    }
}

/* For the retail sector fold */
.retail-gallery {
    background: #3d587f;
    padding: 1rem;
    width: 100%;
    max-width: 600px;
}

.video-center-row1 {
    padding: 1rem;
    width: 100%;
    max-width: 600px;
}

.row-2-case-studies .row-2 {
    align-items: flex-start;
}

.banking-gallery {
    padding: 1rem;
    max-width: 1170px;
    margin: auto;
}

.request-demo-container {
    max-width: 1170px;
    margin: auto;
    margin-top: 71px;
}

.in-container.case-study {
    height: 500px;
}

.industry-image-thumbnail {
    transition: 0.5s ease all;
    animation: fadeInOpacity 0.7s;
    border: 1px solid #3d587f;
    box-shadow: 14px 14px 0px rgba(0, 0, 0, .3);
    min-height: 500px;
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    height: 500px;
    margin-left: auto;
    overflow-y: scroll;
}
.features {
    margin-top: 70px;
}
.features .row-1 {
    display: block;
    max-width: 750px;
    margin: auto;
    margin-top: 8rem;
}
@media (max-width:768px) {
    .industry-image-thumbnail {
        box-shadow: 7px 7px 0px rgba(0, 0, 0, .3);
    }
}

/* for the partners page */
header.masthead-partners {
    position: relative !important;
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 249, 255, 1) 11.1%, rgba(255, 241, 255, 1) 90%);
    background-size: cover !important;
}

.masthead-partners .card {
    min-width: 300px;
}

.masthead-partners .container>.row-2 {
    grid-gap: 150px;
}

.masthead-partners .card {
    background-color: #3d587fd1;
}

.masthead-partners .contact {
    margin: 10px 10px 70px 10px;
}

.masthead-partners .partner-text h1 {
    margin: 30px 0 0 0;
    text-align: center;
    font-size: 2.5rem;
    padding-bottom: 0.5rem;
}

.masthead-partners .partner-text h4 {
    font-weight: 300;
    text-align: center;
}

.masthead-partners .partner-text img {
    max-width: 527px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.masthead-partners .form-control {
    margin-bottom: 1rem;
}

.partnership-proces {
    margin-bottom: 2rem;
}
.partnership-proces p {
    width: calc(1/2*100% - (1 - 1/2)*10px);
}

.value-two {
    background: #ffffff;
    padding: 1rem;
}

.value-one {
    background: #607396;
    color: #ffffff;
    padding: 1rem;
}

.partner-form-p {
    padding: 2rem 2rem;
}

.partnership-proces .row-2 {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    header.masthead-partners {
        padding-top: 4rem;
    }
}

@media (max-width:768px) {
    .masthead-partners .container>.row-2 {
        margin-top: 55px;
    }
}

@media (max-width: 1023.9px) {
    .masthead-partners .container>.row-2 {
        grid-template-columns: 1fr;
    }
}
/* for the alternative page */
.alternative-to-header-image {
    width: 100%;
}

/* Request Demo Page */
.request-demo-container {
    padding: 0;
    margin: 64px 0px 0px 0px;
    overflow-x: hidden;
}

.in-container {
    display: block;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.bg-image {
    padding-left: 0px;
    padding-right: 0px;
    background-color: #343a40;
}

.bg-form {
    padding-left: 0px;
    padding-right: 0px;
}

.contact {
    margin: 30px 20px 20px 20px;
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.5s;
    margin-top: 9rem;
}

.contact .form-group {
    margin: auto;
    max-width: 270px;
    margin-bottom: 13px;
}

.profile-photo {
    display: block;
    position: absolute;
    top: 20%;
    left: 25%;
    margin: auto;
    width: 50%;
    height: auto;
    text-align: center;
}

.profile-photo img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.6);
    padding: 0 !important;
}

.profile-photo p {
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
    font-weight: 500;
}

.sign-up-capt {
    color: #ffffff;
    top: 0;
    left: 0;
    text-align: center;
    margin: 21px;
    padding: 21px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .bg-image {
        display: none;
    }

    .sign-up {
        margin: 13px !important;
        display: flex;
        justify-content: center;
        align-items: stretch;
    }

    .bg-form {
        max-width: 100%;
        flex: 1 auto;
    }
}
/* For temple visitor management system page */
#temple-qms .masthead {
    padding: 4rem 0;
}
.transcript {
    padding-left: 0;
}
.transcript::before {
    display: none;
}
.transcript summary{
    width: 100%;
    background-color: #4dddff;
    text-align: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 20px;
}
.transcript .content {
    border: 1px solid #4DDDFF;
    padding: 0.5rem;
    border-radius: 20px;
    height: 250px;
    overflow-y: auto;
    position: relative;
}
.transcript .content p{
    font-size: 1rem;
}
.yt-cue-item {
    transition: all 0.3s ease;
    padding: 0.5em;
    border-radius: 20px;
}
.yt-cue-item.active {
    background-color: #4dddff;
    color: #02193B;
    font-weight: 700;
}
/* QuillJS list styling */
.blogpost {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

@supports (counter-set:none) {
    .blogpost article p,.blogpost article h1,.blogpost article h2,.blogpost article h3,.blogpost article h4,.blogpost article h5,.blogpost article h6 {
        counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article p,.blogpost article h1,.blogpost article h2,.blogpost article h3,.blogpost article h4,.blogpost article h5,.blogpost article h6 {
        counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
    }
} */

.blogpost article table {
    border-collapse: collapse
}

.blogpost article td {
    border: 1px solid #000;
    padding: 2px 5px
}

.blogpost article ol {
    padding-left: 1.5em
}

.blogpost article li {
    list-style-type: none;
    padding-left: 1.5em;
    position: relative
}
.blogpost article li:not([data-list="bullet"], [data-list="ordered"], [data-list="checked"], [data-list="unchecked"]) {
    list-style-type: disc;
    padding-left: 0;
}

.blogpost article li > .ql-ui:before {
    display: inline-block;
    margin-left: -1.5em;
    margin-right: .3em;
    text-align: right;
    white-space: nowrap;
    width: 1.2em
}

.blogpost article li[data-list=checked] > .ql-ui,.blogpost article li[data-list=unchecked] > .ql-ui {
    color: #777
}

.blogpost article li[data-list=bullet] > .ql-ui:before {
    content: '\2022';
    font-size: 1.2em;
    font-weight: bold;
}

.blogpost article li[data-list=checked] > .ql-ui:before {
    content: '\2611'
}

.blogpost article li[data-list=unchecked] > .ql-ui:before {
    content: '\2610'
}

@supports (counter-set:none) {
    .blogpost article li[data-list] {
        counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list] {
        counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
    }
}

.blogpost article li[data-list=ordered] {
    counter-increment: list-0
}

.blogpost article li[data-list=ordered] > .ql-ui:before {
    content: counter(list-0, decimal) '. '
}

.blogpost article li[data-list=ordered].ql-indent-1 {
    counter-increment: list-1
}

.blogpost article li[data-list=ordered].ql-indent-1 > .ql-ui:before {
    content: counter(list-1, lower-alpha) '. '
}

@supports (counter-set:none) {
    .blogpost article li[data-list].ql-indent-1 {
        counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list].ql-indent-1 {
        counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
    }
}

.blogpost article li[data-list=ordered].ql-indent-2 {
    counter-increment: list-2
}

.blogpost article li[data-list=ordered].ql-indent-2 > .ql-ui:before {
    content: counter(list-2, lower-roman) '. '
}

@supports (counter-set:none) {
    .blogpost article li[data-list].ql-indent-2 {
        counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list].ql-indent-2 {
        counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9
    }
}

.blogpost article li[data-list=ordered].ql-indent-3 {
    counter-increment: list-3
}

.blogpost article li[data-list=ordered].ql-indent-3 > .ql-ui:before {
    content: counter(list-3, decimal) '. '
}

@supports (counter-set:none) {
    .blogpost article li[data-list].ql-indent-3 {
        /* counter-set: list-4 list-5 list-6 list-7 list-8 list-9 */
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list].ql-indent-3 {
        counter-reset: list-4 list-5 list-6 list-7 list-8 list-9
    }
}

.blogpost article li[data-list=ordered].ql-indent-4 {
    counter-increment: list-4
}

.blogpost article li[data-list=ordered].ql-indent-4 > .ql-ui:before {
    content: counter(list-4, lower-alpha) '. '
}

@supports (counter-set:none) {
    .blogpost article li[data-list].ql-indent-4 {
        counter-set: list-5 list-6 list-7 list-8 list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list].ql-indent-4 {
        counter-reset: list-5 list-6 list-7 list-8 list-9
    }
}

.blogpost article li[data-list=ordered].ql-indent-5 {
    counter-increment: list-5
}

.blogpost article li[data-list=ordered].ql-indent-5 > .ql-ui:before {
    content: counter(list-5, lower-roman) '. '
}

@supports (counter-set:none) {
    .blogpost article li[data-list].ql-indent-5 {
        counter-set: list-6 list-7 list-8 list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list].ql-indent-5 {
        counter-reset: list-6 list-7 list-8 list-9
    }
}

.blogpost article li[data-list=ordered].ql-indent-6 {
    counter-increment: list-6
}

.blogpost article li[data-list=ordered].ql-indent-6 > .ql-ui:before {
    content: counter(list-6, decimal) '. '
}

@supports (counter-set:none) {
    .blogpost article li[data-list].ql-indent-6 {
        counter-set: list-7 list-8 list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list].ql-indent-6 {
        counter-reset: list-7 list-8 list-9
    }
}

.blogpost article li[data-list=ordered].ql-indent-7 {
    counter-increment: list-7
}

.blogpost article li[data-list=ordered].ql-indent-7 > .ql-ui:before {
    content: counter(list-7, lower-alpha) '. '
}

@supports (counter-set:none) {
    .blogpost article li[data-list].ql-indent-7 {
        counter-set: list-8 list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list].ql-indent-7 {
        counter-reset: list-8 list-9
    }
}

.blogpost article li[data-list=ordered].ql-indent-8 {
    counter-increment: list-8
}

.blogpost article li[data-list=ordered].ql-indent-8 > .ql-ui:before {
    content: counter(list-8, lower-roman) '. '
}

@supports (counter-set:none) {
    .blogpost article li[data-list].ql-indent-8 {
        counter-set: list-9
    }
}

@supports not (counter-set:none) {
    .blogpost article li[data-list].ql-indent-8 {
        counter-reset: list-9
    }
}

.blogpost article li[data-list=ordered].ql-indent-9 {
    counter-increment: list-9
}

.blogpost article li[data-list=ordered].ql-indent-9 > .ql-ui:before {
    content: counter(list-9, decimal) '. '
}

.blogpost article .ql-indent-1:not(.ql-direction-rtl) {
    padding-left: 1.5em
}

.blogpost article li.ql-indent-1:not(.ql-direction-rtl) {
    padding-left: 3em
}

.blogpost article .ql-indent-2:not(.ql-direction-rtl) {
    padding-left: 4.5em
}

.blogpost article li.ql-indent-2:not(.ql-direction-rtl) {
    padding-left: 6em
}

.blogpost article .ql-indent-3:not(.ql-direction-rtl) {
    padding-left: 7.5em
}

.blogpost article li.ql-indent-3:not(.ql-direction-rtl) {
    padding-left: 9em
}

.blogpost article .ql-indent-4:not(.ql-direction-rtl) {
    padding-left: 10.5em
}

.blogpost article li.ql-indent-4:not(.ql-direction-rtl) {
    padding-left: 12em
}

.blogpost article .ql-indent-5:not(.ql-direction-rtl) {
    padding-left: 13.5em
}

.blogpost article li.ql-indent-5:not(.ql-direction-rtl) {
    padding-left: 15em
}

.blogpost article .ql-indent-6:not(.ql-direction-rtl) {
    padding-left: 16.5em
}

.blogpost article li.ql-indent-6:not(.ql-direction-rtl) {
    padding-left: 18em
}

.blogpost article .ql-indent-7:not(.ql-direction-rtl) {
    padding-left: 19.5em
}

.blogpost article li.ql-indent-7:not(.ql-direction-rtl) {
    padding-left: 21em
}

.blogpost article .ql-indent-8:not(.ql-direction-rtl) {
    padding-left: 22.5em
}

.blogpost article li.ql-indent-8:not(.ql-direction-rtl) {
    padding-left: 24em
}

.blogpost article .ql-indent-9:not(.ql-direction-rtl) {
    padding-left: 25.5em
}

.blogpost article li.ql-indent-9:not(.ql-direction-rtl) {
    padding-left: 27em
}