body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

footer {
    margin-top: auto;
}

.disabled a,
a.disabled {
    pointer-events: none;
}

a:hover {
    color: #15848F;
    text-decoration: none !important;
}

a {
    color: #1798A5;
}

.align-text-right {
    text-align: right;
}

.side-nav li a:not(.button) {
    color: #15848F;
}

.error-message {
    color: red;
    font-size: 14px;
    padding: 0px 0px 5px 0px;
    text-align: left;
}

.remove-left-padding {
    padding-left: 0px !important;
}

.remove-right-padding {
    padding-right: 0px !important;
}

.side-nav li a:not(.button):hover {
    color: #15848F;
}

.display-inline {
    display: inline !important;
}


/*header {
	background-color: #D33C44;
	color: #ffffff;
	font-size: 30px;
	height: 84px;
	line-height: 64px;
	padding: 16px 0px;
	box-shadow: 0px 1px rgba(0, 0, 0, 0.24);
}
*/

header .header-title {
    padding-left: 80px
}

legend {
    color: #15848F;
}

.row {
    max-width: 80rem;
}

.actions.columns {
    margin-top: 1rem;
    border-left: 5px solid #15848F;
    padding-left: 15px;
    padding: 32px 20px;
}

.actions.columns h3 {
    color: #15848F;
}

.related table {
    border: 0;
    width: 100%;
    table-layout: fixed;
}

.index table thead {
    height: 3.5rem;
}

.header-help {
    float: right;
    margin-right: 2rem;
    margin-top: -80px;
    font-size: 16px;
}

.header-help span {
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
    padding: 0.25rem 0.5rem 0.375rem;
    font-size: 0.8rem;
    background-color: #0097a7;
    color: #FFF;
    border-radius: 1000px;
}

.header-help a {
    color: #fff;
}

ul.pagination li a {
    color: rgba(0, 0, 0, 0.54);
}

ul.pagination li.active a {
    background-color: #DCE47E;
    color: #FFF;
    font-weight: bold;
    cursor: default;
}

ul.pagination .disabled:hover a {
    background: none;
}

.paginator {
    text-align: center;
}

.paginator ul.pagination li {
    float: none;
    display: inline-block;
}

.paginator p {
    text-align: right;
    color: rgba(0, 0, 0, 0.54);
}

.asc:after {
    content: " \2193";
}

.desc:after {
    content: " \2191";
}

.form .error-message {
    display: block;
    padding: 0.375rem 0.5625rem 0.5625rem;
    margin-top: -1px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: normal;
    font-style: italic;
    color: rgba(0, 0, 0, 0.54);
}

.required>label {
    font-weight: bold;
}

.required>label:after {
    content: ' *';
    color: #C3232D;
}

select[multiple] {
    min-height: 150px;
    background: none;
}

input[type=checkbox],
input[type=radio] {
    margin-right: 0.5em;
}

.date select,
.time select,
.datetime select {
    display: inline;
    width: auto;
    margin-right: 10px;
}

.error label,
.error label.error {
    color: #C3232D;
}

.view h2 {
    color: #6F6F6F;
}

.view .columns.strings {
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.24);
    margin-right: 0.7rem;
}

.view .numbers {
    background-color: #B7E3EC;
    color: #FFF;
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.24);
    margin-right: 0.7rem;
}

.view .columns.dates {
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.24);
    margin-right: 0.7rem;
    background-color: #DCE47E;
    color: #fff;
}

.view .columns.booleans {
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.24);
    margin-right: 0.7rem;
    background-color: #8D6E65;
    color: #fff;
}

.view .strings p {
    border-bottom: 1px solid #eee;
}

.view .numbers .subheader,
.view .dates .subheader {
    color: #747474;
}

.view .booleans .subheader {
    color: #E9E9E9
}

.view .texts .columns {
    margin-top: 1.2rem;
    border-bottom: 1px solid #eee;
}


/** Notices and Errors **/

.cake-error,
.cake-debug,
.notice,
p.error,
p.notice {
    display: block;
    clear: both;
    background-repeat: repeat-x;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.24);
}

.cake-debug,
.notice,
p.notice {
    color: #000000;
    background: #ffcc00;
}

.cake-error,
p.error {
    color: #fff;
    background: #C3232D;
}

pre {
    background: none repeat scroll 0% 0% #FFF;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.24);
    margin: 15px 0px;
    color: rgba(0, 0, 0, 0.74);
    padding: 5px;
}

.cake-error .cake-stack-trace {
    margin-top: 10px;
}

.cake-stack-trace code {
    background: inherit;
    border: 0;
}

.cake-code-dump .code-highlight {
    display: block;
    background-color: #FFC600;
}

.cake-error a,
.cake-error a:hover {
    color: #fff;
    text-decoration: underline;
}

.checks {
    padding: 30px;
    color: #626262;
    background-color: #B7E3EC;
    border-radius: 3px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.24);
    margin-bottom: 2em;
}

.checks h4 {
    margin-bottom: 1.5rem;
}

.checks hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.checks .success,
.checks .problem {
    margin-left: 10px;
}

.checks .success:before,
.checks .problem:before {
    line-height: 0px;
    font-size: 28px;
    height: 12px;
    width: 12px;
    border-radius: 15px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    left: -11px;
}

.checks .success:before {
    content: "Ã¢Å“â€œ";
    color: green;
    margin-right: 9px;
}

.checks .problem:before {
    content: "Ã¢Å“Ëœ";
    color: red;
    margin-right: 9px;
}

.top-bar.expanded .title-area {
    background: #01545b;
}

.top-bar.expanded,
.top-bar,
.top-bar-section ul li,
.top-bar-section li:not(.has-form) a:not(.button) {
    background: #116d76;
}

.top-bar-section li:not(.has-form) a:not(.button):hover {
    background-color: #308e97;
    background: #308e97;
}

.side-nav li.heading {
    color: #1798A5;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.4375rem 0.875rem;
}

#actions-sidebar {
    background: #fafafa;
}

.index table {
    margin-top: 0rem;
    border: 0;
    width: 100%;
    table-layout: fixed;
}

table {
    background: #fff;
    margin-bottom: 20px;
    border: none;
    table-layout: fixed;
    width: 100%;
}

table thead {
    background: none;
}

table tr {
    border-bottom: 1px solid #ebebec;
}

table thead tr {
    border-bottom: 1px solid #1798A5;
}

table tr th {
    padding: 0.5625rem 0.625rem;
    font-size: 0.875rem;
    color: #1798A5;
    text-align: left;
    border-bottom: 2px solid #1798A5;
}

table tr:nth-of-type(even) {
    background: none;
}

fieldset {
    border: none;
    padding: 1.25rem;
    margin: 1.125rem 0;
}

fieldset legend {
    border-bottom: 2px solid #1798A5;
    width: 100%;
    line-height: 2rem;
}

.form button[type="submit"] {
    float: right;
    text-transform: uppercase;
    box-shadow: none;
}

.form button:hover,
.form button:focus {
    background: #BE840B;
    box-shadow: none;
}

button {
    background: #ff9933;
}

div.message {
    text-align: center;
    cursor: pointer;
    display: block;
    font-weight: normal;
    padding: 0 1.5rem 0 1.5rem;
    transition: height 300ms ease-out 0s;
    background-color: #a0d3e8;
    color: #626262;
    top: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    height: 50px;
    line-height: 2.5em;
}

div.message:before {
    line-height: 0px;
    font-size: 20px;
    height: 12px;
    width: 12px;
    border-radius: 15px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    left: -11px;
    background-color: #FFF;
    padding: 12px 14px 12px 10px;
    content: "i";
    color: #a0d3e8;
}

div.message.error {
    background-color: #C3232D;
    color: #FFF;
}

.message.success {
    background-color: green;
    color: #FFF;
}

div.message.error:before {
    padding: 11px 16px 14px 7px;
    color: #C3232D;
    content: "x";
}

div.message.hidden {
    height: 0;
}

.vertical-table th {
    padding: 0.5625rem 0.625rem;
    font-size: 0.875rem;
    color: #1798A5;
    border: none;
    text-align: left;
}

.vertical-table {
    vertical-align: middle;
}

.vertical-table td {
    text-align: right;
}


/* Use 'one true layout' methods to get equal height columns */

.container.padding-on-large-screen {
    overflow: hidden;
    min-height: calc(100% - 162px);
    min-height: 74.5%;
}


/* Force equal height by overflowing */


/* 
.content,
#actions-sidebar {
    margin-bottom: -99999px;
    padding-bottom: 99999px;
} */

.content h3 {
    color: #be140b;
    padding-bottom: 0.5rem;
    margin-bottom: 20px;
}

.content h4 {
    color: #be140b;
    padding-bottom: 0.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #be140b;
}

.content .related h4 {
    color: #4d8f97;
    padding-bottom: 0.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 0px;
}

table td {
    vertical-align: top;
    word-break: break-all;
}

li.group-list-li {
    margin-left: 5%;
}

li.group-list-li:before {
    font-size: 20px;
    font-weight: bold;
}

li.expandedItems:before {
    content: "-";
    font-size: 20px;
    font-weight: bold;
    /* margin-right: 5%; */
}

li.plus-sign:before {
    margin-left: -5%;
}

.cursor-pointer {
    cursor: pointer;
}

li,
li a {
    font-size: 15px !important;
    /*14px*/
    list-style: none;
}


/*
li a {
    color:#06064c;
} */

ul.breadcrumbs-trail li a:hover {
    color: white;
}

.li-click {
    background: #06064C !important;
    color: white !important;
}

.tableCellOnClick {
    background: #06064C;
    color: white;
}

.overflowTableCellData {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 3px;
}

.normalTableCell {
    text-wrap: inherit;
    word-break: break-word;
    white-space: pre-wrap;
}

.no-padding {
    padding: 0 !important;
}

.no-lr-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-left-margin {
    margin-left: 0 !important;
}

.no-right-margin {
    margin-right: 0 !important;
}

.no-lr-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.padding-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
}

@media ( min-width: 992px) {
    .top_nav_bar {
        height: 95px;
    }
}

@media ( min-width: 1200px) {
    .viewAl3File>.form-row {
        display: none;
    }
    .padding-on-large-screen {
        padding: 0px 60px 0px 60px;
    }
    .viewAl3File .homeHead {
        margin-bottom: 0;
    }
    .dashboardDesc {
        padding: 5px 0;
    }
    #fileImg {
        height: 100px;
        width: 100px;
    }
    .dashboardDesc {
        text-align: left;
    }
    li.nav-item {
        font-size: 14px !important;
    }
    .top_nav_bar .navbar-nav .nav-item .nav-link:hover {
        border-bottom: 2px solid #ff9933;
    }
    .createAccount {
        /*  border-right: 1px solid #80808036;
	    height: 350px; */
        padding-right: 0!important;
        padding-left: 0!important;
    }
    div.more-dropdown-menu>a.dropdown-item:hover {
        /*background: #ff9933;
		  border-bottom: 2px solid #ff9933;*/
        background: transparent;
        color: #ff9933;
    }
}

@media ( max-width: 1199px) {
    .groupElementsTable .download-json-div,
    .groupElementsTable .back-button {
        display: none;
    }
    .createAccount {
        padding: 10px;
    }
    .show_group_information span {
        font-size: 10px;
    }
    #demo th,
    #demo td {
        font-size: 12px;
    }
    /* .viewAl3File{
		padding:10px;
   }*/
    #al3-file,
    input.upload-file-input {
        width: 100% !important;
    }
    #json-file {
        width: 100% !important;
    }
    .homeHead {
        font-size: large;
    }
    #fileImg {
        height: 70px;
        width: 70px;
    }
    .dashboardDesc {
        text-align: center;
    }
    .homeHead {
        /*margin:0 0!important;*/
        font-weight: normal !important;
    }
    .top_nav_bar .navbar-nav .nav-link {
        border-bottom: 0px !important;
    }
    .top_nav_bar .navbar-nav .nav-item .nav-link.active {
        color: #ff9933;
        border-bottom: none!important;
        font-weight: 900;
    }
    div.more-dropdown-menu>a.dropdown-item.active {
        background: transparent;
        border-bottom: none!important;
        color: #ff9933;
        font-weight: 900;
    }
    div#navbarCollapse {
        position: absolute;
        top: 105px;
        left: 0px;
        background: rgb(6, 6, 76);
        width: 100%;
        padding-bottom: 10px;
        max-height: 250px;
        overflow-y: auto;
        z-index: 999;
    }
    div#navbarCollapse ul li {
        padding-left: 20px!important;
    }
    ul.user-login-ul .dropdown-menu {
        left: 0px !important;
    }
    footer .text-left,
    footer .text-right {
        text-align: center !important;
    }
    .top_nav_bar .navbar-nav .nav-item a.nav-link {
        width: 100%;
    }
    .dropdown-item {
        width: 65%!important;
    }
    li,
    li a {
        font-size: 15px !important;
        /*12px*/
    }
}

@media ( max-width: 640px) {
    #actions-sidebar {
        padding-bottom: 2rem;
        margin-bottom: 0;
    }
    .navbar-right {
        display: none !important;
    }
    #al3-file,
    .userLogin input[type="file"] {
        width: 100% !important;
        font-size: 12px;
        overflow: hidden;
    }
    .upload-file-input {
        width: 100% !important;
        font-size: 12px;
        overflow: hidden;
    }
    #json-file {
        width: 100% !important;
        font-size: 12px;
        overflow: hidden;
    }
    .section-box-4 .container {
        border: none!important;
    }
    .slider-img-div {
        display: none;
    }
}

@media ( max-width: 576px) {
    .no-padding-on-sm {
        padding: 0 !important;
    }
    .ul-margin-left {
        margin-left: 10px !important;
    }
    #selectedGroupEle {
        display: block !important;
    }
    .al3groups {
        display: none;
    }
    .selectedGroupEle .fa-bars {
        display: block !important;
    }
    /*.download-json-div{
		text-align: left!important;
		padding-left: 0!important;
	}*/
    .upload-form.login-signup>p {
        margin: 0 -20px;
    }
}

@media ( min-width: 576px) {
    .noticeSlides td:last-child {
        padding: 49.5px 49.5px 49.5px 0;
    }
    .noticeSlides td:first-child {
        padding: 52.5px 49.5px 49.5px 49.5px;
    }
}


/***************/

.top_nav_bar .navbar-nav .nav-item .nav-link.active {
    border-bottom: 2px solid #ff9933;
}

.download-json-div {
    text-align: right;
}

.top-heading-background {
    background: #116d76;
}

.siteBackColor {
    background: linear-gradient(to right, #83a4d4, #ffdeb6)
    /*#f8f2d6; #f1f5f9; */
}


/***************/

.text-xs-center {
    text-align: center;
}


/********FOOTER***********/

footer {
    background-color: #06064c;
    color: white;
    text-align: center;
    /*padding-top:10px;*/
    padding: .5rem 1rem;
    /*bottom: 0;
    position: fixed;
    width: 100%;*/
}

.top_nav_bar .navbar-nav .nav-link {
    color: rgb(255, 255, 255);
    border-bottom: 2px solid #06064c;
}

.top_nav_bar .navbar-nav .nav-link:hover {
    color: rgb(255, 255, 255);
}

.top_nav_bar .navbar-nav .nav-link .fa,
div#collapsibleNavbar ul li a .fa {
    padding-right: 5px;
    color: #ff9933;
}

#navAvatar {
    border-radius: 50%;
    color: #06064c;
    display: inline-block;
    font-size: 23px;
    font-weight: 900;
    height: 50px;
    line-height: 50px;
    opacity: 1;
    overflow: hidden;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    width: 50px;
    background-color: #ff9933;
}

.navbar-white {
    background-color: #06064c;
    /*#ff9933;*/
    color: white;
    font-weight: bold;
    padding: 0 1rem !important;
}

.container.h-100 .row {
    margin: 0 0;
}

.homeHead {
    word-wrap: break-word;
    /*margin: 18px 0;*/
    font-weight: bold;
}


/****Table CSS***/

.al3groups {
    height: 100%;
    /*calc(100% - 115px);*/
    border: 1px solid #343a40;
    border-right: none !important;
}

.al3GroupElement {
    height: 100%;
    /*calc(100% - 115px);*/
    background: white;
    border-bottom: 1px solid black !important;
}

.groupElementsTable {
    margin-top: 5px !important;
    box-shadow: 0 0 20px 5px #eee;
    font-size: 12px !important;
}

#demo {
    height: 100%;
    background: white;
}

.email label {
    cursor: default;
    font-weight: bold;
}

.postFormContent p {
    font-size: 14px;
}

.postFormContent {
    background: aliceblue;
    margin-top: 10px;
}

.fa-stack-2x {
    color: #06064c;
}

footer p,
footer ul {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0 0 0;
}

.postFormContent table {
    background: aliceblue;
}

.postFormContent table tr {
    border-bottom: none !important;
}

.noticeSlides {
    min-height: 180px;
    vertical-align: middle;
    /*padding: 49.4px;*/
}

.iconTd {
    width: 35px;
}

.postFormContent table tr td p {
    line-height: 1.325rem !important;
    word-break: normal !important;
}

.postFormContent table tr td {
    /*word-break: unset !important;
	word-break: break-all;
	word-wrap: break-word;*/
}

.download-json {
    font-size: 15px;
    /*margin-bottom: 1%;
	margin-top: 1%;*/
    width: auto;
    margin: 0!important;
}

#selectedGroupEle {
    font-size: 12px;
    margin: 0 30px;
    display: none;
}

.selectedGroupEle {
    /*box-shadow: 0 0 20px #eee;*/
    padding: 0 10px;
    color: #06064c;
}

.selectedGroupEle .fa-bars {
    /*padding: 5px;
	background: #06064c;
	border-radius: 50%;*/
    padding: 2px;
    position: absolute;
    float: right;
    color: #06064c;
    z-index: 99;
    display: none;
}

.viewAl3File {
    /*padding-bottom: 10px;*/
    margin-top: 5px;
    /* height: 75%; */
    /*calc(100% - 166px);*/
}

.tableHead {
    margin: 0;
    padding: 4px 10px;
    font-size: medium;
    font-weight: bold;
    word-break: break-all;
}

.viewAl3File .btn {
    font-size: small;
    /*margin-bottom: 1%;
	margin-top: 1%;*/
    width: auto;
    font-weight: bold;
    border-radius: .25rem;
}

.upload-file .btn {
    width: auto;
    font-weight: bold;
    border-radius: .25rem;
}


/*****Dashboard slides****/

.notices {
    color: #06064c;
    font-size: medium!important;
}

.slide-button {
    padding: 8px 8px !important;
    background-color: #ffaf4b !important;
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    z-index: 99;
    height: 45px;
    width: 35px!important;
}

.btn-display-left {
    position: absolute;
    top: 50%!important;
    left: 0%!important;
    transform: translate(0%, -50%);
    -ms-transform: translate(-0%, -50%);
}

.btn-display-right {
    position: absolute;
    top: 50%!important;
    right: 0%!important;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}

.slide-animate-right {
    position: relative !important;
    animation: animateright 0.4s;
}

.fa-linkedin-in {
    color: white !important;
}

.loginOptionsButton {
    margin: 5px 0;
}

.j2al3description {
    padding: 10px 0 0 0;
}

#collapsibleNavbar .navbar-nav {
    margin-left: 0;
}

.dataTables_filter input[type="search"] {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzQ0ODUiICAgdmlld0JveD0iMCAwIDIxLjk5OTk5OSAyMS45OTk5OTkiICAgaGVpZ2h0PSIyMiIgICB3aWR0aD0iMjIiPiAgPGRlZnMgICAgIGlkPSJkZWZzNDQ4NyIgLz4gIDxtZXRhZGF0YSAgICAgaWQ9Im1ldGFkYXRhNDQ5MCI+ICAgIDxyZGY6UkRGPiAgICAgIDxjYzpXb3JrICAgICAgICAgcmRmOmFib3V0PSIiPiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+ICAgICAgICA8ZGM6dHlwZSAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4gICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPiAgICAgIDwvY2M6V29yaz4gICAgPC9yZGY6UkRGPiAgPC9tZXRhZGF0YT4gIDxnICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLC0xMDMwLjM2MjIpIiAgICAgaWQ9ImxheWVyMSI+ICAgIDxnICAgICAgIHN0eWxlPSJvcGFjaXR5OjAuNSIgICAgICAgaWQ9ImcxNyIgICAgICAgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjAuNCw4NjYuMjQxMzQpIj4gICAgICA8cGF0aCAgICAgICAgIGlkPSJwYXRoMTkiICAgICAgICAgZD0ibSAtNTAuNSwxNzkuMSBjIC0yLjcsMCAtNC45LC0yLjIgLTQuOSwtNC45IDAsLTIuNyAyLjIsLTQuOSA0LjksLTQuOSAyLjcsMCA0LjksMi4yIDQuOSw0LjkgMCwyLjcgLTIuMiw0LjkgLTQuOSw0LjkgeiBtIDAsLTguOCBjIC0yLjIsMCAtMy45LDEuNyAtMy45LDMuOSAwLDIuMiAxLjcsMy45IDMuOSwzLjkgMi4yLDAgMy45LC0xLjcgMy45LC0zLjkgMCwtMi4yIC0xLjcsLTMuOSAtMy45LC0zLjkgeiIgICAgICAgICBjbGFzcz0ic3Q0IiAvPiAgICAgIDxyZWN0ICAgICAgICAgaWQ9InJlY3QyMSIgICAgICAgICBoZWlnaHQ9IjUiICAgICAgICAgd2lkdGg9IjAuODk5OTk5OTgiICAgICAgICAgY2xhc3M9InN0NCIgICAgICAgICB0cmFuc2Zvcm09Im1hdHJpeCgwLjY5NjQsLTAuNzE3NiwwLjcxNzYsMC42OTY0LC0xNDIuMzkzOCwyMS41MDE1KSIgICAgICAgICB5PSIxNzYuNjAwMDEiICAgICAgICAgeD0iLTQ2LjIwMDAwMSIgLz4gICAgPC9nPiAgPC9nPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: 5px 7px !important;
    padding-left: 25px;
    margin: 0;
}

.dot {
    height: 13px!important;
    width: 13px!important;
    padding: 0 ;color: #000 !important;
    background-color: #fff !important;
    cursor: pointer;
    border: 1px solid #ccc !important;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}

.w3-white,
.dot:hover,
.carousel-indicators li.active {
    color: #000 !important;
    background-color: #ffaf4b !important;
}

.badges_container {
    position: absolute;
    border: 0;
    text-align: center !important;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%);
    z-index: 99;
}

.viewAl3FileHistory {
    padding: 4px 0;
}

.viewAl3FileHistory label,
.dataTables_info {
    /*, #previousAttempts_previous, #previousAttempts_next {*/
    color: #06064c !important;
    font-weight: bold;
}

#collapsibleNavbar nav {
    font-size: 12px;
}

ul.breadcrumbs-trail li {
    display: inline-block;
    padding: 0 5px;
}

.breadcrumbs-trail {
    background-color: transparent !important;
    margin-left: 0;
    margin-bottom: 0 !important;
}

.login-signup {
    /*padding: 20px 40px !important;*/
    margin-top: 20px;
}

.login-signup .input.password:before,
.login-on-signup .input.password:before {
    content: '\F023';
}

.login-signup .input.email:before,
.signupForm,
.login-on-signup .input.email:before {
    content: "\f0e0";
}

.login-signup .input.email:before,
.login-signup .input.password:before,
.login-on-signup .input.password:before,
.login-on-signup .input.email:before {
    color: #CACBCC;
    font-size: 16px;
    left: 21px;
    line-height: 1;
    margin-top: 16px;
    position: absolute;
    text-align: center;
    /*top: 0;*/
    width: 24px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    z-index: 2;
    margin-top: 10px;
}

input.al3-input-email,
input.al3-input-password {
    padding: 11px 10px 12px 40px;
    margin: 0 0 0.4rem 0;
}

.asterisc {
    color: red
}

.make-text-bold {
    font-weight: bold;
}

.paddind-15-left {
    padding-left: 15px;
}

.white-background {
    background: white;
}

.set-top-margin {
    margin-top: 20px;
}

.set-top-bottom-margin {
    margin: 10px 0;
}

.set-top-bottom-margin-tables {
    margin: 4px 0;
}

.payment-error-container {
    background: white;
    padding: 10px 5px 25px 5px;
}

div#navbarCollapse ul li {
    padding-left: 10px;
}

.user-login-ul {
    margin-right: -15px;
    margin-bottom: 0;
}

.icon-size {
    font-size: 40px !important;
    padding: 0px 5px 1px 5px;
}

ul {
    list-style-type: none;
}

span.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 153, 51, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

button.navbar-toggler {
    border-color: #ff9933;
}

.card .card-body .price {
    font-size: 35px;
    font-weight: 700;
    color: #06064c;
    letter-spacing: -1px;
    margin: 25px 0 20px 0;
}

.card .card-footer a.btn-xsmall {
    color: #FFF !important;
    border: none;
    background-color: #3297d3;
    /* margin: 25px 0 15px 0; */
    width: 70%;
    padding: 10px;
    text-align: center;
    letter-spacing: -0.5px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}

.card .card-footer a.btn-xsmall:hover {
    opacity: .8;
    color: #FFF !important;
}

.checkout_steps_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*border-top: 1px solid #757474;
	border-bottom: 1px solid #757474;*/
}

.checkout_steps_list>li {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 0px 15px;
    /*font-size: 15px !important;*/
    text-decoration: none;
}

.checkout_steps_list>li.active_page {
    /* background:#06064c; */
    font-weight: bold;
    /* color: white; */
    border-bottom: 2px solid #06064c;
}

.checkout_steps_list>li a:hover {
    background-color: none;
}

.order-details-on-license-details {
    border-top: 1px solid;
    border-left: 1px solid;
    padding: 10px 5px;
    border-right: 1px solid;
}

.success-message {
    color: green;
}

.unassign-license-button {
    color: white;
    background: #06064c;
    padding: 5px 8px;
}

.product-license-summary-td {
    text-align: center;
    border: none !important;
}

.billing-address-container-review-order {
    background: white;
    /*padding: 5px 10px 10px 20px;*/
    border-radius: 0.25rem;
}

.review-order-min-height {
    border-radius: 0.25rem;
}

#privacy_policy_agree_checkout {
    width: 19px;
    height: 19px;
    top: 5px;
    margin-bottom: 0;
    vertical-align: middle;
}

ul.checkout_steps_list li a,
ul.checkout_steps_list li {
    font-size: medium;
}

.main-container {
    margin-bottom: 15px;
}

.checkout-submit-button>.submit {
    text-align: center;
}

.text-align-center {
    text-align: center;
}

.dataTables_length>label,
.dataTables_filter>label {
    color: #06064c !important;
    font-weight: bold;
}

.cart-item-count-badge {
    background: #ff9933;
    font-size: 12px !important;
    border-radius: 50% !important;
    color: white;
}

.dataTables_length>label>select {
    width: 70px;
}

.dataTables_filter>label>input {
    display: inline-block;
    width: auto !important;
}

.break-cell-word td,
th {
    word-break: break-word;
}

.text-align-right {
    text-align: right;
}

.container-shadow {
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}

.border-table {
    width: 100%;
    border-collapse: collapse !important;
}

.border-table,
.border-table th,
.border-table td {
    border: 1px solid black !important;
}

.tabs-on-view-page>li>a.active {
    border-bottom: 2px solid #ff9933 !important;
    background: #06064c !important;
}

.tabs-on-view-page>li>a {
    background: #28a745!important;
    color: white !important;
    padding: 2px !important;
}

.exe-download-min-width {
    min-width: 240px;
}

.view-cart-table-outer-container {
    overflow: auto;
    padding: 20px 20px 5px 20px;
    /*background:white;*/
}

.group-element-defination-container {
    background: white;
    margin-bottom: 10px;
    border: 1px solid black;
    border-top: 0px;
}

.group-element-defination-container>ul {
    padding: 3px 1rem;
    margin: 0;
}

.table-row-active {
    background: #06064c!important;
}

.table-row-active>td {
    color: white!important;
}

.table-row-active>td>a {
    color: white!important;
}

.table-row-active>td.sorting_1 {
    background: #06064c!important;
}

.element-group-div {
    height: 135px;
    overflow: scroll;
    font-size: 13px;
    padding: 0px 10px;
}

.al3-parsed-data-table>tbody>tr>td {
    font-size: 13px;
}

.al3-parsed-data-table>thead>tr>th {
    padding: 3px;
}

a.change-visited-color:visited {
    color: #609;
}

.social_login_loader {
    display: none;
}

textarea.enquiry-requirements {
    height: 20px;
}

.services-checkboxes>div.checkbox {
    display: inline;
    margin-right: 10px;
}

.services-checkboxes>label {
    display: block;
}

.margin-top-10 {
    margin-top: 10px;
}

.container-border-radius {
    border-radius: .25rem;
}

.padding-15 {
    padding: 15px;
}

.light-gray-bg {
    background: lightgrey;
}

.pricing-h-text-color {
    color: #06064c
}

input.terms-privacy-checkbox {
    margin-top: 5px;
    height: 17px;
    width: 17px;
    margin-bottom: 0px;
}

#footerlinks {
    margin-bottom: 0px;
}

#footerlinks li {
    display: inline;
}

#footerlinks li a {
    color: white;
    font-size: small;
}

div.more-dropdown-menu {
    background: #06064C;
    right: 0;
    /*left:unset;*/
    min-width: 14rem!important;
    z-index: 2148!important;
}

div.more-dropdown-menu>a.dropdown-item {
    border-bottom: 2px solid #06064c;
}

div.more-dropdown-menu>a.dropdown-item.active {
    /*background: #ff9933;
	  border-bottom: 2px solid #ff9933;*/
    background: transparent;
    color: #ff9933;
    font-weight: bold;
}

div.more-dropdown-menu>a.dropdown-item:hover {
    background: transparent;
}

input.upload-zip-file-for-crop {
    width: auto;
}

.crop-button-wrap>input[type=button] {
    margin-left: 15px;
}

.cropped-image-review {
    border: 1px solid;
}

.choose-another-file-wrap {
    margin-bottom: 10px;
}

.margin-bottom-10 {
    margin-bottom: 10px!important;
}

.crop-select-wrap {
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
    border-radius: .25rem;
    border: 1px solid rgba(0, 0, 0, .125);
}

i.download-icon-css {
    font-size: 20px;
}

.download-json-csv-format {
    font-size: 13px;
    color: blue;
    cursor: pointer;
}

div.adjust-margin {
    margin: -20px -15px 0px -15px;
}

.adjust-h2 {
    font-size: 15px;
    font-weight: normal;
    margin: 0px;
    font-family: inherit;
}

.remove-margin {
    margin: 0px;
}

.contact-form div input {
    margin-bottom: 5px!important;
}

.adjust-h1-heading {
    font-size: 1rem;
    font-family: inherit;
    margin: 0px;
    padding: 0px;
    font-weight: bold;
    display: inline-block;
}

.download-btn {
    right: 6px;
    position: absolute;
    top: 6px;
    background: #06064c !important;
}

.download-btn:hover,
.download-btn:focus {
    color: #fff;
}

.right-border {
    border-right: 1px solid;
}

.right-align-description {
    background: #06064C;
    border-radius: .25rem;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}

.group-name-style {
    background: #F9CB9C;
    padding: 10px 10px;
}

.transaction-count {
    background: #4A86E8;
    padding: 10px 10px;
    cursor: pointer;
    color: white!important;
    border-bottom: 1px solid;
}

.group-name-style-no-element {
    background: #CCCCCC;
    padding: 10px 10px;
}

.individual-group-elements table {
    margin-bottom: 0px;
}

[data-toggle="collapse"] .transaction-collapse-icon:before {
    content: "\f068";
}

[data-toggle="collapse"].collapsed .transaction-collapse-icon:before {
    content: "\f067";
}

.no-group-found,
.no-matched-elements {
    margin-bottom: 0px!important;
    border: none!important;
    border-radius: 0px!important;
}

.search-al3-data {
    background-color: #ffffff!important;
    background-image: url("/img/search-icon.png")!important;
    background-size: 35px 35px!important;
    background-position: right center!important;
    background-repeat: no-repeat!important;
}

.tree-flat-al3-tabs {
    border-bottom: 0px!important;
}

#return-to-top {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    z-index: 1000;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.group-list-li>a>span {
    font-size: 13px;
}

a[aria-expanded="true"]:after {
    transform: rotate(180deg);
}

.navbar-nav .dropdown-menu {
    float: left!important;
}


/*-------------Media Queries---------------------------*/

@media all and (max-width: 768px) and (min-width: 768px) {
    .container.padding-on-large-screen>div:first-child {
        margin-top: 100px;
    }
}

@media all and (max-width: 768px) {
    /* .plansListContainer .plansList {
		text-align: center;
	}
	.plansListContainer .plansList li.pannel {
		display: inline-block;
		margin-bottom: 30px;
	} */
    .checkout-steps-margin-bottom {
        margin-bottom: 2px;
    }
    .login-signup p:last-child {
        font-size: 0.9rem;
    }
    .viewAl3File .btn {
        margin-bottom: 1%!important;
    }
    .container.padding-on-large-screen {
        min-height: calc(100% - 144px)!important;
        /** 190px **/
    }
    footer img.winsurlogo {
        margin: 0.5rem 0;
    }
    .license_details {
        padding-bottom: 15px;
    }
    .coordinateText {
        font-size: small;
    }
    /*footer p{
		margin:0!important;
	}*/
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .tableHead.col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 992px) {
    th.total-seats-review-order {
        width: 20%;
    }
    .price-review-order {
        width: 33%;
    }
    .review-order-min-height {
        min-height: 325px;
    }
}

@media all and (max-width: 640px) {
    .license-summary-table-width,
    .previous-history-table-width {
        min-width: 600px;
    }
    .license-summary-table-responsive,
    .previous-history-table-responsive {
        overflow: scroll;
    }
    .review-order-table-on-sm {
        min-width: 520px;
    }
    .noticeSlides {
        min-height: 310px;
        padding: 0 30px 0 35px;
    }
    .postFormContent table tr td {
        height: 310px;
        vertical-align: middle;
        padding: 0;
    }
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        float: none;
        text-align: left !important;
    }
    .dataTables_paginate {
        text-align: left !important;
    }
    .dataTables_info {
        text-align: left !important;
    }
}

.signupForm {
    background: white;
    padding: 0 !important;
    margin-bottom: 20px;
    border-radius: 5px;
}


/*
@media screen and (max-width: 640px) {
	.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter
		{
		float: none;
		text-align: left !important;
	}
	.dataTables_paginate {
		text-align: left !important;
	}
	.dataTables_info {
		text-align: left !important;
	}
}
*/

@media all and (max-width: 991px) {
    .set-top-margin-at-991 {
        margin-top: 20px;
    }
}

@media all and (max-width: 320px) {
    img.al3-navbar-logo {
        width: 210px;
    }
    .download-json-csv-extracted div input {
        font-size: 14px;
    }
}

ul.user-login-ul .dropdown-menu {
    /* left: -75px; */
    right: 0px!important;
    min-width: 14rem!important;
    z-index: 2148!important;
    left: auto!important;
}

.createAccount .form-group {
    margin-bottom: 0;
}

.loginOptions {
    margin-bottom: 1rem !important;
    padding: 0 10px;
}

.btn {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    text-overflow: ellipsis;
}

@-moz-document url-prefix () {
    .break-cell-word td,
    th {
        word-break: inherit;
    }
}

.privacy-policy-agree {
    margin: 20 15px!important;
}


/****Changes Due to sfari***/

.upload-form .form-row,
userLogin .form-row {
    padding: 0 10px;
}

.floatThead-wrapper {
    height: 100%;
}


/****Card-layout****/

.form-row>.card.col,
.form-row>.card[class*=col-] {
    padding-left: 0;
    padding-right: 0;
}

.card-header {
    background-color: var(--card_header_color);
    color: white;
}

.card-parser-plans {
    margin: 10px;
}

table thead>tr {
    background-color: var(--child);
    color: var(--button_text_color)
}

table thead>tr:nth-child(2) {
    background: lightgrey;
}

.card.checkoutLogin,
.card.signupCheckoutForm {
    display: none;
}

#checkoutLoginUser,
#checkoutRegisterUser {
    color: #007bff;
}

#checkoutLoginUser:hover,
#checkoutRegisterUser:hover {
    color: #0056b3;
}

.createAccount label {
    margin-bottom: 1px;
}

.card-info-window {
    background: #06064C;
    color: white;
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

input#json-csv-file {
    margin-top: 20px;
}


/**********New home page*******/

.slder_home_page header {
    margin-top: -95px;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, .10)
}

.slder_home_page .carousel-item {
    height: 100vh;
    min-height: 350px;
    /* background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; */
}

.slder_home_page .carousel-item:nth-child(1) {
    background-repeat: no-repeat;
    background-position: right;
    background-size: 50% 40%;
    -moz-background-size: 50% 40%;
    -o-background-size: 50% 40%;
}

.slder_home_page .carousel-item:nth-child(2) {
    background-repeat: no-repeat;
    background-position: right;
    background-size: 40% 40%;
    -moz-background-size: 40% 40%;
    -o-background-size: 40% 40%;
}

.slder_home_page .carousel-indicators li {
    border: 0.5px solid orange;
}

.home-heading-text {
    color: #06064c;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.slder_home_page .slider_row {
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* padding-top: 11%; */
}

.slder_home_page .slider-img {
    border-radius: 5px;
    box-shadow: 0 9px 22px 0 #06064ca8, 0 -7px 30px 0 #06064ca8;
    padding: 20px;
}

.slider_row h2 {
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #06064c;
}

.slder_home_page .loginOptionsButton {
    padding: 0;
}

.slder_home_page .border-box-section .loginOptionsButton {
    left: 0;
    right: 0;
    margin: auto;
}

.section-box-02 li {
    font-size: 1rem !important;
    list-style: disc;
}

.border-box-section .row {
    left: 0;
    right: 0;
    margin: auto;
    /* border-radius: 5px;
    box-shadow: 0 9px 22px 0 #06064ca8, 0 -7px 30px 0 #06064ca8;*/
}

.border-box-section img {
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 9px 22px 0 #06064ca8, 0 -7px 30px 0 #06064ca8;
}


/* .contact-us-box{
	background-image: url('/img/contact-us.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
    background-size: contain;
    background-position: 100% 100%;
    width: 100%;
    height: 250px;
    z-index: 500;
} */

.contact-us-box h2 {
    color: #06064c;
    font-weight: bold;
}

.contact-us-box {
    height: 50%;
}


/* .section-box-4{
	background-repeat: no-repeat;
    background-position: right;
    background-size: 100%;
     -moz-background-size: 100%;
  -o-background-size: 50% 40%;
} */


/* .section-box-4 .image, */

.carousel-item .image,
.section-box-7 .image {
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 50%;
    position: absolute;
    z-index: 500;
    opacity: 0.4;
    background-size: contain;
    background-repeat: no-repeat;
}


/* .section-box-7 .image{
	height: 45%!important;
} */

.carousel-item .container,
.section-box-7 .container {
    border: none!important;
}


/* .section-box-4 .container */

.carousel-item .container,
.section-box-7 .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    /* text-align: center; */
    z-index: 1000;
    color: black;
    margin: 0 auto;
    position: relative;
    border-top: 2px solid #06064c;
    border-bottom: 2px solid #06064c;
}


/* .section-box-5{
	color: white;
    background-color: #06064c;
} */

.slder_home_page .loginOptionsButton a button {
    border: 2px solid #007bff;
    padding: 10px 0;
    font-weight: bold;
}

.slder_home_page .loginOptionsButton a button:hover {
    background: none;
    color: #007bff !important;
    border: 2px solid #007bff;
}

.section-box-7 .loginOptionsButton button {
    border: 2px solid #ffc107!important;
}

.section-box-7 .loginOptionsButton a button:hover {
    background: none!important;
    color: black !important;
    border: 2px solid #ffc107;
}

.text-justify {
    text-align: justify;
}

.text-link {
    color: #d39e00;
}

.text-link:hover {
    color: #ff920a;
}

.text-link:visited {
    color: #ff920a;
}

.bg-color-added {
    background-color: #ff920a !important;
}

.no-match-found {
    background-color: #ff920a;
    color: #fff;
}

.tree-loader {
    background: #0c0c0c6e;
    position: absolute;
    left: 7px;
    top: 25px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    color: #fff;
}

.flat-view-loader {
    background: #0c0c0c6e;
    position: absolute;
    left: 7px;
    top: 25px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    color: #fff;
}

.tree-loader-tab {
    position: relative;
}

.flat-view-loader-tab {
    position: relative;
}

.container {
    min-height: 77.6%;
}

.a404 {
    color: #08c;
    font-size: 400%;
    margin-bottom: 0px;
}

.b404 {
    font-size: 200%;
}

.c404 {
    font-size: 130%;
}

@media only screen and (max-width: 767px) {
    .a404 {
        color: #08c;
        font-size: 400%;
        margin-bottom: 0px;
    }
    .b404 {
        font-size: 150%;
    }
    .c404 {
        font-size: 100%;
    }
}

@media (min-width: 767px) and (max-width: 769px) {
    .a404 {
        color: #08c;
        font-size: 600%;
    }
    .b404 {
        font-size: 250%;
    }
    .c404 {
        font-size: 120%;
    }
}

.checkout-submit-button {
    padding-top: 10px;
}

.contactus-btn {
    text-align: center;
    background-color: #06064C;
    padding: 10px;
    color: #fff;
}

.send-msg {
    padding-left: 10px;
    font-weight: bold;
}

#frmCheckPassword {
    border-top: #F0F0F0 2px solid;
    background: #808080;
    padding: 10px;
}

.demoInputBox {
    padding: 7px;
    border: #F0F0F0 1px solid;
    border-radius: 4px;
}

.strong-password {
    color: #15FF00;
    font-weight: 500;
}

#password-strength-status {
    font-size: 14px;
}

.password-margin {
    margin: 0px !important;
}

.error-message>ul {
    margin: 0px;
}

.weak-password {
    color: red;
}

.upd-password {
    margin: 0px !important;
}

.upd-confirm-password {
    margin-top: 20px !important;
}

.back-btn {
    display: inline;
    /* padding: 53px; */
    color: blue !important;
    font-weight: bold;
    font-size: 15px;
}

.padding-14px {
    padding-top: 14px;
}

.blur {
    -webkit-filter: blur(8px);
    -moz-filter: blur(8px);
    -ms-filter: blur(8px);
    -o-filter: blur(8px);
    filter: blur(2px);
}

.loader-img {
    position: absolute;
    left: 47%;
    height: 20%;
    top: 50%;
    display: none;
}

.sticky-top {
    height: auto;
}

a.documentPage {
    font-weight: bold;
}

.hasTooltip span {
    display: none;
    color: white;
    text-decoration: none;
    padding: 4px;
}

.hasTooltip:hover span {
    display: block;
    position: absolute;
    background-color: black;
    border-radius: 5px;
    margin: 2px -80px;
}

.hasTooltip:hover span:after {
    background: black;
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
    right: 0;
    margin: auto;
    top: -2px;
    transform: rotate(45deg);
}

.hasTooltip span em {
    position: relative;
    z-index: 2;
    font-style: normal;
    font-size: 12px;
}

.apisteps {
    font-size: 17px;
}

.steps {
    font-weight: bold;
    font-size: 16px !important;
}


/*custom css*/

.planname {
    color: green;
    font-size: 19px !important;
    margin-bottom: 3px;
}

@media (min-width: 320px) and (max-width: 500px) {
    .planmaindiv {
        width: 70% !important;
    }
    .otp {
        width: 70% !important;
    }
}

@media (min-width: 320px) and (max-width: 900px) {
    .sub_div {
        width: 90% !important;
    }
}

.main_div {
    margin-top: 0px;
}

h1 {
    font-size: var(--size_heading);
}

h2 {
    font-size: var(--size_subheading);
}