/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}


@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.owl-carousel .fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.owl-carousel .fadeInUp {
  animation-name: fadeInUp;
}


@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform:capitalize;  /*pw*/
  font-size: 20px;

}

.owl-dots {float:none; text-align: center;}
.owl-dot {padding:10px 5px; display:inline-block;}
.owl-dot:only-child {display:none;}
.owl-dot span {width:8px; height:8px; border-radius:50%; background:#cecece; display:block; float:left; cursor:pointer; -webkit-transition:0.3s all; transition:0.3s all;}
.owl-dot.active span {background-color:#ff9b41; cursor:default;}
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next{padding: 10px;}  /*pw*/
.owl-carousel .owl-controls .owl-nav .owl-prev{float:left;}  /*pw*/
.owl-carousel .owl-controls .owl-nav .owl-next{float:right;} /*pw*/
.owl-carousel .owl-controls .owl-nav *.disabled {opacity:0.5; cursor: default;}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("clientlibproductslanding/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/*pw*/

@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
@font-face {
    font-family: 'Rubik-Bold';
    src: url("../../../content/dam/revampbagic/fonts/Rubik-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0-10FFFF;
}
@font-face {
    font-family: 'Rubik-Regular';
    src: url("../../../content/dam/revampbagic/fonts/Rubik-Regular.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2084;
}
@font-face {
    font-family: 'Rubik-Light';
    src: url("../../../content/dam/revampbagic/fonts/Rubik-Light.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2084;
}
body, p, input, button, textarea {
    font-family: "Rubik-Regular";
}
h1, h2, h3, h4, h5, h6, strong {
    font-family: "Rubik-Regular";
}
a {
    color: #fff;
}
p, input, textarea, button, a, li, label {
    font-size: 1.8rem;
    line-height: 1.4;
}
html {
    font-size: 62.5%;
}
body {
    font-family: "Rubik-Regular";
    color: #005596;
    overflow: hidden;
}
* {
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    outline: none;
    color: #005596;
    cursor:pointer;
}
a:hover {
    text-decoration: none;
}
img {
    border: none;
    max-width: 100%;
    vertical-align: top;
    border: none;
}
html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
p, .ul, h1, h2, h3, h4, h5, h6 {
    padding-bottom: 5px;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}
h1 {
    font-size: 5rem;
}
h2 {
    font-size: 3.3rem;
}
h3 {
    font-size: 3rem;
    font-family: "Rubik-Bold";
}
h4 {
    font-size: 2.2rem;
    font-family: "Rubik-Bold";
}
h5 {
    font-size: 2rem;
}
h3 a, h4 a, h5 a, h6 a {
    font-size: inherit;
    text-decoration: underline;
}
table, table tr td, table tr th {
    border: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input, textarea {
    outline: none;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, section, summary, mark {
    float: left;
    width: 100%;
}
.fl {
    float: left !important;
}
.fr {
    float: right !important;
}
input[type=submit], input[type=button], button[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
}
    .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1440px;
}
.popupSec.disclaimerContentWrap {left: 277.5px !important;top: 200.5px !important;position: fixed;}

.btn {
    background: #f89c30;
    padding: 8px 20px 10px !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    color: white;
    font-size: 1.8rem;
    display: inline-block;
    clear: both;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border: 1px solid #f89c30;
    font-family: "Rubik-Regular";
    letter-spacing: 1px;
}
.inlineBlock, .blueBox ul, .blueBox ul li, .blueBox ul li a, .blueBox.claimSec .nearestBranch, .blueBox.claimSec .nearestBranch a:before, .blueBox.claimSec ul li a:after, .customSelect .selectedText:after, .mainHeader .rightSec .notification, .mainHeader .rightSec .langSec, .mainHeader .rightSec .rightBottom .getInTouch, .mainHeader .rightSec .rightBottom .loginSec,.locateAndClaimSec .claimInTabSec .tabContentSec .content .imgSec, .locateAndClaimSec .claimInTabSec .tabContentSec .content .description ul li:before, .insureWheelWrap .nearestBranch ul li:before, .healthInsuranceMain .stepsContainer .stepOneContainer form, .healthInsuranceMain .stepsContainer .stepOneContainer .rightSec, .getQuoteWrap .nearestLocate ul li:before, .docDownAndRenew .docDownloadSec ul li:before, .docDownAndRenew .docDownloadSec ul li:after {
    display: inline-block;
    vertical-align: middle;
}
.bodyOverlay {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    display: none;
}
.menuOverlay {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 98;
    display: none;
}
.communicationSec.visible {
    opacity: 0;
    z-index: -1;
    right: -300px;
}
.communicationSec p {
    font-size: 1.4rem;
    color: #000000;
    margin-top: 5px;
}
.communicationSec {
    position: fixed;
    right: 10px;
    bottom: 90px;
    text-align: center;
    z-index: 2;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
}
.nonTouch .btn:before {
    content: '';
    z-index: -1;
    background: white;
    position: absolute;
    top: 50%;
    right: 100%;
    margin: -15px 0 0 1px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    -moz-transform: scale3d(1, 2, 1);
    -ms-transform: scale3d(1, 2, 1);
    -o-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all
}
.nonTouch .btn:hover {
    color: #f89c30;
}
.nonTouch .btn:hover:before {
    -webkit-transform: scale3d(10, 9, 1);
    -moz-transform: scale3d(10, 9, 1);
    -ms-transform: scale3d(10, 9, 1);
    -o-transform: scale3d(10, 9, 1);
    transform: scale3d(10, 9, 1)
}
.nonTouch footer a:hover {
    text-decoration: underline
}
.nonTouch .ie9browser .btn:hover {
    color: #fff
}
.nonTouch .ie9browser .docDownAndRenew .renewSec .btn:hover {
    color: #0b2150
}
.nonTouch .ie9browser .getQuoteWrap .btn:hover {
    color: #0b2150
}
.popupSec {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 800px;
    width: 100%;
    height: 350px;
    padding: 40px;
    background: #fff;
    display: none;
    z-index: 99;
    -webkit-box-shadow: 0 5px 20px 5px #333333;
-moz-box-shadow: 0 5px 20px 5px #333333;
-ms-box-shadow: 0 5px 20px 5px #333333;
-o-box-shadow: 0 5px 20px 5px #333333;
box-shadow: 0 5px 20px 5px #333333;
}
.popupSec iframe {
    width: 100%;
    height: 100%;
}
.carouselListDots {
    width: 100%;
    float: left;
    text-align: center;
}
.bannerWrapRight .carouselListDots{display:block;}
.beforeBuyWrap .carouselListDots{display:none;}
.carouselListDots li {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50px;
    text-indent: -9999px;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}
.carouselListDots li.shadowActive {
    background: #f89c30;
}
.carouselListDots.carouselSmallDots {
    position: relative;
    top: -50px;
    z-index:1;
}
.popupSec.videoPopupSec {

    height: 400px;

}
.videoSec,.insPolicyTabsVideoSec{
    cursor: pointer;
}
.tableOuter table{border: 1px solid #cbcbcb;}
.tableOuter table td, .tableOuter table th {
    border-left: 1px solid #cbcbcb;
        border-left-width: 1px;
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: .3em 1em;
    font-size: 1.6rem;
}
.tableOuter table td td, .tableOuter table tr:nth-child(2n-1) td {
    background-color: #f2f2f2;
}
.tableOuter table td span.tickSign {
    background: url(../../../content/dam/bagic/index/sprite.png) no-repeat;
        background-position-x: 0%;
        background-position-y: 0%;
    background-position: -452px -463px;
    width: 21px;
    height: 16px;
    margin: 6px auto;
    display: block;
}
.tableOuter table td span.crossSign {
    background: url(../../../content/dam/bagic/index/sprite.png) no-repeat;
        background-position-x: 0%;
        background-position-y: 0%;
    background-position: -452px -402px;
    width: 14px;
    height: 14px;
    margin: 6px auto;
    display: block;
}
.showAllContent p{font-size:1.5rem;}
.tableOuter table td p{font-size:1.4rem;}
.popupSec.hiddenShowContent.maxContent .showAllContent{height: 500px; width:100%; overflow: auto !important;}
.popupSec.hiddenShowContent .showAllContent{width:100%;float:left; overflow: hidden;}
.bodyScrollHide{overflow:hidden;}
.listRow.margin {
    margin: 30px 0px 20px 0px;
}
.listRow ul li {
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #eaeaea;
    border-left: 3px solid #ff9b41;
    padding: 20px;
    background-color: #fff;
}
.listRow h4 {
    font-family: "Rubik-Bold";
    font-weight: normal;
    color: #000;
    font-size: 1.6rem;
    text-align: left;
}
.listRow ul li p {
    text-align: left;
    margin: 10px 0px 0px;
}
.insDocWrap {
    position: relative;
    padding: 30px 0 70px;
}
.pageHeadsOrange {
    width: 100%;
    float: left;
}
.pageHeadsOrange h1 {
    color: #ff9b41;
    font-family: "Rubik-Bold";
    font-size: 4rem;
    text-align: center;
    font-weight: normal;
    display: inline-block;
    padding-bottom: 50px;
    width: 100%;
}
.pageHeadsOrange h1 span {
    color: #5e5e5e;
    font-size: 2.5rem;
    width: 100%;
    float: left;
    margin: 5px 0;
    font-family: "Rubik-Regular";
}
.pageHeadsOrange p {
    color: #5e5e5e;
    font-size: 1.8rem;
    width: 90%;
    margin: 0px auto;
    font-family: "Rubik-Regular";
    text-align: center;
}
.pageHeadsOrange p:last-child {
    padding-bottom: 50px;
}
.planOuterWrap,
.planSelectDetailWrap {
    width: 100%;
    float: left;
}
.planSelectWrap {
    max-width: 350px;
    display: block;
    margin: 0 auto;
    text-align: center;
    clear: both;
}
.planSelectWrap label {
    width: 40%;
    float: left;
    padding-right: 10px;
    font-size: 1.6rem;
    color: #fff;
    line-height: 30px;
    background: #0071bb;
    padding: 5px 30px;
    border-radius: 30px 0 0 30px;
    border: 1px solid #0071bb;
}
.planSelectWrap .planSelect {
    width: 60%;
    float: left;
    line-height: 30px;
    background: #ffffff;
    border-radius: 0px 30px 30px 0;
    border: 1px solid #0071bb;
    position: relative;
    z-index: 1;
}
.planSelectWrap .planSelect .selectedText,
.planSelectWrap .planSelectText {
    font-size: 1.6rem;
    padding: 9px 22px;
    text-align: left;
    cursor: pointer;
    position: relative;
    float: left;
    width: 100%;
}
.planSelectWrap .planSelect .selectedText:after,
.planSelectWrap .planSelectText:after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #0071bb;
    border-left: 2px solid #0071bb;
    top: 18px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    right: 15px;
    margin-top: 0;
    background: none;
    margin: 0;
}
.planSelect .dd {
    position: relative;
}
.planSelect .dd ul {
    display: none;
    left: 0px;
    position: absolute;
    top: 42px;
    width: 100%;
    z-index: 2;
    background: #fff;
    -webkit-box-shadow: 0 0 20px 5px #00003b;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 59, 0.30);
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 59, 0.30);
    -moz-box-shadow: 0px 0px 20px 5px rgba(0, 0, 59, 0.30);
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 59, 0.30);
    padding: 2px 12px 8px;
    max-height: 300px;
    overflow-y: auto;
}
.planSelect .dd ul li {
    border-bottom: 1px solid #e4e4e4;
    padding: 5px 0px 5px;
    cursor: pointer;
    text-align: left;
    font-size: 1.6rem;
}
.planSelect .dd ul li:last-child {
    border-bottom: none;
}
.planSelectWrap .planSelect:before {
    content: '';
    position: absolute;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
}
.planSelectDetailInner {
    padding: 50px 0 0;
    width: 100%;
    float: left;
}
.planSelectDetailInner h2 {
    font-size: 3.2rem;
    font-weight: normal;
}
.planSelectDetailInner p.grayText {
    font-size: 1.8rem;
    color: #5e5e5e;
}
.innerContainer {
    float: left;
    width: 100%;
    position: relative;
}
.innerContainer .selectText {
    position: absolute;
    top: 0;
    left: 0;
    padding: 11px 8px;
    background: #f3f4f7;
    font-size: 1.5em;
    font-family: accordaltregularregular;
    width: 100%;
}
.innerContainer .selectText:after {
    content: "";
    background: url("clientlibproductslanding/images/selectArrow.png") no-repeat;
    width: 9px;
    height: 5px;
    position: absolute;
    right: 8px;
    top: 16px;
}
.innerContainer select {
    padding: 11px 8px;
    opacity: 0;
    width: 100%;
    height: 39px;
}
table.insDocTable {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}
table.insDocTable caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}
table.insDocTable thead {
    border-top: 1px solid #ddd;
}
table.insDocTable tr {
    border-bottom: 1px solid #ddd;
    -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;
}
table.insDocTable tr td:nth-child(1) {
    text-align: left;
}
table.insDocTable tr th:nth-child(1),
table.insDocTable tr td:nth-child(1) {
    width: 50%;
}
table.insDocTable tr td a img {
    -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;
    -webkit-box-shadow: 0px 3px 3px #888888;
    -ms-box-shadow: 0px 3px 3px #888888;
    -moz-box-shadow: 0px 3px 3px #888888;
    box-shadow: 0px 3px 3px #888888;
}
table.insDocTable tr td a:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -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;
}
table.insDocTable tr:hover {
    background-color: #f9f9f9;
}
table.insDocTable th,
table.insDocTable td {
    padding: 15px;
    font-family: "Rubik-Regular";
    font-size: 2rem;
    color: #4f4f4f;
    text-align: left;
}
table.insDocTable th {
    font-size: 1.7rem;
    color: #fff;
    background: #005596;
    font-weight: normal;
}
.policySelectTable {
    width: 100%;
    float: left;
    padding: 20px 0;
}
.searchActive .searchSec .inputbox {
    z-index: 12;
}
.dropdown ul {
    display: none;
}
.addOnWrap .addonFlipcontainer .addonOuter .addonInner .flipBack p a{display:block;}
.textRte-listing-div { width: 100%; float:left; padding: 50px 0; }
.textRte-listing-div h2 { font-family: "Rubik-Bold"; color: #ff9b41; font-size: 3rem; text-transform: uppercase; display: block; font-weight: normal; }
.textRte-listing-intro p { color: #5e5e5e; font-size: 1.8rem; width: 100%; margin: 0 auto; display: inline-block; }
.textRtelistingDetails { margin: 0 auto; margin-top: 30px; }
.textRtelistingDetails ul li { font-family: "Rubik-Regular"; color: #0072bc; font-weight: normal; font-size: 1.8rem; position: relative; margin-bottom: 20px; }
.textRtelistingDetails ul li:before { content: ''; position: absolute; width: 5px; height: 5px; left: 0; top: 8px; border-radius: 50%; background-color: #ff9b41; }
.textRtelistingDetails ul li span { padding-left: 20px; position: relative; text-align: left; display: block; }
.textRtelistingDetails ul li p { color: #000000; padding-left: 20px; margin-top: 10px; }
.textRtenumlistingDetails { margin: 0 auto; margin-top: 30px; }
.textRte-head-center h2{padding-bottom:15px;}
.textRte-head-center h2,.textRte-head-center .textRte-listing-intro p{text-align:center;}
.textRtenumlistingDetails ol li { font-family: "Rubik-Regular"; color: #0072bc; font-weight: normal; font-size: 1.8rem; position: relative; margin-bottom: 20px; margin-left: 20px; list-style: decimal;}
.textRtenumlistingDetails ol li span { position: relative; text-align: left; display: block; }
.textRtenumlistingDetails ol li p { color: #000000; margin-top: 10px; }
.tableOuter .productCustomTable{ border: none; }
.tableOuter .productCustomTable td td, .tableOuter .productCustomTable tr:nth-child(2n-1) td{ background-color: #ffffff; }
.tableOuter .productCustomTable td, .tableOuter .productCustomTable th{ border: none; background-color: #ffffff; }
.tableOuter .productCustomTable td{ padding: 25px; border: 1px solid #e8e8e8; }
.tableOuter .productCustomTable td b{ font-size: 2rem; color: #ff9b41; }
.tableOuter .productCustomTable td p{ font-size: 1.5rem; color: #000000; }
.tableOuter .productCustomTable td:first-child p{ color: #005596; }
.tableOuter .productCustomTable th.standard-yellow{
background-color: #ffeb82;
}
.tableOuter .productCustomTable th.gold-plan { 
color: #fff;
background: #ebc364;
text-align: center;
}
.tableOuter .productCustomTable th.silver-plan { 
color: #fff;
background: #94a2af;
text-align: center;
}
.tableOuter .productCustomTable th.platinum-plan { 
color: #fff;
background: #4391d4;
text-align: center;
}
.tableOuter .productCustomTable td.standard-yellow,.tableOuter .productCustomTable tr:nth-child(2n-1) td.standard-yellow{
background-color: #ffeb82;
}
.tableOuter .productCustomTable td.gold-plan,.tableOuter .productCustomTable tr:nth-child(2n-1) td.gold-plan { 
background: #f6f1e6;
font-weight: normal;
text-align: center;
}
.tableOuter .productCustomTable td.silver-plan,.tableOuter .productCustomTable tr:nth-child(2n-1) td.silver-plan { 
background: #e7e7e7;
font-weight: normal;
text-align: center;
}
.tableOuter .productCustomTable td.platinum-plan,.tableOuter .productCustomTable tr:nth-child(2n-1) td.platinum-plan { 
background: #cfe8fd;
font-weight: normal;
text-align: center;
}
.renewCover .container{ padding-top: 50px; margin-top: 20px; border-top: 1px #eaeaea solid; }
.renewCover .container h2.tabHeading{ margin-bottom: 0; }
.renewCover .container .coverHead{ margin-bottom: 30px; }
.iframe-section{ padding-bottom:20px; padding:50px auto 0; width:90%;}
.iframe-section iframe{ margin-bottom: 50px; border:1px solid #000000; }
.iframe-section h1{ color: #ff9b41; font-size: 4rem; padding-bottom: 15px;}
.iframe-section p{ color: #5e5e5e; font-size: 1.8rem; padding-bottom: 15px;}
.iframe-section p a{ text-decoration:underline;}
.loader {
    position: fixed;
    top: 0;
    left: 0%;
    height: 100%;
    width: 100%;
    z-index: 221;
    display: none;
}
.loader:before {
    content: none;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
    border: 3px solid #fff;
    border-top-color: #0071bb;
    animation: loadspinner .6s linear infinite;
}
.got-to-top{bottom: 50px !important;  width: auto !important;}
    .cls-category{width: 45%;
    border-radius: 10px;
    float: left;
    margin: 0 2%;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0px 15px #00000082;
   }
.cls-category .box-cont-half {min-height: 385px;}
.container.pet-table {background: rgb(255,155,65); float: left; color: rgb(33,33,33);}
.pet-table h4 {text-align: center; color: rgb(255,255,255); font-size: 3rem; font-weight: bold;}
.pet-table .RTEflex .txtbaseshadow { width: 40.0%; float: left; background: rgb(255, 155, 65); box-shadow: 0 0 0px 1px #ffffff45; BORDER-RADIUS: 20PX;}
.pet-table .RTEflex .ORbox {width: 10%; float: left; margin: 0px 5%;} 
.pet-table .RTEflex .ORbox p { color: rgb(255,255,255); padding: 4.0%; text-align: center;line-height: 143.0px; font-size: 3rem;} 
.pet-table .RTEflex { display: flex;} 
.pet-table .tableOuter table tr:nth-child(2n-1) td {background-color: #ff9b41;}
.pet-table .tableOuter {display: flex; justify-content: center; height: 250px; overflow-y: scroll;}
.pet-table .tableOuter table {border: none; color: rgb(255, 255, 255);}
.pet-table .tableOuter table td {border-left: none;}

<!--added by pavan 05feb2023  -->
.titledescription {
    width: 100% !important;
    float: left !important ;
    position: relative !important;
}
.newinsurancepolicytabs {
    width: 100% !important;
    float: left !important ;
    position: relative !important;
}
<!-- end -->
@media screen and (max-width: 1500px) {
	.container {
		padding: 0 40px;
	}
}

@media screen and (max-width: 1200px) {
	.demystifyInsur .headingSec {
		margin-right: 65px;
	}
	.demystifyInsur .headingSec .iconSec {
		margin-right: 35px;
	}
	.demystifyInsur ul li {
		margin-right: 50px;
	}
	.demystifyInsur .btn {
		margin-left: 15px;
	}
	.container {
		padding: 0 20px;
	}
}

@media screen and (max-width: 1024px) {
	.cls-category .box-cont-half {
		min-height: 500px;
	}
	.whyUs h1.whyUsHead,
	.whyUs h2.whyUsHead {
		font-size: 2.5rem;
	}
	.whyUs p {
		font-size: 1.6rem;
		max-width: 100%;
	}
	.whyUs p br {
		display: none;
	}
	.demystifyInsur {
		padding: 55px 20px;
		text-align: left;
	}
	.demystifyInsur .headingSec {
		width: 100%;
		text-align: left;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.demystifyInsur .headingSec .iconSec .square {
		width: 8px;
		height: 8px;
	}
	.planSelectDetailInner h2 {
		font-size: 2.4rem;
	}
	.pageHeadsOrange h1 {
		font-size: 3rem;
	}
	.pageHeadsOrange h1 span {
		font-size: 2rem;
	}
}

@media screen and (max-width: 812px) {
	.cls-category .box-cont-half {
		min-height: 567px;
	}
}

@media screen and (max-width: 768px) {
	.whyUs h1.whyUsHead {
		font-size: 2.3rem;
	}
	.whyUs p {
		font-size: 1.5rem;
	}
	.popupSec {
		max-width: 90%;
	}
	.communicationSec .callBack p {
		display: none;
	}
	.communicationSec img {
		max-width: 50px;
	}
	.pet-table .RTEflex .txtbaseshadow {
		width: 100%;
		float: left;
		background: rgb(255, 155, 65);
		box-shadow: 0 0 0px 1px #ffffff45;
		BORDER-RADIUS: 20PX;
	}
	.pet-table .RTEflex .ORbox {
		width: 88%;
		float: left;
		margin: 0px 5%;
	}
	.pet-table .RTEflex {
		display: block;
	}
	.pet-table .RTEflex .ORbox p {
		padding: 0%;
		text-align: center;
		line-height: 84px;
	}
	.cls-category .box-cont-half {
		min-height: 605px !important;
	}
    .textRte-listing-intro p { font-size: 1.5rem; }
}

@media screen and (max-width: 767px) {
	.whyUs h1.whyUsHead,
	.whyUs h2.whyUsHead {
		font-size: 2.1rem;
	}
	.demystifyInsur .headingSec .iconSec .svgSec {
		margin-left: 0;
	}
	.demystifyInsur .headingSec h3 {
		font-size: 2.5rem;
	}
	.demystifyInsur ul {
		width: 100%;
	}
	.demystifyInsur ul li {
		margin-right: 0px;
	}
	.demystifyInsur .btn {
		margin-left: 0;
		margin-top: 30px;
	}
	.demystifyInsur .headingSec h3,
	.addOnWrap h2,
	.beforeBuyWrap .impPointOuter .impPointInnerL h2,
	.docDownAndRenew h4,
	.aboutBoxSec.prodListing h2,
	.demystifyInsur .headingSec h3 {
		font-size: 2rem;
	}
	.btn {
		font-size: 1.5rem;
		padding: 5px 25px 7px;
	}
	h3 {
		font-size: 2.5rem;
	}
	h4 {
		font-size: 2rem;
	}
	.aboutBoxSec {
		padding: 30px 0;
	}
	.popupSec {
		padding: 28px;
		height: 300px;
	}
	.popupSec .close {
		top: 0px;
		right: 8px;
	}
	.popupSec.videoPopupSec {
		height: 300px;
	}
	.popupSec {
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0%);
		transform: translate(0, 0);
	}
	.planSelectDetailInner h2 {
		font-size: 2rem;
	}
	table.insDocTable th,
	table.insDocTable td {
		padding: 10px 7px;
	}
	table.insDocTable tr td:nth-child(1),
	table.insDocTable th {
		font-size: 1.2rem;
	}
	.planSelectDetailInner p.grayText,
	.pageHeadsOrange p {
		font-size: 1.6rem;
	}
	.planSelectDetailInner {
		padding: 30px 0 0;
		position: relative;
		z-index: 0;
	}
	.pageHeadsOrange h1,
	.pageHeadsOrange p:last-child {
		padding-bottom: 25px;
	}
	.cls-category .box-cont-half {
		min-height: 800px;
	}
	.popupSec.hiddenShowContent.maxContent .showAllContent {
		height: 300px;
	}
	.tableOuter table td,
	.tableOuter table th {
		font-size: 1.4rem;
	}
	.popupSec.hiddenShowContent .closePop {
		padding-top: 5px;
	}
        .popupSec.disclaimerContentWrap{left: 15px !important;top: 200.5px !important;position: fixed;}      
    .textRte-listing-div h2 { font-size: 2rem }
    .textRte-listing-intro p { font-size: 1.5rem; }
    .textRtelistingDetails ul li { font-size: 1.5rem; margin-bottom: 10px; }
    .textRte-listing-div {padding:30px 0; }
    .textRtelistingDetails ul li p{font-size: 1.4rem;}
    .textRtenumlistingDetails ol li { font-size: 1.5rem; margin-bottom: 10px; }
    .textRtenumlistingDetails ol li p{font-size: 1.4rem;}
}

@media screen and (max-width: 639px) {
	.demystifyInsur ul li {
		font-size: 1.6rem;
		margin-right: 55px;
	}
	.demystifyInsur ul li a {
		font-size: 1.6rem;
	}
	.demystifyInsur ul li:last-child {
		margin-right: 0;
	}
	.demystifyInsur .btn {
		margin-top: 15px;
	}
	.popupSec {
		padding: 10px;
		height: 280px;
	}
	.popupSec .close {
		top: -35px;
		color: #fff;
	}
	.humbugMenu.close {
		bottom: 20px;
	}
	.communicationSec img {
		max-width: 40px;
	}
	.communicationSec .chatWithUs {
		margin-top: 5px;
	}
	.pageHeadsOrange h1 {
		font-size: 2rem;
	}
	.pageHeadsOrange h1 span,
	.planSelectDetailInner h2 {
		font-size: 1.8rem;
	}
	.policySelectTable {
		width: 100%;
		overflow-x: scroll;
	}
	table.insDocTable {
		width: 767px;
	}
	.planSelectDetailInner p.grayText,
	.pageHeadsOrange p {
		font-size: 1.5rem;
	}
	.planSelectWrap .planSelect .selectedText,
	.planSelectWrap .planSelectText {
		padding: 9px 10px;
	}
	.planSelectWrap label {
		padding: 5px 20px;
	}
	table.insDocTable {
		/* width: 600px; */
		width: 100%;
	}
	table.insDocTable tr th:nth-child(1),
	table.insDocTable tr td:nth-child(1) {
		width: 30%;
	}
}

@media screen and (max-width: 480px) {
	.cls-category {
		width: 100%;
		margin-top: 20px;
	}
	.whyUs p {
		font-size: 1.4rem;
	}
	.demystifyInsur {
		padding: 55px 20px 30px;
	}
	.demystifyInsur ul {
		width: 100%;
	}
	.demystifyInsur ul li {
		margin-right: 0px;
		display: block;
		margin-bottom: 15px;
	}
	.demystifyInsur .btn {
		margin-top: 5px;
	}
	.container {
		padding: 0 10px;
	}
	.popupSec {
		height: 200px;
	}
	.whatsNewFixSec ul li a {
		padding: 0 14px;
	}
	.whatsNewFixSec ul li:first-child a {
		padding-left: 0;
	}
	.whatsNewFixSec ul li:last-child a {
		padding-right: 0;
	}
	.whatsNewFixSec {
		display: block;
		position: fixed;
		width: 100%;
		bottom: 0;
		z-index: 1;
		-webkit-transition: 0.5s all;
		-moz-transition: 0.5s all;
		-ms-transition: 0.5s all;
		-o-transition: 0.5s all;
		transition: 0.5s all;
	}
	.whatsNewFixSec.down {
		bottom: -80px;
	}
	.whatsNewFixSec.up {
		bottom: 0px;
		-webkit-box-shadow: 0 0 22px 2px #eaeaea;
		-moz-box-shadow: 0 0 22px 2px #eaeaea;
		-ms-box-shadow: 0 0 22px 2px #eaeaea;
		-o-box-shadow: 0 0 22px 2px #eaeaea;
		box-shadow: 0 0 22px 2px #eaeaea;
	}
	.communicationSec {
		bottom: 82px;
	}
	.popupSec.hiddenShowContent .showAllContent {
		height: auto;
		overflow-y: scroll;
	}
	.videoIconFunctionality iframe {
		height: auto !important;
	}
    .textRtelistingDetails ul li p{font-size: 1.4rem;}
.textRtenumlistingDetails ol li p{font-size: 1.4rem;}
}