html, body, div, span, applet, object, iframe,
p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    font-size: 100%;
  border: 0;
    font: inherit;
    vertical-align: baseline;
  font-family: 'Montserrat', sans-serif;
  zoom:.985;
}
b,strong{
    font-weight: bold;
}
body{
    position: relative;
    font-size: 16px;
}
.container{
    padding: 0px 30px;
}
body{
    height: 100vh;
  width: 100%;
    background-size: contain;
    background: #00245B;
    color: #D6D6D6;
}
body p{
    color: #fff;
    font-weight: 300;
}
#home{
    padding-top: 100px;
}
#page-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191919;
    z-index: 1;
    opacity: .2;
    display: none;
}
#page-wrapper{
    position: fixed;
    height: 100%;
    background-size: contain;
    width: 100%;
}
#page-wrapper #viewport{
    height: 100%;
    display: flex;
    flex: auto;
    flex-direction: column;
    max-height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: bottom right;
}
#page-wrapper #viewport .page-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 10000;
    background: #111;
    opacity: .2;
}
#page-wrapper #viewport #header{
    flex: none;
    align-self: flex-end;
    height: auto;
    width: 100%;
    background: #EAEAEA;
}
#page-wrapper #viewport #banner {
        flex: none;
        align-self: flex-end;
        height: auto;
        width: 100%;
        color: darkblue;
        background: white;
        padding: 8px;
    }
#page-wrapper #viewport #header .container{
    text-align: center;
}
#page-wrapper #viewport #main{
    flex: auto;
    overflow-y: auto;
    padding-bottom: 40px;
}
/* #page-wrapper #viewport #main .container{
    overflow-x: hidden;
} */
#page-wrapper #viewport #footer{
    flex: none;
    height: auto;
}
#scroll-dentifier{
    padding: 10px;
    text-align: center;
    display: none;
    cursor: pointer;
}
#scroll-dentifier .fa{
    font-size: 30px;
    color: #fff;
}
.logo img{
  width: 80%;
  max-width: 160px;
}
.divider{
  clear: both;
  background: #2aa5e1;
  margin: 30px auto;
  height: 8px;
}
.divider-sm{
  width: 20%;
}

/* BUTTON */
.btn{
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 20px;
     -webkit-appearance: none;
}
.btn .fa{
    font-size: 14px;
}
.btn.btn-danger{
  background: #cb3525;
}
.btn.btn-info{
  background: #3ebbf8;
}
.btn-wrapper{
  padding: 5px 0;
}
.btn-wrapper.footer-btn{
    position: absolute;
    bottom: 30px;
    left: 0; right: 0;
    padding: 0 30px;
}
/* BUTTON */

/* FORM */
.form-field{
  display: inline-block;
  margin: 20px 0;
    position: relative;
}
.form-field.full{
  width: 100%;
  display: block;
}
.form-field.half{
    width: 49%;
    display: inline-block;
    margin: 5px 0;
}
.form-field.half.left{
    padding-right: 10px;
}
.form-field.half.right{
    padding-left: 10px;
}
.form-field.card-expiry, .form-field.card-cvv{
    position: relative;
}
.form-field:before{
  font-weight: bold;
  position: absolute;
  top: 10px;
  padding-left: 15px;
  font-size: 20px;
  color: #fff;
}
.form-field.card-expiry:before{
    content: 'Exp';
}
.form-field.card-expiry input{
    padding-left: 58px;
}
.form-field.card-cvv:before{
    content: 'CVV';
}
.form-field.card-cvv input{
    padding-left: 65px;
}
.form-field input{
  background: #fff;
  width: 100%;
  padding: 10px 15px;
  font-size: 18px;
    border-radius: 3px;
    color: #00245B !important;
}
.form-field label.checkbox input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.form-field label.checkbox{
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -ms-user-select: none;
    text-align: left;
    padding-left: 45px;
    padding-top: 5px;
    font-weight: 600;
    color: #fff;
}
.cb1, .cb2 {
    display: inline-block;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
.form-field label.checkbox .checkmark{
    position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
    border: 1px solid #fff;
    border-radius: 3px;
}
.form-field label.checkbox .checkmark:before{
    left: 10px;
    top: 5px;
    width: 9px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: none;
    content: '';
    position: absolute;
}
.form-field label.checkbox input:checked ~ .checkmark:before{
    display: block;
}
.form-field label.checkbox input:checked ~ .checkmark{
    border: 0;
    background: #87D3E3;
}
.form-field:not(.white) input{
    border: 1px solid #fff;
    color: #fff;
}
.form-field:not(.white) input::placeholder{
  color: #BEBEBE;
}
.form-field .radiobutton	{
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -ms-user-select: none;
    text-align: left;
    padding-left: 38px;
    padding-top: 12px;
    color: #D6D6D6;
}
.form-field .radiobutton b, .form-field .radiobutton strong{
    font-weight: bold;
    font-size: 18px;
}
.form-field .radiobutton input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.form-field .radiobutton .radiomark{
    position: absolute;
    top: 6px;
    left: 0;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 2px solid #D6D6D6;
}
.form-field .radiobutton .radiomark:before{
    left: 5px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #87D3E3;
    border: solid #87D3E3;
    border-width: 0 3px 3px 0;
    display: none;
    content: '';
    border-radius: 50%;
    position: absolute;
}
.form-field .radiobutton input:checked ~ .radiomark:before{
    display: block;
}

.form-field .star-button{
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -ms-user-select: none;
    text-align: left;
    padding-left: 40px;
    padding-top: 5px;
    color: #fff;
}
.form-field .star-button input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
}
.form-field .star-button .starmark{
    position: absolute;
    top: 7px;
    left: 5px;
    height: 25px;
    width: 25px;
}
.form-field .star-button .starmark:before{
    content: "\f006";
    position: absolute;
    font: normal normal normal 14px/1 FontAwesome;
    top: 3px; left: 5px;
    font-size: 25px;
}
.form-field .star-button input:checked ~ .starmark:before{
    content: "\f005";
}

.form-field .switch-button{
    position: relative;
    width: 100%;
    padding-left: 10px;
}
.form-field .switch-button{
    font-size: 18px;
    color: #fff;
    margin-bottom: 0px;
}
.form-field .switch-button input{
    position: absolute;
    opacity: 0;
}
.form-field .switch-button .switch-toggle{
    position: absolute;
  top: -4px;
  right: 8px;
  height: 30px;
  width: 60px;
  border-radius: 20px;
  /* background: #2aa5e1; */
    background: #cb3525;
}
.form-field .switch-button .switch-toggle:before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
}
.form-field .switch-button input:checked ~ .switch-toggle{
    /* background: #cb3525; */
    background: #2aa5e1;
}
.form-field .switch-button input:checked ~ .switch-toggle:before{
    right: 0;
    left: unset;
}
/* FORM */

.no-padd{
    padding: 0px;
}
.v-middle{
    display: table-cell;
    vertical-align: middle;
}

.loading-spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.blinking {
  animation: blinker 2s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.page.ng-leave 	{ z-index:9999; }
.page.ng-enter 	{ z-index:8888; }
/* PAGE TRANSITION */
.page-transition.ng-leave{
  -webkit-animation:slideOutLeft 0.5s both ease-in;
    -moz-animation:slideOutLeft 0.5s both ease-in;
    animation:slideOutLeft 0.5s both ease-in;
}
.page-transition.ng-enter{
  -webkit-animation:slideInRight 0.5s both ease-in;
    -moz-animation:slideInRight 0.5s both ease-in;
    animation:slideInRight 0.5s both ease-in;
}
/* slide in from the right */
@keyframes slideInRight {
    from 	{ transform:translateX(100%); }
    to 		{ transform: translateX(0); }
}
@-moz-keyframes slideInRight {
    from 	{ -moz-transform:translateX(100%); }
    to 		{ -moz-transform: translateX(0); }
}
@-webkit-keyframes slideInRight {
    from 	{ -webkit-transform:translateX(100%); }
    to 		{ -webkit-transform: translateX(0); }
}
/* slide in from the bottom */
@keyframes slideOutLeft {
    to 		{ transform: translateX(-100%); }
}
@-moz-keyframes slideOutLeft {
    to 		{ -moz-transform: translateX(-100%); }
}
@-webkit-keyframes slideOutLeft {
    to 		{ -webkit-transform: translateX(-100%); }
}

*|*:not(:root):fullscreen {
  position:fixed !important;
  top:0 !important; right:0 !important; bottom:0 !important; left:0 !important;
  margin:0 !important;
  box-sizing:border-box !important;
  min-width:0 !important;
  max-width:none !important;
  min-height:0 !important;
  max-height:none !important;
  width:100% !important;
  height:100% !important;
  transform:none !important;

  /* intentionally not !important */
  object-fit:contain;
}
::backdrop {
  position:fixed;
  top:0; right:0; bottom:0; left:0;
}

*|*:not(:root):fullscreen::backdrop {
  background:black;
}

@media screen and (max-width: 375px){
    .home-menu-items .item .wrapper label{
        font-size: 18px;
    }
}

/* ADDITIONAL CSS */
a.lets-go .wrapper{
    display: table;
    border-radius: 50%;
    background: #87D3E3;
    width: 150px;
    color: #fff !important;
    height: 150px;
    margin: 50px auto 0;
}
a.lets-go .wrapper span{
    display: table-cell;
    vertical-align: middle;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}
.steps{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 105px;
}
.steps.step1{
    background-image: url('/img/step1.png');
}
.steps.step2{
    background-image: url('/img/step2.png');
}
.steps.step5{
    background-image: url('/img/step5.png');
}

.select2-container .select2-selection--single{
    padding: 8px 6px;
    font-size: 18px;
    height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder{
  color: #BEBEBE;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-width: 7px 7px 0 7px;
    left: 0%;
    top: 80%;
}
.select2-results__option{
    color: #00245B;
}
.rates, .documents{
    margin-top: 20px;
}
.rates ul, .documents ul{
    padding-left: 0;
}
.rates ul li, .insurance-details, .documents ul li{
    list-style-type: none;
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 3px;
    flex-wrap: wrap;
}
.rates ul li > div, .insurance-details > div, .documents ul li > div, .documents ul li > div p{
    color: #113E83;
}
.documents ul li > div p{
    font-size: 14px !important;
    margin-bottom: 0;
}
.rates ul li div.icon, .insurance-details > div.icon{
    max-width: 60px;
    color: #BEBEBE;
    flex-basis: 15%;
}
.documents ul li div{
    flex-basis: 83%;
}
.documents ul li div.icon{
    flex-basis: 15%;
    max-width: 60px;
}
.rates ul li div.icon .fa, .insurance-details > div.icon .fa, .documents ul li div.icon .fa{
    font-size: 40px;
}

.rates ul li > div h3, .insurance-details > div h3, .documents ul li > div h3{
    font-size: 20px;
    margin-bottom: 0px;
}
.rates ul li > div label, .insurance-details > div label, .documents ul li > div label{
    font-size: 14px;
    margin-bottom: 0px;
    display: block;
}
.rates ul li > div span, .insurance-details > div span, .documents ul li > div p{
    font-size: 12px;
}
.rates ul li:hover, .documents ul li:hover{
}
.rates ul li:hover *, .documents ul li:hover *{
}
.insurance-details{
    margin-top: 20px;
    margin-bottom: 25px;
}
.insurance-details .prices{
    flex-basis: 100%;
    margin-top: 5px;
}
.insurance-details .prices ul{
    border-bottom: 1px solid #113E83;
    padding-left: 0;
    border-top: 1px solid #113E83;
    margin-bottom:10px;
}
.insurance-details .prices ul li{
    list-style-type: none;
    padding: 10px 0px;
    display: flex;
}
.insurance-details .prices ul li > label{
  flex-basis: 80%;
}
.insurance-details .prices ul li > span{
    text-align: right;
    font-size: 14px;
    flex-basis: 20%;
}
.insurance-details .prices ul li:first-child{
    border-bottom: 1px solid #113E83;
}
.text-blue{
    color: #00245B;
}
.text-dark-gray{
    color: #707070;
}
.font-light{
    font-weight: 300;
}
.font-semi{
    font-weight: 600;
}
.text-green{
    color: #87D3E3;
}

/* ADMIN PAGE */
body.admin{
    background: #fff;
}
.login-page{
    height: 100vh;
    position: relative;
}
.login-page:before{
    background-image: url(/img/pattern.png);
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 55%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
}
.login-page .container, .login-page .container > .row > div, .login-page .container > .row{
    height: 100%;
}
.login-page .container > .row > div{
    padding: 45px;
}
.login-page .container > .row > div.col-sm-7{
    padding-left: 150px;
}
.login-page .container > .row > div.col-sm-5{
    background: #fff;
    padding-right: 0;
}
.login-page img{
    margin-bottom: 40px;
}
.admin .form-field input{
    border: 1px solid #707070;
}
.admin .form-field label.checkbox .checkmark{
    border: 1px solid #707070;
}
.row-wrap .form-field.half:first-child input{
    padding-right: 15px;
}
.row-wrap .form-field.half:last-child{
    padding-left: 15px;
}
.select2-container .select2-selection--single {
  padding: 7px 6px;
  font-size: 18px;
  height: auto;
  border: 1px solid #707070;
}

.left-banner .menu {
    display: inline-block;
}

.left-banner .menu {
    position: relative;
    margin-right: 20px;
}

.left-banner .menu ul {
    padding-left: 0;
    position: absolute;
    top: calc(100%);
    width: 170px;
    background: #fff;
    opacity: 0;
    height: 0;
    transition: height .5s;
    padding: 10px 0;
    z-index: 0;
    border: 1px solid #707070;
    border-radius: 3px;
}

.left-banner .menu ul li a {
    padding: 8px 15px;
    color: #707070;
    font-size: 14px;
    display: block;
    background: #fff;
}

.left-banner .menu ul li a:hover {
    color: #fff;
    background: #87D3E3;
    text-decoration: none;
}

.left-banner .menu:hover ul {
    height: auto;
    opacity: 1;
    z-index: 1000;
}

.left-banner .menu label {
    font-weight: bold;
    color: #00245B;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 0;
}

.left-banner .menu label .fa {
    position: relative;
    top: 4px;
    color: #707070;
    font-size: 28px;
    margin-right: 8px;
}

.left-banner .menu ul li {
    list-style-type: none;
    margin-left: 0;
}

.header {
    position: relative;
}
.header .container {
    position: relative;
}
.header .container .logo .logo-message {
    color: #002C77;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    padding-top: 10px;
}
.header .right-header {
    position: absolute;
    top: -10px;
    right: 50px;
    width: auto;
    width: auto;
}
.header .right-header .menu, .admin .header .right-header {
        display: inline-block;
    }
.header .right-header .menu {
        position: relative;
        top: 30px;
        margin-right: 20px;
    }
.header .right-header .menu ul {
            padding-left: 0;
            position:absolute;
            top: calc(100%);
            right: 0;
            width: 170px;
            background: #fff;
            opacity: 0;
            height: 0;
            transition: height .5s;
            padding: 10px 0;
            z-index: 1000;
            border: 1px solid #707070;
            border-radius: 3px;
        }
.header .right-header .menu ul li a {
                padding: 8px 15px;
                color: #707070;
                font-size: 14px;
                display: block;
                background: #fff;
            }
.header .right-header .menu ul li a:hover {
                    color: #fff;
                    background: #87D3E3;
                    text-decoration: none;
                }
.header .right-header .menu:hover ul {
            height: auto;
            opacity: 1;
        }
.header .right-header .menu label {
    font-weight: bold;
    color: #00245B;
    font-size: 16px;
    cursor: pointer;
}
.header .right-header .menu label .fa {
                position: relative;
                top: 4px;
                color: #707070;
                font-size: 28px;
                margin-right: 8px;
            }
.header .right-header .menu ul li {
            list-style-type: none;
            margin-left: 0;
}
.header-banner {
    text-align: center;
    background: #19b9aa;
}
.header-banner a {
    color: #fff;
}
.admin .breadcrumb-strip{
    padding: 10px;
    background: #00245B;
    color: #fff;
    margin-bottom:50px;
}
.admin .breadcrumb-strip label{
    margin-bottom: 0;
}
.nav.nav-tabs a {
    padding: 10px 15px;
    border-radius: 3px !important;
    background: #fff;
    color: #004cac;
    font-weight: bold;
    border: 0;
    margin-right: 10px;
}
.nav-tabs{
    border-bottom: 0;
  padding-top: 15px;
}
.nav.nav-tabs a:hover, .nav.nav-tabs a.active {
    border-radius: 3px !important;
    background: #87D3E3;
    color: #fff;
    border: 0;
}
.searchbox{
    position: relative;
}
#SearchTerm {
    color: #00245b;
}
.searchbox .form-field{
    margin: 0;
    width: 100%;
}
.searchbox input{
    padding: 10px 15px;
    padding-right: 40px;
    border: 1px solid #707070;
}
.searchbox button{
    position: absolute;
    top: 0; bottom: 0; right: 5px;
    z-index: 100;
    margin-top: 0;
    background: transparent;
    border: 0;
}
.searchbox button .fa{
    color: #707070;
    font-size: 22px;
}
.tab-content{
    margin-top: 30px;
}
/*table, th, td{
    border-collapse;
}
table{
    width: 100%;
}
table thead tr th {
    font-weight: bold;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid #00245B;
}
table tbody tr td {
    border-bottom: 1px solid #00245B;
    color: #fff;
    font-size: 14px;
}*/
.admin .pagination{
    display: block;
    margin-top: 50px;
}
.admin .pagination ul{
    margin-left: 0;
    padding-left: 0;
    display: inline-block;
}
.admin .pagination ul li{
    list-style-type: none;
    margin-left: 0;
    display: inline-block;
}
.admin .pagination ul li a{
    padding: 5px 12px;
    border: 1px solid #707070;
    margin-right: 10px;
    border-radius: 3px;
    font-size: 14px;
    color: #707070 !important;
    text-decoration: none !important;
}
.admin .pagination ul li:last-child a{
    margin-right: 0;
}
.admin .pagination ul li a:hover, .admin .pagination ul li a.current{
    background: #707070;
    color: #fff !important;
}
.checkbox-options{
    padding-left: 0;
}
.checkbox-options li{
    margin-left:0;
    list-style-type: none;
    display: inline-block;
    margin-right: 30px;
}
.checkbox-options label.checkbox{
    display: inline-block;
    color: #707070;
    font-size: 14px;
}
.admin .form-field label.checkbox{
    color: #707070;
    font-size: 14px;
}
#admin-page-wrapper{
    overflow-x: hidden;
}
.app #header img{
    width: 100%;
}

.sms .sms-head{
    padding: 20px 60px 10px;
    background: #113e83;
    text-align: left;
    position: relative;
    color: #fff;
}
.sms .sms-head .fa{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
}
.sms .sms-footer{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px 60px;
    display: flex;
}
.sms .sms-footer .fa.left{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    font-size: 20px;
}
.sms .sms-footer .fa.right{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 20px;
}
.sms .sms-footer div{
    width: 100%;
    flex-basis: 100%;
}
.sms .sms-footer div input{
    padding: 8px 15px;
    width: 100%;
    background: #fff;
}
.sms .sms-message{
  padding: 30px;
}
.sms .sms-message .wrapper{
    display: flex;
}
.sms .sms-message .sms-sender{
    flex-basis: 100%;
    max-width: 70px;
}
.sms .sms-message .sms-sender span{
    padding: 14px 11px;
    font-size: 13px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #87D3E3;
    position: relative;
    top: 0px;
    display: inline-block;
    line-height: 22px;
    font-weight: bold;
    color: #fff;
}
.sms .sms-message p{
    background: #fff;
    padding: 15px;
    color: #222;
    border-radius: 5px;
    position: relative;
}

@media screen and (max-width: 1024px){
    .login-page .container > .row > div.col-sm-7{
        padding-left: inherit;
        padding: 45px 20px;
    }
    .login-page .container > .row > div.col-sm-7, .login-page .container > .row > div.col-sm-5{
        flex-basis: 50%;
        width: 50%; max-width: 50%;
    }
    .login-page:before {
    background-size: 100%;
    background-color: #f5f5f5;
    }
    .login-page img {
    margin-bottom: 40px;
    width: 300px;
    }
    .login-page .container > .row > div {
    padding: 45px 50px 20px;
    }
    .admin .form-field.half{
        width: 100%;
    }
    .row-wrap .form-field.half:last-child{
        padding-left: 0;
    padding-top: 10px;
    }
    .admin .nav.nav-tabs{
        padding-top: 0;
    }
    .admin .nav.nav-tabs a{
        line-height: 50px;
    }
}
@media screen and (max-width: 768px){
    .admin .full-mid {
    max-width: 100%;
    flex-basis: 100%;
    width: 100%;
    text-align: left !important;
    }
    .admin .btn-cont .mst-btn{
        width: 100%;
        display: block;
        text-align: center;
    }
    .login-page img {
    margin-bottom: 40px;
    width: 300px;
    }
    div.ht-30{
        height: 30px !important;
    }
    .hide-mobile{
        display: none;
    }
}
@media screen and (max-width: 425px){
    .login-page .container > .row > div.col-sm-7, .login-page .container > .row > div.col-sm-5 {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 30px;
    }
    .login-page .container > .row > div.col-sm-7 {
    padding-bottom: 10px;
    text-align: center;
    }
    .login-page .container > .row > div.col-sm-7 h2{
        color: #fff !important;
        font-size: 30px !important;
    }
    .login-page:before {
    background-size: cover;
    background-color: #f5f5f5;
        background-position: top;
    transform: rotate(180deg);
    width: 100%;
    }
    .login-page .container, .login-page .container > .row > div, .login-page .container > .row{
        height: auto;
    }
    .admin .select2-container .select2-selection--single{
    padding: 6px 6px;
    }
    .admin .header .right-header{
        position: relative;
        top: 10px;
        right: unset;
        width: 100%;
    padding-bottom: 40px;
    }
    .admin .header .right-header .photo{
        position: absolute;
        top: 0;
        right: 0;
    }
    .admin .header .right-header .menu{
        top: 15px;
    }
    .admin .header .right-header .menu ul{
        left: 0;
    }
    .admin .welcome-line{
        display: flex;
        flex-wrap: wrap;
    }
    .admin .welcome-line a{
        order: 2;
        float: none;
        margin-top: 10px;
    }
    .admin .nav.nav-tabs{
        padding-bottom: 10px;
    }
    .admin .nav.nav-tabs a {
    line-height: 45px;
        padding: 6px 10px;
    }
    .admin .pagination ul li a{
        padding: 3px 9px;
        line-height: 35px;
        margin-right: 5px;
    }
    .admin .pagination{
        text-align: center !important;
    }
    table.responsive-table thead{
        display: none;
    }
    table.responsive-table td{
        display: block;
        border: 0;
        padding: 5px;
        text-align: left !important;
    }
    table.responsive-table tbody tr{
        display: block;
        padding: 10px 10px 20px;
        border: 1px solid #ddd;
        margin-bottom: 10px;
    }
    table.responsive-table td[class*='text-right']{
        margin-top: 8px;
    }
    table.responsive-table td:not([class*="text-right"]):before{
        content: attr(title);
    display: block;
    width: 100%;
    color: #004cac;
    font-weight: bold;
    margin-bottom: 2px;
    }
    .admin .checkbox-options li{
        margin-bottom: 10px;
    }
    .admin .new-quote .btn-cont{
        margin-top: 0;
    }
    .app .mst-btn{
    padding: 14px 25px;
    font-size: 16px;
    }
}

/* ANIMATIONS */
.fade1.ng-leave {
  transition:0.5s linear all;
  opacity:1;
}
.fade1.ng-leave.ng-leave-active {
  opacity:0;
}
.fade1.ng-leave {
  animation: my_fade_animation 0.5s linear;
  -webkit-animation: my_fade_animation 0.5s linear;
}

@keyframes my_fade_animation {
  from { opacity:1; }
  to { opacity:0; }
}

@-webkit-keyframes my_fade_animation {
  from { opacity:1; }
  to { opacity:0; }
}

.slide.ng-enter {
  transition:.2s linear all;
  transform:translateX(100%);
}
.slide.ng-enter.ng-enter-active {
  transform:translateX(0);
}

.form-control.invalid {
    border-color: #dc3545;
}

.form-control.valid {
    border-color: #28a745;
}

.validation-message {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}

.mst-btn {
    padding: 14px 40px;
    background: #87D3E3;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    border: 0;
    border-radius: 3px;
}

    .mst-btn.small {
        padding: 8px 20px;
    }

    .mst-btn.blue {
        color: #fff !important;
        background: #004CAC;
        cursor: pointer;
    }

    .mst-btn:hover {
        color: #fff;
        text-decoration: none;
        opacity: .9;
    }

.mst-btn-button {
    padding: 10px;
    float: right;
    position: relative;
    margin: 0;
    background-color: #87D3E3;
    width: auto;
}

button[type="submit"] {
    margin-top: 30px
}

div label input {
    margin-top: 30px;
    margin-right: 100px;
}

#ck-button {
    margin: 4px;
    background-color: #87D3E3;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #2aa5e1;
    overflow: visible;
    font-weight: bold;
    text-transform: uppercase;
    padding: 14px 40px;
    letter-spacing: 1px;
}

    #ck-button:hover {
        margin: 4px;
        background-color: #2aa5e1;
        border-radius: 4px;
        border: 1px solid #004CAC;
        overflow: visible;
        float: left;
        color: #004CAC;
        opacity: .9;
    }

#ck-button label {
    float: left;
    width: 4.0em;
}

#ck-button label span {
    text-align: center;
    padding: 3px 0px;
    display: block;
}

#ck-button label input {
    position: absolute;
}

    #ck-button input:checked + span {
        margin: 4px;
        background-color: #2aa5e1;
        border-radius: 4px;
        border: 1px solid #004CAC;
        overflow: visible;
        float: left;
        color: #004CAC;
    }

form h3 {
    color: #87D3E3;
    margin-top: 20px;
}

input#GrossRevenue, input#NumOfEmployees {
    text-align: left !important;
}

.us-autocomplete-pro-menu {
    overflow-y: scroll;
    max-height: 13em;
    box-shadow: 0 7px 7px rgb(0 0 0 / 12%);
    color: #7d7d7d;
    position: absolute;
    text-align: left;
    background-color: #b2d0ff;
    z-index: 10;
    margin-top: -17px;
    border: solid white 3px;
    border-radius: 4px;
}

.us-autocomplete-pro-menu li.ui-menu-item:hover {
    background-color: #e4f2ff;
    cursor: pointer;
}

    .us-autocomplete-pro-menu li div {
        padding: .75em;
    }

    .us-autocomplete-pro-menu b {
        color: #0a0a0a;
    }

    .us-autocomplete-pro-menu .ui-menu-item-wrapper {
        padding-left: 1em;
    }

input#showRequoteDialog {
    width: 240px;
    margin-top: 30px;
}

div#downloadPdfContainer {
    margin-left: auto
}

input#showRequoteLimitsDialog {
    right: 0;
    top: 35px;
    width: 192px;
    background-color: #007bff;
    border: 3px solid #007bff !important;
    text-align: center;
    color: white;
    font-weight: bold;
    margin-top: 10px;
    font-size: 14px;
    cursor: pointer;
}

input#showRequoteLimitsDialog:hover {
    background-color: #00245b;
    border: 3px solid #007bff;
}

button#downloadPdfButton {
    background-color: #0062a7;
    border-color: #0062a7;
}

button#downloadPdfButton:hover {
    background-color: #85d2e3;
    border-color: #85d2e3;
}

.ui-widget-header {
    background-color: aliceblue;
}

.btn-close {
    background-color: #ffdada;
}

    .btn-close:hover, .btn-close:focus {
        background-color: #d64c4c;
        color: white;
    }

.btn-savechanges {
    background-color: #b1ffb1;
    color: #5b5757 !important;
    border: solid 1px #4da74d;
}

    .btn-savechanges:hover, .btn-savechanges:focus {
        background-color: #5ea746;
        color: white !important;
        border: solid 1px #293c29;
    }

.selection-error {
    color: #00ff99;
    padding: 10px;
}

/* Bind selection page */

span.total-amt-desc {
    letter-spacing: 0px;
}

.toggler {
    background: #3f8d57;
    cursor: pointer;
    border: 1px solid #b9b9b9;
    border-right-width: 1px;
    border-left-width: 30px;
    border-radius: 13px;
    padding: 10px;
    text-decoration: none;
    transition: all .5s ease;
    margin-right: 22px;
    color: white;
    font-weight: bold;
    width: 88px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px !important;
}

    .toggler.off {
        background: #031829;
        border-left-width: 1px;
        border-right-width: 30px;
        color: white;
    }

.toggles {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    padding-top: 0px;
    width: 413px;
}

.insurance-details .toggles {
    width: 402px;
}

.ReleaseQuote {
    display: flex;
    align-items: center;
    transform: translateY(-30px);
    border-left: 3px solid #d5d5e1;
    border-right: 3px solid #d5d5e1;
    border-bottom: 3px solid #d5d5e1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: calc(100% + 60px);
    width: 168px;
    padding-left: 40px;
}

div#referralReason {
    font-weight: bold;
    margin-bottom: 4px;
    max-width: 600px;
}

div#unavailableReason {
    font-weight: bold;
    margin-bottom: 4px;
    max-width: 600px;
}

div#declineReason {
    font-weight: bold;
    margin-bottom: 4px;
    max-width: 600px;
}

.insurance-details .ReleaseQuote {
    width: 164px;
    margin-left: 2px;
}

.ReleaseQuoteBlank {
    display: inline-block;
    border-left: 3px solid #d5d5e1;
    border-right: 3px solid #d5d5e1;
    border-bottom: 3px solid #d5d5e1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 149px;
    padding-top: 36px;
    padding-left: 40px;
    width: 168px;
    margin-left: 12px;
}

    span.toggler.ReleaseQuoteToggle:after {
        content: "Yes";
    }

    span.toggler.ReleaseQuoteToggle.off:after {
        content: "No";
    }

    span.toggler.CompareToggle:after {
        content: "Compare Now";
    }

    span.toggler.CompareToggle.off:after {
        content: "Compare Quote";
    }

    span.toggler.CompareToggle {
        width: 210px;
        border: 1px solid;
        background: #1665a7;
        color: white;
        padding-left: 40px;
        right: 406px;
        position: absolute;
    }

        span.toggler.CompareToggle:hover {
            border: 2px solid #007bff;
        }

        span.toggler.CompareToggle.off:before {
            content: "\f45c";
            font-family: "Font Awesome 5 Pro";
            font-weight: 400;
            color: #383838;
        }

        span.toggler.CompareToggle:before {
            content: "\f336";
            color: #ffffff;
            font-family: 'Font Awesome 5 Pro';
            position: absolute;
            margin-top: -1px;
            padding: 3px;
            margin-left: -30px;
        }

    span.toggler.SelectContinue, span.toggler.SelectContinue.off {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 192px;
        background-color: #007bff;
        border: 3px solid #007bff;
        text-align: center;
        color: white;
    }

        span.toggler.SelectContinue:hover {
            background-color: #00245b;
            border: 3px solid #007bff;
        }

    span.toggler.CompareToggle.off {
        color: #7c7c7c !important;
        background-color: white;
        border: #7c7c7c solid 2px;
    }

    span.toggler.ReleaseQuoteToggle {
        margin-right: 40px;
    }

    div#displayHeader {
        width: 100%;
        height: 10px;
        text-align: right;
    }

    div#releaseQuoteHeader {
        background: #d5d5e1;
        width: 159px;
        height: 35px;
        position: relative;
        z-index: 2;
        color: #00245b;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        border-radius: 10px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        margin-left: auto;
        margin-right: 234px;
        padding-top: 9px;
    }

.insurance-details .CompareToggle {
    margin-right: 6px;
    font-size: 15px !important;
}

@-moz-document url-prefix() {
    .ReleaseQuote {
        padding-left: 27px;
        margin-right: -50px;
        margin-left: 19px;
    }

    .ReleaseQuoteBlank {
        width: 162px;
        margin-left: 19px;
    }

    .insurance-details .toggles {
        width: 394px;
    }

    .insurance-details .CompareToggle {
        margin-right: 21px;
    }
}

    @media all and (max-width: 945px) {
        #displayHeader, .ReleaseQuoteBlank {
            display: none
        }

        span.toggler.ReleaseQuoteToggle {
            margin-right: 40px;
            margin-top: 71px;
        }

        .ReleaseQuote {
            border: 0px
        }

        .rates ul li, .insurance-details, .documents ul li {
            padding-bottom: 60px
        }

        span.toggler.ReleaseQuoteToggle:before {
            content: "Release Quote: ";
            position: absolute;
            color: #00245b;
            left: -190px;
        }

        span.toggler.ReleaseQuoteToggle.off:before {
            left: -164px;
        }

        span.toggler.ReleaseQuoteToggle {
            margin-top: 71px;
            right: 0px;
            position: absolute;
        }

        span.toggler.CompareToggle {
            margin-top: 140px;
            left: 10px;
        }

        span.toggler.SelectContinue, span.toggler.SelectContinue.off {
            width: 112px;
        }
    }

.quote-attachment, .quote-attachment-direct-download {
    cursor: pointer;
    padding: 10px;
    list-style: circle;
    margin-left: 30px;
}

li.quote-attachment:hover {
    text-decoration: underline;
}

#bindLimitRetentionContainer {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.limitRetentionLabel {
    color: #113E83;
    border: solid;
    border-color: #113E83;
    border-width: 1px;
    padding: 3px;
    margin-right: 6px;
}

#YearsSinceLastClaim .ant-radio-wrapper {
    width: 254px;
}

div#searchAffiliatesautocomplete-list {
    position: absolute;
    background-color: white;
    left: 0px;
    width: 775px;
    z-index: 1;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 4px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    min-height: 110px;
}

#searchAffiliatesautocomplete-list .autocomplete-active {
    background: #007bff;
    color: white;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

div#searchAffiliatesautocomplete-list div {
    cursor: pointer;
    margin-bottom: 6px;
    padding: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}

    div#searchAffiliatesautocomplete-list div:hover {
        background-color: #007bff;
        color: white;
    }

input#getQuoteStart {
    max-width: 396px;
    float: right;
    height: 56px;
    margin-bottom: 20px;
    padding: 0px;
    font-size: 25px;
}

#affiliateUserDisplay {
    display: none;
}

#coverageHeader, .coverage-options-wrap {
    display: none;
}

select#affiliateUsers {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
}

div#errorDisplay {
    background: #ffffff21;
    padding: 10px;
    border-radius: 7px;
}

/* Bind Select Styling*/

div#quote-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    div#quote-header div {
        background: white;
        border-radius: 6px;
        color: #00245b;
        padding: 10px;
        display: inline-block;
        height: 164px;
        padding-top: 14px;
    }

    div#quote-header label {
        width: 104px;
        text-align: right;
        font-size: 11px;
        margin-right: 4px;
    }

    div#quote-header ul li {
        display: inline-block;
        margin-right: 32px;
        font-size: 14px;
    }

    div#quote-header input {
        border-radius: 3px;
        border: 1px solid #00245b;
        padding: 3px;
    }

span#quote-update-status {
    position: relative;
    float: right;
    font-size: 11px;
}

.area-border ul {
    margin-bottom: 2px;
}

#quote-update-status {
    display: none;
}

input.submit-requote {
    width: 280px;
    background-color: #007bff;
    border: 3px solid #007bff;
    text-align: center;
    color: white;
    margin-top: 8px;
}

div#global-requote-limits {
    width: 28%;
    vertical-align: top;
    text-align: center;
}

input#submit-requote {
    margin-top: 10px;
    right: 0;
    background-color: #007bff;
    text-align: center;
    color: white;
    font-weight: bold;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
}

div#quote-header h6 {
    padding-bottom: 3px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 5px;
}

.area-border {
    height: auto !important;
    background: none !important;
    border: 1px solid;
    width: 100%;
}

#bis-name {
    text-align: center;
    font-size: 40px;
}

div#global-requote-limits label {
    margin-right: 10px;
}

div#global-requote-limits select {
    width: 120px;
}

/* Select update display */
div#quotingInProgress {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 3px;
}

div#quotingInProgress img {
    width: 12px;
    margin-right: 4px;
}

div#quotingInProgress {
    text-align: left;
    margin-top: 14px;
    margin-bottom: 13px;
    width: 240px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #1665a7;
    padding: 1px;
    padding-bottom: 10px;
    border-radius: 7px;
}

div#quoteUpdateDisplay {
    padding-left: 13px;
    color: #8cb5d7;
    background: #01182a;
    border: solid 2px #1665a7;
    font-weight: bold;
    padding-top: 5px;
    font-size: 13px;
    margin-top: 10px;
    width: 70%;
    display: inline-block;
    border-radius: 5px;
}

div#mainQuoteMessageAndImage {
    text-align: center;
    display: inline-block;
    margin-top: 7px;
    width: 100%;
}

@media all and (max-width: 1334px) {
    div#quoteUpdateDisplay {
        width: 97%;
        margin-left: 5px;
    }
}
span#quoteMessage {
    margin-top: 4px;
    margin-bottom: 4px;
    display: inline-block;
    text-align: center;
}

.ant-input-number.currency:before {
    color: black;
    content: '$';
    position: absolute;
    left: 7px;
    top: 7px;
    width: 50px;
    height: 50px;
}

#disclaimer-list{
    list-style: circle;
    margin-left: 13px;
}

div#bind-sub-error {
    color: #7fbdff;
    border: solid 1px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
}

.section-container {
        margin-bottom: 30px;
        margin-left: 20px;
        margin-right: 10px;
    }

th.dt-display {
    min-width: 115px;
}

.MPL-ClaimDispute-Remove {
    height: 48px !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
    border: 2px solid #87d3e3 !important;
    background-color: #87d3e3 !important;
    color: white !important;
}

.Line-Item-Divider {
    border-color: #87d3e3;
}

.datetime-input, .datetime-input-7d {
	width: 120px !important;
}

table.quickgrid {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 1rem;
	background-color: white;
	color: #000;
	padding: 5px 24px;
}

.quickgrid th, .quickgrid td {
	border-bottom: 1px solid #eee;
}

.quickgrid td {
	vertical-align: middle;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.quickgrid .col-title {
	font-family: 'AllrounderMonument-Book';
	font-size: 1.1rem;
	color: var(--color-light-blue);
}

.quickgrid .col-title-text {
	white-space: unset !important;
}

.quickgrid button {
	margin: 0;
	width: auto;
}

.pagination-wrapper {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
}

.pagination-select {
	display: flex;
	border-top: 1px solid #ccc;
	margin-top: 0.5rem;
	padding: 0.25rem 0;
	align-items: center;
	gap: .25rem;
}

.action-button {
	font-size: .8rem;
	cursor: pointer;
	border: none;
	background: inherit;
	padding: 0;
	min-height: 30px;
}

	.action-button:hover {
		background: inherit;
		transform: scale(1.5);
	}

.quickgrid td.no-border {
	border: none;
}

.pagination-select-dropdown {
	color: #000;
}

.pagination-text {
	color: #000;
}

.paginator nav {
	background-color: #fff;
    border-radius: 3px;
}