html {
  scroll-behavior: smooth;
}

.text-parallax {
  opacity: 1;
  transform: scaleY(1.15);
  font-size: 1.25rem;
}

.img-reveal img,
.box-reveal {
  opacity: 0;
  transform: translateY(50px);
}

.page-template-default .post-thumbnail {
  position: relative;
  height: calc(100vh - 200px);
}
.page-template-default .page-header {
  height: max-content;
}

/*-----------------------------------------------------------*/
/* Preloader                                                 */
/*-----------------------------------------------------------*/

.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  height: 100%;
  pointer-events: none !important;
  clip-path: circle(70.7% at 50% 50%);
}
.preloader-logo svg {
  width: 40vw;
  height: auto;
}
.preloader-logo svg path.cls-6 {
  stroke-width: 2px;
}

/*-----------------------------------------------------------*/
/* Blob Animation                                            */
/*-----------------------------------------------------------*/

.blob-c {
  min-height: 100vh;
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
  filter: blur(40px);
  z-index: -1;
  /*   background: rgba(255,255,255,0.1) */
}

.shape-blob {
  background: var(--main-blue);
  height: 60px;
  width: 80px;
  border-radius: 40% 50% 30% 40%;
  animation: transform 18s ease-in-out infinite both alternate,
    movement_one 12s ease-in-out infinite both;
  opacity: 0.4;
  position: absolute;
  left: 75%;
  top: 40%;
}
.shape-blob.one {
  background: var(--main-blue);
  height: 500px;
  width: 500px;
  left: 5%;
  top: 10%;
  transform: rotate(-180deg);
  animation: transform 8s ease-in-out infinite both alternate,
    movement_two 10s ease-in-out infinite both;
}

.shape-blob.two {
  background: var(--main-blue);
  height: 500px;
  width: 500px;
  left: 55%;
  top: 50%;
  transform: rotate(-180deg);
  animation: transform 10s ease-in-out infinite both alternate,
    movement_two 5s ease-in-out infinite both;
}

@keyframes transform {
  0%,
  100% {
    border-radius: 33% 67% 70% 30% / 30% 40% 70% 70%;
  }
  20% {
    border-radius: 37% 63% 51% 49% / 37% 35% 35% 63%;
  }
  40% {
    border-radius: 36% 64% 64% 36% / 64% 48% 52% 26%;
  }
  60% {
    border-radius: 37% 63% 51% 49% / 30% 30% 70% 73%;
  }
  80% {
    border-radius: 40% 60% 42% 58% / 51% 51% 49% 59%;
  }
}

@keyframes movement_one {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: translate(50%, 20%) rotateY(10deg) scale(1);
  }
}

@keyframes movement_two {
  0%,
  500% {
    transform: none;
  }
  50% {
    transform: translate(50%, 20%) rotate(-200deg) scale(1.3);
  }
}

/*-----------------------------------------------------------*/
/* Link Animations                                           */
/*-----------------------------------------------------------*/

.main-navigation li a,
footer li a,
.error-404-button a {
  cursor: pointer;
  font-size: 18px;
  position: relative;
  white-space: nowrap;
  color: var(--main-black);
}

.main-navigation li a::before,
footer li a::before,
.error-404-button a::before,
.main-navigation li a::after,
footer li a::after,
.error-404-button a::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.main-navigation li a::before,
footer li a::before,
.error-404-button a::before {
  background-color: var(--main-blue);
  content: '';
  transform-origin: 50% 100%;
  transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
  clip-path: polygon(
    0% 0%,
    0% 100%,
    0 100%,
    0 0,
    100% 0,
    100% 100%,
    0 100%,
    0 100%,
    100% 100%,
    100% 0%
  );
}

.main-navigation li a:hover::before,
footer li a:hover::before,
.error-404-button a:hover::before {
  transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
  clip-path: polygon(
    0% 0%,
    0% 100%,
    50% 100%,
    50% 0,
    50% 0,
    50% 100%,
    50% 100%,
    0 100%,
    100% 100%,
    100% 0%
  );
}

/*-----------------------------------------------------------*/
/* Header                                                    */
/*-----------------------------------------------------------*/

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: var(--main-easing);
}

.site-header.scrolled {
  background: var(--main-white);
  transition: var(--main-easing);
}


.main-navigation li a {
  font-weight: 600;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  transition: var(--main-easing);
}

.scrolled .header-wrapper {
  transition: var(--main-easing);
  padding: 10px 0;
}

.main-navigation ul {
  justify-content: end;
  align-items: center;
  gap: 50px;
}

.main-navigation li {
  margin: 0;
}

.header-right {
  display: flex;
  gap: 25px;
  align-items: center;
}

.header-book-now a {
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  padding: 15px 25px;
  background: var(--main-blue);
  color: var(--main-black);
  transition: var(--main-easing-fast);
  text-wrap: nowrap;
}

.header-book-now a:hover {
  background: var(--main-black);
  color: var(--main-white);
  transition: var(--main-easing);
}

.current_page_item,
.current_page_item a {
  color: var(--main-blue) !important;
}

/* Mobile menu button */

.mobile-menu-button {
  display: none;
}

.hamburger {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--main-black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.open-menu .hamburger svg {
  transform: rotate(-45deg);
}

.open-menu .hamburger svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/*-----------------------------------------------------------*/
/* Home Page                                                 */
/*-----------------------------------------------------------*/
.wedoo-booking-form-wide{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.wedoo-search-vehicles{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: #ffffff7a;
  padding: 60px;
  border-radius: 10px;

}

.titles-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 45px;
}

.homepage-form {
  display: grid;
  grid-template-columns: 30% 52%;
  justify-content: space-around;
  min-height: 100vh;
  align-items:end;
}

.homepage-form img {
  width: 100%;
  height: 1500px;
  max-width: initial;
  z-index: -1;
}

.homepage-form .bookingFrmHolder {
  border: none;
  filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.5));
}

.homepage-form .bookingFrmHolder h2 {
  padding: 0 50px;
}

.homepage-form .carBookingForm input[type='submit'] {
  margin-top: 15px;
  border: none;
  text-transform: none;
}

.homepage-form .carBookingForm select,
.homepage-form .carBookingForm input[type='date'],
.carBookingForm input[type='text'] {
  padding: 12px 10px;
}

.homepage-form .carBookingForm select,
.homepage-form .carBookingForm input[type='date'],
.carBookingForm input[type='text'] {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f1f1f1;
  margin-bottom: 5px;
}

.home .page-header {
  display: none;
}

.homepage-text {
  right: 20%;
  top: 15%;
}
.image-home-shadow {
  display: inline-block;
  position: relative;
  border-radius: 25px;
}

.image-home-shadow img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.image-home-shadow::before {
  content: '';
  position: absolute;
  bottom: 6%;
  right: 8%;
  width: 100%;
  height: 100%;
  background: var(--main-blue);
  z-index: -1;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 25px;
}

.wp-block-separator {
  border-top: 1px solid;
  width: 80%;
}

.animation-margin {
  padding: 0px 0px 0px 40px;
}

.why-section-list li::before {
  content: url('../inc/assets/icons/check-25.webp');
  padding-right: 20px;
}

.home-section-5 {
  align-items: center !important;
}

/*-----------------------------------------------------------*/
/* Single Page                                               */
/*-----------------------------------------------------------*/

.page-header {
  margin-top: 165px;
  height: 700px;
  overflow: hidden;
  border-radius: 30px;
}

.post-thumbnail::before {
  content: '';
  background: rgba(249, 182, 51, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 30px;
}

.entry-title {
  color: var(--main-white);
  mix-blend-mode: overlay;
  font-size: 9vw;
  margin: 0;
  line-height: 0.9;
}

.entry-content {
  margin: 0;
}

.text-width {
  width: 80%;
}
.image-overlay::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4458158263305322) 0%,
    rgba(0, 0, 0, 0.4318102240896359) 36%,
    rgba(45, 45, 45, 0.30015756302521013) 72%,
    rgba(248, 248, 248, 0.4766281512605042) 83%,
    rgba(248, 248, 248, 1) 94%,
    rgba(248, 248, 248, 1) 100%
  );
}
.image-overlay::after {
  z-index: 5;
}
.image-overlay img {
  width: 100%;
  height: auto;
  transform: translateY(-25%);
}
.box-2 {
  column-count: 2;
}
.post-thumbnail img {
  display: block;
  border-radius: 30px;
  height: auto;
  max-width: initial;
  width: 100vw;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-section-4 {
  padding: 135px 0;
}
.page-section-4 figure {
  overflow: hidden;
}
.page-section-4 figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

/*-----------------------------------------------------------*/
/* Footer                                                    */
/*-----------------------------------------------------------*/

.site-footer {
  color: var(--main-black);
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  padding-bottom: 20px;
}

.footer-text {
  margin-top: 20px;
}

.footer-columns a {
  text-decoration: none;
  align-items: start;
}

.first-column {
  width: 30vw;
}

.second-column-menu {
  display: flex;
  flex-direction: column;
  width: max-content;
}

.third-column-menu {
  display: flex;
  flex-direction: column;
  width: max-content;
}

.fourth-column-menu {
  display: flex;
  flex-direction: column;
  width: max-content;
}

.fifth-column-menu {
  display: flex;
  flex-direction: column;
  width: max-content;
}

.footer-text {
  width: 80%;
}

/*-----------------------------------------------------------*/
/* Contact Page                                              */
/*-----------------------------------------------------------*/

.contact-box {
  border-radius: 10px;
  padding: 20px;
}

/*-----------------------------------------------------------*/
/* 404 Page                                                  */
/*-----------------------------------------------------------*/

.error-404-content {
  text-align: end;
  mix-blend-mode: overlay;
  right: 10%;
  top: 20%;
}

.error-404-title h1 {
  font-size: 14vw;
  margin: 0;
  line-height: 0.9;
}

.error-404-message h2 {
  margin: 0;
}

.error-404-message p {
  margin-top: 60px;
  font-size: 2vw;
}

.error-404-button {
  margin-top: 100px;
}

.error-404-button a {
  text-decoration: none;
  font-size: 2vw;
}

/*-----------------------------------------------------------*/
/* Back to Top                                               */
/*-----------------------------------------------------------*/

.back-to-top {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 10;
}

#topBtn {
  border: none;
  padding: 0;
  background: none;
  transition: var(--main-easing-fast);
}

#topBtn:hover svg g {
  fill: var(--main-black);
  transition: var(--main-easing-fast);
}

/*-----------------------------------------------------------*/
/* Copyright                                                 */
/*-----------------------------------------------------------*/

.copyrights {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-around;
  align-items: center;
  background: #2c2a26;
  padding: 3px 0px 3px 0px;
}

.left-copyrights p,
.right-copyrights p {
  margin: 0;
}

.right-copyrights a {
  text-decoration: none;
}

.rent-columns-positioning {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: white;
  padding: 0px 50px 30px 50px;
  border-radius: 20px;
}

.accordion-title {
  line-height: 1.3 !important;
}

.rent-columns-buttons a {
  margin: 50px 0px 20px 0px;
  line-height: 1;
}
.scooter-img {
  width: 100%;
  height: auto;
  max-width: initial;
  z-index: -1;
}

.section-heading {
  font-size: 65px;
  font-weight: 800;
  color: black;
  line-height: 1.2;

  @media screen and (max-width: 768px) {
    font-size: 48px;
  }
}

.section-heading + h4,
.section-subheading {
  font-size: 60px;
  font-weight: 900;
  @media screen and (max-width: 768px) {
    font-size: 38px;
  }
}

.home-section-heading {
  font-size: 90px;
  font-weight: 800;
  @media screen and (max-width: 768px) {
    font-size: 42px;
  }
}

.home-section-heading + h4 {
  font-size: 70px;
  @media screen and (max-width: 768px) {
    font-size: 28px;
  }
}

.main-navigation ul ul a {
  width: 25px !important;
}

.main-navigation .sub-menu {
  gap: 20px;
  display: grid;
  gap: 20px;
  top: 15px;
  padding: 10px;
  background-color: #fff;
}
h3.video-text{
  font-size: 50px;
}
/*-----------------------------------------------------------*/
/* Responsive                                                 */
/*-----------------------------------------------------------*/

.image-overlay::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4458158263305322) 0%,
    rgba(0, 0, 0, 0.4318102240896359) 36%,
    rgba(45, 45, 45, 0.30015756302521013) 72%,
    rgba(248, 248, 248, 0.4766281512605042) 83%,
    rgba(248, 248, 248, 1) 94%,
    rgba(248, 248, 248, 1) 100%
  );
}
.image-overlay::after {
  z-index: 5;
}
.image-overlay {
  width: 100%;
  height: 700px;
}
.image-overlay img {
  width: 100%;
  height: auto;
  transform: translateY(-25%);
}
box-2 {
  column-count: 2;
}
.wpforms-field input {
  border-radius: 10px !important;
}
div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
  border-radius: 10px;
}
div.wpforms-container-full button[type='submit'] {
  background: var(--main-blue) !important;
  border-color: var(--main-blue);
  padding: 10px !important;
  color: #fff !important;
  font-weight: 700 !important;
  height: auto;
  padding: 15px 25px 15px 25px !important;
  font-size: 20px !important;
  border-radius: 10px;
}
div.wpforms-container-full button[type='submit']:hover {
  background: black !important;
  border-color: black;
  padding: 10px !important;
  color: white !important;
  height: auto;
  padding: 15px 25px 15px 25px !important;
  font-size: 20px !important;
  border-radius: 10px;
}
.form-box {
  border-radius: 10px;
  padding: 65px;
}
.phone-button {
  position: fixed;
  right: 0;
  top: 50%;
  background: #ffffff96;
  padding: 10px;
  z-index: 1000;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.phone-button a,
.phone-button svg {
  display: block;
}

@media only screen and (max-width: 1800px) {
  /* Shared Elements */
  .grid {
    max-width: 90vw;
  }
}

@media only screen and (max-width: 1440px) {
  /* Shared Elements */
  p,
  li,
  div,
  a {
    font-size: 18px;
  }
  h1 {
    font-size: 42px;
  }
  h4 {
    font-size: 42px;
  }
  /* Header */
  .main-navigation ul {
    gap: 30px;
  }
  /* Homepage */
  .homepage-form {
    grid-template-columns: 40% 40%;
  }
  .homepage-form h1 {
    font-size: 56px;
  }
  .homepage-form h4 {
    font-size: 60px;
  }
  .home-section-3 {
    height: 700px;
    overflow: hidden;
  }
  .wp-block-video video {
    width: auto;
  }
  .home-section-3:nth-child(2) {
    width: 100%;
  }
  .home-section-4 {
    gap: 15px;
  }
  .rent-columns-positioning {
    padding: 30px 20px 30px 20px;
  }
  .rent-columns-buttons a {
    padding-left: 50px;
    padding-right: 50px;
    margin: 20px 0px 20px 0px;
  }
  .home-section-5:nth-child(1) {
    flex-basis: 55%;
  }
  .home-section-5:nth-child(2) {
    align-items: center !important;
  }
  /* Footer */
  .footer-columns {
    grid-template-columns: repeat(3, auto);
  }
  .first-column {
    grid-area: 1 / 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (max-width: 1024px) {
  /* Shared Elements */
  .grid {
    max-width: 95vw;
  }
  p {
    font-size: 18px;
  }
  h1 {
    font-size: 40px;
  }
  h4 {
    font-size: 35px;
  }

  h3.video-text{
    font-size: 30px;
  }
  /* Mobile Menu */
  .mobile-menu-button {
    display: block;
  }
  .site-branding,
  .header-book-now,
  .mobile-menu-button {
    z-index: 901;
  }
  .main-navigation {
    background: var(--main-white);
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 900;
    padding: 200px 0;
    pointer-events: none;
    opacity: 0;
    position: fixed;
  }
  .open-menu .main-navigation {
    pointer-events: all;
  }
  .main-navigation ul {
    display: block;
    flex-direction: column;
    padding: 0 5vw;
  }
  .main-navigation li {
    padding: 20px 0;
    position: relative;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
    transform-origin: left;
    transform: scaleX(0);
  }
  .main-navigation li a {
    width: max-content;
  }
  .header-book-now a {
    font-size: 2.5vw;
  }
  .header-wrapper {
    gap: 5vw;
  }
  /* Homepage */
  .homepage-form {
    grid-template-columns: 55% 35%;
  }
  .homepage-form h1 {
    font-size: 38px;
  }
  .homepage-form h4 {
    font-size: 38px;
  }
  .home-section-1:nth-child(1) {
    flex-basis: 60%;
  }
  .img-radius-1 img {
    border-radius: 15% 15%;
  }

  .text-width {
    width: 100%;
  }
  /* Contact */
  .contact-info > div {
    flex-direction: column !important;
  }
  .contact-form {
    align-self: center !important;
  }
  .post-thumbnail img {
    height: 100%;
    width: auto;
  }
  .homepage-form{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-items: center;
  }
  .wedoo-booking-form-wide{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-content: center;
    width: 100%;
  }
  .titles-wrapper{
    padding: 100px;
  }
}

@media only screen and (max-width: 900px) {
  .home-section-3 {
    height: 525px;
    overflow: hidden;
}

}


@media only screen and (max-width: 780px) {
  /* Preloader */
  .preloader-logo svg {
    width: 60vw;
  }
  /* Shared Elements */
  h3 {
    font-size: 25px;
  }
  h2 {
    font-size: 45px;
  }
  /* Homepage */
  .homepage-form {
    grid-template-columns: 1fr;
  }
  .homepage-form .container {
    order: 2;
    padding: 50px 10vw 0;
  }
  .homepage-form h1 {
    font-size: 10vw;
    text-align: center;
  }
  .homepage-form h4 {
    font-size: 8vw;
    margin: 0 auto;
  }

  .first-column {
    width: auto;
  }

  .wp-block-image img {
    width: auto;
    height: auto;
  }
  .image-home-shadow::before {
    bottom: 6%;
    right: 10%;
    width: 90%;
    height: 95%;
  }
  body .is-layout-flex {
    display: flex;
  }
  .phone-button svg {
    width: 40px;
    height: 40px;
  }

  .entry-title {
    left: 50%;
    top: 50%;
  }

  .page-section-2 {
    flex-direction: column-reverse;
  }
  .page-section-1 h1,
  .page-section-2 h1 {
    text-align: center;
  }
  .page-section-1 h4,
  .page-section-2 h4,
  .page-section-3 h4 {
    margin: 0 auto 50px auto;
  }
  /* Footer */
  .footer-columns {
    grid-template-columns: repeat(2, auto);
  }
  .first-column {
    grid-area: 1 / 1 / 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  h3.video-text {
    font-size: 18px;
}
.homepage-form img {
  width: 100%;
  height: 1100px;
}
}
@media only screen and (max-width: 700px) {
  .home-section-3 {
    height: 400px;
    overflow: hidden;
}
}

@media only screen and (max-width: 500px) {
  h2 {
    font-size: 33px;
  }
  .image-overlay {
    height: 900px;
  }
  /* Footer */
  .footer-columns {
    grid-template-columns: repeat(1, auto);
  }
  .first-column {
    grid-area: unset;
  }
  
  .home-section-3 {
    height: 268px;
    overflow: hidden;
}

}

@media only screen and (max-width: 425px) {
  p,
  li,
  div,
  a {
    font-size: 15px;
  }
  .anim-bg {
    padding: 0 15px;
  }
  .preloader-logo svg {
    width: 70vw;
  }
}

/* isrt booking  */

/* iosrt booking */
.home .iosrt_formwrap:not(.homepage-form .iosrt_formwrap) {
    display: none;
}

.iosrt_formwrap {
	background-color:var(--main-blue) !important;
	max-width:900px;
	margin-inline:auto !important;


}

.iosrt_filters_searchbox {
	background-color:var(--main-blue) !important;
}

.homepage-form .iosrt_formwrap {
	margin-bottom:5rem;
	max-width: 750px;
	width:100%;
}

.homepage-form .iosrt_formwrap .iosrt_2colflexwrap {
	display:block;
}
article#post-4280 .iosrt_formwrap {
	max-width: 900px;
    margin: 4rem auto;
	width:100%;
   
}

.iosrt_sidecol {
  top: 70px !important;
}


.page:has(.iosrt_filters_searchbox) .entry-content, .page:has(.iosrt_book_flexwrap) .entry-content, .page:has(.iosrt_vehicle_page) .entry-content {
	max-width: 1740px;
	margin-inline:auto;
}

h2.iosrt_model_h2 span.iosrt_model_title,
div.iosrt_model_price,div.iosrt_model_pricedesc {
	color: var(--main-blue);
}
div.iosrt_model_pricedesc {
	font-weight:bold;
}
a.iosrt_abtn:hover,button.iosrt_couponbtn, 
button[type=button].iosrt_couponbtn,
table.iosrt_sumtable th.iosrt_vimportant, 
table.iosrt_sumtable td.iosrt_vimportant
{
	background-color:var(--main-blue) !important;
	border-color:var(--main-blue) !important;
}

button.iosrt_bookbtn:hover, button[type=button].iosrt_bookbtn:hover {
	background-color:var(--main-blue) !important;
	border-color:var(--main-blue) !important;
}

button.iosrt_bookbtn, button[type=button].iosrt_bookbtn, button[type=submit].iosrt_bookbtn {
	background-color: var(--main-black) !important;
	border-color: var(--main-black) !important;
}

button.iosrt_btn:hover, button[type=submit].iosrt_btn:hover, button[type=button].iosrt_btn{
	transition:all .25s;
}

.iosrt_model_ribbon iosrt_ribbon_purple a.iosrt_abtn2book, a.iosrt_abtn2book:visited, a.iosrt_abtn2book:active, a.iosrt_abtn2book:link, a.iosrt_abtn2book:hover {
    background: var(--main-black) !important;
    border-color: var(--main-black) !important;
}
a.iosrt_abtn1book, a.iosrt_abtn1book:visited, a.iosrt_abtn1book:active, a.iosrt_abtn1book:link, a.iosrt_abtn1book:hover {
	background: var(--main-blue) !important;
  border-color: var(--main-blue) !important;
}

h3.iosrt_ribbon_orange::before {
	border-color: background: var(--main-blue) !important;
}
h3.iosrt_ribbon_orange::before,
h3.iosrt_ribbon_orange div {
	background: var(--main-blue) !important;
}

.iosrt_model_ribbon iosrt_ribbon_purple a.iosrt_abtn2book, a.iosrt_abtn2book:visited, a.iosrt_abtn2book:active, a.iosrt_abtn2book:link, a.iosrt_abtn2book:hover {
    background: var(--main-black) !important;
    border-color: var(--main-black) !important;
}

ol.wp-block-list li {
	list-style:numeric;
}
