.sweet-overlay {
  background-color: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: #fff;
  font-family: 'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px; } }

.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block; }

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal; }

.sweet-alert button {
  background-color: #AEDEF4;
  color: #fff;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  -webkit-border-radius: 4px;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0;
  cursor: pointer; }

.sweet-alert button:focus {
  outline: 0;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }

.sweet-alert button:hover {
  background-color: #a1d9f2; }

.sweet-alert button:active {
  background-color: #81ccee; }

.sweet-alert button.cancel {
  background-color: #D0D0D0; }

.sweet-alert button.cancel:hover {
  background-color: #c8c8c8; }

.sweet-alert button.cancel:active {
  background-color: #b6b6b6; }

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0 0 2px, rgba(0, 0, 0, 0.0470588) 0 0 0 1px inset !important; }

.sweet-alert button::-moz-focus-inner {
  border: 0; }

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important; }

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px; }

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box; }

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474; }

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block; }

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px; }

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86; }

.sweet-alert .sa-icon.sa-success::after, .sweet-alert .sa-icon.sa-success::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 120px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px; }

.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 60px;
  transform-origin: 0 60px; }

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  -webkit-border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: #fff;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat; }

@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-tranform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-tranform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

.showSweetAlert {
  -webkit-animation: showSweetAlert .3s;
  animation: showSweetAlert .3s; }

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.hideSweetAlert {
  -webkit-animation: hideSweetAlert .2s;
  animation: hideSweetAlert .2s; }

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

@-webkit-keyframes animateSuccessTip {
  0%, 54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessTip {
  0%, 54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@-webkit-keyframes animateSuccessLong {
  0%, 65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes animateSuccessLong {
  0%, 65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@-webkit-keyframes rotatePlaceholder {
  0%, 5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  100%, 12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

@keyframes rotatePlaceholder {
  0%, 5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  100%, 12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  -webkit-animation: animateSuccessTip .75s;
  animation: animateSuccessTip .75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong .75s;
  animation: animateSuccessLong .75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  -webkit-animation: animateErrorIcon .5s;
  animation: animateErrorIcon .5s; }

@-webkit-keyframes animateXMark {
  0%, 50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

@keyframes animateXMark {
  0%, 50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  -webkit-animation: animateXMark .5s;
  animation: animateXMark .5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  -webkit-animation: pulseWarning .75s infinite alternate;
  animation: pulseWarning .75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  -webkit-animation: pulseWarningIns .75s infinite alternate;
  animation: pulseWarningIns .75s infinite alternate; }

#quoteBuilder .boxed-layout img {
  max-width: 20% !important; }

.quote-builder-wrapper {
  display: flex;
  margin-top: 10px; }
  @media screen and (max-width: 768px) {
    .quote-builder-wrapper {
      display: block !important; } }

.builder-main-container {
  display: flex;
  flex: 0 0 75%;
  flex-wrap: wrap;
  height: fit-content;
  align-items: flex-start; }

.builder-main-container.centered {
  flex: 0 0 100%;
  float: none;
  margin: auto; }

.builder-quote-progress-container {
  flex: 1 0 0;
  background-color: #E7F3FA; }

.builder-quote-progress-toggle {
  display: none; }

.builder-buttons {
  height: 50px;
  margin-top: 10px; }

.builder-buttons.ng-binding {
  display: block; }

.builder-buttons.ng-binding .builder-checkout-button {
  display: none !important; }

hr {
  margin: 10px 0;
  clear: both; }

.builder-prev-button {
  padding: 18px 20px;
  background: #E7F3FA;
  color: #202E66;
  box-shadow: none !important;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 0;
  vertical-align: middle;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
  text-shadow: none;
  transition: color .3s ease-out, border .3s ease-out, background .3s ease-out, box-shadow .3s ease-out !important;
  font: 400 14px/1em var(--vamtam-primary-font-font-family);
  font-size: 16px;
  border-radius: 0;
  border: none;
  -webkit-font-smoothing: auto;
  width: 117.5px; }

.builder-next-button {
  padding: 18px 20px;
  background: #00ab36;
  color: #ffffff;
  box-shadow: 0 0 25px -14px var(--vamtam-accent-color-1);
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 0;
  vertical-align: middle;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
  text-shadow: none;
  transition: color .3s ease-out, border .3s ease-out, background .3s ease-out, box-shadow .3s ease-out !important;
  font: 400 14px/1em var(--vamtam-primary-font-font-family);
  font-size: 16px;
  border-radius: 0;
  border: none;
  -webkit-font-smoothing: auto;
  width: 117.5px; }

.builder-checkout-button {
  padding: 18px 20px;
  background: #f6c545;
  color: #ffffff;
  box-shadow: 0 0 25px -14px var(--vamtam-accent-color-1);
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 0;
  vertical-align: middle;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
  text-shadow: none;
  transition: color .3s ease-out, border .3s ease-out, background .3s ease-out, box-shadow .3s ease-out !important;
  font: 400 14px/1em var(--vamtam-primary-font-font-family);
  font-size: 16px;
  border-radius: 0;
  border: none;
  -webkit-font-smoothing: auto;
  width: 122px; }

.builder-clear-button {
  padding: 18px 20px;
  float: right;
  background: #cf2e2e;
  color: white;
  box-shadow: 0 0 25px -14px var(--vamtam-accent-color-1);
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 0;
  vertical-align: middle;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
  text-shadow: none;
  transition: color .3s ease-out, border .3s ease-out, background .3s ease-out, box-shadow .3s ease-out !important;
  font: 400 14px/1em var(--vamtam-primary-font-font-family);
  font-size: 16px;
  border-radius: 0;
  border: none;
  -webkit-font-smoothing: auto;
  width: 117px; }

.builder-next-button.gray-out {
  background: #6f7476; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert p, .alert ul {
    margin-bottom: 0; }
    .alert p p + p, .alert ul p + p {
      margin-top: 5px; }

.alert-dismissable, .alert-dismissible {
  padding-right: 35px; }

.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2; }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5; }

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.alertIn, .alertOut {
  -webkit-transition: -webkit-transform 0.22s cubic-bezier(0.25, 0, 0.25, 1), opacity 0.22s cubic-bezier(0.25, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.22s cubic-bezier(0.25, 0, 0.25, 1), opacity 0.22s cubic-bezier(0.25, 0, 0.25, 1);
  -o-transition: -o-transform 0.22s cubic-bezier(0.25, 0, 0.25, 1), opacity 0.22s cubic-bezier(0.25, 0, 0.25, 1);
  transition: transform 0.22s cubic-bezier(0.25, 0, 0.25, 1), opacity 0.22s cubic-bezier(0.25, 0, 0.25, 1); }

.alertIn.ng-hide-remove {
  opacity: 0;
  -webkit-transform: translate3d(100px, 0px, 0px);
  transform: translate3d(100px, 0px, 0px);
  display: block !important; }

.alertOut.ng-hide-add {
  opacity: 1;
  display: block !important;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px); }
  .alertOut.ng-hide-add.ng-hide-add-active {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0px, 0px);
    transform: translate3d(100px, 0px, 0px);
    display: block !important; }

.alertIn.ng-hide-remove.ng-hide-remove-active {
  opacity: 1;
  display: block !important;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px); }

body {
  background-color: #f1f1f1; }

.demo {
  width: 600px;
  overflow: hidden;
  margin: 40px auto 20px auto;
  padding: 20px;
  border: 1px solid #e6e6e6;
  background-color: #FFF;
  border-radius: 4px;
  height: 190px;
  position: relative; }

.btn {
  margin: 10px 5px 20px 5px; }

h3 {
  margin: 5px 0 10px 5px;
  font-size: 14px;
  color: #777; }

.link {
  position: absolute;
  right: 20px;
  top: 20px; }

.spinner {
  position: fixed;
  top: 400px;
  left: 40%;
  width: 40%;
  height: 18%;
  z-index: 1000;
  background-size: 100px 100px;
  background-image: url("/wp-content/themes/nex-child/quote-master/images/spinner.gif");
  background-repeat: no-repeat; }

h2.centered-title {
  text-align: center; }

.exit-builder-quote-progress-toggle {
  display: inline;
  position: inherit;
  padding: 11px 20px;
  background: #2397D1;
  color: #ffffff;
  box-shadow: 0 0 25px -14px var(--vamtam-accent-color-1);
  text-align: center;
  cursor: pointer;
  z-index: 10;
  vertical-align: middle;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
  text-shadow: none;
  transition: color .3s ease-out, border .3s ease-out, background .3s ease-out, box-shadow .3s ease-out !important;
  font: 400 14px/1em var(--vamtam-primary-font-font-family);
  font-size: 16px;
  border-radius: 0;
  border: none;
  -webkit-font-smoothing: auto;
  width: 100%;
  height: 50px; }
  @media screen and (min-width: 769px) {
    .exit-builder-quote-progress-toggle {
      display: none; } }

@media (max-width: 768px) {
  .quote-progress__backdrop {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 1; }
  .builder-quote-progress-toggle {
    width: 100%;
    height: 50px;
    display: inline;
    position: inherit;
    padding: 11px 20px;
    background: #2397D1;
    color: #ffffff;
    box-shadow: 0 0 25px -14px var(--vamtam-accent-color-1);
    text-align: center;
    cursor: pointer;
    z-index: 10;
    vertical-align: middle;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    text-decoration: none;
    text-shadow: none;
    transition: color .3s ease-out, border .3s ease-out, background .3s ease-out, box-shadow .3s ease-out !important;
    font: 400 14px/1em var(--vamtam-primary-font-font-family);
    font-size: 16px;
    border-radius: 0;
    border: none;
    -webkit-font-smoothing: auto; }
    .builder-quote-progress-toggle img {
      background-color: #BAC9D3;
      border-radius: 6px; }
  .builder-main-container {
    flex: 0 0 100%; }
  .builder-quote-progress-container {
    display: none; }
  .builder-quote-progress-container.toggle-quote {
    display: block;
    position: fixed;
    width: 90%;
    top: 110px;
    z-index: 9; }
  .builder-clear-button {
    padding: 18px 0;
    width: 110px; }
  .builder-quote-progress-toggle {
    display: none !important; } }

/*** QUOTE BUILDER - MORE INFO BUTTON Styling start***/
a[href*="quote-builder-more-info"] {
  /* background-color: #FF5E15 !important; */
  background: var(--vamtam-accent-color-4) !important;
  color: var(--vamtam-accent-color-4-hc) !important;
  box-shadow: 0 0 25px -14px var(--vamtam-accent-color-4) !important; }

a[href*="quote-builder-more-info"]:hover {
  background-color: #183865 !important; }

/*** QUOTE BUILDER - MORE INFO BUTTON Styling end***/
buttons-picker {
  display: flex;
  flex-flow: wrap;
  width: 100%; }

p.button-picker {
  width: 32%;
  height: 65px;
  margin: 4px 4px;
  text-align: center;
  background-color: #EFF3F7;
  padding: 20px 20px;
  border-radius: 4px;
  border: 1px solid #2397D1; }

p.button-picker:hover {
  cursor: pointer; }

p.button-picker.selected {
  color: white;
  background-color: #2397D1; }

@media (max-width: 768px) {
  p.button-picker {
    width: 100%; } }

icons-picker {
  display: flex;
  flex-flow: wrap;
  width: 100%; }
  icons-picker .icon-picker {
    padding: 10px;
    position: relative;
    height: 170px;
    width: 20%; }
    icons-picker .icon-picker .icon-inner-wrapper {
      position: relative;
      width: 100%;
      height: 100%; }
      icons-picker .icon-picker .icon-inner-wrapper .icon-link, icons-picker .icon-picker .icon-inner-wrapper .icon-link:visited, icons-picker .icon-picker .icon-inner-wrapper .icon-link:visited {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        transition: none;
        border: none;
        position: relative; }
      icons-picker .icon-picker .icon-inner-wrapper .icon-link:hover {
        text-decoration: none;
        color: #1a3964;
        border: none; }
      icons-picker .icon-picker .icon-inner-wrapper .icon-image {
        height: calc(100% - 45px);
        position: absolute;
        width: 100%;
        top: 0; }
      icons-picker .icon-picker .icon-inner-wrapper .icon-image-hover {
        visibility: hidden;
        height: calc(100% - 45px);
        position: absolute;
        width: 100%;
        top: 0; }
      icons-picker .icon-picker .icon-inner-wrapper .icon-image img, icons-picker .icon-picker .icon-inner-wrapper .icon-image-hover img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain; }
      icons-picker .icon-picker .icon-inner-wrapper .icon-title {
        text-align: center;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 16px;
        color: #464240;
        position: absolute;
        bottom: 0;
        width: 100%;
        display: block;
        height: 40px; }
  icons-picker .icon-picker.selected {
    cursor: pointer; }
    icons-picker .icon-picker.selected .icon-image {
      visibility: hidden; }
    icons-picker .icon-picker.selected .icon-image-hover {
      visibility: visible; }
    icons-picker .icon-picker.selected .icon-title {
      color: #1a3964; }
  @media (min-width: 768px) {
    icons-picker .icon-picker:hover {
      cursor: pointer; }
      icons-picker .icon-picker:hover .icon-image {
        visibility: hidden; }
      icons-picker .icon-picker:hover .icon-image-hover {
        visibility: visible; }
      icons-picker .icon-picker:hover .icon-title {
        color: #1a3964; } }
  @media (max-width: 768px) {
    icons-picker .icon-picker {
      width: 100%; } }

columns-picker {
  display: flex;
  flex-flow: wrap;
  width: 100%; }

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

div.column-picker {
  width: 24%;
  min-height: 400px;
  margin: 5px 4px;
  background-color: #EFF3F7;
  border-radius: 4px;
  padding: 5px 8px;
  display: flex;
  flex-direction: column;
  flex-grow: 0.2;
  border: 1px solid #2397D1; }
  div.column-picker h5 {
    text-align: center; }
  div.column-picker img {
    display: block;
    margin: 0 auto; }

div.column-picker {
  cursor: pointer; }

div.column-picker.selected {
  color: white;
  background-color: #2397D1; }
  div.column-picker.selected h5 {
    color: white; }

columns-picker button {
  display: block;
  margin-top: auto;
  border: none;
  background: transparent;
  text-align: left; }

@media (max-width: 768px) {
  div.column-picker {
    width: 100%; } }

complex-form {
  display: flex;
  flex-flow: wrap; }

.complex-form-block {
  flex: 0 0 25%;
  float: left;
  margin-right: 20px; }

.complex-form-image {
  flex: 1 0 0; }

p.complex-form-description {
  background-color: #EFF3F7;
  padding: 20px 40px;
  border-radius: 4px;
  border: #EFF3F7 1px solid;
  width: 90%; }

confirm {
  width: 80%;
  margin: auto; }
  confirm hr {
    background-color: #eee;
    border: 0 none;
    color: #eee;
    height: 2px; }

confirm button {
  margin-top: 10px; }

p.confirm-quote-name {
  width: 20%;
  float: left; }

div.confirm-quote-content {
  width: 80%;
  float: left; }
  div.confirm-quote-content .confirm-quote-content-info {
    width: 70%;
    float: left; }
  div.confirm-quote-content .confirm-quote-img {
    width: 30%; }

@media (max-width: 768px) {
  p.confirm-quote-name {
    width: 40%;
    padding: 4px 0; }
  div.confirm-quote-content {
    width: 100%;
    float: left; }
    div.confirm-quote-content .confirm-quote-content-info {
      width: 100%;
      float: left; }
    div.confirm-quote-content .confirm-quote-img {
      width: 100%; } }

personal-data {
  width: 80%;
  margin: auto; }

personal-data button {
  margin-top: 10px; }

.quote-form-column {
  width: 49%;
  float: left;
  margin-right: 10px; }

.quote-form-group {
  width: 100%;
  height: 70px; }
  .quote-form-group label {
    font-size: 17px;
    display: inline-table;
    vertical-align: top; }
  .quote-form-group input {
    margin-bottom: 0 !important;
    height: 35px !important; }
  .quote-form-group input.invalid {
    border-color: red; }
  .quote-form-group textarea {
    height: 35px !important; }
  .quote-form-group span {
    font-size: x-small;
    height: 17px;
    color: red;
    display: block;
    line-height: 17px; }
  .quote-form-group div {
    overflow: hidden;
    max-height: 17px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .quote-form-group div.ng-hide {
    max-height: 0; }

.quote-form-group.required label:after {
  content: "*";
  color: red; }

@media (max-width: 768px) {
  .quote-form-group {
    width: 100%; }
  .quote-form-group:nth-child(2n) {
    float: none; }
  .quote-form-group:nth-child(2n-1) {
    float: none; }
  .quote-form-column {
    width: 100%;
    float: none;
    margin-right: 0; } }

.clear-float {
  clear: both; }

.quote-form-group.message {
  min-height: 150px; }
  .quote-form-group.message #message {
    min-height: 120px; }

.quote-progress {
  min-height: 400px;
  background-color: #E7F3FA;
  border-radius: 5px;
  padding: 10px 10px 40px; }
  @media screen and (max-width: 720px) {
    .quote-progress {
      max-height: 450px;
      overflow: scroll; } }
  .quote-progress .quote-progress-header .header-caption {
    float: left; }
  .quote-progress .quote-progress-header .header-step {
    float: right; }
  .quote-progress .quote-progress-header p {
    font-weight: bold; }
  .quote-progress .quote-progress-content {
    font-size: smaller; }
    .quote-progress .quote-progress-content hr {
      margin: 2px; }
    .quote-progress .quote-progress-content .quote-step div {
      float: left;
      width: 93%; }
      .quote-progress .quote-progress-content .quote-step div small {
        font-weight: bold; }
    .quote-progress .quote-progress-content .quote-step img {
      float: right;
      width: 7%; }

rows-picker {
  display: flex;
  flex-flow: wrap;
  width: 100%; }

div.row-picker {
  width: 99%;
  min-height: 70px;
  margin-bottom: 5px;
  background-color: #EFF3F7;
  border-radius: 4px;
  padding: 5px 8px;
  position: relative;
  border: 1px solid #2397D1; }
  div.row-picker img {
    max-width: 20%; }

div.row-picker.cols2.axis-not-mill img.axis-scheme {
  width: 40%;
  max-width: 40%; }

div.row-picker.cols2.axis-not-mill p {
  width: 60%; }

@media screen and (min-width: 768px) {
  div.row-picker.cols2 {
    width: 47%;
    margin-right: 12px;
    margin-bottom: 12px; } }

div.row-picker:hover {
  cursor: pointer; }

div.row-picker p {
  width: 75%;
  float: left;
  display: inline-block; }

div.row-picker img {
  width: 25%; }

div.row-picker img.controller-type-img {
  width: 100% !important;
  max-width: 80% !important;
  display: block;
  margin: 16px auto 0 auto; }

div.row-picker p.controller-type-p {
  width: 100% !important;
  max-width: 100% !important; }

div.row-picker.selected {
  color: white;
  background-color: #2397D1; }
  div.row-picker.selected h5 {
    color: white; }
  div.row-picker.selected p {
    color: white; }

img.row-selected-tick {
  display: none; }

img.row-selected-tick.selected {
  display: inline-block;
  position: absolute;
  top: 1%;
  right: 1%;
  width: 20px; }

.row-multi-image {
  width: 50%;
  float: left; }

img.row-multi-image__img {
  width: 70%;
  float: left; }

div.last-axis-item {
  margin-bottom: 24px !important; }

div.axis-single-line {
  margin-right: 40% !important; }
  @media screen and (max-width: 768px) {
    div.axis-single-line {
      margin-right: auto !important; } }

selects {
  display: flex;
  flex-flow: wrap;
  width: 100%; }

.selects-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap; }
  .selects-container .selects-img-block {
    flex: 0 0 68%; }
    .selects-container .selects-img-block img {
      max-width: 20%;
      height: auto; }
  .selects-container .more-info {
    width: 100%; }
    .selects-container .more-info .primary-title {
      border-bottom: solid 1px var(--vamtam-accent-color-4);
      max-width: 97%; }
  .selects-container .more-info-items {
    display: flex;
    flex-direction: row; }
    .selects-container .more-info-items img {
      flex: 1 0 0;
      height: auto;
      margin-right: 15px;
      max-width: 20%; }
    .selects-container .more-info-items .more-info-text {
      flex: 4 0 0; }
      .selects-container .more-info-items .more-info-text .title {
        color: var(--vamtam-accent-color-7);
        font-weight: 900; }
    .selects-container .more-info-items .more-info-button {
      flex: 1 0 0; }

.selects-block {
  flex: 0 0 97%;
  margin-right: 10px; }
  .selects-block .quote-select-dropdown {
    width: 40%; }

@media (max-width: 768px) {
  .selects-container .selects-img-block {
    display: none; }
  .selects-block {
    float: none;
    flex: 0 0 100%; }
    .selects-block .quote-select-dropdown {
      width: 100%; }
  .selects-image {
    flex: 0 0 100%; } }

selects {
  display: flex;
  flex-flow: wrap;
  width: 100%; }

.selects-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap; }
  .selects-container .selects-img-block {
    flex: 0 0 68%; }
    .selects-container .selects-img-block img {
      max-width: 20%;
      height: auto; }
  .selects-container .more-info {
    width: 100%; }
    .selects-container .more-info .primary-title {
      border-bottom: solid 1px var(--vamtam-accent-color-4);
      max-width: 97%; }
  .selects-container .more-info-items {
    display: flex;
    flex-direction: row; }
    .selects-container .more-info-items img {
      flex: 1 0 0;
      height: auto;
      margin-right: 15px;
      max-width: 20%; }
    .selects-container .more-info-items .more-info-text {
      flex: 4 0 0; }
      .selects-container .more-info-items .more-info-text .title {
        color: var(--vamtam-accent-color-7);
        font-weight: 900; }
    .selects-container .more-info-items .more-info-button {
      flex: 1 0 0; }

.selects-block {
  flex: 0 0 97%;
  margin-right: 10px; }
  .selects-block .quote-select-dropdown {
    width: 40%; }
  .selects-block .input-note {
    font-size: 80%; }

@media (max-width: 768px) {
  .selects-container .selects-img-block {
    display: none; }
  .selects-block {
    float: none;
    flex: 0 0 100%; }
    .selects-block .quote-select-dropdown {
      width: 100%; }
  .selects-image {
    flex: 0 0 100%; } }

thank-you {
  width: 80%;
  text-align: center;
  margin: auto; }

welcome {
  width: 80%;
  margin: auto; }

