@charset "UTF-8";
.rkit-offcanvas button.menu-button-rometheme {
  transition: all 0.5;
  background-color: #00cea6;
  padding: 20px;
  display: flex;
  align-items: center;
  border: none;
}

.rkit-offcanvas button.menu-button-rometheme:hover {
    border: none;
    background-color: #00cea6;
}

.rkit-offcanvas-icon {
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}

li.submenu-item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

div.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

div.mobile-header {
  display: none;
}

nav.off-canvas {
  display: none;
}

div.menu-offcanvas {
  display: none;
}

.menu-offcanvas-rometheme button.rkit-offcanvas-close {
  position: relative;
  float: right;
  z-index: 9999;
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  color: black;
  fill: black;
  padding: 0px;
  border-radius: 0px;
}

.menu-offcanvas-rometheme button.rkit-offcanvas-close .offcanvas-close-icon {
  fill: black;
  color: black;
}

.menu-offcanvas-rometheme button.rkit-offcanvas-close:hover {
  background: #00cea6;
  color: black;
  /* border-radius: 0px; */
  border: none;
}

a.menu-button {
  text-decoration: none;
  border-bottom: none;
}

.dropdown-content {
  opacity: 0;
  margin-top: 20px;
  animation: fade_in 1s;
}

.offcanvas-navmenu-rometheme {
  width: 100%;
  position: fixed;
  display: flex;
  top: 0;
  height: 100%;
  z-index: 999;
  visibility: hidden;
}

.overlay-rometheme {
  background-color: rgba(0, 0, 0, 0.328);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 998;
  transition: all 0.7s ease-in-out;
  /* opacity: 0; */
}

.menu-offcanvas-rometheme {
  z-index: 9999;
  background-color: white;
  width: 60%;
  height: 100vh;
  transition: all 0.7s ease-in-out;
  /* opacity: 0; */
  overflow: auto;
}

.rkit-btn-container {
  display: flex;
}

.rkit-offcanvas-header {
  width: 100%;
}

.rkit-offcanvas.offcanvas-show .offcanvas-navmenu-rometheme {
  visibility: visible;
}

.rkit-offcanvas.offcanvas-left .offcanvas-navmenu-rometheme {
  left: 0;
}

.rkit-offcanvas.offcanvas-right .offcanvas-navmenu-rometheme {
  right: 0;
  justify-content: end;
}

.rkit-offcanvas.offcanvas-left .menu-offcanvas-rometheme,
.rkit-offcanvas.offcanvas-left .overlay-rometheme {
  transform: translateX(-100%);
}

.rkit-offcanvas.offcanvas-right .menu-offcanvas-rometheme,
.rkit-offcanvas.offcanvas-right .overlay-rometheme {
  transform: translateX(100%);
}

.rkit-offcanvas.offcanvas-show.offcanvas-right .menu-offcanvas-rometheme,
.rkit-offcanvas.offcanvas-show.offcanvas-left .menu-offcanvas-rometheme,
.rkit-offcanvas.offcanvas-show.offcanvas-right .overlay-rometheme,
.rkit-offcanvas.offcanvas-show.offcanvas-left .overlay-rometheme {
  transform: translateX(0);
  /* opacity: 1;   */
}
.menu-horizontal {
    display: flex;
    flex-direction: row;
}

.menu-vertical {
    display: flex;
    flex-direction: column;
}

a.submenu-item-text {
    width: 100%;
    display: inline-block;
    border-bottom: none;
    height: 100%;
}

.expand-content{
    overflow: hidden;
    height: auto;
}
.rkit-headerinfo {
  display: flex;
  flex-wrap: wrap;
}

.rkit-list-headerinfo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.rkit-hamburger-tablet,
.rkit-hamburger-mobile {
  display: none;
}

.rkit-btn-hamburger {
  display: flex;
}

.rkit-btn-hamburger {
  background: #00cea6;
  color: black;
}

.rkit-navmenu {
  background: rgba(255, 255, 255, 0);
}

.rkit-nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: black;
  z-index: 1;
  position: relative;
}

.rkit-menu-item:hover {
  /* background-color: gray; */
  color: black;
}

.rkit-submenu-item {
  background-color: #eeeeee;
  color: #000;
}

.rkit-submenu-item:hover {
  background-color: rgb(169, 169, 169);
  color: black;
}

.rkit-menu-item .rkit-nav-link  {
  padding: 12px 24px;
}

.rkit-submenu-icon {
  display: inline-block;
  color: currentColor;
  fill: currentColor;
}

.rkit-submenu-item .rkit-submenu-icon {
  transform: rotate(-90deg);
}

.rkit-navmenu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /* transition: all 1s; */
}

.rkit-menu-container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.rkit-menu-container li {
  position: relative;
  /* transition: all 1s; */
  cursor: pointer;
}

.rkit-navmenu-dropdown {
  position: absolute;
  width: max-content;
  max-height: 0px;
  transition: all 0.5s;
  /* transform: scaleY(0); */
  transform-origin: top;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.rkit-submenu-item .rkit-navmenu-dropdown {
  left: 100%;
  top: 0;
}

.rkit-dropdown-hover:hover > .rkit-navmenu-dropdown {
  /* transform: scaleY(1); */
  max-height: var(--height);
  opacity: 1;
  animation: slideDown 0.5s;
  visibility: visible;
}

.rkit-dropdown-click.rkit-dropdown-show > .rkit-navmenu-dropdown {
  /* transform: scaleY(1); */
  max-height: var(--height);
  opacity: 1;
  animation: slideDown 0.5s;
  visibility: visible;
}

.rkit-icon-close,
.rkit-icon-open {
  transition: all 0.5s;
  display: block;
  position: relative;
}

.rkit-hamburger .rkit-icon-close {
  opacity: 0;
  transform: rotate(90deg);
  position: absolute;
}

.rkit-hamburger-show .rkit-icon-open {
  opacity: 0;
  transform: rotate(90deg);
  position: absolute;
}

.rkit-hamburger-show .rkit-icon-close {
  opacity: 1;
  transform: rotate(0deg);
  position: relative;
}

.rkit-responsive-tablet.rkit-menu-show,
.rkit-responsive-mobile.rkit-menu-show {
  /* height: fit-content;     */
  transform: scaleY(1);
  opacity: 1;
  max-height: var(--height);
  transition: all 0.5s;
}

.pointer-underline,
.pointer-overline,
.pointer-doubleline,
.pointer-framed,
.pointer-bg
{
  position: relative;
  --pointer-width:2px;
  --pointer-color : #00cea6;
}

.pointer-underline::after,
.pointer-overline::after,
.pointer-doubleline::after,
.pointer-framed::after,
.pointer-framed::before,
.pointer-bg::after {
  border-radius: inherit;
}

.pointer-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.5s;
  border-bottom-width: var(--pointer-width) ;
  border-bottom-color: var(--pointer-color);
  border-bottom-style: solid;
}

.pointer-overline::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.5s;
  border-top-width: var(--pointer-width) ;
  border-top-color: var(--pointer-color);
  border-top-style: solid;
}


.pointer-doubleline::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.5s;
  border-top-width: var(--pointer-width) ;
  border-top-color: var(--pointer-color);
  border-top-style: solid;
  border-bottom-width: var(--pointer-width) ;
  border-bottom-color: var(--pointer-color);
  border-bottom-style: solid;
}

.pointer-underline:hover::after, 
.pointer-overline:hover::after,
.pointer-doubleline:hover::after
{
  width: 100%;
}

.pointer-framed:before {
  content: "";
  position: absolute;
  border-top-width: var(--pointer-width);
  border-bottom-width: 0px;
  border-left-width: var(--pointer-width);
  border-right-width: var(--pointer-width);
  border-color: var(--pointer-color);
  border-style: solid;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  opacity: 0;
  transition: height 0.3s , width 0.2s 0.3s , opacity 0.1s 0.5s;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.pointer-framed::after {
  content : "";
  position : absolute;
  border-bottom-width : var(--pointer-width);
  border-top-width : 0px;
  border-left-width : var(--pointer-width);
  border-right-width : var(--pointer-width);
  border-color : var(--pointer-color);
  border-style : solid;
  width : 0;
  height :0;
  left : 50%;
  transform : translateX(-50%);
  bottom : 0;
  opacity: 0;
  transition : height 0.3s , width 0.2s 0.3s , opacity 0.1s 0.5s;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.pointer-framed:hover::after, .pointer-framed:hover::before {
  width : 100%;
  height : 50%;
  opacity : 1;
  transition : width 0.2s , height 0.3s 0.2s;
}

.pointer-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 50%;
  background: var(--pointer-color);
  transform: translateX(-50%);
  transition: height 0.5s;
}

.pointer-bg:hover::after {
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .rkit-hamburger-tablet {
    display: flex;
  }

  .rkit-responsive-tablet {
    position: absolute;
    /* height: 0; */
    max-height: 0px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    z-index: 999;
    margin-top: var(--menu-distance);
  }

  .rkit-responsive-tablet .pointer-underline::after,
  .rkit-responsive-tablet .pointer-overline::after,
  .rkit-responsive-tablet .pointer-doubleline::after,
  .rkit-responsive-tablet .pointer-framed::after,
  .rkit-responsive-tablet .pointer-framed::before,
  .rkit-responsive-tablet .pointer-bg::after{
    content: none;
  }

  .rkit-responsive-tablet .rkit-menu-container {
    flex-direction: column;
  }

  .rkit-responsive-tablet .rkit-navmenu-dropdown {
    position: static;
    width: 100%;
  }

  .rkit-responsive-tablet .rkit-submenu-item .rkit-submenu-icon {
    transform: rotate(0deg);
  }
}

@media screen and (max-width: 767px) {
  .rkit-hamburger-mobile {
    display: flex;
  }

  .rkit-responsive-mobile {
    position: absolute;
    /* height: 0; */
    max-height: 0px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    z-index: 999;
    margin-top: var(--menu-distance);
  }

  .rkit-responsive-mobile .rkit-menu-container {
    flex-direction: column;
  }

  .rkit-responsive-mobile .rkit-navmenu-dropdown {
    position: static;
    width: 100%;
  }

  .rkit-responsive-mobile .rkit-submenu-item .rkit-submenu-icon {
    transform: rotate(0deg);
  }

  .rkit-responsive-mobile .pointer-underline::after,
  .rkit-responsive-mobile .pointer-overline::after,
  .rkit-responsive-mobile .pointer-doubleline::after,
  .rkit-responsive-mobile .pointer-framed::after,
  .rkit-responsive-mobile .pointer-framed::before,
  .rkit-responsive-mobile .pointer-bg::after
  
  {
    content: none;
  }

}

@keyframes slideDown {
  from {
    transform: translateY(-0.5rem);
  }
  to {
    transform: translateY(0rem);
  }
}
.rkit-search .rkit-search-button {
    background-color: #00cea6;
    padding: 18px;
    display: flex !important;
    align-items: center;
    border: none;
    gap: 0.5rem;
}

.rkit-search .rkit-search-button:hover {
    background-color: #009678;
}

.rkit-search .rkit-search-input {
    outline: none;
    width: 100%;
    border: none;
    border-radius: 0px;
    background: #f1f1f1;
    padding: 18px;
}

.rkit-search .rkit-search-input:focus {
    outline: none;
}

.rkit-search {
    /* overflow: hidden; */
    display: flex;
    flex-direction: row;
}

.rkit-search-icon {
    font-size: 20px;
}.rkit-image {
    display: flex;
    flex-direction: column;
}

.rkit-image .site-caption {
    width: 100%;
}.rkit-post-grid-body {
    padding: 20px 30px 30px 30px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.rkit-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.rkit-image-link {
    display: block;
    width: 100%;
}

.rkit-post-grid-card {
    background-color: #e9e9e9;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.rkit-w-50 {
    width: 50%;
}

.rkit-image-container {
    position: relative;
} 

.rkit-post-grid-img {
    transition: all 0.5s;
    object-fit: cover;
    object-position: center;
    width: 100% !important  ;
    height: 100% !important;
}

.rkit-post-grid-card:hover .rkit-post-grid-img {
    transform: scale(1.1);
    overflow:   hidden ;
}

.rkit-metadata,
.rkit-metadata a {
    color: gray;
}

.rkit-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

}

.rkit-float-metawrapper-date {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 3rem;
    background-color: #00cea6;
}

.rkit-float-metawrapper-date>span {
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 1;

}

.rkit-float-metawrapper-date>span>strong {
    font-size: large;
}

.rkit-floating-category {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    font-size: 12px;
    z-index: 2;
    gap: 0.5rem;
}


.rkit-post-block-card .rkit-floating-category-btn {
    background-color: #535353;
    padding-inline: 15px;
    border-radius: 0;
    color: #ffffff;
    border: none;
}

.rkit-post-block-card .rkit-floating-category-btn:hover {
    background-color: #00cea6;
    color: black;
}

.rkit-post-block-card .rkit-readmore-btn {
    background-color: #535353;
    border-radius: 0;
    padding: 16px 32px 16px 32px;
    text-align: center;
    font-size: 15px;
    color: white;
    transition: all 0.5s;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rkit-post-block-card .rkit-readmore-btn:hover {
    background-color: #00cea6;
    color: black;
}

.rkit-readmore-div {
    display: flex;
}

.rkit-metadata-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}


.rkit-post-grid .rkit-post-grid-body.rkit-post-grid-highlight-border::before {
    content: "";
    display: block;
    height: 50%;
    width: 2px;
    background: #ff712b;
    position: absolute;
    z-index: 999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.rkit-post-grid-title-container {
    margin : 10px 0px 10px 0px;
}

.rkit-post-grid-title{
    font-size: 20px;
    font-weight: 700;
    color :black;
}

.rkit-post-grid-paragraph {
    margin: 0px 0px 30px 0px;
}

@media only screen and (max-width:1024px) {
    .rkit-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width:767px) {
    .rkit-post-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .rkit-post-grid-card {
        flex-direction: column !important;
    }

    .rkit-w-50 {
        width: 100%;
    }
}.rkit-post-block-body {
    padding: 20px 30px 30px 30px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.rkit-post-block {
    display: flex;
    flex-direction: column;
}

.rkit-image-link {
    display: block;
    width: 100%;
}

.rkit-post-block-card {
    background-color: #e9e9e9;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.rkit-w-50 {
    width: 50%;
}

.rkit-post-block .rkit-image-container {
    position: relative;
    width: 100%;
}

.rkit-post-block-img {
    transition: all 0.5s;
    object-fit: cover;
    object-position: center;
    width: 100% !important  ;
    height: 100% !important;
}

.rkit-post-block-card:hover .rkit-post-block-img {
    transform: scale(1.1);
}

.rkit-metadata,
.rkit-metadata a {
    color: gray;
}

.rkit-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

}

.rkit-float-metawrapper-date {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 3rem;
    background-color: #00cea6;
}

.rkit-float-metawrapper-date>span {
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 1;

}

.rkit-float-metawrapper-date>span>strong {
    font-size: large;
}

.rkit-floating-category {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    font-size: 12px;
    z-index: 2;
    gap: 0.5rem;
}


.rkit-post-grid-card .rkit-floating-category-btn {
    background-color: #535353;
    padding-inline: 15px;
    border-radius: 0;
    color: #ffffff;
    border: none;
}

.rkit-post-grid-card .rkit-floating-category-btn:hover {
    background-color: #00cea6;
    color: black;
}

.rkit-post-grid-card .rkit-readmore-btn {
    background-color: #535353;
    border-radius: 0;
    padding: 16px 32px 16px 32px;
    text-align: center;
    font-size: 15px;
    color: white;
    transition: all 0.5s;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rkit-post-grid-card .rkit-readmore-btn:hover {
    background-color: #00cea6;
    color: black;
}

.rkit-readmore-div {
    display: flex;
}

.rkit-metadata-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}


.rkit-post-block .rkit-post-block-body.rkit-post-block-highlight-border::before {
    content: "";
    display: block;
    height: 50%;
    width: 2px;
    background: #ff712b;
    position: absolute;
    z-index: 999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.rkit-post-block-title-container {
    margin : 10px 0px 10px 0px;
}

.rkit-post-block-title{
    font-size: 20px;
    font-weight: 700;
    color :black;
}

.rkit-post-block-paragraph {
    margin: 0px 0px 30px 0px;
}

@media only screen and (max-width:1024px) {
    .rkit-post-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width:767px) {
    .rkit-post-block {
        grid-template-columns: repeat(1, 1fr);
    }

    .rkit-post-block-card {
        flex-direction: column !important;
    }

    .rkit-w-50 {
        width: 100%;
    }
}.rkit-cta {
    overflow: hidden;
    position: relative;
    background: white;
    transition: all 0.5s;
}

.rkit-cta-container-classic {
    display: flex;
}

.rkit-cta-container-cover {
    display: block;
}

.rkit-cta-img__wrapper {
    background-size: cover;
    background-position: 50%;
    min-width: 50%;
    position: relative;
    overflow: hidden;
}

.rkit-cta-img__image {
    transition: all 1.5s;
    object-fit: cover;
    object-position: center;
    display: block;
    background-size: cover;
    background-position: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.rkit-cta-container-cover .rkit-cta-img__wrapper {
    min-height: 350px;
}

.rkit-cta-container-classic .rkit-cta-img__wrapper {
    min-height: 350px;
}


.rkit-cta-container-cover .rkit-cta-content__wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.rkit-cta-description {
    margin-bottom: 1rem;
}

.rkit-cta-container-classic .rkit-cta-content__wrapper {
    min-height: 350px;
}

.rkit-cta-ribbon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: auto;
    right: 0;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

.rkit-cta-ribbon.rkit-cta-ribbon__left {
    transform: rotate(0);
    left: 0;
    right: auto;
}

.rkit-cta-ribbon.rkit-cta-ribbon__right {
    transform: rotate(90deg);
    left: auto;
    right: 0;
}

.rkit-cta-ribbon__inner {
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    background: #00cea6;
    color: #000;
    line-height: 2;
    font-weight: 700;
}

.rkit-cta-content__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding : 30px;
}

.rkit-cta .rkit-cta-title {
    transition: all 0.5s;
}

.rkit-cta-img__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.5s;
}

.rkit-cta:hover .rkit-cta-img__overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

.rkit-cta:hover .zoom-in {
    transform: scale(1.2);
}

.zoom-out {
    transform: scale(1.2);
}

.rkit-cta:hover .zoom-out {
    transform: scale(1);
}

.rkit-cta-icon__graphic_element {
    font-size: 70px;
}

.rkit-cta-img__image.move-left {
    transform: scale(1.2) translateX(8%);
}

.rkit-cta-img__image.move-right {
    transform: scale(1.2) translateX(-8%);
}

.rkit-cta-img__image.move-up {
    transform: scale(1.2) translateY(8%);
}

.rkit-cta-img__image.move-down {
    transform: scale(1.2) translateY(-8%);
}

.rkit-cta:hover .rkit-cta-img__image.move-left,
.rkit-cta:hover .rkit-cta-img__image.move-right,
.rkit-cta:hover .rkit-cta-img__image.move-up,
.rkit-cta:hover .rkit-cta-img__image.move-down {
    transform: scale(1.2) translateX(0%);
}

.rkit-cta__graphic_element {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.rkit-cta__graphic_element:has(.rkit-cta-icon__graphic_element) {
    aspect-ratio: 1/1;
}

.rkit-cta-text {
    display: flex;
    flex-direction: column;
}

.rkit-cta a.rkit-cta-button {
    background-color: #535353;
    border-radius: 5px;
    padding: 16px 32px 16px 32px;
    text-align: center;
    font-size: 15px;
    color: white;
    transition: all 0.5s;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rkit-cta-button.fullwidth {
    width: 100%;
}

.rkit-cta a.rkit-cta-button:hover {
    background-color: #00cea6;
    color: #535353;
}.rkit-blockquote{
    display: flex;
    position: relative;
}

.blockquote-top{
    flex-direction: column;
}

.rkit-quote-icon{
    font-size: 4rem;
    margin : 0px 0px 20px 0px;
}

.rkit-blockquote__icon {
    color: #00cea6;
}

.blockquote-top .rkit-quote-icon{
    display: flex;  
    align-items: center;
}

.blockquote-inline .rkit-quote-icon {
    float: left;
    line-height: 1em;
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 .5em 0 0;
}

.blockquote-inline , .blockquote-absolute {
    flex-direction: column;
}

.rkit-quote-author {
    font-weight: 700;
}

.blockquote-absolute .rkit-quote-icon {
    position: absolute;
    z-index: 1;
    left : 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    margin: 0;
}
.rkit-social-media__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem;
}

.rkit-social-media__list .rkit-social-share__link {
  width: fit-content;
  border: none;
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  border-radius: 0;
  padding: 10px;
}

.rkit-social-share.fullwidth .rkit-social-share__link {
  width: 100%;
  justify-content: center;
}

.facebook {
  --color: #1877f2; /* Facebook Blue */
}

.twitter {
  --color: #000000; /* X (Twitter) Black */
}

.pinterest {
  --color: #e60023; /* Pinterest Red */
}

.linkedin {
  --color: #0a66c2; /* LinkedIn Blue */
}

.quora {
  --color: #b92b27; /* Quora Red */
}

.reddit {
  --color: #ff4500; /* Reddit Orange */
}

.telegram {
  --color: #26a5e4; /* Telegram Blue */
}

.viber {
  --color: #665cac; /* Viber Purple */
}

.whatsapp {
  --color: #25d366; /* WhatsApp Green */
}

.line {
  --color: #00b900; /* LINE Green */
}

.facebook:hover {
  --color: #145dbf; /* Facebook Darker Blue */
}

.twitter:hover {
  --color: #1c1c1c; /* X (Twitter) Darker Black */
}

.pinterest:hover {
  --color: #b8001b; /* Pinterest Darker Red */
}

.linkedin:hover {
  --color: #004182; /* LinkedIn Darker Blue */
}

.quora:hover {
  --color: #8a211d; /* Quora Darker Red */
}

.reddit:hover {
  --color: #cc3700; /* Reddit Darker Orange */
}

.telegram:hover {
  --color: #007ba7; /* Telegram Darker Blue */
}

.viber:hover {
  --color: #514483; /* Viber Darker Purple */
}

.whatsapp:hover {
  --color: #1ebe5c; /* WhatsApp Darker Green */
}

.line:hover {
  --color: #009900; /* LINE Darker Green */
}

.rkit-social-share.flat .rkit-social-share__link {
  background-color: var(--color);
  color: white;
  fill: white;
}

.rkit-social-share.flat .rkit-social-share__link:hover {
  color: white;
  fill: white;
}

.rkit-social-share.outline .rkit-social-share__link,
.rkit-social-share.framed .rkit-social-share__link {
  border-width: 2px;
  border-style: solid;
  border-color: var(--color);
  color: var(--color);
  fill: var(--color);
  background: transparent;
}

.rkit-social-share.framed .rkit-social-share__link:hover {
  background: transparent;
  color: var(--color);
  fill: var(--color);
}

.rkit-social-share.outline .rkit-social-share__link:hover {
  background-color: var(--color);
  color: white;
  fill: white;
}

.rkit-social-share.flat-on-hover .rkit-social-share__link {
  background: transparent;
  color: var(--color);
  fill: var(--color);
}

.rkit-social-share.flat-on-hover .rkit-social-share__link:hover {
  background-color: var(--color);
  color: white;
  fill: white;
}

.rkit-social-share.pointer .rkit-social-share__link,
.rkit-social-share.pointer .rkit-social-share__link:hover,
.rkit-social-share.pointer-on-hover .rkit-social-share__link,
.rkit-social-share.pointer-on-hover .rkit-social-share__link:hover {
  --pointer-width: 3px;
  position: relative;
  background: transparent;
  color: var(--color);
  fill: var(--color);
}

.rkit-social-share.pointer .rkit-social-share__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--pointer-width);
  background-color: var(--color);
  transform: translateY(50%);
}

.rkit-social-share.pointer-on-hover .rkit-social-share__link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  width: 0%;
  height: var(--pointer-width);
  background-color: var(--color);
  transition: width 0.5s;
  transform: translateX(-50%);
}

.rkit-social-share.pointer-on-hover .rkit-social-share__link:hover::after {
  width: 100%;
}
.rkit-team-card {
    background-color: white;
    transition: all 0.5s;
    overflow: hidden;
    position: relative;
}

.pointer {
    --pointer-size : 5px;
}

.rkit-team-card.pointer::before {
    content: "";
    height: var(--pointer-size);
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: blue;
    position: absolute;
    z-index: 9999;
}

.rkit-team-card.pointer::after {
    content: "";
    position: absolute;
    width: 0%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: var(--pointer-size);
    transition: width 0.5s ease;
    background: #00cea6;
    z-index: 99999;
}

.rkit-team-card:hover.pointer::after {
    width: 100%;
}

.rkit-team__detail {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
}

.rkit-team__detail h4 {
    margin-bottom: 0;
    margin-top: 0;
}

.rkit-team__img {
    display: flex;
    transition: all 1s;
    overflow: hidden;
}

.rkit-team__img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.5s;
}


.rkit-team__img.move-left img {
    transform: scale(1.2) translateX(8%);
}

.rkit-team__img.move-right img {
    transform: scale(1.2) translateX(-8%);
}

.rkit-team__img.move-up img {
    transform: scale(1.2) translateY(8%);
}

.rkit-team__img.move-down img {
    transform: scale(1.2) translateY(-8%);
}

.rkit-team-card:hover .rkit-team__img.move-left img,
.rkit-team-card:hover .rkit-team__img.move-right img,
.rkit-team-card:hover .rkit-team__img.move-up img,
.rkit-team-card:hover .rkit-team__img.move-down img {
    transform: scale(1.2) translateX(0%);
}

.rkit-team-card:hover .rkit-team__img.zoom-in img {
    transform: scale(1.2);
}

.rkit-team__img.zoom-out img {
    transform: scale(1.2);
}

.rkit-team-card:hover .rkit-team__img.zoom-out img {
    transform: scale(1);
}

.rkit-team__role {
    color: gray;
    font-size: 15px;
    margin-bottom: 0.5rem;
}

.rkit-team__description {
    margin-bottom: 0.5rem;
}

.rkit-team__overlay {
    overflow: hidden;
}

.rkit-team__overlay .rkit-team-card {
    position: relative;
}

.rkit-team__overlay .rkit-team__detail {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: all 0.5s;
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rkit-team__overlay .rkit-team__detail::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    /* transform: translateY(10%); */
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    z-index: -1;
}

.rkit-team__overlay:hover .rkit-team__detail,
.rkit-team__overlay:hover .rkit-team__detail::after
{
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.rkit-team__overlay:hover .rkit-team__img {
    filter: blur(5px);
}


.rkit-team__social {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.rkit-team__social_item {
    padding: 20px;
    aspect-ratio: 1/1;
    /* width: 35px; */
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color);
    transition: all 0.5s;
}

.rkit-team__social_icon {
    color: var(--icon-color);
    fill: var(--icon-color);
}

.rkit-team__social_on_hover_top .rkit-team-card,
.rkit-team__social_on_hover_left .rkit-team-card,
.rkit-team__social_on_hover_right .rkit-team-card,
.rkit-team__social_on_hover_bottom .rkit-team-card {
    position: relative;
    overflow: hidden;
}

.rkit-team__social_on_hover_top .rkit-team__social,
.rkit-team__social_on_hover_left .rkit-team__social,
.rkit-team__social_on_hover_right .rkit-team__social,
.rkit-team__social_on_hover_bottom .rkit-team__social {
    position: absolute;
    display: flex;
    opacity: 0;
    transition: all 0.5s;
}

.rkit-team__social_on_hover_top .rkit-team__social ,
.rkit-team__social_on_hover_bottom .rkit-team__social {
    flex-direction: row;
}

.rkit-team__social_on_hover_left .rkit-team__social, 
.rkit-team__social_on_hover_right .rkit-team__social {
    flex-direction: column;
    top: 0;
    bottom: 0;
    align-items: center;
}

.rkit-team__social_on_hover_top .rkit-team__social, 
.rkit-team__social_on_hover_bottom .rkit-team__social {
    flex-direction: row;
    left: 0;
    right: 0;
    justify-content: center;

}

.rkit-team__social_on_hover_left .rkit-team__social {
    left: -50px;
}

.rkit-team__social_on_hover_left:hover .rkit-team__social {
    left: 0;
    opacity: 1;
}

.rkit-team__social_on_hover_right .rkit-team__social {
    right: -50px;
}

.rkit-team__social_on_hover_right:hover .rkit-team__social {
    right: 0;
    opacity: 1;
}

.rkit-team__social_on_hover_top .rkit-team__social {
    top: -50px;
}

.rkit-team__social_on_hover_top:hover .rkit-team__social {
    top: 0;
    opacity: 1;
}

.rkit-team__social_on_hover_bottom .rkit-team__social {
    bottom: -50px;
}

.rkit-team__social_on_hover_bottom:hover .rkit-team__social {
    bottom: 0;
    opacity: 1;
}


.rkit-team__centered .rkit-team-card{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rkit-team__centered .rkit-team__img {
    border-radius: 50%;
    overflow: hidden;
    width: 50%;
    min-width: 180px;

}

.rkit-team__centered .rkit-team__img img {
    aspect-ratio: 1/1;
}

.rkit-team__centered .rkit-team__detail {
    text-align: center;
    justify-content: center;
    align-items: center;
}


.facebook {
    --color: #1877F2; /* Facebook Blue */
    --icon-color : #ffffff;
}

.twitter {
    --color: #000000; /* X (Twitter) Black */
    --icon-color : #ffffff;
}

.pinterest {
    --color: #E60023; /* Pinterest Red */
    --icon-color : #ffffff;
}

.linkedin {
    --color: #0A66C2; /* LinkedIn Blue */
    --icon-color : #ffffff;
}

.quora {
    --color: #B92B27; /* Quora Red */
    --icon-color : #ffffff;
}

.reddit {
    --color: #FF4500; /* Reddit Orange */
    --icon-color : #ffffff;
}

.telegram {
    --color: #26A5E4; /* Telegram Blue */
    --icon-color : #ffffff;
}

.viber {
    --color: #665CAC; /* Viber Purple */
    --icon-color : #ffffff;
}

.whatsapp {
    --color: #25D366; /* WhatsApp Green */
    --icon-color : #ffffff;
}

.line {
    --color: #00B900; /* LINE Green */
    --icon-color : #ffffff;
}

.facebook:hover {
    --color: #145DBF; /* Facebook Darker Blue */
    --icon-color : #ffffff;
}

.twitter:hover {
    --color: #1C1C1C; /* X (Twitter) Darker Black */
    --icon-color : #ffffff;
}

.pinterest:hover {
    --color: #B8001B; /* Pinterest Darker Red */
    --icon-color : #ffffff;
}

.linkedin:hover {
    --color: #004182; /* LinkedIn Darker Blue */
    --icon-color : #ffffff;
}

.quora:hover {
    --color: #8A211D; /* Quora Darker Red */
    --icon-color : #ffffff;
}

.reddit:hover {
    --color: #CC3700; /* Reddit Darker Orange */
    --icon-color : #ffffff;
}

.telegram:hover {
    --color: #007BA7; /* Telegram Darker Blue */
    --icon-color : #ffffff;
}

.viber:hover {
    --color: #514483; /* Viber Darker Purple */
    --icon-color : #ffffff;
}

.whatsapp:hover {
    --color: #1EBE5C; /* WhatsApp Darker Green */
    --icon-color : #ffffff;
}

.line:hover {
    --color: #009900; /* LINE Darker Green */
    --icon-color : #ffffff;
}

.tiktok {
    --color : #000000;
    --icon-color : #ffffff;
}

.tiktok:hover {
    --color : #1C1C1C;
    --icon-color : #ffffff;
}

.github {
    --color : #333333;
    --icon-color : #ffffff;
}

.github:hover {
    --color : #000000;
    --icon-color : #ffffff;
}

.youtube {
    --color : #ff0000;
    --icon-color : #ffffff;
}

.youtube:hover {
    --color : #CD201F;
    --icon-color : #ffffff;
}

.instagram {
    --color : #E1306C;
    --icon-color : #ffffff;
}

.instagram:hover {
    --color : #c13584;
    --icon-color : #ffffff;
}

.dribbble {
    --color :  #ea4c89;
    --icon-color : #ffffff;
}

.dribbble:hover {
    --color : #ca2e6a;
    --icon-color : #ffffff;
}

.behance {
    --color : #1769ff;
    --icon-color :#ffffff;
}

.behance:hover {
    --color:#153bbb;
    --icon-color : #ffffff;
}.rkit-text-marquee {
  overflow: hidden;
}

.rkit-marquee-container {
  overflow: hidden;
  /*   white-space: nowrap; */
  width: 100%;
  display: flex;
  flex-direction: row;
  --gap: 5rem;
  --speed: 20;
  /*   gap: var(--gap); */
}

.rkit-marquee {
  animation: marquee calc(100s / var(--speed)) infinite linear;
}

.rkit-marquee-container:hover .pause-hover {
  animation-play-state: paused;
}

.rkit-marquee-content {
  display: inline-flex;
  align-items: center;
}

.rkit-marquee-item {
  text-wrap: nowrap;
  padding-right: var(--gap);
}

.rkit-marquee-item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.rkit-running-text__text {
  background: black;
  font-size: 3rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rkit-running-text__icon {
  font-size: 3rem;
  width: 3rem;
  color: black;
  fill: black;
}

.image-running img{
  display: block;
  width: auto;
  height: 100%;
  overflow: hidden;
  object-fit: contain;
}

.image-running { 
  display : flex;
width: 100px;
height: 100px;
overflow: hidden;
opacity : 1;
  align-items : center;
}



@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blink-caret {
  to {
    opacity: 0;
  }
}

.rkit-animated-heading p {
  position: relative;
  /* Menentukan posisi relatif untuk memposisikan pseudo-elemen */
}

.rkit-animated-heading {
  position: relative;
}

.text-writing {
  display: inline-block;
}

.text-writing::after {
  content: "|";
  display: inline-block;
  vertical-align: top;
  animation: blink-caret 600ms infinite alternate;
}

.rkit-animated-heading p {
  margin-bottom: 0;
}

@keyframes typing-cursor {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #000000;
  }
}

.text-flipping {
  transition: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  display: inline-block;
}

.flip-out {
  transform: perspective(400px) rotateX(90deg);
  animation-name: flipOut;
  transform-origin: bottom;
  opacity: 0;
}

.flip-in {
  transform: perspective(400px) rotateX(0deg);
  animation-name: flipIn;
  transform-origin: bottom;
  opacity: 1;
}

@keyframes flipOut {
  0% {
    transform: perspective(400px) rotateX(0deg);
    transform-origin: bottom;
    opacity: 1;
  }

  40% {
    transform: perspective(400px) rotateX(-20deg);
    transform-origin: bottom;
  }

  100% {
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    opacity: 0;
  }
}

@keyframes flipIn {
  0% {
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: bottom;
    opacity: 0;
  }

  60% {
    transform: perspective(400px) rotateX(-20deg);
    transform-origin: bottom;
  }

  100% {
    transform: perspective(400px) rotateX(0deg);
    transform-origin: bottom;
    opacity: 1;
  }
}

.text-sliding_up,
.text-sliding_down {
  overflow: hidden;
  transition: opacity 0.5s;
  display: inline-flex;
}

.text-sliding_down.slide-down_in {
  height: auto;
  animation: slideDown_In 0.5s;
}

.text-sliding_down.slide-down_out {
  height: auto;
  animation: slideDown_Out 0.5s;
}

.text-sliding_up.slide-up_in {
  height: auto;
  animation: slideUp_In 0.5s;
}

.text-sliding_up.slide-up_out {
  height: auto;
  animation: slideUp_Out 0.5s;
}

@keyframes slideUp_In {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }

  60% {
    transform: translateY(-5px);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideUp_Out {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(-15px);
    opacity: 0;
  }
}

@keyframes slideDown_In {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }

  60% {
    transform: translateY(5px);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideDown_Out {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

@keyframes handdrawn {
  0% {
    stroke-dashoffset: 1500;
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.rkit-animated-heading__text svg {
  fill: none;
  stroke: black;
  stroke-width: 12px;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  stroke-linecap: round;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: calc(100% + 15px);
  overflow: visible;
}

.rkit-animated-heading__text {
  color: #00cea6;
}

.rkit-highlighted.in_front svg {
  z-index: 2 !important;
}
 


.highlighted_in svg {
  animation: handdrawn 1s forwards;
}

.highlighted_out svg {
  stroke-dashoffset: 0;
  animation: opacity 1s;
}

.rkit-highlighted {
  display: inline-flex;
}

.text-drop-in,
.text-drop-out {
  overflow: hidden;
  display: inline-flex;
}

.text-drop-in.drop-in_out {
  animation: dropIn_Out 0.5s;
  opacity: 0;
}

.text-drop-in.drop-in_in {
  animation: dropIn_In 0.5s;
  opacity: 1;
}

@keyframes dropIn_Out {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.4);
    opacity: 0;
  }
}

@keyframes dropIn_In {
  0% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.text-drop-out.drop-out_out {
  animation: dropOut_Out 0.5s;
  opacity: 0;
}

.text-drop-out.drop-out_in {
  animation: dropOut_In 0.5s;
  opacity: 1;
}

@keyframes dropOut_Out {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes dropOut_In {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.rkit-swiper {
  position: relative;
  overflow: visible;
}

.rkit-card {
  background-color: #fafafa;
  overflow: hidden;
}

.rkit-card-slider {
  padding: 0px;
  overflow: hidden;
}

.rkit-cardslider-pagination {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}

.rkit-swiper-button-prev {
  left: 0;
  top: 50%;
}

.rkit-swiper-button-next {
  right: 0;
  top: 50%;
}

.rkit-swiper-button-next,
.rkit-swiper-button-prev {
  position: absolute;
  z-index: 999;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background-color: #00cea6;
  transform: translateY(-50%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 5px;
  --swiper-navigation-size: 44px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
}

.card-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.rkit-card .card-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.rkit-cardslider-bullet {
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #aaaaaa;
  transition: all 0.5s ease;
}

.rkit-cardslider-bullet-active {
  background-color: #161616;
}

.rkit-cardslider-bullet-clickable .rkit-cardslider-bullet {
  cursor: pointer;
}

.rkit-card .card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.rkit-card .card-body::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.5s;
  background: #aaaaaa;
}

.card-title {
  margin: 0;
}

.card-title a {
  text-decoration: none;
  color: #161616;
}

.card-heading {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}

.rkit-swiper-button-prev.swiper-button-disabled,
.rkit-swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.rkit-card .card-button a {
  background-color: #00cea6;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: white;
  transition: all 0.5s;
  border-radius: 5px;
}

.rkit-card .card-button {
  display: flex;
  justify-content: start;
}

.rkit-card .card-button a .button-icon {
  transition: color 0.5s;
}

.rkit-card.rkit-cc-overlay {
  position: relative;
}

.rkit-card.rkit-cc-overlay .card-body {
  opacity: 0;
  transform: translateY(-20%);
  transform-origin: bottom;
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  color: white;
  padding: 40px;
}

.rkit-card.rkit-cc-overlay .card-image img {
  aspect-ratio: 1 / 1;
}

.rkit-card.rkit-cc-overlay .card-button {
  justify-content: center;
}

.rkit-card.rkit-cc-overlay:hover .card-body {
  opacity: 1;
  transform: translateY(0);
}

.rkit-card.rkit-cc-overlay:hover .card-body::before {
  transform: translateY(0);
  opacity: 1;
}

.rkit-card-slider .swiper-slide {
  overflow: unset;
}

.card-button.fullwidth a {
  width: 100%;
}
.rkit-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.rkit-accordion-header {
    padding: 10px;
    background-color: #ebebeb;
    color: #000000;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center ;
    transition: all 0.5s;
    position: relative;
}

.rkit-accordion-header:hover {
    z-index: 2;
}

.rkit-accordion-item.open .rkit-accordion__title{
    color: rgb(1, 57, 242);
}

.rkit-accordion-content {
    max-height: 0vmax;
    height: auto;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s;
}

.rkit-accordion__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 20px;
    transition: all 0.5s;
}

.rkit-accordion__title{
    width:100%;
    text-align: left;
    padding: 0px 0px 0px 20px;
    transition: all 0.5s;
}

.rkit-accordion__content{
    padding: 30px 30px 30px 30px;
    text-align: left;
}

.rkit-accordion-item.open .rkit-accordion-content {
    visibility: visible;
    max-height: 100vmax;
    transition: all 1.5s;
}


.rkit-accordion-item .rkit-accordion__icon .icon_open {
    display: none;
}

.rkit-accordion-item.open .rkit-accordion__icon .icon_close {
    display: none;
}

.rkit-accordion-item.open .rkit-accordion__icon .icon_open {
    display: block;
}.rkit-testimonial-carousel {
  overflow: hidden;
  padding: 10px;
}

.rkit-testimonial-carousel .rkit-testimonial-card {
  width: 100%;
  height: auto;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.rkit-pagination-bullet {
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #aaaaaa;
  transition: all 0.5s ease;
}

.rkit-pagination-bullet-active {
  background-color: #161616;
}

.rkit-pagination-bullet-clickable .rkit-pagination-bullet {
  cursor: pointer;
}

.rkit-testimonial-wrapper.style_1 .rkit-testimonial-card {
  background-color: aliceblue;
}

.rkit-testimonial-wrapper.style_2 .rkit-testimonial-card {
  flex-direction: column;
}

.rkit-testimonial-wrapper.style_3 .rkit-testimonial-card {
  background-color: aliceblue;
  padding: 1rem;
  display: flex;
  flex-direction: row;
}

.rkit-testimonial-wrapper.style_4 .rkit-testimonial-card {
  flex-direction: column;
  background-color: aliceblue;
  padding: 1rem;
}

.rkit-testimonial-wrapper.style_5 .rkit-testimonial-card {
  /* height: 324px; */
  position: relative;
}

.testimonial_header {
  display: flex;
}

.testimonial_body {
  padding: 0.5rem;
}

.testimonial_quote {
  padding: 0px 0px 20px 0px;
}

.testimonial-client-img img {
  height: auto;
  object-fit: cover;
  display: flex;
}

.testimonial_quote_wrapper {
  display: flex;
}

.rkit-testimonial-carousel .testimonial-container {
  overflow: visible;
}

.rkit-testimonial-wrapper.style_1 .testimonial-client-img {
  width: 100%;
}

.rkit-testimonial-wrapper.style_1 .testimonial-client-img img {
  width: 100%;
  aspect-ratio: 16/9;
}

.rkit-testimonial-wrapper.style_2 .testimonial-client-img img {
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.rkit-testimonial-wrapper.style_3 .testimonial-client-img img {
  width: 400px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.rkit-testimonial-wrapper.style_5 .testimonial-client-img img {
  width: 100%;
  height: 100%;
}

.rkit-testimonial-wrapper.style_2 .testimonial-client-img {
  display: flex;
  justify-content: center;
}

.rkit-testimonial-wrapper.style_5 .testimonial-client-img {
  width: 100%;
  height: 100%;
}

.rkit-testimonial-wrapper.style_1 .rkit-testimonial-card {
  flex-direction: column;
}

.rkit-testimonial-carousel .rkit-testimonial-pagination {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding-block: 0.5rem;
  justify-content: center;
  align-items: center;
  margin: 30px 0px 0px 0px;
}

.rkit-testimonial-wrapper.style_1 .testimonial_body {
  padding: 1.5rem;
}

.rkit-testimonial-wrapper.style_2 .testimonial_body {
  padding: 20px 20px 50px 20px;
  background-color: aliceblue;
}

.rkit-testimonial-wrapper.style_5 .testimonial_body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  color: white;
}

.rkit-testimonial-wrapper.style_5 .testimonial_header {
  width: 100%;
}

.rkit-testimonial-wrapper.style_2 .testimonial_header {
  flex-direction: column;
  margin-top: -50px;
}

.rkit-testimonial-wrapper.style_1 .testimonial_header {
  position: relative;
}

.rkit-testimonial-wrapper.style_1 .testimonial_quote_wrapper {
  position: absolute;
  margin: 0px 0px -25px 25px;
}

.rkit-testimonial-wrapper.style_1 .testimonial_quote {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(54, 133, 236);
  border-radius: 50%;
  color: white;
  padding: 1rem;
}

.rkit-testimonial-wrapper.style_3 .testimonial_header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rkit-testimonial-wrapper.style_2 .testimonial_quote {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rkit-testimonial-wrapper.style_2 .testimonial_description {
  margin-bottom: 20px;
}

.rkit-testimonial-wrapper.style_4 .testimonial_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.rkit-testimonial-wrapper.style_4 .testimonial-client-img img {
  border-radius: 50%;
  width: 60px;
  aspect-ratio: 1/1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.rkit-testimonial-wrapper.style_4 .testimonial-author {
  margin-top: 0;
}

.testimonial-author span {
  font-weight: 400;
  font-size: 13px;
}

.testimonial-rating {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin: 0px 0px 0px 0px;
}

.rkit-testimonial-rate_icon {
  font-size: 13px;
  width: 13px;
  height: 13px;
}

.rated .rkit-testimonial-rate_icon {
  color: rgb(255, 196, 0);
  fill: rgb(255, 196, 0);
}

.unrated .rkit-testimonial-rate_icon {
  color: #7b7b7b;
  fill: #7b7b7b;
}

.rkit-testimonial-wrapper.style_2 .testimonial-author,
.rkit-testimonial-wrapper.style_2 .testimonial-rating {
  text-align: center;
  justify-content: center;
}

.testimonial-prev-wrapper,
.testimonial-next-wrapper {
  position: absolute;
  top: 50%;
  z-index: 2;
  cursor: pointer;
  transform: translateY(-50%);
}

.testimonial-prev-wrapper {
  left: 0;
}

.testimonial-next-wrapper {
  right: 0;
}

.rkit-testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 1rem;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.rkit-testimonial-navigation.rkit-testimonial-button-next,
.rkit-testimonial-navigation.rkit-testimonial-button-prev {
  background-color: #00cea6;
  background-image: none;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.rkit-testimonial-navigation.rkit-testimonial-button-next::after,
.rkit-testimonial-navigation.rkit-testimonial-button-prev::after {
  content: none !important;
}

.rkit-testimonial-navigation .navigation-icon {
  color: white;
}
/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}.rkit-tab-nav {
  list-style: none;
  padding: 0;
}

.rkit-tab-container {
  display: flex;
}

.rkit-tab-container.horizontal {
  flex-direction: column;
}

.rkit-tab-container.vertical {
  flex-direction: row;
}

.rkit-tab-nav {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.rkit-tab-nav.bordered {
  border-bottom: 1px solid #929292;
}

.rkit-tab-nav.bordered .rkit-tab-btn-item{
  margin-bottom: -1px;
  background-color: transparent;
}

.rkit-tab-nav.bordered .rkit-tab-btn-item.active {
  background-color: #fff;
  color: inherit;
  border: 1px solid #929292;
  border-bottom: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.rkit-tab-container.vertical .rkit-tab-nav.bordered {
  border-bottom: 0;
}

.rkit-tab-container.vertical .rkit-tab-nav.bordered .rkit-tab-btn-item.active {
  border-bottom: 1px solid #929292;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rkit-tab-nav.bordered .rkit-tab-btn-item.active .tab-title-icon {
  color: inherit;
  fill: inherit;
}

.rkit-tab-container.horizontal .rkit-tab-nav {
  flex-direction: row;
}

.rkit-tab-container.vertical .rkit-tab-nav {
  flex-direction: column;
}

.rkit-tab-btn-item {
  width: auto;
  background-color: gray;
  text-align: center;
  cursor: pointer;
  padding: 1rem;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.rkit-tab-btn-item.shrink {
  flex: 0 0 auto;
}

.rkit-tab-btn-item.active {
  background-color: rgb(32, 32, 32);
  color: white;
}

.rkit-tab-btn-item.active .tab-title-icon {
  color: white;
  fill: white;
}

.tab-title-icon {
  font-size: 18px;
  width: 18px;
  display: flex;
}

.rkit-tab-container.vertical .rkit-tab-content-wrapper {
  flex: 1;
  width: 0;
}

.rkit-tab-container.horizontal .rkit-tab-content-wrapper {
  width: 100%;
}

.rkit-tab-content {
  display: none;
  /* margin: 20px 0px 0px 0px; */
  /* padding: 20px; */
  opacity: 0;
  transition: all 0.5s;
}

.rkit-tab-content.active {
  display: block;
  opacity: 1;
  animation: fade 0.5s ease-in-out;
}

.rkit-tab-content-container {
  flex: 1;
  padding: 20px;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
    .rkit-tab-container.vertical {
        flex-direction: column;
      }
  .rkit-tab-btn-item,
  .rkit-tab-btn-item.shrink {
    flex: 1 1 auto !important;
  }

  .rkit-tab-container.vertical .rkit-tab-content-wrapper {
    width: 100%;
  }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@property --progress {
  syntax: '<integer>';
  inherits: true;
  initial-value: 0;
}

@keyframes load {
  to {
    --progress: var(--value)
  }
}

.rkit-progress {
  --value: 17;
  --progress-color: #00cea6;
  --secondary-progress-color: #e3efff;
}

.progress-bar-container{
  display: flex;
  width: 100%;
}

.rkit-progress-animation,
.rkit-progress-animation::after {
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
}

.circular-progress {
  position: relative;
  width: 12rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: conic-gradient(var(--progress-color) calc(var(--progress) * 3.6deg), var(--secondary-progress-color) 0deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-progress .progress-value {
  background-color: #d6d6d6;
  position: absolute;
  width: 85%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-direction: column-reverse;
}

.percentage-label::after,
.progress-bar-inline .percentage-label::after {
  counter-reset: percentage var(--progress);
  content: counter(percentage) '%';
}
.progress-bar-container .progress-bar-inline .progress-value,
.progress-bar-inline.percentage-label::after{
  font-size: 1rem;
}

.circular-progress .progress-value::before {
  content: var(--title);
}

.progress-bar,
.progress-bar-inline {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--secondary-progress-color);
  display: flex;
  border-radius: 50px;
}

.progress-bar-inline .progress-value::before {
  height: 100%;
  display: flex;
  align-items: center;
  content: var(--title);
}


.progress-bar .progress-value,
.progress-bar-inline .progress-value
 {
  height: 100%;
  width: calc(var(--progress) * 1%);
  background-color: var(--progress-color);
  position: relative;
  border-radius: 50px;
}

.progress-bar.percentage-label::after
 {
  display: inline-block;
  position: absolute;
  left: calc(var(--progress) * 1% - 2rem)
}

.progress-bar-inline.percentage-label::after{
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
}
.progress-bar-inline{
  position: relative;
}

.progress-bar-inline.percentage-label::after{
  right:20px ;
  left: 80%;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
}

.half-circular-progress {
  position: relative;
  width: 12rem;
  aspect-ratio: 2/1;
  border-radius: 50% / 100% 100% 0 0;
  background: conic-gradient(from 0.75turn at 50% 100%, var(--progress-color) calc(var(--progress) * 3.6deg / 2), var(--secondary-progress-color) 0deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.half-circular-progress .progress-value {
  background-color: #d6d6d6;
  position: absolute;
  width: 75%;
  aspect-ratio: 2/1;
  border-radius: 50% / 100% 100% 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-direction: column-reverse;
  bottom: 0;
}

.half-circular-progress .progress-value::before {
  content: var(--title);
}

.prefix-postfix {
  width: 12rem;
  display: flex;
  justify-content: space-between
}

.progress-title {
  padding-block: 0.5rem;
  display: block;
}.counter-suffix {
    white-space: pre-wrap;
}

.rkit-counter .counter {
    display: flex;
    font-size: 69px;
    font-weight: 600;
    line-height: 1;
    justify-content: center;
}

.rkit-counter {
    display: flex;
}

.rkit-counter .counter-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.rkit-countdown-widget {
    background-color: var(--section-background, transparent);
    color: var(--text-color, #000);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Digital-7', sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/*  */
 
#countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* kasih jarak antar elemen */
}

.countdown-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-top-row {
  /* font-size: 32px; */
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.countdown-label {
  font-size: 14px;
  margin-top: 5px;
}

.countdown-separator {
  font-size: 32px;
  font-weight: bold;
  align-self: center;
  line-height: 1;
  margin: 0 5px;
}

/*  */
.countdown-title-wrapper{
    margin-bottom : -20px;
}

.rkit-countdown-widget .countdown-title {
    color: var(--title-color, #000);
    /* font-size: 2em;m */
}
 

.countdown_contain {
    display: flex;    
    flex-wrap: wrap;
    gap : 20px;
}


.rkit-countdown-widget .countdown-section {
    background-color: var(--section-background, transparent);
    padding: 20px 10px;
    border-radius: 5px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    text-align: center;  
}

.rkit-countdown-widget  .countdown-section-row {
    background-color: var(--section-background, transparent);
    padding: 20px 10px;
    border-radius: 5px;
    display: flex; 
    justify-content: center;
    align-items: center;  
    gap: 2.5px; 
}

.rkit-countdown-widget .countdown-label {
    font-size: 1em;
    color: #00CEA6;  
    height: 100%; 
    display: flex; 
    align-self: center !important;
    align-items: center;
}
.time_sett{
    line-height: 1;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 90px;
}

.hidden {
    display: none;
}

.countdown-section-container {
    display: flex;
}

.rkit-countdown-separator .countdown_contain .countdown-section-container:not(:first-child)::before {
    content: ":";
    font-size: 90px;
    display: inline-flex;
    line-height: 1;
    align-items: center;
    margin: -40px 0px 0px 0px;
}

@media (max-width: 600px) {
    #countdown {
        flex-wrap: wrap; 
        justify-content: center; 
    }
}


.rkit-pricelisttable-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative; 
    padding: 0px 0px 0px 0px ;
    align-items: center;
    justify-content: center; 
    border-radius: 5px 5px 5px 5px;
    overflow: hidden;
    background-color : #EEEEEE;
}

.icon-list-button-pt{
    color : #ffffff;
}

.icon-list-button-pt i:hover{
    color : rgb(255, 255, 255);
}
 

.rkit-pricelisttable-item {
    width: calc(50% - 10px); /* Agar item memiliki lebar yang sama dan muat di satu baris */
}


.rkit-pricelisttable-item {
    /* flex: 1 1 calc(100% - 20px); 3 items per row with 20px gap */
    flex: 1 1 auto;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    border-radius: 0px;
    overflow: hidden;
    background: transparent;
    display: flex;
    flex-direction: column;
    position: relative; /* Ensure positioning for ribbon */
}

.rkit-pricelisttable-item-inner {
    background-color : transparent;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
    /* overflow: hidden; */
}

.rkit-pricelisttable-item-inner-price {
    background-color :transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rkit-pricelisttable-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rkit-pricelisttable-item-title {
    /* font-size: 1.5em; */
    color: #000000; 
    /* font-weight: 800;
    font-style: normal;   */
    text-align: center;
    margin : 0px;
}

.rkit-pricelisttable-item-sub-heading{
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;  
    text-align: center;  
}


.rkit-pricelisttable-item-footer{
    justify-content: center;
    text-align: center;
    color: #9e9d9d;
    font-size: 12px;
    padding : 10px 10px 10px 10px;
}
.rkit-pricelist-item-footer-span{
    padding : 0px;
}


.rkit-pricelisttable-item-subheading {
    /* font-size: 1.5em; */
    color: #626665;
    font-size: 28px;
    font-weight: 500;
    font-style: normal; 
    letter-spacing: 0.5px;
    word-spacing: 15px;
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 20px;
}

.rkit-pricelisttable-item-price {
    /* font-size: 1.5em;
    margin-bottom: 0px; */

    /* font-family: "Verdana", Sans-serif; */
    font-size: 41px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px;
}


.rkit-pricelisttable-item-sale-price {
    /* font-family: "Verdana", Sans-serif; */
    font-size: 24px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: -15px;
    text-decoration: line-through;
    color: #818e8e;
    
    
}
.rkit-pricelisttable-item-currency { 
    font-size: 18px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px; 
}

.rkit-pricelisttable-item-price-section-row {
    display: flex;
    align-items: center;
}

.price-container-row {
    display: flex;
    flex-direction: column;
}

.sale-price-container {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;  
    padding-top: 0px;   
    margin-bottom: -30px;
}

.sale-price-container-inline {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    margin : 0;
    padding : 0px;
}

.price-container {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;   
}

.rkit-pricelisttable-item-currency,
.rkit-pricelisttable-item-price {
    margin: 0;   
    padding: 0 0px;  
}



.rkit-pricelisttable-item-sub-title {
    color: #777;
    margin-bottom: 15px;
}

.rkit-pricelisttable-item-sub-title-center {
    margin-left: 5px;   
    letter-spacing: -1.1px;
}

.rkit-pricelisttable-item-description {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-grow: 1; 
    color: #000000; 
    padding: 16px 32px 16px 32px;
}

.rkit-pricelisttable-item-button .button-element-price-table {
    display: flex;
    align-self: center;
    margin-top: auto;
    background-color:  #00cea6;
    color :  #ffffff;
    max-width: none;
    padding : 16px 32px 16px 32px;
    justify-content: center;  
    gap : 10px;
    
    /* box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}

.rkit-pricelisttable-item-button{
    display: flex;
}
 

.currency-option{
    display: flex;
    flex-direction: row;
}

.period-option{
    display: flex;
}


.rkit-pricelisttable-item-description-icon{
    color: #56d4c4;  
}

.rkit-pricelisttable-item-button-icon{
    color: #ffff;  
}

.rkit-pricelisttable-item-title-section {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    padding : 15px 32px 16px 32px;
}
.rkit-pricelisttable-item-price-section {
    display : flex;
    flex-direction: column;
    background-color: transparent;
    padding : 16px 32px 16px 32px;
    justify-content:  center;
    /* box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.20)   */
}

.icon-list-feature-pt { 
    display: flex;
    align-items: center; 
    align-self : center;
    justify-content: center;
    line-height : 0px !important;
    margin-top  :12px;
    margin-bottom : 12px;
}

.icon-list-button-pt{  
    display: flex;
    align-items: center; 
    align-self : center;
    justify-content: center;
    line-height : 0px !important;
}
 

.no-icon-hidden {
    list-style-type: none; 
}
 
.rkit-wrap {
    width: 100%;
    height: 188px;
    position: absolute;
    top: -8px;
    left: 0px;
    overflow: hidden;
}


.rkit-wrap .content {
    position: relative; 
    color: #fff;  
}

.rkit-wrap:before, .wrap:after {
    content: ""; 
    position: absolute;
}

.rkit-wrap:before {
    width: 40px;
    height: 8px;
    right: 100px;
    background: #4D6530;
    border-radius: 8px 8px 0px 0px;
}

.rkit-wrap:after {
    width: 8px;
    height: 40px;
    right: 0px;
    top: 100px;
    background: #4D6530;
    border-radius: 0px 8px 8px 0px;
}


.rkit-ribbon-right{
    width: 200px;
    height: 35px;
    line-height: 33px;
    position: absolute;
    top: 30px;
    right: -38px;
    z-index: 0;
    overflow: hidden;
    -webkit-transform: rotate(95deg);
    transform: rotate(42deg); 
    background: #95a5a1;
    text-align: center;
}

/* left ribbon */

.rkit-ribbon-left{
    width: 200px;
    height: 35px;
    line-height: 33px;
    position: absolute;
    top: 30px;
    left: -38px;
    z-index: 0;
    overflow: hidden; 
    transform: rotate(315deg); 
    background: #95a5a1;
    text-align: center;
}



.rkit-pricelisttable-ribbon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: auto;
    right: -10px;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

.rkit-pricelisttable-ribbon.rkit-pricelisttable-ribbon__left {
    transform: rotate(0);
    left: 0;
    right: auto;
}

.rkit-pricelisttable-ribbon.rkit-pricelisttable-ribbon__right {
    transform: rotate(90deg);
    left: auto;
    right: 0;
}

.rkit-pricelisttable-ribbon__inner {
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    background: #00cea6;
    color: #000;
    line-height: 2;
    font-weight: 700;
  padding : 10px;
}

/* end ribbon */
        
.rkit-item-list-desc{
    display: flex;
    flex-direction: row;
    padding : 16px 32px;
    justify-content: center;
    text-align: center;
    width: 100%;
}
 

.divider_desc:not(:last-child)
{
    display: flex;
    flex-direction: row;
    gap : 5px;
    border-bottom : 1px;
    border-bottom-style : solid;
    border-color :#726b6b;
}

.divider_desc.noline{
    border-width: 0px;
}

     
    .divider_desc:last-child{
        display: flex;
        flex-direction: row;
        gap : 5px; 
        border-bottom: 0px;  
        list-style: none; 
    }

    @media (max-width: 1200px) {
        /* .rkit-pricelisttable-item {
            flex: 1 1 calc(33.333% - 20px); 
        } */
        .rkit-pricelisttable-container {
            flex: 1 1 calc(33.333% - 20px); 
        }
    }

    @media (max-width: 768px) {
        .rkit-pricelisttable-container {
            flex: 1 1 calc(50% - 20px); 
        }
    }

    @media (max-width: 576px) {
        .rkit-pricelisttable-container {
            flex: 1 1 100%;  
        } 
   
        

    }
  
  .rkit-advanced-heading p {
    position: relative; 
  }
 
 
  .rkit-advanced-heading {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    
  } 

   
  .rkit-advanced-heading p {
    margin-bottom: 0;
  }

  .combined-text { 
    border-radius: 5px; 
    gap: 10px;
    justify-content : center;
  }
  
  
  .rkit-trp-text{ 
    font-weight: bold;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    display: flex;
    flex-wrap: wrap;
}
  
.rkit-trp-text .headline_text{ 
  -webkit-background-clip: text;
  background-clip: text;
  background-color: #00cea6;  
  z-index: 1;
}

.std-text{ 
  background-color:  black; 
}


.bg-headline{
  background-color: transparent;  
  display: inline-flex;
}

.bg-std{
  background-color: transparent;  
  display: inline-flex;
}
 

/* Style untuk semua heading */
 

@media only screen and (max-width: 1024px) {
  .combined-text {
      gap: 20px;  
  }
}

 
@media only screen and (max-width: 768px) {
  .combined-text { 
    font-size: 2rem;  
  }

}

 
@media only screen and (max-width: 480px) {
  /* .combined-text { 
    font-size: 1rem;  
  }

  .before_text{
    font-size: 1rem; 
  }

  .center_text{
    font-size: 1rem; 
  }

  .after_text{
    font-size: 1rem; 
  } */

  .headline_text{
    /* font-size: 1rem; */
     display: inline-flex;
  }

  .wrap_text{
    font-size: 1rem; 
  }
}   .con-wrap{ 
	margin: auto; 
  display: flex;   
  flex-wrap: wrap;
  flex-direction: row;  
  justify-content: center; 
  align-items: center;  
  overflow: hidden;
}

.img-comp-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;  
}

.img-comp-img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden; 
}

.img-comp-container img{
  object-fit: cover;
  max-width: none !important;  
}
  
.img-comp-img img {
  display: block;  
}

.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;  
  border: none;  
  box-shadow: 0 0 0 2px #ffffff;
}

 /* ini testing */
 .img-comp-slider::before,
  .img-comp-slider::after {
     content: '';
     position: absolute;
     width: 1500px;
     height: 2px; 
     background-color: white; 
     left: 0;
     z-index: 1;
    transform: rotate(90deg)
 }
 
 .img-comp-slider::before {
  top: -752px;
  left : -730px
}

.img-comp-slider::after {
  bottom: -752px; 
   left : -730px;
}



/* vertical */
.img-comp-slider.vertical::before,
.img-comp-slider.vertical::after {
  content: '';
  position: absolute;
  width: 1800px;  
  height: 2px; 
  background-color: white;  
  top: 50%; 
  transform: translateY(-50%);  
  z-index: 1;
}

.img-comp-slider.vertical::before {
  left: -1800px;  
}

.img-comp-slider.vertical::after {
  left: 40px;  
}





 /* ini tessting */
.img-comp-slider i {
  font-size: 14px;
  color: #ffffff;
  padding: 2px; 

}

.img-comp-slider.vertical {
  position: absolute;
  z-index: 9;
  cursor: ns-resize;
  width: 40px; 
  height: 40px; 
  background-color: transparent; 
  display: flex;
  flex-direction: column;  
  align-items: center;
  justify-content: space-between;  
  transform: translatex(-50%, -50%);
    box-shadow: 0 0 0 2px #ffffff;
}

.img-comp-slider.vertical i {
  font-size: 14px;
  color: #ffffff;
  padding: 2px; 

}


  /* caption css style */
  /* caption left */
  .caption-bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
  }
  
  .caption-top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }

  .caption-center-left { 
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    /* Tambahan opsional untuk styling */
    text-align: right;
    white-space: nowrap;
  }
/* caption left */

/* caption right */
  .caption-top-right {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  
  .caption-bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }


  .caption-center-right {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    /* Tambahan opsional untuk styling */
    text-align: right;
    white-space: nowrap;
  }
  /* caption right */
  

  /* filter image */
  .filter-blur img {
    filter: blur(5px);
}

.filter-greyscale img {
    filter: grayscale(100%);
}

.filter-contrast img {
    filter: contrast(150%);
}

.filter-brightness img {
    filter: brightness(120%);
}


  .popular-posts{
  padding: 0px 0px 0px 0px;
}

.rkit-item-postlist {
    display: flex;
    /* align-items: flex-start; */ 
    align-items: stretch;
    gap: 10px;
    padding: 10px 10px 10px 10px;
}

  .rkit-item-thumbnail {
    flex: 0 0 auto;  
    display: flex;
    height: 100%;
    /* align-items: center;  
    justify-content: center;   */
}

.rkit-item-thumbnail img { 
    max-height: 100%;  
    width: 125px;  
}
  .rkit-item-content {
    flex-grow: 1; /* Konten memenuhi sisa ruang */
  }

  .rkit-content-reverse{
    justify-items : end;
  }

  .rkit-content-normal{
    justify-items : start;
  }


  .rkit-title-postlist {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .rkit-metadata-postlist-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .rkit-metadata-item-postlist {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .content_descripson {
    /* display: flex; */
    color: #666;
  }
  
  li {
    list-style-type: none;
    margin-bottom: 2px;
  } 

  
a.rkit-readmore-postlist-btn {
  background-color: #b0e7e0;
  border-radius: 5px;
  text-align: center;
  padding: 12px 20px 12px 20px;
  font-size: 15px;
  color: white;
  transition: all 0.5s;
  border: none;
  /* display: flex; */
  align-items: left;
  gap: 0.5rem;
  display: inline-flex;  
  align-items: center;   
  justify-content: center;  
  text-decoration: none;  
  padding: 10px 20px;
}

a.rkit-readmore-postlist-btn:hover {
  background-color: #33e4c0;
  color: black;
} 

.rkit-readmore-postlist-div {
  display: flex;
}

.rkit-icon-readmore {
  font-size: 16px;  
  margin-right: 8px;  
  display: inline-block;
}

.div_test{
  border-bottom : 1px;
  border-bottom-style : solid;
  border-color :#726b6b;
}

.divider_line:first-child{
  padding-block-start: 10px !important;
}


.divider_line:not(:last-child){
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #C5B9B9;
}

.divider_line:last-child{
  border-bottom: 0px;  
  list-style: none; 
}

.category_post{
  display: flex;
}


  /* Default styles (untuk layar desktop dan tablet) sudah diatur seperti sebelumnya */

@media (max-width: 926px) { 
    .rkit-item-postlist {
      flex-direction: column;  
      align-items: center; 
      text-align: center;  
    }
  
    .rkit-item-thumbnail {
      margin-bottom: 15px;  
    }
  
    .rkit-item-thumbnail img {
      max-width: 100%;  
      height: auto;
    }
  
    .rkit-item-content {
      flex-grow: 0;  
      width: 100%;  
    }
  
    .rkit-metadata-postlist-row {
      justify-content: center; 
      flex-wrap: wrap;  
      gap: 15px; 
    }
  
    .rkit-metadata-item-postlist {
      justify-content: center;  
    }
  
    .rkit-title-postlist {
      font-size: 16px;
    }
  
    .content_descripson {
      /* display: flex; */
      font-size: 14px; 
    }
  
    li {
      margin-bottom: 2px;
    }
  }
  
.rkit-pricebox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative; 
    padding: 0px 0px 0px 0px ;
    
    /* ox-shadowb: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}

.rkit-pricebox-item {
    /* flex: 1 1 calc(100% - 20px); 3 items per row with 20px gap */
    flex: 1 1 auto;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    border-radius: 0px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative; /* Ensure positioning for ribbon */
}

.rkit-pricebox-item-inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
    overflow: hidden; 
}

.rkit-pricebox-item-inner-price {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image_pricing_box{
    max-height: 100%;
    height: auto;
    width: 100%; 
    display: flex;
    flex-direction: row;
    justify-content: center;
    object-fit: contain; 
    padding: 16px 32px 16px 32px;

}

.image_load_box img{ 
    width: 70%;
    display: flex; 
    justify-content: center;
    object-fit: contain;
}


.rkit-pricebox-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rkit-pricebox-item-title {
    /* font-size: 1.5em; */
    color: #000000;
    font-size: 24px;
    font-weight: 800;
    font-style: normal;  
    text-align: left;
    margin : 0px;
}

.rkit-pricebox-item-sub-heading{
    color: #383838;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;  
    text-align: left;  
}


.rkit-pricebox-item-footer{
    color: #9e9d9d;
    font-size: 12px;
    padding : 16px 32px 16px 32px;
}

.rkit-pricebox-item-subheading {
    /* font-size: 1.5em; */
    color: #626665;
    font-size: 24px;
    font-weight: 500;
    font-style: normal; 
    letter-spacing: 0.5px;
    word-spacing: 15px;
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 20px;
}

.rkit-pricebox-item-price {
    /* font-size: 1.5em;
    margin-bottom: 0px; */

    font-family: "Verdana", Sans-serif;
    font-size: 24px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px;
}


.rkit-pricebox-item-sale-price-pricebox {
    font-family: "Verdana", Sans-serif;
    font-size: 14px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px;
    text-decoration: line-through;
    color: #818e8e;
    
    
}
.rkit-pricebox-item-currency {
    font-family: "Verdana", Sans-serif;
    font-size: 14px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px;
}

.rkit-pricebox-item-price-section-row {
    display: flex;
    align-items: center;
}

.price-container-row {
    display: flex;
    flex-direction: column;
}

.sale-price-pricebox-container {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;  
    padding-top: 0px;   
    margin-bottom: -30px;
}

.sale-price-pricebox-container-inline {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    margin : 0;
    padding : 0px;
}

.price-container {
    display: flex;
    flex-direction: row;
    /* align-items: flex-start;  */
    justify-content: center;   

}

.rkit-pricebox-item-currency,
.rkit-pricebox-item-price {
    margin: 0;  
    padding: 0 0px;  
}



.rkit-pricebox-item-sub-title {
    color: #777;
    margin-bottom: 15px;
}
.rkit-pricebox-item-sub-title-center {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    margin : 0px;
    padding : 0px;
}

.rkit-pricebox-item-description {
    display: flex;
    flex-direction: column; 
    color: #000000;
    font-family: "Amiko", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 27px;
    letter-spacing: -0.1px;
    word-spacing: 2px;
    gap : 18px;
    padding: 16px 32px 16px 32px;
}

.rkit-pricebox-item-button .new-rkit-elementor-button {
    display: inline-flex; /* Gunakan flexbox untuk centering */
    align-items: center;  /* Vertical alignment */
    justify-content: center; /* Horizontal alignment */
    text-decoration: none; /* Hilangkan underline */
    padding: 10px 20px;
    align-self: flex-start;
    margin-top: auto;
    background-color:  #000000;
    color: white;
    max-width: none;
    padding : 16px 32px 16px 32px;
    /* box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}

.rkit-pricebox-item-button.button-full-size .new-rkit-elementor-button{ 
    width: 100%; 
}

.currency-option{
    display: flex;
    flex-direction: row;
}


/* .rkit-pricebox-item-button-full .new-rkit-elementor-button {
    align-self: flex-start; 
    background-color:  #00cea6;
    max-width: none;
    padding : 16px 32px 16px 32px;
    width: 100%;
    
    box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ;
    /* color :#00cea6;  */
/* }  */

.rkit-pricebox-item-description-icon{
    color: #56d4c4;  
}

.rkit-pricebox-item-button-icon{
    color: #56d4c4;  
}

.rkit-pricebox-item-title-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding : 16px 32px 16px 32px;
}
.rkit-pricebox-item-price-section {
    display: flex;
    flex-direction: column; 
    padding : 16px 32px 16px 32px;
    /* box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.20)   */
}

 

.no-icon-hidden {
    list-style-type: none; 
}
 
.rkit-wrap {
    width: 100%;
    height: 188px;
    position: absolute;
    top: -8px;
    left: 0px;
    overflow: hidden;
}

.rkit-pricebox-ribbon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: auto;
    right: -10px;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

.rkit-pricebox-ribbon.rkit-pricebox-ribbon__left {
    transform: rotate(0);
    left: 0;
    right: auto;
}

.rkit-pricebox-ribbon.rkit-pricebox-ribbon__right {
    transform: rotate(90deg);
    left: auto;
    right: 0;
}

.rkit-pricebox-ribbon__inner {
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    background: #000000;
    color: #ffffff;
    line-height: 2;
    font-weight: 700;
    padding : 10px;
    /* box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.20)   */
}

/* end ribbon */





.divider_desc:not(:last-child)
{
    display: flex;
    flex-direction: row;
    gap : 5px;
    border-bottom : 1px;
    border-bottom-style : solid;
    border-color :#726b6b;
}

.divider_desc.noline{
    border-bottom: 0px;
}

     
    .divider_desc:last-child{
        display: flex;
        flex-direction: row;
        gap : 5px;
        
        border-bottom: 0px;  
        list-style: none; 
    }
        

    @media (max-width: 1200px) {
        .rkit-pricebox-item {
            flex: 1 1 calc(33.333% - 20px); 
        }
    }

    @media (max-width: 768px) {
        .rkit-pricebox-item {
            flex: 1 1 calc(50% - 20px); 
        }
    }

    @media (max-width: 576px) {
        .rkit-pricebox-item {
            flex: 1 1 100%;  
        } 
   
        

    }
.rkit-image_box-card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    transition: all 0.3s;
    overflow: hidden;
    /* padding: 16px 32px 16px 32px; */
}

.rkit-image_box-card.rkit-direction {
    flex-direction: column;
}


.rkit-icon-top {
    font-size: 45px;
    width: 45px;
    height: 45px;
}

.rkit-icon-readmore {
    font-size: 25px;
    width: 25px;
    height: 25px;
}

.rkit-container-top {
    display: flex;
    flex-direction: row;
    padding: 0px;
}

.rkit-container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.left {
    width: 45%;
    text-align: left;
}

.right {
    position: relative;
    text-align: right;
    /* width: 45%;     */
}



.rkit-image_box_det {
    width: 100%;
    display: flex;
    justify-content: center;
}


.rkit-image_box__detail {
    height: 100%;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    overflow: hidden;
}

.image-box-item-desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.rkit-image_box__detail h4 {
    margin-bottom: 0;
}

.rkit-image_box__img {
    display: flex;
    justify-content: center;
    object-fit: contain;
    padding: 0px 0px 0px 0px;
     transition: transform 0.5s ease-in-out;
        position: relative; 
}

.rkit-image_box__img {
    overflow: hidden;
}

.rkit-image_box__img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    overflow: hidden;
}

.rkit-image_box__description {
    width: 100%;
    margin-bottom: 0.5rem;
    /* padding : 16px 32px 16px 32px; */
    text-align: center;
}

.rkit-image_box__title {
    width: 100%;
    font-weight: 500;
    margin-bottom: 0.5rem;
    /* padding : 16px 32px 16px 32px; */
    text-align: center;
}



/* css style float card */
.rkit-image_box_det {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.float-card {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.float-detail {
    position: relative;
    background-color: #ffffff;
    width: 90%;
    padding: 1rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1px;
    border-radius: 0px;
    margin-top: -75px;
    /* box-shadow: 0px 4px 24px rgba(8, 8, 8, 0.479); */
    /* border-style: solid;
      border-color:#33e4c16b; */
}

.float-detail {
    position: relative;
    overflow: hidden;
    max-height: 300px;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.float-card-desc-ext {
    opacity: 0;
    max-height: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

/* Menampilkan deskripsi dan tombol saat hover */
.rkit-image_box-card:hover .float-card-desc-ext {
    opacity: 1;
    max-height: 200px;
}

.float-card:hover {
    max-height: 300px;
}





/* css style overlay */
/* .rkit-image_box__overlay .rkit-image_box_det {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all;
    color: white;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding : 16px 32px 16px 32px; 
    z-index: 2;
}
 
.rkit-image_box__overlay:hover .rkit-image_box_det .bg_overlay{
    visibility: visible;
    animation: overlay_animation_in 0.3s ease-in;
}

.rkit-image_box__overlay:not(:hover) .rkit-image_box_det .bg_overlay{
    transform: scaleY(0);    
    opacity: 0;
    animation: overlay_animation_out 0.3s ease-out;
} */
.rkit-image_box__overlay {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rkit-image_box__overlay .rkit-image_box_det {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: white;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 32px;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 2;
}

/* .bg_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00CEA6;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1;
} */



.rkit-image_box__img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1;
}


.rkit-image_box__overlay:hover .rkit-image_box__img{
    /* transform: scale(1.2);    */
     
  }

.rkit-image_box__overlay:hover .rkit-image_box_det {
    visibility: visible;
    animation: hs-animation-overlay 1s ease forwards;
    opacity: 1;
}

@keyframes hs-animation-overlay {
    0% {
        transform: translateY(-300px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.rkit-image_box__overlay:hover .rkit-image_box__img::after  {
    visibility: visible;
    transform: scaleY(1);
    opacity: 0.2;
}

.rkit-image_box__overlay:not(:hover) .rkit-image_box__img::after  {
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
}




/* overlay fade in */

.rkit-image_box_detaa {
    max-width: 100%;
    height: 100%;
    padding: 0px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 0px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);  */
    text-align: center;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade_in .rkit-image_box_detaa {
    transform: none;
}

.fade_in:hover .rkit-image_box_detaa {
    opacity: 1;
    transition: opacity 0.3s ease;
    transform: translateX(0);
}


/* new default css */

.rkit-image_box_det {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.def-card {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.def-detail {
    position: relative;
    background-color: #ffffff;
    width: 90%;
    padding: 1rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1px;
    border-radius: 0px;
    margin-top: -75px;
}

.def-detail {
    position: relative;
    overflow: hidden;
    max-height: 100%;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.def-card-desc-ext {
    opacity: 0;
    max-height: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

/* Menampilkan deskripsi dan tombol saat hover */
.rkit-image_box-card .def-card-desc-ext {
    opacity: 1;
    max-height: 200px;
}





/* centered image css */
.rkit-image_box__centered .rkit-image_box-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rkit-image_box__centered .rkit-image_box__img {
    border-radius: 0%;
    overflow: hidden;
    width: 50%;
    min-width: 180px;

}

.rkit-image_box__centered .rkit-image_box__img img {
    aspect-ratio: 1/1;
}

.rkit-image_box__centered .rkit-image_box__detail {
    text-align: center;
    justify-content: center;
    align-items: center;
}





a.rkit-readmore-imagebox-btn {
    display: inline-flex;
    align-items: center;
    /* Posisikan ikon dan teks vertikal sejajar */
    justify-content: center;
    background-color: #00CEA6;
    border-radius: 0px;
    padding: 12px 20px 12px 20px;
    font-size: 15px;
    color: white;
    transition: all 0.5s;
    border: none;
    gap: 0.5rem;
}

a.rkit-readmore-imagebox-btn:hover {
    background-color: #33e4c0;
    color: black;
}


.rkit-readmore-imagebox-div {
    display: flex;
    justify-content: center;
}

/*  */


a.rkit-button-top {
    background-color: #00CEA6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: 0px;
}


a.rkit-button-top:hover {
    background-color: #33e4c0;
    color: black;
}





@keyframes overlay_animation_in {
    from {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: center;
    }

    to {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: center;
    }
}

@keyframes overlay_animation_out {
    from {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: center;
    }

    to {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: center;
    }
}

.fade-in {
    animation: overlay_animation_in 0.5s ease-in-out forwards;
    /* Animasi fade in */
}

.fade-out {
    animation: overlay_animation_out 0.5s ease-in-out forwards;
    /* Animasi fade out */
}.container-image-accordion{
  display : flex;
  width : auto;
  overflow : hidden;
  position : relative;
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.item-ia {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
  overflow: hidden;
  &:hover{
    flex: 5;
  }
}

.item-text{ 
  opacity: 0;
  display: flex;
  overflow: hidden;
}


.text-title-ia {
  display: flex;
  justify-content: center;
  opacity: 0;
  z-index: 999;
  transform: translateY(20px);
  transition: all 1s ease;
}

.hs-animation-text-title-ia {
  animation: hs-animation-text-title-ia 1s ease forwards;
}

@keyframes hs-animation-text-title-ia {
  0% {
    transform: translateY(-500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Sama untuk .text-description jika ingin efek serupa */
.text-description {
  display: flex;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.hs-animation-text {
  animation: hs-animation-text 1s ease forwards;
}
@keyframes hs-animation-text {
  0% {
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.item-ia-hover.active .text-title-ia  {
    transform: translateY(0);
    opacity: 1;
}

.item-ia-hover.active .text-description {
    transform: translateY(0);
    opacity: 1;
}

.item-ia-click.active .text-title-ia  {
  transform: translateY(0);
  opacity: 1;
}

.item-ia-click.active .text-description {
  transform: translateY(0);
  opacity: 1;
}


/* button */

.icon-button{
  color : red;
}

.icon-button i:hover{
  color : rgb(255, 255, 255);
}

.rkit-image-accordion-item-button{
  display : flex;
  justify-content : center;
  z-index: 999;
}

.button-element-image-accordion {
  position: relative;
  z-index: 1;
  display: flex;
  align-self: center;
  align-items: center; 
  width : auto;
  background-color:  #000000;
  color :  #ffffff;
  max-width: none;
  padding : 16px 32px 16px 32px;
  justify-content: center;  
    opacity: 0; 
   transform: translateY(20px);
  transition: all 1s ease;
  overflow: hidden;
   animation: hs-animation-button 1s ease forwards;

  /* box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}
 

.rkit-image-accordion-item-button-icon{
  color: #56d4c4;  
}

 .hs-animation-button {
  animation: hs-animation-button 1s ease forwards;
}

 
 

@keyframes hs-animation-button {
  0% {
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* hover mode */
.item-ia-hover {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 1s ease;
  overflow : hidden;
  position: relative;
} 

.item-ia-hover.active{
  flex : 3;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.item-ia-hover.active .item-text {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;   
  opacity: 0;  
  padding: 0px;
  overflow: hidden;
  transition-delay : 2s;
  animation: fadeIn 2s ease-in-out forwards;  
}

.background-item-text{
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #9A9191;
  opacity: 20%;
}

/* .item-ia-hover.active .item-text{
  height: 100%;
  width: 100%;
  display: flex;  
  flex-direction: column;
  justify-content: center;
  opacity: 1;  
  padding: 0px;   
  overflow: hidden;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;  
} */



/* klik mode */
.item-ia-click {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 1s ease;
  overflow : hidden;
} 

.item-ia-click.active{
  flex : 3;
}

@keyframes fadeInClick {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.item-ia-click.active .item-text {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;  
  padding: 0px;
  overflow: hidden;
  transition-delay : 1s;
  animation: fadeIn 1s ease-in-out forwards;  
}

/* .item-ia-click.active .item-text{
  height: 100%;
  width: 100%;
  display: flex;  
  flex-direction: column;
  justify-content: center;
  opacity: 1;  
  padding: 0px;     
  overflow: hidden;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;  
} */


 

 
@media only screen and (max-width: 480px) {

  .gallery-wrap { 
    flex-direction: column !important; 
  }

}
 .dual-button-outer-wrapper {
	display: flex; 
	justify-content: center;  
	
  }
  .dual-button-inner-wrapper {
	display:flex;
	flex-direction : row;
	position: relative;
	height:  auto; 
	background-color: transparent;
	vertical-align: middle;
	align-items: center;
	align-self: center;
	overflow: hidden;
	}

	.dual-button-inner-wrapper .column{
		gap : 1px;
	}
  
  .dual-button{
	display:flex;
	width: 180px;
	height:  auto;
	float: left;
	box-sizing: border-box; 
	    
  }
  .dual-left {
   	background-color: #333;   
	border-radius:   0px;
  }
  
  .dual-right {
   	background-color: #00cea6;  
	border-radius: 0px;
  }
  
  .dual-text{
	font-size: 18px;
	display: flex;
	font-family: arial;
	font-weight: bold;
  	text-align : center;
	justify-content : center;
  	color: white; 
	width: 100%;
	position: relative;
	z-index: 0;
	
  }

  .left_button{
	display: flex;
	gap : 5px;
	align-self:center;
	padding: 12px 30px 12px 30px;
  }

 
  .right_button{
	display: flex;
	gap : 5px;
	align-self:center;
	padding: 12px 30px 12px 30px;
  }
 
  .dual-button:hover { 
	background-color: #4a4a4a;
  }
  
  .dual-text:hover {
	color: #ffffff;
	
  }
  
  .dual-right:hover {
	background-color: #5eebcf;
  }
 
 
 

  .middle-button{
	display: flex;
	justify-content : center;
	align-items : center;
	align-self: center;
	text-align : center; 
	z-index: 9999;
}

.middle{
	display : flex;
	justify-content : center;
	align-items : center;
	align-self: center;
	text-align : center; 
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: white;
	position: absolute;
	font-size: 15px;
    line-height: 1px;
}

.rkit-icon-left-button{
	display: inline-flex;
	position: relative; 
	align-self: center;  
}

.rkit-icon-right-button{
	display: inline-flex;
	position: relative; 
	align-self: center;  
}

.rkit-icon-middle-button{
	display: inline-flex;
	position: relative; 
	align-self: center;  
}.rkit-gallery-masonry-container {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.rkit-gallery-masonry {

  column-count: 3;
  column-gap: 5px;

  @media (min-width: 768px) {
    column-count: 3;
  }

  @media (min-width: 992px) {
    column-count: 4;
  }

  @media (min-width: 1199px) {
    column-count: 5;
  }

}

.rkit-gallery-masonry.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  background-color: transparent;
  justify-content: center;
}




.brick {
  box-sizing: border-box;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  counter-increment: brick-counter;
  overflow: hidden;
  position: relative;
}



/* Placeholder Skeleton */
/* Gambar Lazy Load */
.gallery_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 900ms;
  transition: transform 0.8s ease;
  left: 0;
}

/* Skeleton Placeholder */
.skeleton {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  opacity: 1;
  position: relative;
}


/* Keyframe Animasi Placeholder */
@keyframes loading {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}


/* .gallery_image  {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
 transition-duration: 900ms; 
  transition: transform 0.8s ease;  
} */

.gallery_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 900ms;
  transition: transform 0.6s ease;
}

.zoom:hover img {
  transform: scale(1.1);
  transition-duration: 900ms;
}



.overlay:hover {
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent black */
  opacity: 0.6;
  transition: opacity 0.6s ease;
}.rkit-swiper-hs {
  position: relative;
  overflow: hidden;
}

.rkit-homeslider {
  background-color: transparent;
  overflow: hidden; 
}

.container-image-hsl{
  overflow: hidden;
  background-color: transparent; 
}

.rkit-hs-client {
  width: 100%;
  height: 90vh; 
 overflow: hidden;
}

.rkit-homeslider-slider {
  padding: 0px 0px 0px 0px;
}

.rkit-homeslider-pagination {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}

/* Image container (ensure the image is contained properly) */
.image-container-hsl {
  position: relative;
  width: 100%;
  height: 100%;   
  overflow: hidden;
}
.image-cover-hsl{
  height : 100% !important;
}

.image-container-hsl img {
  transform: scale(1.1);
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;  
  overflow: hidden;
}
 
.swiper-slide-active > .image-container-hsl {
  transform: scale(1);
  opacity: 1;
}

.image-container-hsl.animate-zoom-out {
  animation: zoomOut  5s ease-out forwards;
}

@keyframes zoomOut {
  0% { 
    transform: scale(1.1);  
  }
  100% { 
    transform: scale(1);  
  }
}





/* Content overlay */
.hs-content {
  display: flex;  
  text-wrap: wrap;
  flex-direction: column;  
  justify-content: center;
  align-items: center; 
  gap: 20px;   
  width: 100%;  
  height: 100%;   
  max-width: 100%;
  position: absolute;   
  top: 0;
  left: 0;
  padding: 10%;  
  background-color: transparent;
  z-index: 0;  
}
 
.hs-content-background{
  display: flex;  
  flex-direction: column;  
  justify-content: center;
  align-items: center; 
  gap: 20px;   
  width: 100%;  
  height: 100%;   
  max-width: 100%;
  position: absolute;   
  top: 0;
  left: 0;
  padding: 10%; 
  background-color: #000000; 
  z-index: 0;  
}

.icon-subtitle-hs{
  display: flex;
  align-self: center;
  z-index: 3;  
}

.hs-subtitle-section{
  display : inline-flex;
  flex-direction: row; 
  color: #ffffff; 
  gap : 10px;
  width: fit-content;
  z-index: 3;  
}
.hs-sub-title{
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;  
  z-index: 3;  
  /* text-align: center; */
  align-self: center;
  width: 100%;
  display: block; 
  text-wrap: auto; 
  max-width: fit-content;
}

.hs-title {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;  
  z-index: 3;    
  /* text-align: center; */
  display: block; 
  text-wrap: auto; 
}

.hs-description {
  font-size: 20px;
  color: #ffffff;   
  z-index: 3;  
  display: block;
  text-wrap: auto;  
}

/* .hs-mw{
  max-width: 50%;
} */

/* text animate */
.hs-animation-1-subtitle span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpSubtitle 0.5s ease forwards;
}
.hs-animation-1-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpTitle 0.5s ease forwards;
}

.hs-animation-1-desc span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpDesc 0.5s ease forwards;
}

@keyframes fadeInUpSubtitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpDesc {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hs-animation-2-subtitle {
  display: inline-block;
  overflow: hidden;       
  animation: typewritersubtitle 4s steps(30) 1s forwards, blink 0.7s ;
  white-space: nowrap;
}

.hs-animation-2-title {
  display: inline-block;
  overflow: hidden;      
  animation: typewritertitle 4s steps(30) 1s forwards, blinks 0.7s ;
  white-space: wrap;
}

.hs-animation-2-desc {
  display: inline-block; 
  overflow: hidden;      
  animation: typewriterdesc 4s steps(30) 1s forwards, blinkz 0.7s ;
  white-space: wrap;
}
@keyframes typewritersubtitle {
  0% {
    width: 30%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  } 
  100% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes typewritertitle {
  0% {
    width: 30%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes typewriterdesc {
  0% {
    width: 30%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 50%;
    opacity: 1;
  }
}

 
@keyframes blink {
  from {
    border-color: transparent;
  }
  to {
    border-color: #ffffff;
  }
}

@keyframes blinks {
  from {
    border-color: transparent;
  }
  to {
    border-color: #ffffff;
  }
}
@keyframes blinkz {
  from {
    border-color: transparent;
  }
  to {
    border-color: #ffffff;
  }
}

/* Navigation buttons */
.swiper-nav-cont{
  display: flex;
  gap : 15px;
  position: absolute; 
  cursor: pointer;
  padding: 10px;
  top: 2%;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.swiper-bullet-cont{
  display: flex;
  gap : 15px;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  left: 48%;
  top: 95%;
}


.rkit-swiper-hs-button-next,
.rkit-swiper-hs-button-prev { 
  position : relative;
  z-index: 1;
  width: 45px;
  height: 45px;
  background-color: transparent;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 0%;
  border-style : solid;
  border-width : 1px;
  border-color : #fff;
  --swiper-navigation-size: 44px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
}

/* 
.rkit-swiper-hs-button-next:hover{  
  width: 75px;
  height: 45px;
  background-color: #ff0000;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 0% 50% 50% 0%; 
  }
  
  .rkit-swiper-hs-button-prev:hover{  
  width: 75px;
  height: 45px;
  background-color: #ff0000;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 50% 0% 0% 50%; 
  } */

/* Dots and overlay style */
.rkit-homeslider-bullet {
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #aaaaaa;
  transition: all 0.5s ease;
}

.rkit-homeslider-bullet-active {
  background-color: #161616;
}

.rkit-homeslider-bullet-clickable .rkit-homeslider-bullet {
  cursor: pointer;
}

.card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.card-body::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.card-title {
  margin: 0;
}

.card-title a {
  text-decoration: none;
  color: #161616;
}

.card-heading {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}

.rkit-swiper-hs-button-prev.swiper-button-disabled,
.rkit-swiper-hs-button-next.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

/* .rkit-homeslider .card-button a {
  background-color: #33e4c0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: white;
  transition: all 0.5s;
  border-radius: 0px;
} */

/* .rkit-homeslider .card-button {
  display: flex;
  justify-content: start;
}

.rkit-homeslider .card-button a .button-icon {
  transition: color 0.5s;
}

.rkit-homeslider.overlay {
  position: relative;
}

.rkit-homeslider.overlay .card-body {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.rkit-homeslider.overlay .card-button {
  justify-content: center;
}

.rkit-homeslider.overlay:hover .card-body {
  opacity: 1;
  transform: scaleY(1);
}

.rkit-homeslider-slider .swiper-slide {
  overflow: unset;
}

.card-button.fullwidth a {
  width: 100%;
}
 */



/* button */

.text-button{
  display : flex;
  align-items : center;
}

.icon-list-button-hs{ 
  color : red;
  align-self: center;
}

.icon-subtitle-hs{ 
  color : #ffffff;
  align-self: center;
}

.icon-list-button-hs i:hover{
  color : rgb(255, 255, 255);
}

.rkit-homeslider-item-button .button-element-homeslider {
  display: flex;
  align-self: center;
  margin-top: auto;
  background-color:  #333333;
  color :  #ffffff;
  max-width: none;
  padding : 16px 32px 16px 32px;
  justify-content: center;  
  position: relative;
  
  /* box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}

.rkit-homeslider-item-button.button-full-size .button-element-homeslider { 
  display: flex;
  justify-content: center;  
  width :100%
}

.rkit-homeslider-item-button-icon{
  color: #56d4c4;  
}/* Minimalist design option css */
.rkit-product-grid-wpg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background-color: transparent;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .rkit-product-grid-wpg {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .rkit-product-grid-wpg-pro {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media only screen and (max-width: 767px) {
  .rkit-product-grid-wpg {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .rkit-product-grid-wpg-pro {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.rkit-icon-readmore-wpg {
  align-content: center;
}

.rkit-product-card-wpg {
  background-color: #ffffff;
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 10px;
  position: relative;
  height: min-content;
  width: -webkit-fill-available;
}

.rkit-addcart-wrap-button-wpg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
}

.rkit-product-card-wpg:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.rkit-product-image-wpg {
  position: relative;
  overflow: hidden;
}

.rkit-product-image-wpg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;
}

.rkit-product-image-wpg:hover img {
  transform: scale(1.1);
  filter: brightness(40%);
}
/* 
.rkit-product-image-wpg:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #575555;
  opacity: 0.3;
  transition: width 0.6s ease;
  z-index: 0;
} */

.rkit-product-details-wpg {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: flex-start;
}

.rkit-product-info-wpg {
  display: flex;
  flex-direction: column;
  flex: 1 0 50%;
  width: 100%;
}

.rkit-product-title-wpg {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  text-wrap: wrap;
  text-wrap-style: stable;
}

.rkit-product-category-wpg {
  font-size: 14px;
  color: #888888;
  margin-top: 4px;
}

.rkit-product-price-wpg {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

.rkit-product-feat-wpg {
  display: flex;
  flex-direction: column;
  justify-content: right;
  /* text-align: end; */
  align-self: self-start;
}

.rkit-addcart-wrap-button-wpg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.rkit-product-image-wpg:hover .rkit-addcart-wrap-button-wpg {
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
  z-index: 99;
  justify-content: center;
  display: flex;
  width: 100%;
}

.rkit-addcart-button-wpg {
  /* display: inline-block; */
  display: flex;
  gap: 10px;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: background-color 0.3s ease;
}

.rkit-addcart-button-wpg span {
  position: relative;
  display: inline-block;
}

.rkit-addcart-button-wpg span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #000000;
  transition: width 0.6s ease;
  z-index: 999;
}

.rkit-product-image-container {
  overflow: hidden;
}

.rkit-product-image-wpg:hover span::after {
  width: 100%;
}

.rkit-product-rating-wpg {
  font-size: 14px;
  color: #f5c518;
}

/* ribbon */
.rkit-product-ribbon-wpg {
  position: absolute;
  /* top: 10px;  */
  background-color: #ff0000;
  /* Warna background ribbon */
  color: #fff;
  /* Warna teks */
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
  border-radius: 0px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.rkit-product-card-wpg {
  position: relative;
}

/* =============================================divider======================================================= */

/* profesional design css layout 2 */

.rkit-product-grid-wpg-pro {
  overflow: hidden;
}

.rkit-product-card-wpg-pro {
  border-radius: 20px 20px 20px 20px;
  /* background-color: transparent; */
  /* background: linear-gradient(29deg, #000000 20%, #A0A0A0 100%); */
  background-color: #a0a0a0;
  padding: 20px 20px 20px 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 10px;
  position: relative;
  height: min-content;
  /* width: -webkit-fill-available; */
}

.rkit-product-image-wpg-pro {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 20px 20px;
}

.rkit-product-image-wpg-pro img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px 20px 20px 20px;
}

.rkit-product-image-wpg-pro:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.3;
  transition: width 0.6s ease;
  z-index: 1;
}

/* content */

.rkit-product-details-wpg-pro {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.rkit-product-info-wpg-pro {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  width: 100%;
}

.rkit-product-title-wpg-pro {
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-wrap: wrap;
}

.rkit-product-price-wpg-pro {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.rkit-product-feat-wpg-pro {
  display: flex;
  flex-direction: column;
  justify-content: right;
  text-align: end;
  align-self: flex-start;
}

.rkit-product-desc-wpg-pro {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition-delay: 2s;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.rkit-product-text-desc-wpg-pro {
  font-size: 14px;
  font-weight: 100;
  color: #ffffff;
  text-wrap: wrap;
  text-align: center;
}

.rkit-product-card-wpg-pro:hover .rkit-product-desc-wpg-pro {
  opacity: 1;
  max-height: 200px;
}

/* button */
.rkit-addcart-wrap-button-wpg-all-pro {
  display: inline-flex;
  position: relative;
  justify-content: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: transparent;
}

.rkit-addcart-wrap-button-wpg-pro {
  display: flex;
  position: relative;
}

/* Gradient border wrapper */
.gradient-border {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 15px;
  background-image: linear-gradient(
    30deg,
    var(--gradient-color-one),
    var(--gradient-color-two)
  );
  background-size: 500%;
  z-index: 0;
  animation: border-ambient 3s linear infinite;
}

/* The button itself */
.rkit-addcart-button-wpg-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00cea6;
  border-radius: 15px;
  padding: 12px 30px;
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  color: white;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  overflow: hidden;
  gap: 20px;
}

.rkit-addcart-wrap-button-wpg-pro {
  width: 100%;
  margin: 0 auto;
  /* overflow: hidden;  */
}

/* Gradient animation */
@keyframes border-ambient {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 75%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 25%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.rkit-product-rating-wpg-pro {
  font-size: 14px;
  color: #f5c518;
}

/* ribbon pro*/
.rkit-product-ribbon-wpg-pro {
  background-color: #00cea6;
  margin-top: 0px;
  border-radius: 0px;
  position: absolute;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
}

.rkit-product-card-wpg-pro {
  position: relative;
}

/* =============================================================================================================== */
/* premium style css layout 3 */

.rkit-product-grid-wpg-prem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* flex-direction: row; */
  gap: 16px;
  justify-content: center;
}

.rkit-product-card-wpg-prem {
  /* width: 100%;  */
  padding: 20px;
  background-color: #d0d1d5;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: min-content;
  width: -webkit-fill-available;
}

.rkit-product-image-wpg-prem {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 20px 20px;
}

.rkit-product-image-wpg-prem img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px 20px 20px 20px;
}

.rkit-product-image-wpg-prem:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.3;
  transition: width 0.6s ease;
  z-index: 0;
}

.rkit-product-ribbon-wpg-prem {
  background-color: #00cea6;
  /* background: linear-gradient(305deg, #393131 0%, #00CEA6 100%); */
  margin-top: 0px;
  border-radius: 20px 20px 20px 20px;
  position: absolute;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
}

.rkit-product-details-wpg-prem {
  display: flex !important;
  flex-direction: column-reverse;
  align-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 15px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease-in-out;
  /* height : 100%; */
  max-height: min-content;
  gap: 10px;
  /* transform: translateY(60%);  */
}

.rkit-product-details-wpg-prem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  opacity: 0.5;
  z-index: -1;
}

.rkit-product-info-wpg-prem {
  margin-bottom: 12px;
  flex: 0 0 50%;
  width: 100%;
}

.rkit-product-title-wpg-prem {
  font-weight: bold;
  margin: 0;
  color: #333;
  width: fit-content;
  position: relative;
  padding-bottom: 25px;
}

.rkit-product-title-wpg-prem::after {
  content: "";
  text-align: left;
  justify-content: start;
  display: block;
  width: 50%;
  border-bottom: 3px solid #000000;
  margin: 0 auto;
  position: absolute;
  left: 0;
  padding-bottom: 10px;
}

.rkit-product-feat-wpg-prem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  align-self: flex-start;
}

.rkit-product-price-wpg-prem {
  font-size: 24px;
  font-weight: 300;
  color: #000000;
}

.rkit-product-rating-wpg-prem {
  font-size: 14px;
  color: #f4a261;
}

.rkit-product-hov-wpg-prem {
  display: flex;
  gap: 10px;
  flex-direction: row;
  width: 100%;
  /* padding-top: 10px; */
  height: min-content;
  position: relative;
  text-align: center;
  opacity: 0;
  max-height: min-content;
  overflow: hidden;
  visibility: hidden;
  /* transform: translateY(-80%);  */
  transition: max-height 0.5s ease, opacity 0.5s ease-in-out,
    transform 0.5s ease-in-out;
}

.rkit-product-card-wpg-prem:hover .rkit-product-details-wpg-prem {
  transform: translateY(-70%);
  max-height: min-content;
}

.rkit-product-card-wpg-prem:hover .rkit-product-hov-wpg-prem {
  opacity: 1;
  /* height : fit-content; */
  max-height: min-content;
  visibility: visible;
  transform: translateY(-70%);
}

.rkit-product-card-wpg-prem:hover {
  max-height: min-content;
}

.rkit-addcart-button-wpg-prem {
  display: flex;
  justify-content: center;
  background-color: #1f1f29;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 15px;
  color: #d9dade;
  position: relative;
}

.rkit-addcart-wrap-button-wpg-prem {
  display: flex;
  flex: 0 0 40%;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  align-content: center;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.rkit-addcart-wrap-button-wpg-prem span {
  display: flex;
  align-items: center;
}

.rkit-addcart-wrap-button-wpg-prem i {
  display: flex;
  align-items: center;
}

.text-button {
  display: flex;
}

.rkit-product-desc-wpg-prem {
  padding: 0px 0px 0px 0px;
  display: flex;
  flex: 0 0 60%;
  overflow: hidden;
  transition-delay: 2s;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.rkit-product-text-desc-wpg-prem {
  font-size: 14px;
  font-weight: 100;
  color: #000000;
  text-wrap: wrap;
  text-align: left;
  max-width: 100%;
  overflow: hidden;
}

/* Styling untuk bintang */
.star-rating-wpg {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: #ddd;
  position: relative;
}

.star-rating-wpg span {
  display: block;
  color: #f5c518;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  width: 0;
}

/* SALE PRICE */
.rkit-product-sale-price-wpg {
  color: #000000;
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
}

.rkit-product-sale-price-wpg-pro {
  color: #ffffff;
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
}

.rkit-product-sale-price-wpg-prem {
  color: #000000;
  font-weight: bold;
  margin-right: 10px;
  font-size: 24px;
}

/* REGULAR PRICE (Jika Ada Sale Price) */
.if-sale-price-wpg {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* line-height: 0px; */
  gap: 2px;
  /* padding-bottom: 20px; */
}

.if-sale-price-wpg-pro {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* line-height: 0px; */
  gap: 5px;
}

.if-sale-price-wpg-prem {
  display: flex;
  flex-direction: column-reverse;
}

.rkit-product-sale-price-reguler-wpg {
  color: #777;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: normal;
  align-content: center;
  align-self: center;
}

.rkit-product-sale-price-reguler-wpg-pro {
  color: #ffffff;
  text-decoration: line-through;
  font-size: 16px;
  font-weight: normal;
}

.rkit-product-sale-price-reguler-wpg-prem {
  color: #777;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: normal;
}

/* REGULAR PRICE (Tanpa Sale Price) */
.rkit-product-price-reguler-wpg {
  color: #333;
  font-weight: bold;
  font-size: 20px;
  text-align: start;
}

.rkit-product-price-reguler-wpg-pro {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  text-align: start;
}

.rkit-product-price-reguler-wpg-prem {
  color: #333;
  font-weight: bold;
  font-size: 24px;
  text-align: start;
}

.client-grid-container{
  display: block;
  max-height: max-content;
  height: 100%;
  width: 100%;
}
.client-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-direction: row;
  gap: 5px;
  background-color: transparent;
  justify-content: center;
  overflow: hidden;
}


@media (max-width: 768px) {
  .rkit-card-client {
   height : 200px;
 }
 }

/* css image */


/* Image container (ensure the image is contained properly) */
.image-container-cg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  max-height: max-content;
}

.image-container-cg img {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s;
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

.clientslogo-image {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  overflow: hidden;


}

.clientslogo-image-full-cg {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  overflow: hidden;

}

.clientslogo-image-full-cg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

/* image hover */
.image-hover-cg {
  opacity: 0;
  display: relative;
  align-items: center;
  justify-content: center;
  /* color: #000000; */
}


.fade_in .image-hover-cg {
  transform: scale(1);
}

.fade_in:hover .image-hover-cg {
  opacity: 1;
  transition: opacity 0.3s ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}


.fade_in:hover .image-default {
  opacity: 0;
}



.horizontal .image-hover-cg {
  transform: translateX(100%);
}

.horizontal:hover .image-hover-cg {
  opacity: 1;
  transform: translateX(0);
}

.horizontal:hover .image-default {
  opacity: 0;
  transform: translateX(-100%);
}

.vertical .image-hover-cg {
  transform: translateY(100%);
}

.vertical:hover .image-hover-cg {
  opacity: 1;
  transform: translateY(0);
}

.vertical:hover .image-default {
  opacity: 0;
  transform: translateY(-100%);
}




/*  text hover */
.hover-content-cg {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-self: flex-start;
  max-width: 100%;
  height: 100%;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background: #33e4c0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  background-clip: content-box;
}


.fade_in .hover-conten {
  transform: none;
}

.fade_in:hover .hover-conten {
  opacity: 1;
  transition: opacity 0.3s ease;
  transform: translateX(0);
}


.horizontal .hover-conten {
  transform: translateX(100%);
}

.horizontal:hover .hover-conten {
  opacity: 1;
  transform: translateX(0);
}

.vertical .hover-conten {
  transform: translateY(100%);
}

.vertical:hover .hover-conten {
  opacity: 1;
  transform: translateY(0);
}


.hover-title-cg {
  padding: 0px;
  margin: 0px;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}

.hover-description-cg {
  padding: 0px;
  margin: 0px;
  margin: 0px;
  color: #ddd;
  transition: color 0.3s ease-in-out;
}

/* end css image and hover */

/* navigation css */


.card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.card-body::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.card-title {
  margin: 0;

}

.card-title a {
  text-decoration: none;
  color: #161616;
}

.card-heading {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}


.rkit-clientslogo .card-button a {
  background-color: #33e4c0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: white;
  transition: all 0.5s;
  border-radius: 0px;
}

.rkit-clientslogo .card-button {
  display: flex;
  justify-content: start;
}

.rkit-clientslogo .card-button a .button-icon {
  transition: color 0.5s;
}

.rkit-clientslogo.overlay {
  position: relative;
}

.rkit-clientslogo.overlay .card-body {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.rkit-clientslogo.overlay .card-button {
  justify-content: center;
}

.rkit-clientslogo.overlay:hover .card-body {
  opacity: 1;
  transform: scaleY(1);
}

.rkit-clientslogo-slider .swiper-slide {
  overflow: unset;
}

.card-button.fullwidth a {
  width: 100%;
}.rkit-barchart-container {
    position: relative;
    z-index: 1;
}.rkit-linechart-container {
    position: relative;
    z-index: 1;
}.rkit-piechart-container {
    position: relative;
    z-index: 1;
}.rkit-back-to-top-container {
  display: flex;
}

.rkit-back-to-top-button {
  width: 70px;
  height: 70px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}

.rkit-back-to-top-progress .rkit-back-to-top-button {
  border-radius: 50%;
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rkit-back-to-top-button.hide-button-on-scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(5rem);
}

.rkit-back-to-top-button.hide-button-on-scroll.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0rem);
}

.back-to-top-text {
  line-height: 0;
}
@font-face {
  font-family: 'rtmicon-regular';
  src:  url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.eot?y6xw2y);
  src:  url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.eot?y6xw2y#iefix) format('embedded-opentype'),
    url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.ttf?y6xw2y) format('truetype'),
    url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.woff?y6xw2y) format('woff'),
    url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.svg?y6xw2y#rtmicon-regular) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.rtmicon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'rtmicon-regular' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.rtmicon.rtmicon-accordion:before {
  content: "\e900";
}
.rtmicon.rtmicon-advance-button:before {
  content: "\e901";
}
.rtmicon.rtmicon-advanced-heading:before {
  content: "\e902";
}
.rtmicon.rtmicon-advanced-tabs:before {
  content: "\e903";
}
.rtmicon.rtmicon-advanced-toggle:before {
  content: "\e904";
}
.rtmicon.rtmicon-alarm-clock:before {
  content: "\e905";
}
.rtmicon.rtmicon-alert:before {
  content: "\e906";
}
.rtmicon.rtmicon-android:before {
  content: "\e907";
}
.rtmicon.rtmicon-animated-heading:before {
  content: "\e908";
}
.rtmicon.rtmicon-apple:before {
  content: "\e909";
}
.rtmicon.rtmicon-arrow-down:before {
  content: "\e90a";
}
.rtmicon.rtmicon-arrow-down-left:before {
  content: "\e90b";
}
.rtmicon.rtmicon-arrow-down-right:before {
  content: "\e90c";
}
.rtmicon.rtmicon-arrow-down-to-line:before {
  content: "\e90d";
}
.rtmicon.rtmicon-arrow-left:before {
  content: "\e90e";
}
.rtmicon.rtmicon-arrow-long-down:before {
  content: "\e90f";
}
.rtmicon.rtmicon-arrow-long-left:before {
  content: "\e910";
}
.rtmicon.rtmicon-arrow-long-right:before {
  content: "\e911";
}
.rtmicon.rtmicon-arrow-long-up:before {
  content: "\e912";
}
.rtmicon.rtmicon-arrow-right:before {
  content: "\e913";
}
.rtmicon.rtmicon-arrow-up:before {
  content: "\e914";
}
.rtmicon.rtmicon-arrow-up-left:before {
  content: "\e915";
}
.rtmicon.rtmicon-arrow-up-right:before {
  content: "\e916";
}
.rtmicon.rtmicon-author-box:before {
  content: "\e917";
}
.rtmicon.rtmicon-award:before {
  content: "\e918";
}
.rtmicon.rtmicon-back-to-top-button:before {
  content: "\e919";
}
.rtmicon.rtmicon-badge-check:before {
  content: "\e91a";
}
.rtmicon.rtmicon-badge-dollar:before {
  content: "\e91b";
}
.rtmicon.rtmicon-badge-percent:before {
  content: "\e91c";
}
.rtmicon.rtmicon-banner-ad:before {
  content: "\e91d";
}
.rtmicon.rtmicon-banner-discount:before {
  content: "\e91e";
}
.rtmicon.rtmicon-bar-chart:before {
  content: "\e91f";
}
.rtmicon.rtmicon-bar-progress:before {
  content: "\e920";
}
.rtmicon.rtmicon-bars:before {
  content: "\e921";
}
.rtmicon.rtmicon-bar-sort-left:before {
  content: "\e922";
}
.rtmicon.rtmicon-bar-sort-right:before {
  content: "\e923";
}
.rtmicon.rtmicon-battery:before {
  content: "\e924";
}
.rtmicon.rtmicon-behance:before {
  content: "\e925";
}
.rtmicon.rtmicon-blob-shape:before {
  content: "\e926";
}
.rtmicon.rtmicon-blockquote:before {
  content: "\e927";
}
.rtmicon.rtmicon-blog:before {
  content: "\e928";
}
.rtmicon.rtmicon-blog-carousel:before {
  content: "\e929";
}
.rtmicon.rtmicon-blog-post:before {
  content: "\e92a";
}
.rtmicon.rtmicon-bluetooth:before {
  content: "\e92b";
}
.rtmicon.rtmicon-book:before {
  content: "\e92c";
}
.rtmicon.rtmicon-bookmark:before {
  content: "\e92d";
}
.rtmicon.rtmicon-box-package:before {
  content: "\e92e";
}
.rtmicon.rtmicon-breadcumb:before {
  content: "\e92f";
}
.rtmicon.rtmicon-briefcase:before {
  content: "\e930";
}
.rtmicon.rtmicon-browser:before {
  content: "\e931";
}
.rtmicon.rtmicon-business-hours:before {
  content: "\e932";
}
.rtmicon.rtmicon-calendar:before {
  content: "\e933";
}
.rtmicon.rtmicon-calendar-check:before {
  content: "\e934";
}
.rtmicon.rtmicon-calendar-days:before {
  content: "\e935";
}
.rtmicon.rtmicon-call:before {
  content: "\e936";
}
.rtmicon.rtmicon-call-to-action:before {
  content: "\e937";
}
.rtmicon.rtmicon-call-to-action-2:before {
  content: "\e938";
}
.rtmicon.rtmicon-call-volume-up:before {
  content: "\e939";
}
.rtmicon.rtmicon-camera:before {
  content: "\e93a";
}
.rtmicon.rtmicon-card-carousel:before {
  content: "\e93b";
}
.rtmicon.rtmicon-card-slider:before {
  content: "\e93c";
}
.rtmicon.rtmicon-caret-down:before {
  content: "\e93d";
}
.rtmicon.rtmicon-caret-left:before {
  content: "\e93e";
}
.rtmicon.rtmicon-caret-right:before {
  content: "\e93f";
}
.rtmicon.rtmicon-caret-up:before {
  content: "\e940";
}
.rtmicon.rtmicon-chart:before {
  content: "\e941";
}
.rtmicon.rtmicon-chart-line-down:before {
  content: "\e942";
}
.rtmicon.rtmicon-chart-line-up:before {
  content: "\e943";
}
.rtmicon.rtmicon-check:before {
  content: "\e944";
}
.rtmicon.rtmicon-checkbox:before {
  content: "\e945";
}
.rtmicon.rtmicon-chevron-down:before {
  content: "\e946";
}
.rtmicon.rtmicon-chevron-left:before {
  content: "\e947";
}
.rtmicon.rtmicon-chevron-right:before {
  content: "\e948";
}
.rtmicon.rtmicon-chevrons-down:before {
  content: "\e949";
}
.rtmicon.rtmicon-chevrons-left:before {
  content: "\e94a";
}
.rtmicon.rtmicon-chevrons-right:before {
  content: "\e94b";
}
.rtmicon.rtmicon-chevrons-up:before {
  content: "\e94c";
}
.rtmicon.rtmicon-chevron-up:before {
  content: "\e94d";
}
.rtmicon.rtmicon-circle-arrow-down:before {
  content: "\e94e";
}
.rtmicon.rtmicon-circle-arrow-down-left:before {
  content: "\e94f";
}
.rtmicon.rtmicon-circle-arrow-down-right:before {
  content: "\e950";
}
.rtmicon.rtmicon-circle-arrow-left:before {
  content: "\e951";
}
.rtmicon.rtmicon-circle-arrow-right:before {
  content: "\e952";
}
.rtmicon.rtmicon-circle-arrow-up:before {
  content: "\e953";
}
.rtmicon.rtmicon-circle-arrow-up-left:before {
  content: "\e954";
}
.rtmicon.rtmicon-circle-arrow-up-right:before {
  content: "\e955";
}
.rtmicon.rtmicon-circle-caret-down:before {
  content: "\e956";
}
.rtmicon.rtmicon-circle-caret-left:before {
  content: "\e957";
}
.rtmicon.rtmicon-circle-caret-right:before {
  content: "\e958";
}
.rtmicon.rtmicon-circle-caret-up:before {
  content: "\e959";
}
.rtmicon.rtmicon-circle-check:before {
  content: "\e95a";
}
.rtmicon.rtmicon-circle-chevron-down:before {
  content: "\e95b";
}
.rtmicon.rtmicon-circle-chevron-left:before {
  content: "\e95c";
}
.rtmicon.rtmicon-circle-chevron-right:before {
  content: "\e95d";
}
.rtmicon.rtmicon-circle-chevron-up:before {
  content: "\e95e";
}
.rtmicon.rtmicon-circle-down:before {
  content: "\e95f";
}
.rtmicon.rtmicon-circle-left:before {
  content: "\e960";
}
.rtmicon.rtmicon-circle-minus:before {
  content: "\e961";
}
.rtmicon.rtmicon-circle-plus:before {
  content: "\e962";
}
.rtmicon.rtmicon-circle-right:before {
  content: "\e963";
}
.rtmicon.rtmicon-circle-up:before {
  content: "\e964";
}
.rtmicon.rtmicon-circle-user:before {
  content: "\e965";
}
.rtmicon.rtmicon-circle-xmark:before {
  content: "\e966";
}
.rtmicon.rtmicon-city:before {
  content: "\e967";
}
.rtmicon.rtmicon-clapperboard-video:before {
  content: "\e968";
}
.rtmicon.rtmicon-client-carousel:before {
  content: "\e969";
}
.rtmicon.rtmicon-client-grid:before {
  content: "\e96a";
}
.rtmicon.rtmicon-client-list:before {
  content: "\e96b";
}
.rtmicon.rtmicon-clipping-mask:before {
  content: "\e96c";
}
.rtmicon.rtmicon-clock:before {
  content: "\e96d";
}
.rtmicon.rtmicon-clock-desk:before {
  content: "\e96e";
}
.rtmicon.rtmicon-cloud-check:before {
  content: "\e96f";
}
.rtmicon.rtmicon-cloud-download:before {
  content: "\e970";
}
.rtmicon.rtmicon-cloud-upload:before {
  content: "\e971";
}
.rtmicon.rtmicon-code:before {
  content: "\e972";
}
.rtmicon.rtmicon-coin:before {
  content: "\e973";
}
.rtmicon.rtmicon-coin-dollar:before {
  content: "\e974";
}
.rtmicon.rtmicon-coin-group:before {
  content: "\e975";
}
.rtmicon.rtmicon-coins:before {
  content: "\e976";
}
.rtmicon.rtmicon-color-picker:before {
  content: "\e977";
}
.rtmicon.rtmicon-comments:before {
  content: "\e978";
}
.rtmicon.rtmicon-comments-question:before {
  content: "\e979";
}
.rtmicon.rtmicon-content-slider:before {
  content: "\e97a";
}
.rtmicon.rtmicon-cookies:before {
  content: "\e97b";
}
.rtmicon.rtmicon-countdown:before {
  content: "\e97c";
}
.rtmicon.rtmicon-counter:before {
  content: "\e97d";
}
.rtmicon.rtmicon-counters:before {
  content: "\e97e";
}
.rtmicon.rtmicon-credit-card-back:before {
  content: "\e97f";
}
.rtmicon.rtmicon-credit-card-front:before {
  content: "\e980";
}
.rtmicon.rtmicon-date-form:before {
  content: "\e981";
}
.rtmicon.rtmicon-desk:before {
  content: "\e982";
}
.rtmicon.rtmicon-diamond:before {
  content: "\e983";
}
.rtmicon.rtmicon-download:before {
  content: "\e984";
}
.rtmicon.rtmicon-dribbble:before {
  content: "\e985";
}
.rtmicon.rtmicon-dual-button:before {
  content: "\e986";
}
.rtmicon.rtmicon-duplicator:before {
  content: "\e987";
}
.rtmicon.rtmicon-elementor:before {
  content: "\e988";
}
.rtmicon.rtmicon-email-form:before {
  content: "\e989";
}
.rtmicon.rtmicon-envelope:before {
  content: "\e98a";
}
.rtmicon.rtmicon-envelope-open-dollar:before {
  content: "\e98b";
}
.rtmicon.rtmicon-event:before {
  content: "\e98c";
}
.rtmicon.rtmicon-event-list:before {
  content: "\e98d";
}
.rtmicon.rtmicon-facebook:before {
  content: "\e98e";
}
.rtmicon.rtmicon-fax:before {
  content: "\e98f";
}
.rtmicon.rtmicon-feather:before {
  content: "\e990";
}
.rtmicon.rtmicon-featured-image:before {
  content: "\e991";
}
.rtmicon.rtmicon-figma:before {
  content: "\e992";
}
.rtmicon.rtmicon-file:before {
  content: "\e993";
}
.rtmicon.rtmicon-file-info:before {
  content: "\e994";
}
.rtmicon.rtmicon-file-pdf:before {
  content: "\e995";
}
.rtmicon.rtmicon-film-play:before {
  content: "\e996";
}
.rtmicon.rtmicon-finance-award:before {
  content: "\e997";
}
.rtmicon.rtmicon-finance-shield:before {
  content: "\e998";
}
.rtmicon.rtmicon-fingerprint:before {
  content: "\e999";
}
.rtmicon.rtmicon-flag:before {
  content: "\e99a";
}
.rtmicon.rtmicon-flip-box:before {
  content: "\e99b";
}
.rtmicon.rtmicon-folder:before {
  content: "\e99c";
}
.rtmicon.rtmicon-folder-file:before {
  content: "\e99d";
}
.rtmicon.rtmicon-folder-open:before {
  content: "\e99e";
}
.rtmicon.rtmicon-folders:before {
  content: "\e99f";
}
.rtmicon.rtmicon-form:before {
  content: "\e9a0";
}
.rtmicon.rtmicon-full-screen-slider:before {
  content: "\e9a1";
}
.rtmicon.rtmicon-gear:before {
  content: "\e9a2";
}
.rtmicon.rtmicon-glass-effect:before {
  content: "\e9a3";
}
.rtmicon.rtmicon-glasses:before {
  content: "\e9a4";
}
.rtmicon.rtmicon-globe:before {
  content: "\e9a5";
}
.rtmicon.rtmicon-globe-pointer:before {
  content: "\e9a6";
}
.rtmicon.rtmicon-graphic-bar:before {
  content: "\e9a7";
}
.rtmicon.rtmicon-graphic-pie:before {
  content: "\e9a8";
}
.rtmicon.rtmicon-grid-round:before {
  content: "\e9a9";
}
.rtmicon.rtmicon-grid-rounds:before {
  content: "\e9aa";
}
.rtmicon.rtmicon-header-info:before {
  content: "\e9ab";
}
.rtmicon.rtmicon-header-offcanvas:before {
  content: "\e9ac";
}
.rtmicon.rtmicon-help:before {
  content: "\e9ad";
}
.rtmicon.rtmicon-horizontal-progress-bar:before {
  content: "\e9ae";
}
.rtmicon.rtmicon-hotspot:before {
  content: "\e9af";
}
.rtmicon.rtmicon-house:before {
  content: "\e9b0";
}
.rtmicon.rtmicon-id-card:before {
  content: "\e9b1";
}
.rtmicon.rtmicon-image:before {
  content: "\e9b2";
}
.rtmicon.rtmicon-image-accordion:before {
  content: "\e9b3";
}
.rtmicon.rtmicon-image-box:before {
  content: "\e9b4";
}
.rtmicon.rtmicon-image-comparison:before {
  content: "\e9b5";
}
.rtmicon.rtmicon-image-gallery:before {
  content: "\e9b6";
}
.rtmicon.rtmicon-image-hotspot:before {
  content: "\e9b7";
}
.rtmicon.rtmicon-image-hover:before {
  content: "\e9b8";
}
.rtmicon.rtmicon-image-info:before {
  content: "\e9b9";
}
.rtmicon.rtmicon-image-list:before {
  content: "\e9ba";
}
.rtmicon.rtmicon-image-marquee:before {
  content: "\e9bb";
}
.rtmicon.rtmicon-image-masonry:before {
  content: "\e9bc";
}
.rtmicon.rtmicon-images:before {
  content: "\e9bd";
}
.rtmicon.rtmicon-image-showcase:before {
  content: "\e9be";
}
.rtmicon.rtmicon-image-slider:before {
  content: "\e9bf";
}
.rtmicon.rtmicon-instagram:before {
  content: "\e9c0";
}
.rtmicon.rtmicon-instagram-feed:before {
  content: "\e9c1";
}
.rtmicon.rtmicon-interactive-link:before {
  content: "\e9c2";
}
.rtmicon.rtmicon-invoice:before {
  content: "\e9c3";
}
.rtmicon.rtmicon-invoice-dollar:before {
  content: "\e9c4";
}
.rtmicon.rtmicon-item-list:before {
  content: "\e9c5";
}
.rtmicon.rtmicon-key-left:before {
  content: "\e9c6";
}
.rtmicon.rtmicon-laptop:before {
  content: "\e9c7";
}
.rtmicon.rtmicon-lightblub:before {
  content: "\e9c8";
}
.rtmicon.rtmicon-line-chart:before {
  content: "\e9c9";
}
.rtmicon.rtmicon-link:before {
  content: "\e9ca";
}
.rtmicon.rtmicon-linkedin:before {
  content: "\e9cb";
}
.rtmicon.rtmicon-link-simple:before {
  content: "\e9cc";
}
.rtmicon.rtmicon-list:before {
  content: "\e9cd";
}
.rtmicon.rtmicon-loader:before {
  content: "\e9ce";
}
.rtmicon.rtmicon-lock:before {
  content: "\e9cf";
}
.rtmicon.rtmicon-medium:before {
  content: "\e9d0";
}
.rtmicon.rtmicon-megaphone:before {
  content: "\e9d1";
}
.rtmicon.rtmicon-messanger:before {
  content: "\e9d2";
}
.rtmicon.rtmicon-microphone:before {
  content: "\e9d3";
}
.rtmicon.rtmicon-minus:before {
  content: "\e9d4";
}
.rtmicon.rtmicon-mobile:before {
  content: "\e9d5";
}
.rtmicon.rtmicon-mockup:before {
  content: "\e9d6";
}
.rtmicon.rtmicon-money:before {
  content: "\e9d7";
}
.rtmicon.rtmicon-money-bank-check:before {
  content: "\e9d8";
}
.rtmicon.rtmicon-money-check:before {
  content: "\e9d9";
}
.rtmicon.rtmicon-money-currency:before {
  content: "\e9da";
}
.rtmicon.rtmicon-money-rotation:before {
  content: "\e9db";
}
.rtmicon.rtmicon-money-target:before {
  content: "\e9dc";
}
.rtmicon.rtmicon-nav-menu:before {
  content: "\e9dd";
}
.rtmicon.rtmicon-note-hashtag:before {
  content: "\e9de";
}
.rtmicon.rtmicon-notes:before {
  content: "\e9df";
}
.rtmicon.rtmicon-number:before {
  content: "\e9e0";
}
.rtmicon.rtmicon-paper-form:before {
  content: "\e9e1";
}
.rtmicon.rtmicon-paper-plane:before {
  content: "\e9e2";
}
.rtmicon.rtmicon-paypal:before {
  content: "\e9e3";
}
.rtmicon.rtmicon-pen:before {
  content: "\e9e4";
}
.rtmicon.rtmicon-pencil:before {
  content: "\e9e5";
}
.rtmicon.rtmicon-pen-paintbrush:before {
  content: "\e9e6";
}
.rtmicon.rtmicon-phone-classic:before {
  content: "\e9e7";
}
.rtmicon.rtmicon-pie-chart:before {
  content: "\e9e8";
}
.rtmicon.rtmicon-pie-chart-2:before {
  content: "\e9e9";
}
.rtmicon.rtmicon-pie-chart-analyst:before {
  content: "\e9ea";
}
.rtmicon.rtmicon-pin-map-location:before {
  content: "\e9eb";
}
.rtmicon.rtmicon-pinterest:before {
  content: "\e9ec";
}
.rtmicon.rtmicon-planet:before {
  content: "\e9ed";
}
.rtmicon.rtmicon-play:before {
  content: "\e9ee";
}
.rtmicon.rtmicon-plus:before {
  content: "\e9ef";
}
.rtmicon.rtmicon-portfolio-gallery:before {
  content: "\e9f0";
}
.rtmicon.rtmicon-post-author:before {
  content: "\e9f1";
}
.rtmicon.rtmicon-post-carousel:before {
  content: "\e9f2";
}
.rtmicon.rtmicon-post-comment:before {
  content: "\e9f3";
}
.rtmicon.rtmicon-post-content:before {
  content: "\e9f4";
}
.rtmicon.rtmicon-post-excerpt:before {
  content: "\e9f5";
}
.rtmicon.rtmicon-post-info:before {
  content: "\e9f6";
}
.rtmicon.rtmicon-post-list:before {
  content: "\e9f7";
}
.rtmicon.rtmicon-post-navigation:before {
  content: "\e9f8";
}
.rtmicon.rtmicon-post-title:before {
  content: "\e9f9";
}
.rtmicon.rtmicon-presentation:before {
  content: "\e9fa";
}
.rtmicon.rtmicon-price-list:before {
  content: "\e9fb";
}
.rtmicon.rtmicon-price-table:before {
  content: "\e9fc";
}
.rtmicon.rtmicon-pricing-image-box:before {
  content: "\e9fd";
}
.rtmicon.rtmicon-pricing-list:before {
  content: "\e9fe";
}
.rtmicon.rtmicon-pricing-table:before {
  content: "\e9ff";
}
.rtmicon.rtmicon-process-step:before {
  content: "\ea00";
}
.rtmicon.rtmicon-product-highlight:before {
  content: "\ea01";
}
.rtmicon.rtmicon-progress-bar:before {
  content: "\ea02";
}
.rtmicon.rtmicon-progress-step:before {
  content: "\ea03";
}
.rtmicon.rtmicon-protection:before {
  content: "\ea04";
}
.rtmicon.rtmicon-quote:before {
  content: "\ea05";
}
.rtmicon.rtmicon-radial-progress-bar:before {
  content: "\ea06";
}
.rtmicon.rtmicon-radio:before {
  content: "\ea07";
}
.rtmicon.rtmicon-reddit:before {
  content: "\ea08";
}
.rtmicon.rtmicon-report:before {
  content: "\ea09";
}
.rtmicon.rtmicon-review-slider:before {
  content: "\ea0a";
}
.rtmicon.rtmicon-rocket:before {
  content: "\ea0b";
}
.rtmicon.rtmicon-romethemekit:before {
  content: "\ea0c";
}
.rtmicon.rtmicon-rtm-form:before {
  content: "\ea0d";
}
.rtmicon.rtmicon-sack-dollar:before {
  content: "\ea0e";
}
.rtmicon.rtmicon-scale-balanced:before {
  content: "\ea0f";
}
.rtmicon.rtmicon-scale-unbalanced:before {
  content: "\ea10";
}
.rtmicon.rtmicon-scale-unbalanced-flip:before {
  content: "\ea11";
}
.rtmicon.rtmicon-search:before {
  content: "\ea12";
}
.rtmicon.rtmicon-select:before {
  content: "\ea13";
}
.rtmicon.rtmicon-shield:before {
  content: "\ea14";
}
.rtmicon.rtmicon-shield-check:before {
  content: "\ea15";
}
.rtmicon.rtmicon-shield-minus:before {
  content: "\ea16";
}
.rtmicon.rtmicon-shield-plus:before {
  content: "\ea17";
}
.rtmicon.rtmicon-shield-xmark:before {
  content: "\ea18";
}
.rtmicon.rtmicon-shopping-cart:before {
  content: "\ea19";
}
.rtmicon.rtmicon-sidebar:before {
  content: "\ea1a";
}
.rtmicon.rtmicon-site-logo:before {
  content: "\ea1b";
}
.rtmicon.rtmicon-sliders:before {
  content: "\ea1c";
}
.rtmicon.rtmicon-sliders-up:before {
  content: "\ea1d";
}
.rtmicon.rtmicon-social-share:before {
  content: "\ea1e";
}
.rtmicon.rtmicon-social-share-2:before {
  content: "\ea1f";
}
.rtmicon.rtmicon-speedometer:before {
  content: "\ea20";
}
.rtmicon.rtmicon-square-arrow-down:before {
  content: "\ea21";
}
.rtmicon.rtmicon-square-arrow-down-left:before {
  content: "\ea22";
}
.rtmicon.rtmicon-square-arrow-down-right:before {
  content: "\ea23";
}
.rtmicon.rtmicon-square-arrow-left:before {
  content: "\ea24";
}
.rtmicon.rtmicon-square-arrow-right:before {
  content: "\ea25";
}
.rtmicon.rtmicon-square-arrow-up:before {
  content: "\ea26";
}
.rtmicon.rtmicon-square-arrow-up-left:before {
  content: "\ea27";
}
.rtmicon.rtmicon-square-arrow-up-right:before {
  content: "\ea28";
}
.rtmicon.rtmicon-square-caret-down:before {
  content: "\ea29";
}
.rtmicon.rtmicon-square-caret-left:before {
  content: "\ea2a";
}
.rtmicon.rtmicon-square-caret-right:before {
  content: "\ea2b";
}
.rtmicon.rtmicon-square-caret-up:before {
  content: "\ea2c";
}
.rtmicon.rtmicon-square-check:before {
  content: "\ea2d";
}
.rtmicon.rtmicon-square-minus:before {
  content: "\ea2e";
}
.rtmicon.rtmicon-square-plus:before {
  content: "\ea2f";
}
.rtmicon.rtmicon-square-user:before {
  content: "\ea30";
}
.rtmicon.rtmicon-square-xmark:before {
  content: "\ea31";
}
.rtmicon.rtmicon-stamp:before {
  content: "\ea32";
}
.rtmicon.rtmicon-star:before {
  content: "\ea33";
}
.rtmicon.rtmicon-store:before {
  content: "\ea34";
}
.rtmicon.rtmicon-submit-button:before {
  content: "\ea35";
}
.rtmicon.rtmicon-table-comparison:before {
  content: "\ea36";
}
.rtmicon.rtmicon-table-data:before {
  content: "\ea37";
}
.rtmicon.rtmicon-tablet:before {
  content: "\ea38";
}
.rtmicon.rtmicon-tag:before {
  content: "\ea39";
}
.rtmicon.rtmicon-taxes:before {
  content: "\ea3a";
}
.rtmicon.rtmicon-team:before {
  content: "\ea3b";
}
.rtmicon.rtmicon-team-carousel:before {
  content: "\ea3c";
}
.rtmicon.rtmicon-team-content:before {
  content: "\ea3d";
}
.rtmicon.rtmicon-telegram:before {
  content: "\ea3e";
}
.rtmicon.rtmicon-telephone:before {
  content: "\ea3f";
}
.rtmicon.rtmicon-testimonial:before {
  content: "\ea40";
}
.rtmicon.rtmicon-testimonial-carousel:before {
  content: "\ea41";
}
.rtmicon.rtmicon-testimonial-carousel-2:before {
  content: "\ea42";
}
.rtmicon.rtmicon-text-marquee:before {
  content: "\ea43";
}
.rtmicon.rtmicon-text-area-form:before {
  content: "\ea44";
}
.rtmicon.rtmicon-text-form:before {
  content: "\ea45";
}
.rtmicon.rtmicon-text-marquee1:before {
  content: "\ea46";
}
.rtmicon.rtmicon-threads:before {
  content: "\ea47";
}
.rtmicon.rtmicon-tiktok:before {
  content: "\ea48";
}
.rtmicon.rtmicon-time:before {
  content: "\ea49";
}
.rtmicon.rtmicon-timeline:before {
  content: "\ea4a";
}
.rtmicon.rtmicon-timer:before {
  content: "\ea4b";
}
.rtmicon.rtmicon-toggle-off:before {
  content: "\ea4c";
}
.rtmicon.rtmicon-toggle-on:before {
  content: "\ea4d";
}
.rtmicon.rtmicon-tooltip:before {
  content: "\ea4e";
}
.rtmicon.rtmicon-trash:before {
  content: "\ea4f";
}
.rtmicon.rtmicon-trophy:before {
  content: "\ea50";
}
.rtmicon.rtmicon-tumblr:before {
  content: "\ea51";
}
.rtmicon.rtmicon-upload:before {
  content: "\ea52";
}
.rtmicon.rtmicon-user:before {
  content: "\ea53";
}
.rtmicon.rtmicon-users:before {
  content: "\ea54";
}
.rtmicon.rtmicon-video-camera:before {
  content: "\ea55";
}
.rtmicon.rtmicon-vimeo:before {
  content: "\ea56";
}
.rtmicon.rtmicon-volume-down:before {
  content: "\ea57";
}
.rtmicon.rtmicon-volume-mute:before {
  content: "\ea58";
}
.rtmicon.rtmicon-volume-up:before {
  content: "\ea59";
}
.rtmicon.rtmicon-wallet:before {
  content: "\ea5a";
}
.rtmicon.rtmicon-wallet-money:before {
  content: "\ea5b";
}
.rtmicon.rtmicon-watch:before {
  content: "\ea5c";
}
.rtmicon.rtmicon-whatsapp:before {
  content: "\ea5d";
}
.rtmicon.rtmicon-woo-product:before {
  content: "\ea5e";
}
.rtmicon.rtmicon-wordpress:before {
  content: "\ea5f";
}
.rtmicon.rtmicon-working-hours:before {
  content: "\ea60";
}
.rtmicon.rtmicon-wrapper-link:before {
  content: "\ea61";
}
.rtmicon.rtmicon-xmark:before {
  content: "\ea62";
}
.rtmicon.rtmicon-x-twitter:before {
  content: "\ea63";
}
.rtmicon.rtmicon-youtube:before {
  content: "\ea64";
}

@font-face {
  font-family: "rtmicon-thin";
  src: url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.eot?qy76ig);
  src: url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.eot?qy76ig#iefix)
      format("embedded-opentype"),
    url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.ttf?qy76ig) format("truetype"),
    url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.woff?qy76ig) format("woff"),
    url(//galiotracunovodstvo.rs/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.svg?qy76ig#rtmicon-thin) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.rtmicon-thin {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "rtmicon-thin" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rtmicon-thin.rtmicon-activity-rooms:before {
  content: "\e900";
}
.rtmicon-thin.rtmicon-acupunture:before {
  content: "\e901";
}
.rtmicon-thin.rtmicon-advanced-toggle:before {
  content: "\e902";
}
.rtmicon-thin.rtmicon-aerobic:before {
  content: "\e903";
}
.rtmicon-thin.rtmicon-affordable-courses:before {
  content: "\e904";
}
.rtmicon-thin.rtmicon-agreement:before {
  content: "\e905";
}
.rtmicon-thin.rtmicon-alarm-clock:before {
  content: "\e906";
}
.rtmicon-thin.rtmicon-alert:before {
  content: "\e907";
}
.rtmicon-thin.rtmicon-ambulance:before {
  content: "\e908";
}
.rtmicon-thin.rtmicon-analyst:before {
  content: "\e909";
}
.rtmicon-thin.rtmicon-anniversaries:before {
  content: "\e90a";
}
.rtmicon-thin.rtmicon-architect:before {
  content: "\e90b";
}
.rtmicon-thin.rtmicon-architectural-design:before {
  content: "\e90c";
}
.rtmicon-thin.rtmicon-aromatherapy:before {
  content: "\e90d";
}
.rtmicon-thin.rtmicon-arrow-down:before {
  content: "\e90e";
}
.rtmicon-thin.rtmicon-arrow-down-left:before {
  content: "\e90f";
}
.rtmicon-thin.rtmicon-arrow-down-right:before {
  content: "\e910";
}
.rtmicon-thin.rtmicon-arrow-down-to-line:before {
  content: "\e911";
}
.rtmicon-thin.rtmicon-arrow-left:before {
  content: "\e912";
}
.rtmicon-thin.rtmicon-arrow-long-down:before {
  content: "\e913";
}
.rtmicon-thin.rtmicon-arrow-long-left:before {
  content: "\e914";
}
.rtmicon-thin.rtmicon-arrow-long-right:before {
  content: "\e915";
}
.rtmicon-thin.rtmicon-arrow-long-up:before {
  content: "\e916";
}
.rtmicon-thin.rtmicon-arrow-right:before {
  content: "\e917";
}
.rtmicon-thin.rtmicon-arrow-up:before {
  content: "\e918";
}
.rtmicon-thin.rtmicon-arrow-up-left:before {
  content: "\e919";
}
.rtmicon-thin.rtmicon-arrow-up-right:before {
  content: "\e91a";
}
.rtmicon-thin.rtmicon-attend-event:before {
  content: "\e91b";
}
.rtmicon-thin.rtmicon-automobile-accident:before {
  content: "\e91c";
}
.rtmicon-thin.rtmicon-award:before {
  content: "\e91d";
}
.rtmicon-thin.rtmicon-badge-check:before {
  content: "\e91e";
}
.rtmicon-thin.rtmicon-badge-dollar:before {
  content: "\e91f";
}
.rtmicon-thin.rtmicon-badge-percent:before {
  content: "\e920";
}
.rtmicon-thin.rtmicon-balance:before {
  content: "\e921";
}
.rtmicon-thin.rtmicon-balance-sheet:before {
  content: "\e922";
}
.rtmicon-thin.rtmicon-bank-building:before {
  content: "\e923";
}
.rtmicon-thin.rtmicon-banner-ad:before {
  content: "\e924";
}
.rtmicon-thin.rtmicon-banner-discount:before {
  content: "\e925";
}
.rtmicon-thin.rtmicon-bar-progress:before {
  content: "\e926";
}
.rtmicon-thin.rtmicon-bar-sort-left:before {
  content: "\e927";
}
.rtmicon-thin.rtmicon-bar-sort-right:before {
  content: "\e928";
}
.rtmicon-thin.rtmicon-bars:before {
  content: "\e929";
}
.rtmicon-thin.rtmicon-battery:before {
  content: "\e92a";
}
.rtmicon-thin.rtmicon-bill:before {
  content: "\e92b";
}
.rtmicon-thin.rtmicon-birthday-cake:before {
  content: "\e92c";
}
.rtmicon-thin.rtmicon-blob-shape:before {
  content: "\e92d";
}
.rtmicon-thin.rtmicon-block-security:before {
  content: "\e92e";
}
.rtmicon-thin.rtmicon-blog:before {
  content: "\e92f";
}
.rtmicon-thin.rtmicon-blog-carousel:before {
  content: "\e930";
}
.rtmicon-thin.rtmicon-blueprint:before {
  content: "\e931";
}
.rtmicon-thin.rtmicon-body-building:before {
  content: "\e932";
}
.rtmicon-thin.rtmicon-body-scrub:before {
  content: "\e933";
}
.rtmicon-thin.rtmicon-body-treatment:before {
  content: "\e934";
}
.rtmicon-thin.rtmicon-body-wellness:before {
  content: "\e935";
}
.rtmicon-thin.rtmicon-book:before {
  content: "\e936";
}
.rtmicon-thin.rtmicon-boost-creativity:before {
  content: "\e937";
}
.rtmicon-thin.rtmicon-box-package:before {
  content: "\e938";
}
.rtmicon-thin.rtmicon-branding-design:before {
  content: "\e939";
}
.rtmicon-thin.rtmicon-brickwall:before {
  content: "\e93a";
}
.rtmicon-thin.rtmicon-bridge:before {
  content: "\e93b";
}
.rtmicon-thin.rtmicon-briefcase:before {
  content: "\e93c";
}
.rtmicon-thin.rtmicon-broker:before {
  content: "\e93d";
}
.rtmicon-thin.rtmicon-browser:before {
  content: "\e93e";
}
.rtmicon-thin.rtmicon-budget-planning:before {
  content: "\e93f";
}
.rtmicon-thin.rtmicon-budgeting:before {
  content: "\e940";
}
.rtmicon-thin.rtmicon-buldozer:before {
  content: "\e941";
}
.rtmicon-thin.rtmicon-business-law:before {
  content: "\e942";
}
.rtmicon-thin.rtmicon-business-workshop:before {
  content: "\e943";
}
.rtmicon-thin.rtmicon-calendar:before {
  content: "\e944";
}
.rtmicon-thin.rtmicon-calendar-check:before {
  content: "\e945";
}
.rtmicon-thin.rtmicon-calendar-days:before {
  content: "\e946";
}
.rtmicon-thin.rtmicon-call-to-action:before {
  content: "\e947";
}
.rtmicon-thin.rtmicon-camera:before {
  content: "\e948";
}
.rtmicon-thin.rtmicon-cancer-care:before {
  content: "\e949";
}
.rtmicon-thin.rtmicon-card-carousel:before {
  content: "\e94a";
}
.rtmicon-thin.rtmicon-cardio:before {
  content: "\e94b";
}
.rtmicon-thin.rtmicon-cardiology:before {
  content: "\e94c";
}
.rtmicon-thin.rtmicon-caret-down:before {
  content: "\e94d";
}
.rtmicon-thin.rtmicon-caret-left:before {
  content: "\e94e";
}
.rtmicon-thin.rtmicon-caret-right:before {
  content: "\e94f";
}
.rtmicon-thin.rtmicon-caret-up:before {
  content: "\e950";
}
.rtmicon-thin.rtmicon-certificate:before {
  content: "\e951";
}
.rtmicon-thin.rtmicon-certified-doctor:before {
  content: "\e952";
}
.rtmicon-thin.rtmicon-certified-institute:before {
  content: "\e953";
}
.rtmicon-thin.rtmicon-certified-nurse:before {
  content: "\e954";
}
.rtmicon-thin.rtmicon-certified-trainer:before {
  content: "\e955";
}
.rtmicon-thin.rtmicon-champange:before {
  content: "\e956";
}
.rtmicon-thin.rtmicon-chart:before {
  content: "\e957";
}
.rtmicon-thin.rtmicon-chart-line-down:before {
  content: "\e958";
}
.rtmicon-thin.rtmicon-chart-line-up:before {
  content: "\e959";
}
.rtmicon-thin.rtmicon-check:before {
  content: "\e95a";
}
.rtmicon-thin.rtmicon-chemistry:before {
  content: "\e95b";
}
.rtmicon-thin.rtmicon-chevron-down:before {
  content: "\e95c";
}
.rtmicon-thin.rtmicon-chevron-left:before {
  content: "\e95d";
}
.rtmicon-thin.rtmicon-chevron-right:before {
  content: "\e95e";
}
.rtmicon-thin.rtmicon-chevron-up:before {
  content: "\e95f";
}
.rtmicon-thin.rtmicon-chevrons-down:before {
  content: "\e960";
}
.rtmicon-thin.rtmicon-chevrons-left:before {
  content: "\e961";
}
.rtmicon-thin.rtmicon-chevrons-right:before {
  content: "\e962";
}
.rtmicon-thin.rtmicon-chevrons-up:before {
  content: "\e963";
}
.rtmicon-thin.rtmicon-circle-arrow-down:before {
  content: "\e964";
}
.rtmicon-thin.rtmicon-circle-arrow-down-left:before {
  content: "\e965";
}
.rtmicon-thin.rtmicon-circle-arrow-down-right:before {
  content: "\e966";
}
.rtmicon-thin.rtmicon-circle-arrow-left:before {
  content: "\e967";
}
.rtmicon-thin.rtmicon-circle-arrow-right:before {
  content: "\e968";
}
.rtmicon-thin.rtmicon-circle-arrow-up:before {
  content: "\e969";
}
.rtmicon-thin.rtmicon-circle-arrow-up-left:before {
  content: "\e96a";
}
.rtmicon-thin.rtmicon-circle-arrow-up-right:before {
  content: "\e96b";
}
.rtmicon-thin.rtmicon-circle-caret-down:before {
  content: "\e96c";
}
.rtmicon-thin.rtmicon-circle-caret-left:before {
  content: "\e96d";
}
.rtmicon-thin.rtmicon-circle-caret-right:before {
  content: "\e96e";
}
.rtmicon-thin.rtmicon-circle-caret-up:before {
  content: "\e96f";
}
.rtmicon-thin.rtmicon-circle-check:before {
  content: "\e970";
}
.rtmicon-thin.rtmicon-circle-chevron-down:before {
  content: "\e971";
}
.rtmicon-thin.rtmicon-circle-chevron-left:before {
  content: "\e972";
}
.rtmicon-thin.rtmicon-circle-chevron-right:before {
  content: "\e973";
}
.rtmicon-thin.rtmicon-circle-chevron-up:before {
  content: "\e974";
}
.rtmicon-thin.rtmicon-circle-down:before {
  content: "\e975";
}
.rtmicon-thin.rtmicon-circle-left:before {
  content: "\e976";
}
.rtmicon-thin.rtmicon-circle-minus:before {
  content: "\e977";
}
.rtmicon-thin.rtmicon-circle-plus:before {
  content: "\e978";
}
.rtmicon-thin.rtmicon-circle-right:before {
  content: "\e979";
}
.rtmicon-thin.rtmicon-circle-up:before {
  content: "\e97a";
}
.rtmicon-thin.rtmicon-circle-user:before {
  content: "\e97b";
}
.rtmicon-thin.rtmicon-circle-xmark:before {
  content: "\e97c";
}
.rtmicon-thin.rtmicon-city:before {
  content: "\e97d";
}
.rtmicon-thin.rtmicon-clapperboard-video:before {
  content: "\e97e";
}
.rtmicon-thin.rtmicon-client-happy:before {
  content: "\e97f";
}
.rtmicon-thin.rtmicon-client-list:before {
  content: "\e980";
}
.rtmicon-thin.rtmicon-clock:before {
  content: "\e981";
}
.rtmicon-thin.rtmicon-clock-desk:before {
  content: "\e982";
}
.rtmicon-thin.rtmicon-cloud-check:before {
  content: "\e983";
}
.rtmicon-thin.rtmicon-cloud-download:before {
  content: "\e984";
}
.rtmicon-thin.rtmicon-cloud-security:before {
  content: "\e985";
}
.rtmicon-thin.rtmicon-cloud-upload:before {
  content: "\e986";
}
.rtmicon-thin.rtmicon-code:before {
  content: "\e987";
}
.rtmicon-thin.rtmicon-coin:before {
  content: "\e988";
}
.rtmicon-thin.rtmicon-coin-dollar:before {
  content: "\e989";
}
.rtmicon-thin.rtmicon-coin-group:before {
  content: "\e98a";
}
.rtmicon-thin.rtmicon-coins:before {
  content: "\e98b";
}
.rtmicon-thin.rtmicon-color-pallete:before {
  content: "\e98c";
}
.rtmicon-thin.rtmicon-color-picker:before {
  content: "\e98d";
}
.rtmicon-thin.rtmicon-comments:before {
  content: "\e98e";
}
.rtmicon-thin.rtmicon-comments-question:before {
  content: "\e98f";
}
.rtmicon-thin.rtmicon-compass:before {
  content: "\e990";
}
.rtmicon-thin.rtmicon-concept-design:before {
  content: "\e991";
}
.rtmicon-thin.rtmicon-concrete:before {
  content: "\e992";
}
.rtmicon-thin.rtmicon-construction:before {
  content: "\e993";
}
.rtmicon-thin.rtmicon-content-slider:before {
  content: "\e994";
}
.rtmicon-thin.rtmicon-content-strategy:before {
  content: "\e995";
}
.rtmicon-thin.rtmicon-cookies:before {
  content: "\e996";
}
.rtmicon-thin.rtmicon-copywriting:before {
  content: "\e997";
}
.rtmicon-thin.rtmicon-corporate-building:before {
  content: "\e998";
}
.rtmicon-thin.rtmicon-counters:before {
  content: "\e999";
}
.rtmicon-thin.rtmicon-courthouse:before {
  content: "\e99a";
}
.rtmicon-thin.rtmicon-crane:before {
  content: "\e99b";
}
.rtmicon-thin.rtmicon-creative-idea:before {
  content: "\e99c";
}
.rtmicon-thin.rtmicon-credit-card:before {
  content: "\e99d";
}
.rtmicon-thin.rtmicon-credit-card-back:before {
  content: "\e99e";
}
.rtmicon-thin.rtmicon-credit-card-front:before {
  content: "\e99f";
}
.rtmicon-thin.rtmicon-criminal-database:before {
  content: "\e9a0";
}
.rtmicon-thin.rtmicon-currency:before {
  content: "\e9a1";
}
.rtmicon-thin.rtmicon-data-loss-prevention:before {
  content: "\e9a2";
}
.rtmicon-thin.rtmicon-data-privacy:before {
  content: "\e9a3";
}
.rtmicon-thin.rtmicon-data-security:before {
  content: "\e9a4";
}
.rtmicon-thin.rtmicon-database-security:before {
  content: "\e9a5";
}
.rtmicon-thin.rtmicon-decor-art:before {
  content: "\e9a6";
}
.rtmicon-thin.rtmicon-dermatology:before {
  content: "\e9a7";
}
.rtmicon-thin.rtmicon-design-development:before {
  content: "\e9a8";
}
.rtmicon-thin.rtmicon-design-process:before {
  content: "\e9a9";
}
.rtmicon-thin.rtmicon-desk:before {
  content: "\e9aa";
}
.rtmicon-thin.rtmicon-diamond:before {
  content: "\e9ab";
}
.rtmicon-thin.rtmicon-diet-program:before {
  content: "\e9ac";
}
.rtmicon-thin.rtmicon-digital-marketing:before {
  content: "\e9ad";
}
.rtmicon-thin.rtmicon-disco-light:before {
  content: "\e9ae";
}
.rtmicon-thin.rtmicon-doctor:before {
  content: "\e9af";
}
.rtmicon-thin.rtmicon-download:before {
  content: "\e9b0";
}
.rtmicon-thin.rtmicon-drawing-class:before {
  content: "\e9b1";
}
.rtmicon-thin.rtmicon-drug-offense:before {
  content: "\e9b2";
}
.rtmicon-thin.rtmicon-email-spam:before {
  content: "\e9b3";
}
.rtmicon-thin.rtmicon-emergency-care:before {
  content: "\e9b4";
}
.rtmicon-thin.rtmicon-engineering:before {
  content: "\e9b5";
}
.rtmicon-thin.rtmicon-envelope:before {
  content: "\e9b6";
}
.rtmicon-thin.rtmicon-envelope-open-dollar:before {
  content: "\e9b7";
}
.rtmicon-thin.rtmicon-event-list:before {
  content: "\e9b8";
}
.rtmicon-thin.rtmicon-event-venue:before {
  content: "\e9b9";
}
.rtmicon-thin.rtmicon-evidence:before {
  content: "\e9ba";
}
.rtmicon-thin.rtmicon-face-scrub:before {
  content: "\e9bb";
}
.rtmicon-thin.rtmicon-facial-treatment:before {
  content: "\e9bc";
}
.rtmicon-thin.rtmicon-factory-building:before {
  content: "\e9bd";
}
.rtmicon-thin.rtmicon-family-law:before {
  content: "\e9be";
}
.rtmicon-thin.rtmicon-fax:before {
  content: "\e9bf";
}
.rtmicon-thin.rtmicon-feather:before {
  content: "\e9c0";
}
.rtmicon-thin.rtmicon-file:before {
  content: "\e9c1";
}
.rtmicon-thin.rtmicon-file-info:before {
  content: "\e9c2";
}
.rtmicon-thin.rtmicon-file-pdf:before {
  content: "\e9c3";
}
.rtmicon-thin.rtmicon-film-play:before {
  content: "\e9c4";
}
.rtmicon-thin.rtmicon-finance-award:before {
  content: "\e9c5";
}
.rtmicon-thin.rtmicon-finance-shield:before {
  content: "\e9c6";
}
.rtmicon-thin.rtmicon-fingerprint:before {
  content: "\e9c7";
}
.rtmicon-thin.rtmicon-fingerprint-scan:before {
  content: "\e9c8";
}
.rtmicon-thin.rtmicon-firewall:before {
  content: "\e9c9";
}
.rtmicon-thin.rtmicon-flag:before {
  content: "\e9ca";
}
.rtmicon-thin.rtmicon-flip-box:before {
  content: "\e9cb";
}
.rtmicon-thin.rtmicon-floral-bath:before {
  content: "\e9cc";
}
.rtmicon-thin.rtmicon-folder:before {
  content: "\e9cd";
}
.rtmicon-thin.rtmicon-folder-case:before {
  content: "\e9ce";
}
.rtmicon-thin.rtmicon-folder-file:before {
  content: "\e9cf";
}
.rtmicon-thin.rtmicon-folder-open:before {
  content: "\e9d0";
}
.rtmicon-thin.rtmicon-folders:before {
  content: "\e9d1";
}
.rtmicon-thin.rtmicon-fullday-sessions:before {
  content: "\e9d2";
}
.rtmicon-thin.rtmicon-gavel:before {
  content: "\e9d3";
}
.rtmicon-thin.rtmicon-gear:before {
  content: "\e9d4";
}
.rtmicon-thin.rtmicon-gear-house:before {
  content: "\e9d5";
}
.rtmicon-thin.rtmicon-geography:before {
  content: "\e9d6";
}
.rtmicon-thin.rtmicon-glasses:before {
  content: "\e9d7";
}
.rtmicon-thin.rtmicon-global-economy:before {
  content: "\e9d8";
}
.rtmicon-thin.rtmicon-globe:before {
  content: "\e9d9";
}
.rtmicon-thin.rtmicon-globe-pointer:before {
  content: "\e9da";
}
.rtmicon-thin.rtmicon-gold-bars:before {
  content: "\e9db";
}
.rtmicon-thin.rtmicon-goverment-building:before {
  content: "\e9dc";
}
.rtmicon-thin.rtmicon-graphic-bar:before {
  content: "\e9dd";
}
.rtmicon-thin.rtmicon-graphic-chart:before {
  content: "\e9de";
}
.rtmicon-thin.rtmicon-graphic-pie:before {
  content: "\e9df";
}
.rtmicon-thin.rtmicon-grid-round:before {
  content: "\e9e0";
}
.rtmicon-thin.rtmicon-grid-rounds:before {
  content: "\e9e1";
}
.rtmicon-thin.rtmicon-growth:before {
  content: "\e9e2";
}
.rtmicon-thin.rtmicon-guitar:before {
  content: "\e9e3";
}
.rtmicon-thin.rtmicon-gym-bag:before {
  content: "\e9e4";
}
.rtmicon-thin.rtmicon-gym-machine:before {
  content: "\e9e5";
}
.rtmicon-thin.rtmicon-handcuffs:before {
  content: "\e9e6";
}
.rtmicon-thin.rtmicon-happy-students:before {
  content: "\e9e7";
}
.rtmicon-thin.rtmicon-hard-hat:before {
  content: "\e9e8";
}
.rtmicon-thin.rtmicon-health-check:before {
  content: "\e9e9";
}
.rtmicon-thin.rtmicon-health-report:before {
  content: "\e9ea";
}
.rtmicon-thin.rtmicon-healthy-nutrition:before {
  content: "\e9eb";
}
.rtmicon-thin.rtmicon-heart-care:before {
  content: "\e9ec";
}
.rtmicon-thin.rtmicon-help:before {
  content: "\e9ed";
}
.rtmicon-thin.rtmicon-herb:before {
  content: "\e9ee";
}
.rtmicon-thin.rtmicon-home-renovation:before {
  content: "\e9ef";
}
.rtmicon-thin.rtmicon-horizontal-progress-bar:before {
  content: "\e9f0";
}
.rtmicon-thin.rtmicon-hospital-building:before {
  content: "\e9f1";
}
.rtmicon-thin.rtmicon-hot-stone-therapy:before {
  content: "\e9f2";
}
.rtmicon-thin.rtmicon-house:before {
  content: "\e9f3";
}
.rtmicon-thin.rtmicon-house-building:before {
  content: "\e9f4";
}
.rtmicon-thin.rtmicon-house-plan:before {
  content: "\e9f5";
}
.rtmicon-thin.rtmicon-id-card:before {
  content: "\e9f6";
}
.rtmicon-thin.rtmicon-image:before {
  content: "\e9f7";
}
.rtmicon-thin.rtmicon-image-accordion:before {
  content: "\e9f8";
}
.rtmicon-thin.rtmicon-image-gallery:before {
  content: "\e9f9";
}
.rtmicon-thin.rtmicon-image-hotspot:before {
  content: "\e9fa";
}
.rtmicon-thin.rtmicon-image-info:before {
  content: "\e9fb";
}
.rtmicon-thin.rtmicon-image-list:before {
  content: "\e9fc";
}
.rtmicon-thin.rtmicon-image-masonry:before {
  content: "\e9fd";
}
.rtmicon-thin.rtmicon-image-showcase:before {
  content: "\e9fe";
}
.rtmicon-thin.rtmicon-image-slider:before {
  content: "\e9ff";
}
.rtmicon-thin.rtmicon-images:before {
  content: "\ea00";
}
.rtmicon-thin.rtmicon-immigration-issue:before {
  content: "\ea01";
}
.rtmicon-thin.rtmicon-insurance:before {
  content: "\ea02";
}
.rtmicon-thin.rtmicon-interior-design:before {
  content: "\ea03";
}
.rtmicon-thin.rtmicon-internet-banking:before {
  content: "\ea04";
}
.rtmicon-thin.rtmicon-invoice:before {
  content: "\ea05";
}
.rtmicon-thin.rtmicon-invoice-dollar:before {
  content: "\ea06";
}
.rtmicon-thin.rtmicon-involved:before {
  content: "\ea07";
}
.rtmicon-thin.rtmicon-judge:before {
  content: "\ea08";
}
.rtmicon-thin.rtmicon-kettlebell:before {
  content: "\ea09";
}
.rtmicon-thin.rtmicon-key-left:before {
  content: "\ea0a";
}
.rtmicon-thin.rtmicon-key-right:before {
  content: "\ea0b";
}
.rtmicon-thin.rtmicon-knowledge-class:before {
  content: "\ea0c";
}
.rtmicon-thin.rtmicon-landscaping-design:before {
  content: "\ea0d";
}
.rtmicon-thin.rtmicon-laptop:before {
  content: "\ea0e";
}
.rtmicon-thin.rtmicon-law-book:before {
  content: "\ea0f";
}
.rtmicon-thin.rtmicon-lawyer:before {
  content: "\ea10";
}
.rtmicon-thin.rtmicon-legal:before {
  content: "\ea11";
}
.rtmicon-thin.rtmicon-letter-law:before {
  content: "\ea12";
}
.rtmicon-thin.rtmicon-lightblub:before {
  content: "\ea13";
}
.rtmicon-thin.rtmicon-link:before {
  content: "\ea14";
}
.rtmicon-thin.rtmicon-link-simple:before {
  content: "\ea15";
}
.rtmicon-thin.rtmicon-list:before {
  content: "\ea16";
}
.rtmicon-thin.rtmicon-literature:before {
  content: "\ea17";
}
.rtmicon-thin.rtmicon-loader:before {
  content: "\ea18";
}
.rtmicon-thin.rtmicon-lock:before {
  content: "\ea19";
}
.rtmicon-thin.rtmicon-locker:before {
  content: "\ea1a";
}
.rtmicon-thin.rtmicon-logo-branding:before {
  content: "\ea1b";
}
.rtmicon-thin.rtmicon-management:before {
  content: "\ea1c";
}
.rtmicon-thin.rtmicon-manicure:before {
  content: "\ea1d";
}
.rtmicon-thin.rtmicon-masquerade-event:before {
  content: "\ea1e";
}
.rtmicon-thin.rtmicon-massage-therapy:before {
  content: "\ea1f";
}
.rtmicon-thin.rtmicon-measurement:before {
  content: "\ea20";
}
.rtmicon-thin.rtmicon-medical-checkup:before {
  content: "\ea21";
}
.rtmicon-thin.rtmicon-megaphone:before {
  content: "\ea22";
}
.rtmicon-thin.rtmicon-microphone:before {
  content: "\ea23";
}
.rtmicon-thin.rtmicon-minus:before {
  content: "\ea24";
}
.rtmicon-thin.rtmicon-mobile:before {
  content: "\ea25";
}
.rtmicon-thin.rtmicon-mockup:before {
  content: "\ea26";
}
.rtmicon-thin.rtmicon-money:before {
  content: "\ea27";
}
.rtmicon-thin.rtmicon-money-bank-check:before {
  content: "\ea28";
}
.rtmicon-thin.rtmicon-money-check:before {
  content: "\ea29";
}
.rtmicon-thin.rtmicon-money-currency:before {
  content: "\ea2a";
}
.rtmicon-thin.rtmicon-money-management:before {
  content: "\ea2b";
}
.rtmicon-thin.rtmicon-money-rotation:before {
  content: "\ea2c";
}
.rtmicon-thin.rtmicon-money-target:before {
  content: "\ea2d";
}
.rtmicon-thin.rtmicon-moodboard:before {
  content: "\ea2e";
}
.rtmicon-thin.rtmicon-motion-graphic:before {
  content: "\ea2f";
}
.rtmicon-thin.rtmicon-natural-mask:before {
  content: "\ea30";
}
.rtmicon-thin.rtmicon-network-security:before {
  content: "\ea31";
}
.rtmicon-thin.rtmicon-networking:before {
  content: "\ea32";
}
.rtmicon-thin.rtmicon-note-hashtag:before {
  content: "\ea33";
}
.rtmicon-thin.rtmicon-notes:before {
  content: "\ea34";
}
.rtmicon-thin.rtmicon-nurse:before {
  content: "\ea35";
}
.rtmicon-thin.rtmicon-nutritionist:before {
  content: "\ea36";
}
.rtmicon-thin.rtmicon-office-building:before {
  content: "\ea37";
}
.rtmicon-thin.rtmicon-online-course:before {
  content: "\ea38";
}
.rtmicon-thin.rtmicon-opening-ceremony-scissor:before {
  content: "\ea39";
}
.rtmicon-thin.rtmicon-operation-theater:before {
  content: "\ea3a";
}
.rtmicon-thin.rtmicon-orthopedics:before {
  content: "\ea3b";
}
.rtmicon-thin.rtmicon-painting:before {
  content: "\ea3c";
}
.rtmicon-thin.rtmicon-paper-form:before {
  content: "\ea3d";
}
.rtmicon-thin.rtmicon-paper-plane:before {
  content: "\ea3e";
}
.rtmicon-thin.rtmicon-pedicure:before {
  content: "\ea3f";
}
.rtmicon-thin.rtmicon-pen:before {
  content: "\ea40";
}
.rtmicon-thin.rtmicon-pen-paintbrush:before {
  content: "\ea41";
}
.rtmicon-thin.rtmicon-pencil:before {
  content: "\ea42";
}
.rtmicon-thin.rtmicon-pencil-case:before {
  content: "\ea43";
}
.rtmicon-thin.rtmicon-personal-trainer:before {
  content: "\ea44";
}
.rtmicon-thin.rtmicon-pharmacy:before {
  content: "\ea45";
}
.rtmicon-thin.rtmicon-pharmacy-store:before {
  content: "\ea46";
}
.rtmicon-thin.rtmicon-phone-classic:before {
  content: "\ea47";
}
.rtmicon-thin.rtmicon-photography-camera:before {
  content: "\ea48";
}
.rtmicon-thin.rtmicon-physiotherapy:before {
  content: "\ea49";
}
.rtmicon-thin.rtmicon-pie-chart:before {
  content: "\ea4a";
}
.rtmicon-thin.rtmicon-pie-chart-analyst:before {
  content: "\ea4b";
}
.rtmicon-thin.rtmicon-pin-map-location:before {
  content: "\ea4c";
}
.rtmicon-thin.rtmicon-planet:before {
  content: "\ea4d";
}
.rtmicon-thin.rtmicon-play:before {
  content: "\ea4e";
}
.rtmicon-thin.rtmicon-play-areas:before {
  content: "\ea4f";
}
.rtmicon-thin.rtmicon-plumbing:before {
  content: "\ea50";
}
.rtmicon-thin.rtmicon-plus:before {
  content: "\ea51";
}
.rtmicon-thin.rtmicon-police-badge:before {
  content: "\ea52";
}
.rtmicon-thin.rtmicon-presentation:before {
  content: "\ea53";
}
.rtmicon-thin.rtmicon-pricing-table:before {
  content: "\ea54";
}
.rtmicon-thin.rtmicon-private-event:before {
  content: "\ea55";
}
.rtmicon-thin.rtmicon-pro-equipment:before {
  content: "\ea56";
}
.rtmicon-thin.rtmicon-product-highlight:before {
  content: "\ea57";
}
.rtmicon-thin.rtmicon-profit:before {
  content: "\ea58";
}
.rtmicon-thin.rtmicon-progress-step:before {
  content: "\ea59";
}
.rtmicon-thin.rtmicon-project-done:before {
  content: "\ea5a";
}
.rtmicon-thin.rtmicon-protection:before {
  content: "\ea5b";
}
.rtmicon-thin.rtmicon-qualifed-teachers:before {
  content: "\ea5c";
}
.rtmicon-thin.rtmicon-quote:before {
  content: "\ea5d";
}
.rtmicon-thin.rtmicon-radial-progress-bar:before {
  content: "\ea5e";
}
.rtmicon-thin.rtmicon-radiology:before {
  content: "\ea5f";
}
.rtmicon-thin.rtmicon-rate:before {
  content: "\ea60";
}
.rtmicon-thin.rtmicon-relaxation:before {
  content: "\ea61";
}
.rtmicon-thin.rtmicon-renovation:before {
  content: "\ea62";
}
.rtmicon-thin.rtmicon-repair:before {
  content: "\ea63";
}
.rtmicon-thin.rtmicon-report:before {
  content: "\ea64";
}
.rtmicon-thin.rtmicon-residential-design:before {
  content: "\ea65";
}
.rtmicon-thin.rtmicon-roadblock:before {
  content: "\ea66";
}
.rtmicon-thin.rtmicon-rocket:before {
  content: "\ea67";
}
.rtmicon-thin.rtmicon-romethemekit:before {
  content: "\ea68";
}
.rtmicon-thin.rtmicon-roofing-service:before {
  content: "\ea69";
}
.rtmicon-thin.rtmicon-sack-dollar:before {
  content: "\ea6a";
}
.rtmicon-thin.rtmicon-sauna-relax:before {
  content: "\ea6b";
}
.rtmicon-thin.rtmicon-saving:before {
  content: "\ea6c";
}
.rtmicon-thin.rtmicon-scaffolding:before {
  content: "\ea6d";
}
.rtmicon-thin.rtmicon-scale-balanced:before {
  content: "\ea6e";
}
.rtmicon-thin.rtmicon-scale-unbalanced:before {
  content: "\ea6f";
}
.rtmicon-thin.rtmicon-scale-unbalanced-flip:before {
  content: "\ea70";
}
.rtmicon-thin.rtmicon-screw:before {
  content: "\ea71";
}
.rtmicon-thin.rtmicon-search:before {
  content: "\ea72";
}
.rtmicon-thin.rtmicon-security-camera:before {
  content: "\ea73";
}
.rtmicon-thin.rtmicon-server-protection:before {
  content: "\ea74";
}
.rtmicon-thin.rtmicon-shield:before {
  content: "\ea75";
}
.rtmicon-thin.rtmicon-shield-block:before {
  content: "\ea76";
}
.rtmicon-thin.rtmicon-shield-check:before {
  content: "\ea77";
}
.rtmicon-thin.rtmicon-shield-minus:before {
  content: "\ea78";
}
.rtmicon-thin.rtmicon-shield-plus:before {
  content: "\ea79";
}
.rtmicon-thin.rtmicon-shield-xmark:before {
  content: "\ea7a";
}
.rtmicon-thin.rtmicon-shopping-cart:before {
  content: "\ea7b";
}
.rtmicon-thin.rtmicon-sidebar:before {
  content: "\ea7c";
}
.rtmicon-thin.rtmicon-skilled-teachers:before {
  content: "\ea7d";
}
.rtmicon-thin.rtmicon-sliders:before {
  content: "\ea7e";
}
.rtmicon-thin.rtmicon-sliders-up:before {
  content: "\ea7f";
}
.rtmicon-thin.rtmicon-smart-home:before {
  content: "\ea80";
}
.rtmicon-thin.rtmicon-smart-lock:before {
  content: "\ea81";
}
.rtmicon-thin.rtmicon-social-advertising:before {
  content: "\ea82";
}
.rtmicon-thin.rtmicon-social-share:before {
  content: "\ea83";
}
.rtmicon-thin.rtmicon-software:before {
  content: "\ea84";
}
.rtmicon-thin.rtmicon-speaker:before {
  content: "\ea85";
}
.rtmicon-thin.rtmicon-speaker-group:before {
  content: "\ea86";
}
.rtmicon-thin.rtmicon-special-bath:before {
  content: "\ea87";
}
.rtmicon-thin.rtmicon-specialist:before {
  content: "\ea88";
}
.rtmicon-thin.rtmicon-speedometer:before {
  content: "\ea89";
}
.rtmicon-thin.rtmicon-sponsor:before {
  content: "\ea8a";
}
.rtmicon-thin.rtmicon-square-arrow-down:before {
  content: "\ea8b";
}
.rtmicon-thin.rtmicon-square-arrow-down-left:before {
  content: "\ea8c";
}
.rtmicon-thin.rtmicon-square-arrow-down-right:before {
  content: "\ea8d";
}
.rtmicon-thin.rtmicon-square-arrow-left:before {
  content: "\ea8e";
}
.rtmicon-thin.rtmicon-square-arrow-right:before {
  content: "\ea8f";
}
.rtmicon-thin.rtmicon-square-arrow-up:before {
  content: "\ea90";
}
.rtmicon-thin.rtmicon-square-arrow-up-left:before {
  content: "\ea91";
}
.rtmicon-thin.rtmicon-square-arrow-up-right:before {
  content: "\ea92";
}
.rtmicon-thin.rtmicon-square-caret-down:before {
  content: "\ea93";
}
.rtmicon-thin.rtmicon-square-caret-left:before {
  content: "\ea94";
}
.rtmicon-thin.rtmicon-square-caret-right:before {
  content: "\ea95";
}
.rtmicon-thin.rtmicon-square-caret-up:before {
  content: "\ea96";
}
.rtmicon-thin.rtmicon-square-check:before {
  content: "\ea97";
}
.rtmicon-thin.rtmicon-square-minus:before {
  content: "\ea98";
}
.rtmicon-thin.rtmicon-square-plus:before {
  content: "\ea99";
}
.rtmicon-thin.rtmicon-square-user:before {
  content: "\ea9a";
}
.rtmicon-thin.rtmicon-square-xmark:before {
  content: "\ea9b";
}
.rtmicon-thin.rtmicon-stair:before {
  content: "\ea9c";
}
.rtmicon-thin.rtmicon-stamp:before {
  content: "\ea9d";
}
.rtmicon-thin.rtmicon-star:before {
  content: "\ea9e";
}
.rtmicon-thin.rtmicon-store:before {
  content: "\ea9f";
}
.rtmicon-thin.rtmicon-structural:before {
  content: "\eaa0";
}
.rtmicon-thin.rtmicon-supplement:before {
  content: "\eaa1";
}
.rtmicon-thin.rtmicon-support-protection:before {
  content: "\eaa2";
}
.rtmicon-thin.rtmicon-table-comparison:before {
  content: "\eaa3";
}
.rtmicon-thin.rtmicon-table-data:before {
  content: "\eaa4";
}
.rtmicon-thin.rtmicon-tablet:before {
  content: "\eaa5";
}
.rtmicon-thin.rtmicon-tag:before {
  content: "\eaa6";
}
.rtmicon-thin.rtmicon-target:before {
  content: "\eaa7";
}
.rtmicon-thin.rtmicon-tax-law:before {
  content: "\eaa8";
}
.rtmicon-thin.rtmicon-taxation:before {
  content: "\eaa9";
}
.rtmicon-thin.rtmicon-taxes:before {
  content: "\eaaa";
}
.rtmicon-thin.rtmicon-team:before {
  content: "\eaab";
}
.rtmicon-thin.rtmicon-testimonial:before {
  content: "\eaac";
}
.rtmicon-thin.rtmicon-testimonial-carousel:before {
  content: "\eaad";
}
.rtmicon-thin.rtmicon-therapies:before {
  content: "\eaae";
}
.rtmicon-thin.rtmicon-thermal-spa:before {
  content: "\eaaf";
}
.rtmicon-thin.rtmicon-threat-intelligence:before {
  content: "\eab0";
}
.rtmicon-thin.rtmicon-ticket:before {
  content: "\eab1";
}
.rtmicon-thin.rtmicon-timeline:before {
  content: "\eab2";
}
.rtmicon-thin.rtmicon-timer:before {
  content: "\eab3";
}
.rtmicon-thin.rtmicon-toggle-off:before {
  content: "\eab4";
}
.rtmicon-thin.rtmicon-toggle-on:before {
  content: "\eab5";
}
.rtmicon-thin.rtmicon-top-speaker:before {
  content: "\eab6";
}
.rtmicon-thin.rtmicon-towels:before {
  content: "\eab7";
}
.rtmicon-thin.rtmicon-trainers:before {
  content: "\eab8";
}
.rtmicon-thin.rtmicon-training-center:before {
  content: "\eab9";
}
.rtmicon-thin.rtmicon-trash:before {
  content: "\eaba";
}
.rtmicon-thin.rtmicon-treatment:before {
  content: "\eabb";
}
.rtmicon-thin.rtmicon-trophy:before {
  content: "\eabc";
}
.rtmicon-thin.rtmicon-ui-ux-design:before {
  content: "\eabd";
}
.rtmicon-thin.rtmicon-upload:before {
  content: "\eabe";
}
.rtmicon-thin.rtmicon-urban-planning:before {
  content: "\eabf";
}
.rtmicon-thin.rtmicon-user:before {
  content: "\eac0";
}
.rtmicon-thin.rtmicon-users:before {
  content: "\eac1";
}
.rtmicon-thin.rtmicon-vaccination:before {
  content: "\eac2";
}
.rtmicon-thin.rtmicon-video-camera:before {
  content: "\eac3";
}
.rtmicon-thin.rtmicon-video-marketing:before {
  content: "\eac4";
}
.rtmicon-thin.rtmicon-videography-camera:before {
  content: "\eac5";
}
.rtmicon-thin.rtmicon-virus-protection:before {
  content: "\eac6";
}
.rtmicon-thin.rtmicon-volume-down:before {
  content: "\eac7";
}
.rtmicon-thin.rtmicon-volume-mute:before {
  content: "\eac8";
}
.rtmicon-thin.rtmicon-volume-up:before {
  content: "\eac9";
}
.rtmicon-thin.rtmicon-wallet:before {
  content: "\eaca";
}
.rtmicon-thin.rtmicon-wallet-dollar:before {
  content: "\eacb";
}
.rtmicon-thin.rtmicon-wallet-money:before {
  content: "\eacc";
}
.rtmicon-thin.rtmicon-watch:before {
  content: "\eacd";
}
.rtmicon-thin.rtmicon-web-design:before {
  content: "\eace";
}
.rtmicon-thin.rtmicon-web-development:before {
  content: "\eacf";
}
.rtmicon-thin.rtmicon-web-security:before {
  content: "\ead0";
}
.rtmicon-thin.rtmicon-wedding-event:before {
  content: "\ead1";
}
.rtmicon-thin.rtmicon-weight-loss:before {
  content: "\ead2";
}
.rtmicon-thin.rtmicon-working-hours:before {
  content: "\ead3";
}
.rtmicon-thin.rtmicon-xmark:before {
  content: "\ead4";
}
.rtmicon-thin.rtmicon-yoga:before {
  content: "\ead5";
}
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

.elementor-panel .elementor-element .rkit-widget-icon {
  color: #00cea6;
}

.elementor-panel .elementor-element .rkit-widget-icon::after {
  content: "RTM";
  position: absolute;
  top: 3px;
  right: 3px;
  color: white;
  font-size: 9px;
  font-weight: 400;
  padding: 1px 2px;
  line-height: 10px;
  display: inline-block;
  border-radius: 2px;
  font-family: "Open Sans", Roboto, Helvetica, Arial, sans-serif;
}

.elementor-panel .elementor-element:hover .rkit-widget-icon::after {
  color: #00cea6;
}

.elementor-panel .elementor-element:has(.rkit-widget-icon):hover .title {
  color: #00cea6;
}

.elementor-element .rtm-barchart-icons {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%2333e4c0" height="800px" width="800px" version="1.1" id="Capa_1" viewBox="0 0 282.772 282.772" xml:space="preserve"><g><path d="M61.472,143.036H23.881c-4.971,0-9,4.029-9,9v94.185c0,4.971,4.029,9,9,9h37.591c4.971,0,9-4.029,9-9v-94.185 C70.472,147.065,66.443,143.036,61.472,143.036z M52.472,237.22H32.881v-76.185h19.591V237.22z"/><path d="M132.238,93.194H94.648c-4.971,0-9,4.029-9,9V246.22c0,4.971,4.029,9,9,9h37.591c4.971,0,9-4.029,9-9V102.194 C141.238,97.224,137.209,93.194,132.238,93.194z M123.238,237.22h-19.591V111.194h19.591V237.22z"/><path d="M203.005,150.471h-37.591c-4.971,0-9,4.029-9,9v86.749c0,4.971,4.029,9,9,9h37.591c4.971,0,9-4.029,9-9v-86.749 C212.005,154.5,207.976,150.471,203.005,150.471z M194.005,237.22h-19.591v-68.749h19.591V237.22z"/><path d="M273.772,96.516H236.18c-4.971,0-9,4.029-9,9V246.22c0,4.971,4.029,9,9,9h37.591c4.971,0,9-4.029,9-9V105.516 C282.772,100.545,278.742,96.516,273.772,96.516z M264.772,237.22H245.18V114.516h19.591V237.22z"/><path d="M178.918,112.796c3.276,2.381,7.739,2.28,10.905-0.246l67.269-53.682l-0.298,8.847c-0.167,4.968,3.724,9.131,8.692,9.298 c0.104,0.003,0.206,0.005,0.309,0.005c4.831,0,8.826-3.833,8.99-8.697l1.061-31.466c0.083-2.491-0.869-4.905-2.631-6.667 c-1.762-1.763-4.184-2.719-6.667-2.631l-31.466,1.061c-4.968,0.167-8.859,4.331-8.692,9.298c0.167,4.967,4.314,8.85,9.298,8.692 l8.261-0.278l-59.993,47.876l-68.22-49.585c-2.988-2.172-7-2.298-10.117-0.317L4.176,108.734 c-4.196,2.665-5.437,8.227-2.772,12.422c1.715,2.7,4.628,4.176,7.605,4.176c1.65,0,3.321-0.454,4.817-1.404l96.276-61.15 L178.918,112.796z"/></g></svg>');
  font-size: 83px;
  background-size: cover;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.elementor-element .rtm-linechart-icons {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2333e4c0" class="bi bi-graph-up" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M0 0h1v15h15v1H0V0Zm14.817 3.113a.5.5 0 0 1 .07.704l-4.5 5.5a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61 4.15-5.073a.5.5 0 0 1 .704-.07Z"/></svg>');
  font-size: 83px;
  background-size: cover;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.elementor-element .rtm-piechart-icons {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2333e4c0" class="bi bi-pie-chart-fill" viewBox="0 0 16 16"><path d="M15.985 8.5H8.207l-5.5 5.5a8 8 0 0 0 13.277-5.5zM2 13.292A8 8 0 0 1 7.5.015v7.778l-5.5 5.5zM8.5.015V7.5h7.485A8.001 8.001 0 0 0 8.5.015z"/></svg>');
  font-size: 83px;
  background-size: cover;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.elementor-element .rtm-progressbar-icons {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px" fill="%2333e4c0"><path d="M 2.8125 6 C 2.335938 6.089844 1.992188 6.511719 2 7 L 2 15 C 2 15.550781 2.449219 16 3 16 L 47 16 C 47.550781 16 48 15.550781 48 15 L 48 7 C 48 6.449219 47.550781 6 47 6 L 3 6 C 2.96875 6 2.9375 6 2.90625 6 C 2.875 6 2.84375 6 2.8125 6 Z M 12 8 L 46 8 L 46 14 L 12 14 Z M 2.8125 20 C 2.335938 20.089844 1.992188 20.511719 2 21 L 2 29 C 2 29.550781 2.449219 30 3 30 L 47 30 C 47.550781 30 48 29.550781 48 29 L 48 21 C 48 20.449219 47.550781 20 47 20 L 3 20 C 2.96875 20 2.9375 20 2.90625 20 C 2.875 20 2.84375 20 2.8125 20 Z M 36 22 L 46 22 L 46 28 L 36 28 Z M 2.8125 34 C 2.335938 34.089844 1.992188 34.511719 2 35 L 2 43 C 2 43.550781 2.449219 44 3 44 L 47 44 C 47.550781 44 48 43.550781 48 43 L 48 35 C 48 34.449219 47.550781 34 47 34 L 3 34 C 2.96875 34 2.9375 34 2.90625 34 C 2.875 34 2.84375 34 2.8125 34 Z M 24 36 L 46 36 L 46 42 L 24 42 Z"/></svg>');
  font-size: 83px;
  background-size: cover;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.posts-pagination {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-bottom: 0.5rem;
}

.posts-pagination .page-numbers {
  padding: 0.5rem;
  text-decoration: none;
  background-color: white;
}

.posts-pagination span.page-numbers {
  background-color: #00cea6;
}

.btn {
  font-weight: 600;
  padding: 12px 24px 12px 24px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  justify-content: center;
}

.btn.link {
  color: #00cea6;
}

.btn.btn-gradient-accent {
  --x: 0;
  background: linear-gradient(90deg, #000000 -14.64%, #00cea6 114.79%, #000000)
    var(--x, 0) / 200%;
  color: white;
  transition: 0.5s;
  border: 1px solid #00cea6;
}

.btn.btn-gradient-accent:hover {
  --x: 90%;
  color: white;
  border: 1px solid #00cea6;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
  box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
}

.btn.btn-gradient-accent:disabled {
  color: #8f8f8f;
  opacity: 0.5;
}

a:focus {
  box-shadow: none;
  color: currentColor;
}

.accent-color {
  color: #00cea6;
}

.btn-accent {
  background-color: #00cea6;
}

.btn-accent:hover {
  background-color: #27d3b0;
}

.btn-accent:disabled {
  background-color: #2a9c85;
  border: none;
  outline: none;
}

.btn.btn-outline-accent {
  background-color: transparent;
  border: 1px solid #00cea6;
  color: #00cea6;
}

.btn.btn-outline-accent:focus {
  color: #00cea6 !important;
}

.btn-accent:focus,
.btn-gradient-accent:focus {
  color: white !important;
}

.link-accent:focus {
  color: #00cea6 !important;
  border: none;
}

.btn-outline-accent:hover {
  --x: 90%;
  background: linear-gradient(90deg, #000000 -14.64%, #00cea6 114.79%, #000000)
    var(--x, 0) / 200%;
  color: white;
  border: 1px solid #00cea6;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
  box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
}

.nav.nav-underline .nav-item .nav-link,
.nav.nav-underline .nav-item .nav-link:focus {
  color: white;
  border-width: 0px 0px 2px 0px;
  border-style: solid;
  border-color: transparent;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

.nav.nav-underline .nav-item .nav-link.active {
  /* border-color: #00cea6; */
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  text-shadow: 2px 3px 4px #00cea6;
}

.rtm-checked-icon {
  background-image: url('data:image/svg+xml,<svg height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 507.2 507.2" xml:space="preserve"><circle style="fill:%2332BA7C;" cx="253.6" cy="253.6" r="253.6"/><path style="fill:%230AA06E;" d="M188.8,368l130.4,130.4c108-28.8,188-127.2,188-244.8c0-2.4,0-4.8,0-7.2L404.8,152L188.8,368z"/><g><path style="fill:%23FFFFFF;" d="M260,310.4c11.2,11.2,11.2,30.4,0,41.6l-23.2,23.2c-11.2,11.2-30.4,11.2-41.6,0L93.6,272.8c-11.2-11.2-11.2-30.4,0-41.6l23.2-23.2c11.2-11.2,30.4-11.2,41.6,0L260,310.4z"/><path style="fill:%23FFFFFF;" d="M348.8,133.6c11.2-11.2,30.4-11.2,41.6,0l23.2,23.2c11.2,11.2,11.2,30.4,0,41.6l-176,175.2c-11.2,11.2-30.4,11.2-41.6,0l-23.2-23.2c-11.2-11.2-11.2-30.4,0-41.6L348.8,133.6z"/></g></svg>');
  font-size: 75px;
  background-size: cover;
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.rtm-invalid-icon {
  background-image: url('data:image/svg+xml,<svg height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 507.2 507.2" xml:space="preserve"><circle style="fill:%23F15249;" cx="253.6" cy="253.6" r="253.6"/><path style="fill:%23AD0E0E;" d="M147.2,368L284,504.8c115.2-13.6,206.4-104,220.8-219.2L367.2,148L147.2,368z"/><path style="fill:%23FFFFFF;" d="M373.6,309.6c11.2,11.2,11.2,30.4,0,41.6l-22.4,22.4c-11.2,11.2-30.4,11.2-41.6,0l-176-176c-11.2-11.2-11.2-30.4,0-41.6l23.2-23.2c11.2-11.2,30.4-11.2,41.6,0L373.6,309.6z"/><path style="fill:%23D6D6D6;" d="M280.8,216L216,280.8l93.6,92.8c11.2,11.2,30.4,11.2,41.6,0l23.2-23.2c11.2-11.2,11.2-30.4,0-41.6L280.8,216z"/><path style="fill:%23FFFFFF;" d="M309.6,133.6c11.2-11.2,30.4-11.2,41.6,0l23.2,23.2c11.2,11.2,11.2,30.4,0,41.6L197.6,373.6c-11.2,11.2-30.4,11.2-41.6,0l-22.4-22.4c-11.2-11.2-11.2-30.4,0-41.6L309.6,133.6z"/></svg>');
  font-size: 75px;
  background-size: cover;
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.rtm-text-font {
  font-family: "Bricolage Grotesque", sans-serif;
}

.glass-effect {
  background: rgba(165, 165, 165, 0.24);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.9px);
  -webkit-backdrop-filter: blur(11.9px);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.spacer-2 {
  height: 2rem;
}

.header-sticky {
  position: sticky;
  top: 63px;
}

.rtm-container {
  max-width: 1840px;
}

.bg-accent-color {
  background-color: #00cea6;
}

.rtm-version {
  background-color: #00cea6;
  font-size: 10px;
  color: #000;
  padding-block: 2px;
  padding-inline: 10px;
  border-radius: 5px;
}

.rtm-bg-gradient-1 {
  background-color: hsla(228, 0%, 3%, 1) !important;
  background-image: radial-gradient(
      at 100% 0%,
      hsla(240, 0%, 3%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 20% 44%, hsla(168, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(168, 100%, 40%, 0.38) 0px, transparent 50%),
    radial-gradient(at 73% 69%, hsla(168, 100%, 40%, 0.33) 0px, transparent 50%),
    radial-gradient(at 56% 62%, hsla(168, 100%, 40%, 0) 0px, transparent 50%) !important;
}

.rtm-bg-gradient-2 {
  background-color: hsla(228, 0%, 3%, 1);
  background-image: radial-gradient(
      at 100% 0%,
      hsla(240, 0%, 3%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 11% 75%, hsla(120, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(278, 69%, 69%, 0.38) 0px, transparent 50%),
    radial-gradient(at 73% 69%, hsla(283, 83%, 42%, 0.33) 0px, transparent 50%),
    radial-gradient(at 54% 70%, hsla(168, 100%, 40%, 0.46) 0px, transparent 50%);
}

.rtm-bg-gradient-3 {
  background-color: hsla(55, 0%, 3%, 1);
  background-image: radial-gradient(
      at 22% 12%,
      hsla(168, 100%, 40%, 0.3) 0px,
      transparent 50%
    ),
    radial-gradient(at 8% 40%, hsla(66, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 95% 43%, hsla(168, 100%, 40%, 0.2) 0px, transparent 50%),
    radial-gradient(at 80% 94%, hsla(59, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 90% 60%, hsla(327, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 91% 33%, hsla(289, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 44% 41%, hsla(210, 0%, 3%, 1) 0px, transparent 50%);
}

.rtm-bg-gradient-4 {
  background-color: hsla(55, 0%, 3%, 1);
  background-image: radial-gradient(
      at 14% 8%,
      hsla(168, 100%, 40%, 0.31) 0px,
      transparent 50%
    ),
    radial-gradient(at 0% 21%, hsla(283, 100%, 49%, 0.23) 0px, transparent 50%),
    radial-gradient(at 100% 79%, hsla(168, 100%, 40%, 0.2) 0px, transparent 50%),
    radial-gradient(at 91% 33%, hsla(289, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsla(0, 5%, 71%, 0.3) 0px, transparent 50%);
}

.rtm-divider {
  background: linear-gradient(90deg, #00cea6 0%, transparent 100%);
  height: 5px;
  width: 100%;
  position: relative;
}

.bg-gradient-1 {
  background: linear-gradient(180deg, #1c1c1c9e 0%, #00000052 100%);
}

.bg-gradient-2 {
  background: linear-gradient(207.14deg, #00cea6 10.63%, #006854 86.52%);
}

.bg-gradient-3 {
  background: linear-gradient(180deg, #1c1c1c 0%, #1a1a1a 100%);
}

.heading-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.list {
  list-style-image: url('data:image/svg+xml,<svg id="e12XcAwiGCj1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 300 300" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" project-id="36deb9b552474c9d88b99fda01d9310d" export-id="8584b845d1c34625a9856454e565c3d5" cached="false"><ellipse rx="125" ry="125" transform="matrix(1.200001 0 0 1.200001 150 150)" fill="%2300cea6" stroke-width="0"/></svg>');
  row-gap: 1rem;
}

.rtm-social-container {
  display: flex;
  flex-direction: row;
}

.social-item {
  background-color: #1c1c1c;
  color: #c1c1c1;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
}

.social-link {
  color: #8f8f8f;
}

.social-link:hover,
.social-link:hover .social-item {
  color: #00cea6;
}

.rtm-border {
  border-width: 1px;
  border-style: solid;
  border-color: #414141;
}

.rtm-border-bottom {
  border-bottom: 1px solid #414141;
}

.social-item:hover {
  color: #00cea6;
}

form select.form-select,
form .form-control {
  background-color: #0c0c0c;
  border: 1px solid #414141;
  color: white;
}

input#template-category.form-control {
  background-color: #0c0c0c97;
  border: 1px solid #414141;
  color: white;
  cursor: pointer;
}

#template-category-list {
  position: absolute;
  z-index: 99;
  width: 40rem;
  padding: 20px;
  border-radius: 5px;
  background: #212121c4;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.template-category-container:hover #template-category-list {
  visibility: visible;
  opacity: 1;
}

.template-category-item {
  text-decoration: none;
  color: white;
}

.template-category-item:hover {
  color: #00cea6;
}

form .form-control:focus {
  background: #0c0c0c;
  color: white;
}

form select.form-select:focus,
form select.form-select:hover {
  color: white;
}

form select.form-select:disabled,
.form-control:disabled {
  background-image: none;
  background-color: transparent;
  text-shadow: none;
  border: 1px solid #414141;
}

#header-dashboard {
  z-index: 99;
}

#header-dashboard .nav-link {
  color: white;
  font-weight: 300;
}

a {
  text-decoration: none;
}

input[type="text"].form-control,
select.form-select {
  border: 1px solid #414141;
  max-width: none;
}

input[type="text"].form-control:focus,
select.form-select:focus {
  border-color: #00cea6;
  outline: none;
  box-shadow: none;
}

table.rtm-table {
  width: 100%;
  border-collapse: separate;
  color: #d9d9d9;
  -webkit-border-vertical-spacing: 15px;
  -webkit-border-horizontal-spacing: 0px;
}

table.rtm-table tr {
  border-color: #414141;
  /* background-color: #0c0c0c; */
  background: #14141454;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.1px);
  -webkit-backdrop-filter: blur(13.1px);
}

.rtm-table td {
  padding: 20px;
  border-style: solid;
}

.rtm-table.table-themebuilder td {
  border-width: 1px;
  padding: 10px;
}

.rtm-table.table-themebuilder thead tr {
  background: transparent;
}

.rtm-table.table-themebuilder thead td {
  border-width: 0px;
}

.rtm-table.table-system td[scope="row"] {
  width: 15rem;
}

.rtm-table.table-system td {
  border-width: 1px;
  border-left-width: 0;
  padding: 10px 20px;
}

.rtm-table.rtm-table.table-system td.icon-status {
  background-color: #414141;
  font-size: 1.5rem;
  width: 4rem;
}

.valid-color {
  color: #86ff83;
}

.invalid-color {
  color: #ff3535 !important;
}

.rtm-table td:first-child {
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.rtm-table.table-system td:first-child {
  border-width: 1px;
  border-radius: 10px 0px 0px 10px;
  position: relative;
}

.rtm-table td:last-child {
  border-bottom-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sub-nav .nav-item {
  margin: 0;
}

.sub-nav .nav-item .nav-link {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 0px;
  color: #ffffff;
  background-color: transparent;
}

.sub-nav .nav-item .nav-link.active {
  font-weight: 600;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  /* text-shadow: 2px 3px 4px #00cea6; */
}

.themebuilder-pagination .page-numbers {
  padding: 0.5rem;
  color: white;
  border-radius: 5px;
  width: 2.5rem;
  display: inline-flex;
  justify-content: center;
}

.themebuilder-pagination a.page-numbers:focus {
  box-shadow: none;
}

.themebuilder-pagination .page-numbers.current {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  text-shadow: 2px 3px 4px #00cea6;
  border-style: solid;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 26px;
}

.switch .switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    99.32deg,
    rgb(205, 205, 205) -21.2%,
    #000000 88.36%
  );
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-width: 1px;
  border-style: solid;
  border-color: #414141;
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  background-color: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 12px 0px 12px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 12px 0px 12px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 12px 0px 12px 0px rgba(0, 0, 0, 0.75);
}

.switch-input:checked + .slider {
  background: linear-gradient(99.32deg, #000000 -21.2%, #00cea6 69.36%);
}

/* .switch-input:checked+.slider:before {
    background-color: #00cea6;
} */

.switch-input:focus + .slider {
  box-shadow: 0 0 1px #00cea6;
}

.switch-input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
  -webkit-box-shadow: -8px 0px 8px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -8px 0px 8px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -8px 0px 8px 0px rgba(0, 0, 0, 0.75);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  display: flex;
  align-items: center;
}

.slider.round:before {
  border-radius: 50%;
}

.modal {
  background-color: #0000009e;
  backdrop-filter: blur(3px);
}

.modal .modal-content {
  background: rgb(36, 36, 36);
  background: linear-gradient(
    166deg,
    rgba(36, 36, 36, 1) 0%,
    rgba(21, 21, 21, 1) 25%,
    rgba(0, 0, 0, 1) 100%
  );
  color: white;
}

.btn.del-condition {
  color: #727272;
}

.page-numbers {
  padding: 10px;
  text-decoration: none;
  color: #414141;
  width: 2.5rem;
  text-align: center;
}

.page-numbers:focus {
  box-shadow: none;
}

.entries-pagination {
  display: flex;
  align-items: center;
}

.entries-pagination .current {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  /* text-shadow: 2px 3px 4px #00cea6; */
  border-style: solid;
}

.pagination .page-item {
  display: inline-flex;
}

.page-item.glass-effect {
  border-color: transparent;
}

.pagination .page-btn {
  padding: 0.375rem 0.75rem;
  color: white;
}

.pagination .page-btn:hover {
  background-color: #2b2c31;
  border-color: #808080;
}

.page-item.active .page-btn {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  /* text-shadow: 2px 3px 4px #00cea6; */
  border-style: solid;
}

.page-item:first-child {
  border-radius: 10px 0px 0px 10px;
  overflow: hidden;
}

.page-item:last-child {
  border-radius: 0px 10px 10px 0px;
  overflow: hidden;
}

.link-accent {
  color: #00cea6;
}

.link-accent:hover {
  color: #006854;
}

.yt-container {
  position: relative;
}

.yt-container .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #00000097;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transform-origin: bottom;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yt-container:hover .overlay {
  opacity: 1;
  transform: scaleY(1);
}

.yt-container a {
  font-size: 3rem;
  color: #00cea6;
}

.yt-container a:hover {
  color: #006854;
}

button[data-tooltips] {
  position: relative;
}

button[data-tooltips]::before {
  content: attr(data-tooltips);
  position: absolute;
  background-color: white;
  top: -45px;
  /* left: -50%; */
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  width: max-content;
  visibility: hidden;
  transform: translateY(-10px);
  /* opacity: 0; */
  transition: transform 0.5s;
}

button[data-tooltips]::after {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
  position: absolute;
  top: -13px;
  visibility: hidden;
  transform: translateY(-10px);
  /* opacity: 0; */
  transition: transform 0.5s;
}

button[data-tooltips]:hover::before,
button[data-tooltips]:hover::after {
  display: block;
  color: #000;
  transform: translateY(0px);
  visibility: visible;
}

*[data-tooltips-right] {
  position: relative;
}

*[data-tooltips-right]::after {
     content: attr(data-tooltips-right);
    position: absolute;
    background-color: rgb(0 0 0);
    color: white;
    top: 50%;
    left: calc(100% + 10px);
    padding: 20px;
    border-radius: 5px;
    font-size: 12px;
    width: max-content;
    visibility: hidden;
    transform: translateY(-50%);
    opacity: 0;
    transition: transform 0.5s;
    text-wrap: wrap;
    max-width: 10rem;
    z-index: 99;
}

*[data-tooltips-right]:hover::after {
  visibility: visible;
  opacity: 1;
}

.elementor-element.e-flex.rtmkit-blur-effect-enabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  backdrop-filter: blur(5px);
  /* opacity: 0.5; */
}

.rtmkit-blur-effect-enabled {
  background-color: inherit;
  backdrop-filter: blur(5px);
  border-radius: inherit;
}

.btn.btn-neumorphism {
  box-shadow: 2.5px 0px 3px #00cea661;
  background: linear-gradient(
    289.77deg,
    rgba(255, 255, 255, 0.4) -36.86%,
    rgba(255, 255, 255, 0) 121.28%
  );
  backdrop-filter: blur(20px);
  outline: 2px solid #ffffff42;
}

.btn.btn-neumorphism:focus {
  outline: 2px solid #ffffff42;
}

.offcanvas-backdrop.show {
  opacity: 0.7;
  z-index: 99999;
}

.link-docs {
  font-size: 12px;
  display: flex;
  gap: 0.5rem;
}

.link-docs a:first-child {
  color: rgb(203, 203, 203);
}

.link-docs a:last-child {
  color: gray;
}
/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#242424;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#242424;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#242424}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#242424}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#242424;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#242424;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#242424;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#242424;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#242424;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#242424;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#242424;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#242424;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#242424;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#242424;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#242424;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#242424;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#242424;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#242424;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#242424;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#242424;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#242424;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#242424;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#242424}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#242424;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#242424;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#242424;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#242424;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#242424;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#242424}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#242424!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}/*! #######################################################################

	MeanMenu 2.0.7
	--------

	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */a.meanmenu-reveal{display:none}.mean-container .mean-bar{float:left;width:100%;position:relative;background:#0c1923;padding:4px 0;min-height:42px;z-index:999999}.mean-container a.meanmenu-reveal{width:22px;height:22px;padding:13px 13px 11px;position:absolute;top:0;right:0;cursor:pointer;color:#fff;text-decoration:none;font-size:16px;text-indent:-9999em;line-height:22px;font-size:1px;display:block;font-family:Arial,Helvetica,sans-serif;font-weight:700}.mean-container a.meanmenu-reveal span{display:block;background:#fff;height:3px;margin-top:3px}.mean-container .mean-nav{float:left;width:100%;background:#0c1923;margin-top:44px}.mean-container .mean-nav ul{padding:0;margin:0;width:100%;list-style-type:none}.mean-container .mean-nav ul li{position:relative;float:left;width:100%}.mean-container .mean-nav ul li a{display:block;float:left;width:90%;padding:1em 5%;margin:0;text-align:left;color:#fff;border-top:1px solid #383838;border-top:1px solid rgba(255,255,255,.5);text-decoration:none;text-transform:uppercase}.mean-container .mean-nav ul li li a{width:80%;padding:1em 10%;border-top:1px solid #f1f1f1;border-top:1px solid rgba(255,255,255,.25);opacity:.75;filter:alpha(opacity=75);text-shadow:none!important;visibility:visible}.mean-container .mean-nav ul li.mean-last a{border-bottom:0;margin-bottom:0}.mean-container .mean-nav ul li li li a{width:70%;padding:1em 15%}.mean-container .mean-nav ul li li li li a{width:60%;padding:1em 20%}.mean-container .mean-nav ul li li li li li a{width:50%;padding:1em 25%}.mean-container .mean-nav ul li a:hover, .mean-container .mean-nav ul li a:focus{background:#252525;background:rgba(255,255,255,.1)}.mean-container .mean-nav ul li a.mean-expand{margin-top:1px;width:26px;height:32px;padding:12px!important;text-align:center;position:absolute;right:0;top:0;z-index:2;font-weight:700;background:rgba(255,255,255,.1);border:0!important;border-left:1px solid rgba(255,255,255,.4)!important;border-bottom:1px solid rgba(255,255,255,.2)!important}.mean-container .mean-nav ul li a.mean-expand:hover{background:rgba(0,0,0,.9)}.mean-container .mean-push{float:left;width:100%;padding:0;margin:0;clear:both}.mean-nav .wrapper{width:100%;padding:0;margin:0}.mean-container .mean-bar,.mean-container .mean-bar *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.mean-remove{display:none!important}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url(//galiotracunovodstvo.rs/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0);src:url(//galiotracunovodstvo.rs/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(//galiotracunovodstvo.rs/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(//galiotracunovodstvo.rs/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(//galiotracunovodstvo.rs/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(//galiotracunovodstvo.rs/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}


/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}/*
===============================================================
    Footer Widgets CSS
===============================================================
*/

.footer-widgets {
    padding: 100px 0;
    color: #fefefe;
}

#footer-widgets p {
    color: #fefefe;
}

.footer-logo,
#footer-widgets .widget-title {
    /* margin-bottom: 40px; */
}

p.widget-text {
    margin-bottom: 20px;
}

.widget.widget_search label {
    margin-bottom: 0;
    margin-right: -4px;
    vertical-align: bottom;
}


/*-----------------------------------
    02. Widget Page List
------------------------------------*/

.widget_pages ul li {
    padding-bottom: 12px;
}

.widget_pages ul li a {
    color: #fff;
    font-size: 16px;
    -webkit-transition: .3s;
    transition: .3s;
}



/*-----------------------------------
    03. Widget Recent Item
------------------------------------*/

.recent-item img {
    border: 1px solid #fff;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

li.recent-item {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

li.recent-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}


/*-----------------------------------
    04. Widget Contact & Social
------------------------------------*/

.widget_contact input {
    box-shadow: inset 0px 0px 15px 0px rgba(53, 54, 60, 0.2);
    border: 0;
    height: 40px;
    background: #fff;
    padding: 15px;
    width: 60%;
    border-radius: 4px;
}

button.footer-subscribe.boxed-btn {
    padding: 8px 16px;
}

ul.widget-social {
    margin-top: 40px;
}

ul.widget-social li {
    display: inline-block;
}

ul.widget-social li a {
    padding-right: 15px;
    font-size: 16px;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}


/*
=============================================
 Blog Page Widgets 
 ============================================
 */

.sidebar .widget {
    border-radius: 5px;
    background: #fff;
    box-shadow: none;
    margin-bottom: 30px;
    box-shadow: 0px 0px 12px -1px rgb(0 0 0 / 12%);
}


/*-----------------------------------
    01. Widget Search
------------------------------------*/

.sidebar .widget_search .search-form {
    padding: 18px 20px 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.woocommerce a.button {
    line-height: 1.9;
}

.sidebar .search-form input[type="search"]::-webkit-input-placeholder {
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.sidebar .widget-newsletter input[type=email], 
.sidebar .widget_search input[type=search] {
    border-radius: 4px 0 0 4px;
    background: #f9f9f9;
    box-shadow: 0px 0px 2px 0px rgb(7 7 6 / 20%);
    padding: 12px 18px;
    border: 0;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
}

.sidebar .widget_search button {
    border-radius: 4px;
    box-shadow: 0px 0px 2px 0px rgba(7, 7, 6, 0.2);
    color: #fff;
    border: 0;
    font-size: 16px;
    padding: 12px 16px;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    line-height: 1;
    height: 50px;
    transform: translateY(0px);
}

.sidebar .widget_search .search-form label {
    flex: 1;
    margin: 0;
}

.widget_search form.search-form .search-submit {
    position: unset!important;
    width: 50px;
    height: 50px;
    border-radius: 0 4px 4px 0;
    text-align: center;
    padding: 0;
}

.sidebar .wp-block-search__label{
	padding: 15px 15px 12px;
	font-size: 20px;
	font-weight: 500;
}
.sidebar .wp-block-search__inside-wrapper {
	padding: 18px 20px 22px;
	position: relative;
}
.sidebar .wp-block-search__inside-wrapper .wp-block-search__button {
	position: absolute;
	right: 20px;
}


/*-----------------------------------
    02. Widget Category
------------------------------------*/

.sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #d3d6db;
    padding: 30px 16px 10px;
}

.sidebar .widget_categories ul {
    padding: 18px 20px 22px;
}

.sidebar .widget_archive ul li a,
.sidebar .widget_categories ul li a {
    display: block;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.sidebar .widget_categories ul li a i {
    float: right;
    padding-top: 6px;
}

.sidebar .widget_categories ul li:last-child a {
    margin-bottom: 0;
}


/*-----------------------------------
    03. Widget Recent Post
------------------------------------*/

.recent-post {
    padding: 20px 16px;
}

.recent-post img {
    width: 100%;
    margin-bottom: 20px;
}

.recent-post h6 {
    line-height: 24px;
    word-spacing: 1;
    margin-bottom: 10px;
}

.recent-post p {
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
}

ul.recent-meta-info li {
    display: inline-block;
    padding-right: 10px;
    font-size: 12px;
}

ul.recent-meta-info li a {
    font-size: 12px;
}


/*-----------------------------------
    04. Widget Tags
------------------------------------*/

.widget .tags {
    padding: 30px 16px;
}

ul.tags li {
    display: inline-block;
    margin-right: 10px;
}

ul.tags li a {
    border-radius: 5px;
    background-color: rgb(249, 249, 249);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    display: block;
    margin-bottom: 10px;
    -webkit-transition: .3s;
    transition: .3s;
}

ul.tags li a:hover,
ul.tags li a:focus {
    color: #f9f9f9;
}


/*-----------------------------------
    05. Widget Calender
------------------------------------*/

.sidebar .widget_calender .widget-title li {
    display: inline-block;
}

.sidebar .widget_calender .widget-title .plus {
    float: right;
}

.sidebar .wp-calender {
    padding: 30px 16px;
}
.sidebar .widget .calendar_wrap { 
    background-color: #ffffff;
    border: 1px solid #eae7e4;
    padding: 5px;
    border-radius: 3px;
    margin-top: 25px;
}
.sidebar .widget table { 
    border-collapse: inherit;
    border-spacing: 5px;
    border: 0 none;
    padding: 0px; 
    margin: 0; 
    line-height: 18px; 
    text-align: center; 
    table-layout: fixed; 
    width: 100%; 
}
.sidebar .widget table caption { 
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px; 
  
}
.sidebar .widget table th { 
    background:transparent; 
    color:#747474; 
    border: 0 none;
    width: 11.6%;
    font-size: 12px;
    font-weight: 500;
    text-align: center; 
}

.calendar_wrap thead th {
    color: #fff !important;
}

.sidebar .widget table td { 
    /* border: solid 1px #f2f2f2; */
    /* border-radius: 0; */
}
.sidebar .widget table td, .widget table th { 
    width: 11.6%;
    text-align: center;
    margin-bottom: 5px;
    font-size: 12px;
    padding: 3px;
} 
.sidebar .widget table tbody a { 
    padding: 5px;
    border-radius: 50%;
    border: 1px solid;
    margin: 0px -3px;
}
.sidebar .widget table tbody a:hover, .widget table tbody a:focus { color: #e84c3d; }
.widget table #next a, .widget table #prev a { font-weight: 600; }



/* Calender Responsive*/
@media screen and (max-width:920px) {
    .weekdays li,
    .days li {
        width: 11.1%;
    }
}

@media screen and (max-width: 420px) {
    .weekdays li,
    .days li {
        width: 11.6%;
    }
    .days li .active {
        padding: 2px;
    }
}

@media screen and (max-width: 290px) {
    .weekdays li,
    .days li {
        width: 11.6%;
    }
}


/*-----------------------------------
    06. Widget Newsletter
------------------------------------*/

.widget .newsletter {
    padding: 30px 16px;
}

.widget-newsletter input[type=email] {
    width: 100%;
    margin-bottom: 16px;
}

.widget-newsletter .subscribe {
    border: 1px solid;
    border-radius: 4px;
    background: #fff;
    padding: 10px 16px;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
}

.widget-newsletter .subscribe:hover,
.widget-newsletter .subscribe:focus {
    color: #fff;
}
/*-----------------------------------
    07. Widget Archive
------------------------------------*/

.sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #d3d6db;
    padding: 30px 16px 10px;
}

.sidebar .widget_archive ul {
    padding: 18px 20px 22px;
}
}

.sidebar .widget_archive ul li a {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.sidebar .widget_archive ul li a i {
    float: right;
    padding-top: 6px;
}

.sidebar .widget_archive ul li:last-child a {
    margin-bottom: 0;
}
.widget_archive select {
    margin-left: 22px;
    position: relative;
    margin-bottom: 36px;
}
/*-----------------------------------
    07. Widget Meta
------------------------------------*/

.sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #d3d6db;
    padding: 30px 16px 10px;
}

.sidebar .widget_meta ul {
    padding: 18px 20px 22px;
}


.sidebar .widget_meta ul li a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.sidebar .widget_meta ul li a:after {
    font-family: FontAwesome !important;
    speak: none;
    font-style: normal;
    content: "\f178";
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    float: right;
    font-size: 12px;
    line-height: 21px;
}

.sidebar .widget_meta ul li a i {
    float: right;
    padding-top: 6px;
}

.sidebar .widget_meta ul li:last-child a {
    margin-bottom: 0;
}

/*-----------------------------------
    07. Widget Recent Posts
------------------------------------*/

.sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #d3d6db;
    padding: 30px 16px 10px;
}

.sidebar .widget_recent_entries ul {
    padding: 18px 20px 22px;
}

.sidebar .widget_recent_entries ul li {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #888888;
}

.sidebar .widget_recent_entries ul li:last-child {
    border-bottom: 0;
}

.sidebar .widget_recent_entries ul li a {
    display: block;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.sidebar .widget_recent_entries ul li .post-date {
    font-size: 16px;
    color: #888888;
    position: relative;
}

.sidebar .widget_recent_entries ul li .post-date::before {
    content: '\f073';
    font-family: 'fontawesome';
    margin-right: 6px;
    display: inline-block;
}

.sidebar .widget_recent_entries ul li a i {
    float: right;
    padding-top: 6px;
}

.sidebar .widget_recent_entries ul li:last-child a {
    margin-bottom: 0;
}
/*-----------------------------------
    08. Widget Recent Comments
------------------------------------*/

.sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #d3d6db;
    padding: 30px 16px 10px;
}

.sidebar .widget_recent_comments ul {
    padding: 18px 20px 22px;
}


.sidebar .widget_recent_comments ul li a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    word-break: break-all;
}

.sidebar .widget_recent_comments ul li a i {
    float: right;
    padding-top: 6px;
}

.sidebar .widget_recent_comments ul li:last-child a {
    margin-bottom: 0;
}

/*-----------------------------------
    08. Widget Recent Category
------------------------------------*/

.sidebar .widget-title {
    font-size: 20px;
    font-weight: 500;
    border-bottom: none;
    padding: 15px 15px 12px;
}

.widget_categories ul li, .widget_archive ul li {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #212529;
    color: #ffffff;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 16px;
}

.widget_categories ul li:last-child,
.widget_archive ul li:last-child {
    margin-bottom: 0;
}

.widget_categories ul {
    padding: 18px 20px 22px;
}

.widget_categories ul li a {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
.widget_categories ul li a i {
    float: right;
    padding-top: 6px;
}

.widget_categories ul li:last-child a {
    margin-bottom: 0;
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-----------------------------------
    09. Widget Tag Cloud
------------------------------------*/
div.tagcloud {
    padding: 18px 20px 22px;
}
#footer-widgets .tagcloud {
    padding: 0;
}
.widget_tag_cloud a,
.wp-block-tag-cloud a {
    display: -webkit-inline-box;
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 16px!important;
    font-weight: 500;
    border-radius: 5px;
    background-color: rgb(249, 249, 249);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    -webkit-transition: .3s;
    transition: .3s;
	text-decoration: none;
}
.widget_tag_cloud a:hover,
.widget_tag_cloud a:focus,
.wp-block-tag-cloud a:hover,
.wp-block-tag-cloud a:focus  {
    color: #fff;
}

.sidebar .wp-block-tag-cloud{
	padding: 18px 20px 22px;
}

/*-----------------------------------
    10. Widget Gallery
------------------------------------*/
.widget_media_gallery .gallery {
    padding: 0px 10px;
}
/*-----------------------------------
    Footer Widget
------------------------------------*/
/*-----------------------------------
    01. Widget Search
------------------------------------*/
.footer-sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    padding: 30px 16px 10px;
}

.footer-sidebar .search-form input[type="search"]::-webkit-input-placeholder {
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.footer-sidebar .widget-newsletter input[type=email],
.footer-sidebar .widget_search input[type=search] {
    border-radius: 4px 0 0 4px;
    background: #f9f9f9;
    box-shadow: 0px 0px 2px 0px rgb(7 7 6 / 20%);
    padding: 12px 18px;
    border: 0;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
}

.footer-sidebar .widget_search button {
    font-size: 18px;
}

/*-----------------------------------
    02. Widget Category
------------------------------------*/

.footer-sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    padding: 30px 16px 10px;
}

.footer-sidebar .widget_categories ul {
    padding: 0;
    list-style:none;
}

.footer-sidebar .widget_categories ul li, .footer-sidebar .widget_archive ul li {
    padding: 0;
    background: none;
}

.footer-sidebar .widget_categories ul li a {
    display: block;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.footer-sidebar .widget_categories ul li a i {
    float: right;
    padding-top: 6px;
}

.footer-sidebar .widget_categories ul li:last-child a {
    margin-bottom: 0;
}
/*-----------------------------------
    03. Widget Recent Comments
------------------------------------*/

.footer-sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    padding: 30px 16px 10px;
    color: #ffffff; 
}

.footer-sidebar .widget_recent_comments ul {
    padding: 0;
}


.footer-sidebar .widget_recent_comments ul li a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.footer-sidebar .widget_recent_comments ul li a i {
    float: right;
    padding-top: 6px;
}

.footer-sidebar .widget_recent_comments ul li:last-child a {
    margin-bottom: 0;
}
/*-----------------------------------
    04. footer Archive
------------------------------------*/

.footer-sidebar .widget-title {
    font-size: 16px;
    font-weight: 500;
    padding: 30px 16px 10px;
}

.footer-sidebar .widget_archive ul {
    padding: 0;
}

.footer-sidebar .widget_archive ul li a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.footer-sidebar .widget_archive ul li a i {
    float: right;
    padding-top: 6px;
}

.footer-sidebar .widget_archive ul li:last-child a {
    margin-bottom: 0;
}
/*-----------------------------------
    05. footer Recent Posts
------------------------------------*/

.footer-sidebar .widget-title {
    font-size: 25px;
    text-align: left;
    font-weight: 600 !important;
    padding: 0px 0px 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-sidebar .widget_recent_entries ul {
    padding: 18px 20px 22px;
}


.footer-sidebar .widget_recent_entries ul li a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff; 
}

.footer-sidebar .widget_recent_entries ul li a i {
    float: right;
    padding-top: 6px;
}

.widget_recent_entries ul li:last-child a {
    margin-bottom: 0;
}
/*-----------------------------------
    05. footer widget Calender
------------------------------------*/

.footer-sidebar .widget_calender .widget-title li {
    display: inline-block;
}

.footer-sidebar .widget_calender .widget-title .plus {
    float: right;
}

.footer-sidebar .wp-calender {
    padding: 30px 16px;
}
.footer-sidebar .widget .calendar_wrap { background-color: #ffffff; border: 1px solid #eae7e4; padding: 5px; border-radius: 3px; }
.sidebar .widget table { 
    border-collapse: inherit;
    border-spacing: 5px;
    border: 0 none;
    padding: 0px; 
    margin: 0; 
    line-height: 18px; 
    text-align: center; 
    table-layout: fixed; 
    width: 100%; 
}
.footer-sidebar .widget table caption {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
}
.footer-sidebar .widget table th {
    color: #ffffff;
    border: 0 none;
    width: 11.6%;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}
.footer-sidebar .widget table td { 
    border: solid 1px #f2f2f2;
    border-radius: 0;
}
.footer-sidebar .widget table td, .widget table th { 
    width: 11.6%;
    text-align: center;
    margin-bottom: 5px;
    font-size: 12px;
} 
.footer-sidebar .widget table tbody a { 
    padding: 5px;
    border-radius: 50%;
    border: 1px solid;
    margin-left: -7px;
}
.footer-sidebar .widget table tbody a:hover, .widget table tbody a:focus { color: #e84c3d; }
.widget table #next a, .widget table #prev a { font-weight: 600; }
/*-----------------------------------
    06. Widget Meta
------------------------------------*/
.woocommerce .widget_product_tag_cloud .tagcloud a {
    font-size: 16px !important;
}

.footer-sidebar .widget_meta ul {
    padding: 0;
}


.footer-sidebar .widget_meta ul li a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.footer-sidebar .widget_meta ul li a:after {
    font-family: FontAwesome !important;
    speak: none;
    font-style: normal;
    content: "\f178";
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    float: right;
    font-size: 12px;
    line-height: 21px;
}

.footer-sidebar .widget_meta ul li a i {
    float: right;
    padding-top: 6px;
}

.footer-sidebar .widget_meta ul li:last-child a {
    margin-bottom: 0;
}
footer#footer-widgets .menu li a {
    color: #fff;
}
.sidebar ul li {
    list-style: none;
}

.woo-sidebar .widget-title {
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #d3d6db;
    padding: 12px 16px 10px;
}

.woo-sidebar .widget_shopping_cart,.woo-sidebar .widget_price_filter, .woo-sidebar .woocommerce-widget-layered-nav,.woo-sidebar .widget_product_categories,.woo-sidebar .widget_product_search,.woo-sidebar .widget_products,.woo-sidebar .widget_recent_reviews,.woo-sidebar .widget_rating_filter,.woo-sidebar .widget_recently_viewed_products,.woocommerce .woocommerce-MyAccount-navigation,.woocommerce-Address, .widget_product_tag_cloud, .widget_top_rated_products {
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}
.woo-sidebar .price_slider_wrapper {
    padding: 5px 5px 30px!important;
}
.widget_shopping_cart .button {
    height: 36px;
    margin: 3px;
    width: 47%;
}

.widget_shopping_cart_content #woo_pp_ec_button {
    margin-left: 56px;
    padding: 15px;
    height: 64px!important;
}
.widget_shopping_cart_content ul, .woocommerce-mini-cart__total {
    padding-left: 10px!important;
}
.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    margin-right: 20px;
}
.widget_shopping_cart_content img {
    width: 50px;
    height: 50px;
    border: solid 1px #efefef;
}
.widget_shopping_cart .widget_shopping_cart_content {
    padding: 0px 20px 30px;
}
.widget_shopping_cart li{
    list-style:none;
}
 .woo-sidebar .price_slider_wrapper .ui-slider-horizontal {
    height: .5em;
    /* width: 218px; */
    margin: 14px;
}
.woo-sidebar .price_slider_wrapper .price_slider_amount button{
    height: 33px;
}
.woocommerce-widget-layered-nav ul {
    padding: 20px 0 30px!important
}
.woocommerce-widget-layered-nav ul  li a {
    display: inline;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    /* color: #ffffff; */
}

.woocommerce-widget-layered-nav ul li a:after {
    font-family: FontAwesome !important;
    speak: none;
    font-style: normal;
    content: "\f178";
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    float: right;
    font-size: 12px;
    line-height: 21px;
}
.widget_product_categories ul {
    padding: 18px 20px 22px;
}
.widget_product_categories ul li a {
    display: inline;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
.widget_product_categories ul li a:after {
    font-family: FontAwesome !important;
    speak: none;
    font-style: normal;
    content: "\f178";
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    float: right;
    font-size: 12px;
    line-height: 21px;
}
/* Woocommerce search */
.widget_product_search .woocommerce-product-search {
    padding: 18px 20px 22px;
}

.woocommerce-product-search input[type="search"]::-webkit-input-placeholder {
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.woocommerce-product-search input[type=email],
.woocommerce-product-search input[type=search] {
    border-radius: 4px;
    background: #f9f9f9;
    box-shadow: 0px 0px 2px 0px rgba(7, 7, 6, 0.2);
    padding: 10px 10px;
    border: 0;
    width: 100%;
    margin-right: 10px;
    margin-bottom: 10px;
}

.woocommerce-product-search input[type=button],
.woocommerce-product-search input[type=submit] {
    border-radius: 4px;
    box-shadow: 0px 0px 2px 0px rgba(7, 7, 6, 0.2);
    color: #fff;
    border: 0;
    font-size: 16px;
    padding: 12px 15px;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
.woocommerce-product-search button {
    position: unset;
}
/* widget_products */
.widget_products ul {
    padding: 20px 0 30px!important;
}
.widget_products ul li a {
    display: inline;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
/*.widget_products ul li a:after {
    font-family: FontAwesome !important;
    speak: none;
    font-style: normal;
    content: "\f178";
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    float: right;
    font-size: 12px;
    line-height: 21px;
}*/

/* widget reviews */
.widget_recent_reviews ul {
    padding: 20px 0 30px!important;
}
.widget_recent_reviews ul li a {
    display: inline;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
/*.widget_recent_reviews ul li a:after {
    font-family: FontAwesome !important;
    speak: none;
    font-style: normal;
    content: "\f178";
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    float: right;
    font-size: 12px;
    line-height: 21px;
}*/
/* widget rating */
.widget_rating_filter ul {
    padding: 20px 0 30px!important;
}
.widget_rating_filter ul li a {
    display: inline;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
/* widget_products */
.widget_recently_viewed_products ul {
    padding: 20px 0 30px!important
}
.widget_recently_viewed_products ul li a {
    display: inline;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
/* my account */
.woocommerce .woocommerce-MyAccount-navigation ul {
    padding: 18px 20px 22px;
}
.woocommerce .woocommerce-MyAccount-navigation ul li a {
    display: inline;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
.woocommerce .woocommerce-MyAccount-navigation ul li a:after {
    font-family: FontAwesome !important;
    speak: none;
    font-style: normal;
    content: "\f178";
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    float: right;
    font-size: 12px;
    line-height: 21px;
}
.woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 20px;
}
.woocommerce table.my_account_orders .button {
    height: 30px;
    width: 90%;
    text-align: center;
}
.woocommerce-MyAccount-content .button{
    height: 40px!important;
    text-align: center;
}
.woocommerce-Address address {
    margin: 0 0 20px;
    letter-spacing: 0.5px;
    line-height: 27px;
}
/* product cloud*/
.woocommerce .widget_product_tag_cloud .tagcloud {
    padding: 18px 20px 22px;
}
.footer-sidebar ul li {
    list-style: none;
}
.widget_top_rated_products ul {
    padding: 20px 0 30px!important;
}
.woo-sidebar ul li {
    list-style: none;
}

.widget_mc4wp_form_widget .mc4wp-form-fields {
    padding: 20px 0px 30px;
}

.widget_mc4wp_form_widget .mc4wp-form-fields label {
    margin-bottom: 10px;
}
.widget_mc4wp_form_widget .mc4wp-form-fields input[type="submit"] {
    font-size: 16px;
    padding: 0 15px;
}

#footer-widgets .widget_categories ul li a:after {
    display: none;
}


.widget_shopping_cart_content a.photo img {
    width: 50px;
    height: 50px;
    border: solid 1px #efefef;
    margin-right: 15px;
    float: left;
}

.widget_shopping_cart_content a.photo {
    padding: 0 !important;
    margin-right: 15px;
    margin-top: 6px;
    display: block;
}

.widget_shopping_cart_content li {
    position: relative;
    border-bottom: solid 1px #eee;
    padding: 10px 0;
}

.widget_shopping_cart_content a.remove.remove_from_cart_button {
    position: absolute;
    top: 16px;
    right: 0;
    font-size: 30px;
    cursor: pointer;
}

.sidebar .widget_social_widget ul {
    padding: 18px 20px 22px;
}

.sidebar .header-social li a, #footer-widgets .header-social li a {
    line-height: 28px;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    border-radius: 100%;
    border: 2px solid #08c;
}

#footer-widgets .header-social li a {
    border: none;
    background: #fff;
    line-height: 30px;
}

.header-social li a i {
  line-height: 32px;
  position: relative;
  transition: .5s;
  z-index: 3;
}

.sidebar .header-social li a i {
  color: #08c;
}

#footer-widgets .header-social li a i {
    color: #242424;
}

/*.header-social li a:hover i,  #footer-widgets .header-social li a:hover i,
.header-social li a:focus i,  #footer-widgets .header-social li a:focus i {
  color: #fff;
  transform: rotateY(360deg);
}*/

.sidebar .header-social:after, #footer-widgets .header-social:after {
    visibility: hidden;
}

.sidebar .header-social li a:before, #footer-widgets .header-social li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #08c;
  transition: .5s;
  z-index: 2;
}

.sidebar .header-social li a:hover:before, #footer-widgets .header-social li a:hover:before {
  top: 0;
}

#header-top .startkit-top-right, #header-top .startkit-top-left {
    min-height: 60px;
}

#header-top .widget {
    line-height: 60px;
    display: inline-block;
    margin: 0;
}

.contact-social a,
.header-social a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 12px;
    padding: 0;
    cursor: pointer;
    background-color: #0087cb;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    transition: all .4s ease;
}

.office .contact-social a i {
    color: #ffffff;
}

.contact-social a:before,
.team-member .member-content ul li a:before,
.header-social a:before {
    position: absolute;
    content: "";
    height: calc(100% + 6px);
    width: calc(100% + 6px);
    top: -3px;
    left: -3px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    animation: 1.5s linear 0s normal none infinite focuse;
}

.contact-social a:after,
.team-member .member-content ul li a:after,
.header-social a:after {
    position: absolute;
    top: 50%;
    left: 100%;
    height: 1.5px;
    content: "";
    width: 70%;
    background: url(//galiotracunovodstvo.rs/wp-content/themes/startkit/images/line-dash.png) repeat 0 0;
    z-index: 0;
    animation: slide 1s linear infinite;
}

.contact-social li:last-child a:after,
.team-member .member-content ul li:last-child a:after,
.header-social li:last-child a:after {
    display: none;
}

.contact-social li a:hover i,
.team-member .member-content ul li a:hover i,
.header-social a:hover i,
.contact-social li a:focus i,
.team-member .member-content ul li a:focus i,
.header-social a:focus i {
    -webkit-animation: jump-horizontal 0.9s both;
    animation: jump-horizontal 0.9s both;
}

@keyframes jump-horizontal {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    30% {
      -webkit-transform: scale3d(1.25, 0.75, 1);
      transform: scale3d(1.25, 0.75, 1);
    }
    40% {
      -webkit-transform: scale3d(0.75, 1.25, 1);
      transform: scale3d(0.75, 1.25, 1);
    }
    50% {
      -webkit-transform: scale3d(1.15, 0.85, 1);
      transform: scale3d(1.15, 0.85, 1);
    }
    65% {
      -webkit-transform: scale3d(0.95, 1.05, 1);
      transform: scale3d(0.95, 1.05, 1);
    }
    75% {
      -webkit-transform: scale3d(1.05, 0.95, 1);
      transform: scale3d(1.05, 0.95, 1);
    }
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
}

@keyframes focuse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
@keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}

.contact-social li,
.header-social li {
    margin-left: 10px;
}

.contact-social li:first-child,
.header-social li:first-child {
    margin-left: 0;
}

#header-top .widget-title {
    display: none;
}

#header-top .startkit-top-right .widget:first-child {
    position: relative;
    z-index: 0;
    padding: 0 12px;
}
#header-top .startkit-top-right .widget:first-child:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.widget_social_widget ul {
    padding: 0;
}

#header-top .widget:nth-child(n+2) {
    padding-left: 10px;
    margin-left: -3px;
}

.startkit-top-left .widget:nth-child(n+2),
.startkit-top-right .widget:nth-child(n+2) {
    border-left: 1px solid rgb(255 255 255 / 25%);
}

.widget_info span {
    font-size: 16px;
}

.widget_info i {
    font-size: 16px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.widget_info:hover i,
.widget_info:focus-within i {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

#header-top .startkit-top-left .widget:first-child {
    padding-right: 12px;
}

#header-top .startkit-top-right .widget:first-child {
    padding-left: 10px;
}

#header-top .widget_search label, #header-top .widget_search input[type="search"] {
    margin: 0;
}

#header-top .widget_search input[type="search"] {
    height: 26px;
    padding: 0 20px;
    display: block;
    max-width: 125px;
    font-size: 13px;
}

#header-top .widget_search input[type="submit"].search-submit {
    font-size: 13px;
    padding: 0 15px;
    margin: 0 5px;
    line-height: 25px;
    height: unset;
    color: #fff;
    border: 2px solid #ffffff;
}

#header-top .widget li {
    display: inline-block;
}

#header-top .widget:not(.widget_social_widget) li:nth-child(n+2) a {
    margin: 0;
    margin-right: 10px;
}

#header-top .startkit-top-right .widget:not(.widget_social_widget) li:nth-child(n+2) a {
    margin: 0;
    margin-left: 10px;
}

#header-top .widget ul {
    padding: 0;
}

#header-top .tagcloud {
    padding: 0;
}

#header-top .widget_tag_cloud a {
    display: initial;
    background: none;
    border: 2px solid;
    border-radius: 0;
}

#header-top .widget_search input[type="submit"].search-submit:hover,
#header-top .widget_tag_cloud a:hover,
#header-top .widget_search input[type="submit"].search-submit:focus,
#header-top .widget_tag_cloud a:focus {
    background: #ffffff !important;
    border-color: #ffffff;
}

#header-top .widget img {
    width: 32px;
}

#header-top .gallery {
    display: inline-flex;
    flex-wrap: wrap;
}

#header-top .gallery .gallery-item {
    flex: 1;
    margin: 0 6px 0 0;
}

#header-top .widget_media_image img {
    display: initial;
}

#header-top .widget_media_video {
    display: block;
    width: 100%;
}

#header-top .widget_media_video .wp-video .mejs-container {
    width: 100% !important;
    max-height: 190px;
}

nav.wp-calendar-nav {
    margin: 0;
}

table.wp-calendar-table {
    margin-bottom: 0;
}

.sidebar .widget.widget_info {
    padding: 20px 20px;
}

.animate-border {
    position: relative;
    display: block;
    width: 115px;
    height: 3px;
    background: #0088CC;
    overflow: hidden;
    margin-bottom: 35px;
}

.animate-border:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 3px;
    left: 15px;
    bottom: 0;
    border-left: 10px solid #ffffff;
    border-right: 10px solid #ffffff;
    -webkit-animation: animborder 2s linear infinite;
    animation: animborder 2s linear infinite;
}

.sidebar .animate-border {
    margin-bottom: 5px;
    width: 100%;
}

.footer-widgets .animate-border:after {
    border-left: 10px solid #242424;
    border-right: 10px solid #242424;
}

@-webkit-keyframes animborder{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(113px);transform:translateX(113px)}}@keyframes animborder{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(113px);transform:translateX(113px)}}

.footer-sidebar .widget ul li a,
.wp-block-post-terms a {
    font-size: 16px;
    position: relative;
    z-index: 0;
    letter-spacing: 0.5px;
    padding-left: 0;
    line-height: 21px;
    text-decoration: underline;
    text-underline-offset: 1.2px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer-sidebar .widget ul li a:before,
.wp-block-post-terms a:before {
    align-items: center;
    font-weight: 900;
    content: "//";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    display: flex;
    opacity: 0;
    color: #08c;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer-sidebar .widget ul li a:hover,
.footer-sidebar .widget ul li a:focus,
.wp-block-post-terms a:hover,
.wp-block-post-terms a:focus  {
    padding-left: 15px;
    text-decoration-style: dotted;
}

.footer-sidebar .widget ul li a:hover:before,
.footer-sidebar .widget ul li a:focus:before,
.wp-block-post-terms a:hover:before,
.wp-block-post-terms a:focus:before {
    opacity: 1;
}


#header-top .widget_calendar table {
    background: none;
}

.wp-block-search .wp-block-search__button {
    height: 52px;
    color: #fff;
}

ol.wp-block-latest-comments {
    padding: 0;
}

#header-top .widget_product_search button {
    padding: 0 12px;
    line-height: 50px;
}

.footer-sidebar .widget.widget_products ul li a {
    color: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #777777;
    font-size: 16px !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.post-content .wp-block-calendar thead th {
    text-align: center;
}

.footer-widgets .wp-block-table {
    word-break: break-all;
}

.wp-block-button a.wp-block-button__link {
    padding: 10px 30px;
}

.sidebar .wp-block-latest-comments {
    padding: 18px 20px 22px;
}

.sidebar .wp-block-social-links {
    padding: 10px 12px;
}

.wp-block-calendar table thead th{
    color: #fff;
    text-align: center;
}


.site-content .wp-block-site-logo {
    padding: 15px 0;
}

.wp-block-buttons {
    margin: 15px 0;
}

.wp-block-categories {
    list-style: none;
}

.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.post-content p {
    word-break: break-word;
}

form.post-password-form input[type="submit"] {
    line-height: 1.2;
    vertical-align: super;
}

.comment-respond {
    width: 100%;
}

.post-content .gallery-item img {
    width: 100%;
}

#blog-content .post-title a,
.post-content p a {
    word-break: break-word !important;
}

.wp-block-embed figcaption {
    text-align: center;
}

.wp-block-code code img {
    display: inline-block;
    margin-left: 20px;
}

.wp-block-pullquote.has-background blockquote {
    background: inherit;
}

.site-content .wp-block-loginout,
.site-content .wp-block-search {
    padding: 20px 0;
}

pre.has-background code {
    background-color: inherit !important;
}

p.has-text-color em {
    color: inherit;
}

.site-content .wp-block-group.has-background {
    padding: 0 20px;
}

a.wp-block-file__button,
a.wp-block-file__button:hover,
a.wp-block-file__button:focus {
    color: #fff;
}

.wp-block-group em {
    color: inherit;
}

.wp-block-button.is-style-outline a.wp-block-button__link {
    border-color: inherit;
}

.has-text-color em,
.has-text-color h2 {
    color: inherit;
}

.has-text-color * {
    color: inherit;
}

.has-text-color a:hover, 
.has-text-color a:focus {
    color: inherit;
}

.wp-block-pullquote.has-text-color blockquote {
    border-color: inherit;
}    

blockquote {
    border-color: inherit !important;
}

.has-background.wp-block-read-more {
    padding: 5px 10px;
}

.wp-block-calendar table caption {
    font-weight: 500;
}

.wp-block-avatar img {
    border-radius: 50%;
}

.wp-block-image figcaption {
 	margin-bottom: 0;
}/*=========================================
    Primary Color
=========================================*/
/* 00. Theme Reset Css */
h2.site-title::first-letter,
#blog-content .post-content:hover .post-title a,
#recent-blog .post-content .post-title a,
.footer-sidebar .widget.widget_products ul li a:hover,
.footer-sidebar .widget.widget_products ul li a:focus,
.sidebar .widget_info i {
    color: #0088CC;
}

.wp-block-file .wp-block-file__button,
.boxed-btn, .wp-block-loginout a,
.widget_block.widget_calendar table th,
.footer-sidebar .widget_product_search button,
.wp-block-button a, .wp-block-calendar table thead th {
    background: #0088CC ;    
}

.boxed-btn:hover, .breadcrumb-nav li a:hover,
.boxed-btn:focus, .breadcrumb-nav li a:focus {
    color: #0088CC ;    
}

.startkit-btn .boxed-btn,
.startkit-btn .slide-bg h4,
.startkit-btn .boxed-btn:hover,
.startkit-btn .boxed-btn:focus,
.startkit-btn .posts-navigation .nav-links a:hover,
.startkit-btn .posts-navigation .nav-links a:focus, .sidebar .widget_search button,
.wp-block-search .wp-block-search__button, .sidebar .widget table th {
    background-color: #0088CC !important
}

/* 03. Custom Navigation */
.mean-container a.meanmenu-reveal {
   border-color: #0088CC !important;
    color: #0088CC !important;
}

.mean-container a.meanmenu-reveal span {
    background-color: #0088CC !important;
}

.mean-container .mean-nav {
    background: #0088CC !important;    
}

.search-button a {
    color: #0088CC ;
}

.search-button a.nav-link {
    color: #0088CC ;
}

/* 05. Features */

.view-more {
    color: #0088CC ;
}

/* Recent Blog */
#recent-blog .blog-post:hover .read-more-link,
.blog-post:hover .post-content .post-title a,
#recent-blog .blog-post:focus-within .read-more-link,
.blog-post:focus-within .post-content .post-title a {
    color: #0088CC ;
}

#footer-copyright {
    background: #0088CC ;
}

.scrollup {
    background-color: #0088CC ;
    border-color: #0088CC ;

}

.scrollup:hover,
.scrollup:focus {
    color: #0088CC ;
    border-color: #0088CC ;
}

/*------------------------
    Blog
-------------------------*/
.blog-post:focus-within h4.post-title a,
.blog-post:hover h4.post-title a {
    color: #0088CC  !important;
}

.post-content .continue-reading:focus,
.post-content .continue-reading:hover {
    color: #0088CC  !important;
}

#blog-content ul.meta-info li:focus-within i,
#blog-content ul.meta-info li a:focus,
#blog-content ul.meta-info li a:hover {
    color: #0088CC ;
}

.blog-post .post-thumb {
    background: #0088CC ;    
}

.post-new-comment input,
.post-new-comment textarea {
    border-color: #0088CC ;
}

.single-blog-area ul.share-icon li a:focus,
.single-blog-area ul.share-icon li a:hover {
    color: #0088CC ;
}

/* Widget Color */

.widget_pages ul li a:hover,
.widget_pages ul li a:focus {
    color: #0088CC ;
}

.sidebar .widget_search input[type=button],
.sidebar .widget_search input[type=submit] {
    background: #0088CC ;
}

.sidebar .widget_recent_entries ul li a:hover,
.sidebar .widget_recent_comments ul li a:hover,
.sidebar .widget_archive ul li a:hover,
.sidebar .widget_categories ul li a:hover,
.sidebar .widget_meta ul li a:hover,
.sidebar .widget_recent_entries ul li a:focus,
.sidebar .widget_recent_comments ul li a:focus,
.sidebar .widget_archive ul li a:focus,
.sidebar .widget_categories ul li a:focus,
.sidebar .widget_meta ul li a:focus {
	color: #0088CC ;
}

.footer-sidebar .widget_search input[type=button],
.footer-sidebar .widget_search input[type=button]:hover,
.footer-sidebar .widget_search input[type=button]:focus,
.footer-sidebar .widget_search input[type=submit],
.footer-sidebar .widget_search input[type=submit]:hover,
.footer-sidebar .widget_search input[type=submit]:focus {
    background: #0088CC ;
}
.footer-sidebar .widget_recent_entries ul li a:hover,
.footer-sidebar .widget_recent_comments ul li a:hover,
.footer-sidebar .widget_archive ul li a:hover,
.footer-sidebar .widget_categories ul li a:hover,
.footer-sidebar .widget_meta ul li a:hover,
.footer-sidebar .widget_recent_entries ul li a:focus,
.footer-sidebar .widget_recent_comments ul li a:focus,
.footer-sidebar .widget_archive ul li a:focus,
.footer-sidebar .widget_categories ul li a:focus,
.footer-sidebar .widget_meta ul li a:focus {
	color: #0088CC ;
}

.recent-post h6:hover,
.recent-post h6:focus-within {
    color: #0088CC ;
}

ul.recent-meta-info li a:hover,
ul.recent-meta-info li a:focus {
    color: #0088CC ;
}

.days li .active {
    color: #0088CC ;
    border-color: #0088CC ;
}

ul.widget-social li a:hover,
ul.widget-social li a:focus {
    color: #0088CC ;
}

ul.tags li a:hover,
ul.tags li a:focus {    
    background: #0088CC ;
}
em, cite, q {
    color: #0088CC ;
}
a {
    color: #0088CC ;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"] {
    border: 1px solid #0088CC ;
}
table th {
    background: #0088CC ;
}
blockquote {
    border-left: 5px solid #0088CC  !important;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    background: #0088CC;
}

.sidebar .widget table tbody a {
    color: #0088CC ;
    border-color: #0088CC ;
}
.widget_tag_cloud a:hover,
.widget_tag_cloud a:focus,
.wp-block-tag-cloud a:hover,
.wp-block-tag-cloud a:focus {
    background: #0088CC ;
}
.footer-sidebar .widget table tbody a { 
	color: #0088CC ;
    border-color: #0088CC ;
}

textarea {
	border: 1px solid #0088CC ;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"] {
    border: 1px solid #0088CC ;
}

.paginations a:hover, .paginations a:focus, .paginations a.active, span.page-numbers.current {
	background:#0088CC ;
}
a.page-numbers {
    color: #0088CC ;
}

.textwidget a:hover,
.textwidget a:focus {
    color: #0088CC ;
}

.boxed-btn:hover,
.boxed-btn:focus {
    color: #0088CC ;
}
.search-area.search-open #close-btn:focus,
.search-area.search-open #close-btn:hover,
.search-result .posts-navigation .nav-links a {
    background: #0088CC ;
}
.view-more:hover, .view-more:focus {
    color: #0088CC;
}
/*=========================================
    Secondary Color
=========================================*/
/* Theme Reset css */
button:hover, input[type="button"]:hover, input[type="reset"]:hover,
button:focus, input[type="button"]:focus, input[type="reset"]:focus {
    background: #242424;
}
p {
    color: #242424;
}

.section-header p {
    color: #242424;
}

/* Main Menu*/
.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li a.mean-expand:focus {
    background: #242424;
}

#recent-blog .read-more-link {
    color: #242424;    
}

.gallery-item figure:hover figcaption,
.gallery-item figure:focus-within figcaption {
    background: #242424;
}

#blog-content ul.meta-info li {
    color: #242424;
}

#blog-content ul.meta-info li a {
    color: #242424;
}

.post-content .content {
    color: #242424;
}

#blog-content .post-content .continue-reading {
    color: #242424;
}

.single-blog-area .post-title {
    color: #242424;
}

.single-blog-area ul.share-icon li a {
    color: #242424;
}

.post-comment-area .comment-author a {
    color: #242424;
}

#wrapper-404 .inner-content h1 {
    color: #242424;
}

#wrapper-404 .inner-content p {
    color: #242424;
}

/*Widget CSS */

#footer-widgets,
.widget-search input[type=button]:hover,
.widget-search input[type=button]:focus {
    background: #242424;
}

.widget_search .search-form,
.search-form input[type="search"]::-webkit-input-placeholder,
.sidebar .widget-title,
.widget_categories ul li a,
.recent-post h6,
ul.recent-meta-info li,
ul.recent-meta-info li a,
ul.tags li a,
.widget-calender .widget-title .plus a,
.weekdays li,
.days li.disable,
.days li {
    color: #242424;

}

/* new */
.sidebar .widget table caption { 
    color: #242424; 
}
.sidebar .widget table td, .widget table th { 
	color: #242424;
}
.sidebar .widget-title {
	color: #242424;
}
.sidebar .widget_meta ul li a {
	color: #242424;
}
.sidebar .widget_recent_entries ul li a {
	color: #242424; 
}
.sidebar .widget_recent_comments ul li a {
	color: #242424; 
}
.widget_tag_cloud a {
    color: #242424;
}
.footer-sidebar .widget table caption { 
    color: #242424; 
}
.footer-sidebar .widget table th { 
    color:#242424; 
}
.footer-sidebar .widget table td, .widget table th { 
	color: #242424;
} 
.gallery-item .gallery-caption {
    color: #242424;
}
.pagination a {
    background: #242424;
}

.widget_block.widget_calendar table th {
    color: #fff;
}


.footer-widgets .wp-block-latest-comments li a:hover, 
.footer-widgets .wp-block-latest-comments li a:focus {
    color: #fff;
}

.footer-sidebar .widget_calendar caption {
    background: #fff;
}


.wp-block-button a.wp-block-button__link,
.wp-block-button a.wp-block-button__link:hover,
.wp-block-button a.wp-block-button__link:focus {
    color: #fff;
}

.wp-block-button.is-style-outline a.wp-block-button__link {
    color: #0088CC;
}

.wp-block-button.is-style-outline a.wp-block-button__link:hover, 
.wp-block-button.is-style-outline a.wp-block-button__link:focus {
    background: #0088CC;
    color: #fff;
}.h1, .site-content h1 {
    font-weight:600 !important;
    font-size: 36px !important;
    line-height: 42px !important;
}
h2, .h2, .site-content h2 {
    font-weight:600 !important;
    font-size: 32px !important;
    line-height: 38px !important;
}
h3, .h3, .site-content h3 {
    font-weight:600 !important;
    font-size: 28px !important;
    line-height: 34px !important;
}
h4, .h4, .site-content h4 {
    font-weight:600 !important;
    font-size: 24px !important;
    line-height: 30px !important;
}
h5, .h5, .site-content h5 {
    font-weight:600 !important;
    font-size: 20px !important;
    line-height: 26px !important;
}
h6, .h6, .site-content h6 {
    font-weight:600 !important;
    font-size: 16px !important;
    line-height: 22px !important;
}

.post-content a {
    word-break: break-all !important;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    background: #f7f9fc;
}
blockquote, blockquote p {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 1px;
}
blockquote em, blockquote i, blockquote cite {
    font-style: normal;
}
blockquote cite, blockquote small {
    font-size: 16px;
    display: block;
    line-height: 20px;
    padding-top: 15px;
}
em, cite, q {
    font-style: italic;
    font-weight: 600;
}
table {
    border: 1px solid #e9e9e9;
    background-color: #fcfcfc;
    border-spacing: 0;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
    text-align: left;
    table-layout: fixed;
    width: 100%;
}
table th {
    padding: 10px 10px;
    color: #ffffff;
}
table td {
    border: 1px solid #e8e7e7;
    padding: 8px 10px;
}
a {
    font-family: 'Open Sans', sans-serif;
}
a:hover, a:focus {
	color:#242424;
}
dl {
    margin-bottom: 25px;
    margin-top: 0;
}
dl dd {
    margin-bottom: 20px;
    margin-left: 15px;
}
dl dt {
    font-weight: 700;
    margin-bottom: 10px;
    color: #242424;
    font-family: 'Open Sans', sans-serif;
}
li > ul, li > ol, blockquote > ul, blockquote > ol {
    margin-left: 1.3333em;
}
address {
    margin: 0 0 20px;
    letter-spacing: 0.5px;
    line-height: 27px;
}
acronym {
    border-bottom: 0 none;
}
abbr, tla, acronym {
    text-decoration: underline!important;
    cursor: help;
}
big {
    font-size: large;
    font-weight: 600;
}
code, kbd, tt, var, samp, pre {
    color: #ffffff;
    padding: 2px 5px;
    background: #242424!important;
	font-family: 'Poppins', sans-serif;
	border-radius: 4px;
}
s, strike, del {
    text-decoration: line-through;
}
ins {
    text-decoration: none;
    padding: 0 3px;
}
pre p {
    color: #fff;
}

.comments-title, .comment-reply-title {
    font-family: 'Poppins', sans-serif!important;
    font-size: 20px!important;
    background: #fefefe;
    padding: 5px 20px;
}
.comment-reply-title small {
    font-size: 100%;
}
.comment-reply-title small a {
    border: 0;
    float: right;
}
.comment-form {
    padding-top: 1.75em;
}
.comment-notes, .comment-awaiting-moderation, .logged-in-as, .no-comments {
    border-top: 1px solid #d1d1d1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0;
    padding-top: 1.75em;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}
/* form css*/
textarea {
    padding-left: 3px;
    width: 100%;
    height: 150px;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"] {
    font-size: 16px;
    height: 50px;
    line-height: 1.42857;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    vertical-align: middle;
    width: 100%;
    border-radius: 4px;
    box-shadow: inset 0px 0px 15px 0px rgba(53, 54, 60, 0.2);
    padding: 20px;
    border: none;
	margin-bottom: 13px;
}
.form-submit {
    margin-top: 30px;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: 0;
    cursor: pointer;
	color: #fff;
    border-radius: 4px;
    display: inline-block;
    padding: 15px 40px;
    -webkit-transition: .3s;
    transition: .3s;
}
button, input[type="button"], input[type="reset"], input[type="submit"]:hover, input[type="submit"]:focus {
	background: #242424;
}

/* Gallery Css Here*/
.gallery-icon {
    margin-bottom: -11px;
	overflow: hidden;
}
.gallery-icon img{
	-webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
	border-radius: 10px;
	display:block;
	height:auto;
}
.gallery-icon img:hover{
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
	border-radius: 10px 10px 0px 0px;
}
.gallery-item { 
	display: inline-block;
}
.gallery-item .gallery-caption {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    display: block;
    word-wrap: break-word;
    padding: 16px 3px;
    border-radius: 0px 0px 10px 10px;
}
.gallery-item:hover figcaption {
	-webkit-transition: all 200ms ease-out;
       -moz-transition: all 200ms ease-out;
         -o-transition: all 200ms ease-out;
            transition: all 200ms ease-out;
}
.gallery-columns-1 .gallery-item {
    float: none;
    text-align: center;
    margin: 10px 0 20px;
	width: 90%;
	margin-right: 10%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px 10px 10px 10px;
}

.gallery-columns-2 .gallery-item {
    width: 45%;
	float: none;
    text-align: center;
    margin: 10px 0 20px;
	padding: 0 10px;
	margin-right: 5%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px 10px 10px 10px;
}

.gallery-columns-3 .gallery-item {
    width: 30%;
    float: none;
    text-align: center;
    margin: 10px 0 20px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    margin-right: 3.33%;
    border-radius: 10px 10px 10px 10px;
}

.gallery-columns-4 .gallery-item {
    width: 20%;
	float: none;
    text-align: center;
    margin: 10px 0 20px;
	margin-right: 5%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px 10px 10px 10px;
}

.gallery-columns-5 .gallery-item {
    width: 18%;
	float: none;
    text-align: center;
    margin: 10px 0 20px;
	margin-right: 2%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px 10px 10px 10px;
}

.gallery-columns-6 .gallery-item {
    width: 13.6%;
	margin-right: 3.06%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px 10px 10px 10px;
}

.gallery-columns-7 .gallery-item {
    width: 12.25%;
    margin-right: 2.03%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px 10px 10px 10px;
}

.gallery-columns-8 .gallery-item {
    width: 10.5%;
    margin-right: 2%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px 10px 10px 10px;
}

.gallery-columns-9 .gallery-item {
    width: 9.11%;
    margin-right: 2%;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px 10px 10px 10px;
}

.gallery dl a {
    display: block;
}

.gallery dl a img {
    height: auto;
    margin: 0 auto;
}

.gallery .gallery-caption {
    font-size: 16px;
    line-height: 1.2;
    margin: 10px 0 0;
}

.gallery br+br {
    display: none;
}

/*Image Alignments and captions*/
img.alignnone{ display: block; margin: 0 auto; height: auto; max-width: 100%; }
#attachment_907 { width: 100% !important; }
.alignnone img{ display: block; height: auto; }
img.alignleft, .wp-caption.alignleft{ margin-right: 30px; }
img.alignright, .wp-caption.alignright{ margin-left: 30px; float: right;}
img.wp-caption .alignnone { display: block; margin: 0 auto; height: auto; width: 100%; }
a img.alignright { float: right; }
a img.alignnone { margin: 5px 20px 20px 0; }
a img.alignleft { float: left; }
a img.aligncenter { display: block; margin-left: auto; margin-right: auto;}
.aligncenter { margin-top: .5em; margin-bottom: .5em; }  
.alignleft { float: left; margin: .5em 20px .5em 0; }
.alignright { float: right; margin: .5em 0 .5em 20px; }
.wp-caption .wp-caption-text, .gallery-caption, .entry-caption { 
	clear: left;
    font-style: italic;
    line-height: 1.5em;
    margin: 0.75em 0;
    text-align: center;
}
.wp-caption.alignright { margin: 5px 0 20px 20px;}
.wp-caption p.wp-caption-text { font-family: 'Open Sans'; font-size: 16px; margin: 12px 0; text-align: center; font-weight: 400; font-style: italic; line-height: 1.5em; }
.wp-caption.alignleft { margin: 5px 20px 20px 0;}
.wp-caption {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #f8f8f8;
    border-color: #eee;
    border-image: initial;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 20px;
    max-width: 100%;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 4px;
    text-align: center;
}
.wp-caption > img {
    max-width: 100%;
	height: auto;
	display: block;
}.mobile-menu-area {
	width: 100%;
}

.main-menu ul li ul {
    position: absolute;
    width: 200px;
    background: #fff;
    margin: 0;
    padding: 0;
    text-align: left;
    border: 1px solid #ddd;
    top: 100%;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    left: 0;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.main-menu ul li:hover ul,
.main-menu ul li.focus ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.main-menu ul li ul li {
    display: block;
    position: relative;
    border-bottom: 1px solid #eee;
}

.main-menu ul li ul li a {
    padding: 8px 15px 8px 15px;
    text-transform: capitalize;
    font-size: 95%;
}

.main-menu ul li a {
    padding: 0px 9px;
    color: inherit;
    display: block;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.main-menu ul li a i {
    display: inline-block;
    -webkit-transition: .3s;
    transition: .3s;
}

.main-menu ul li .s-dropdown-menu li a i {
    transform: rotateZ(0deg);
}

.main-menu ul li .s-dropdown-menu li:hover a i,
.main-menu ul li .s-dropdown-menu li:hover a i,
.main-menu ul li .s-dropdown-menu li.focus a i,
.main-menu ul li .s-dropdown-menu li.active a i {
    transform: rotateZ(-90deg);
}

.main-menu > ul > li > a > span {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.main-menu > ul > li:hover > a > span,
.main-menu > ul > li.focus > a > span,
.main-menu > ul > li.active a > span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.main-menu > ul > li > a > span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
    font-weight: 700;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.navbar-area .main-menu > ul > li:hover > a > span,
.navbar-area .main-menu > ul > li.focus > a > span,
.navbar-area .main-menu > ul > li.active a > span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.navbar-area .main-menu > ul > li.active > a,
.navbar-area .main-menu > ul > li:hover > a,
.navbar-area .main-menu > ul > li.focus > a {
    color: #0088CC;
}

/* Sticky */

div#sticky-wrapper.is-sticky .sticky-nav, .normal-h {
    background: #ffffff;
    background-image: none;
    min-height: 100px;
    -webkit-box-shadow: 0 15px 40px -20px rgba(40,44,63,.15);
    -ms-box-shadow: 0 15px 40px -20px rgba(40,44,63,.15);
    -o-box-shadow: 0 15px 40px -20px rgba(40,44,63,.15);
    box-shadow: 0 15px 40px -20px rgba(40,44,63,.15);
}

.is-sticky .sticky-nav {
    -webkit-animation: flipInX 1s both;
    animation: flipInX 1s both;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    cursor: pointer;
}

.collapse.show {
    padding: 15px;
}
.is-sticky .sticky-nav {
    z-index: 99 !important;
}

/* Mean menu */

.mobile-menu-area .col-md-12 {
    position: inherit;
}

.mean-container .mean-bar {
    background: transparent none repeat scroll 0 0!important;
    position: inherit;
    padding: 0;
    min-height: 0;
}

.mean-container a.meanmenu-reveal {
    border: 1px solid;
    margin-right: 0;
    padding: 3px 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px !important;
}

.mean-container .mean-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 0;
    z-index: 0;
}

.mean-container .mean-nav ul li a.mean-expand {
    height: 28px;
}

nav.mean-nav {
	overflow-y: scroll;
	max-height: 340px;
}

.overlay-enabled {
    position: inherit;
    overflow: hidden;
    z-index: -1;
}

.main-menu ul li ul.s-dropdown-menu li ul {
    position: absolute;
    left: calc(-100% + 0px);
    top: 0;
    width: 200px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    z-index: 999;
    background: #fff;
    border: 1px solid #ddd;
}

.main-menu ul li a {
    white-space: normal;
}

.main-menu ul li ul.s-dropdown-menu li ul li ul li ul li ul {
    left: calc(100% + 0px);
}

#close-btn {
    font-size: 20px;
}

.main-menu ul li ul.s-dropdown-menu li:hover > ul,
.main-menu ul li ul.s-dropdown-menu li.focus > ul {
    visibility: visible;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
/* Right Nav */

.header-right-bar {
    text-align: right;
}

.header-right-bar > ul {
    padding: 0;
    margin: 0;
}

.header-right-bar ul li {
    display: inline-block !important;
	vertical-align: middle;
}

a.book-now {
    border: 0;
    border-radius: 4px;
    padding: 0 15px 0 15px;
    line-height: 40px;
    margin-left: 15px;
    -webkit-transition: .3s;
    transition: .3s;
    display: block;
    letter-spacing: 0.5px;
    font-size: 88%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: #212529;
    border-width: 2px;
    border-style: solid;
    border-color: #212529;
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    text-decoration: none;
    overflow: hidden;
}
a.book-now:hover, a.book-now:focus {
    opacity: 0.9;
    color: #ffffff;
}
.startkit-btn a.book-now:before {
    content: "";
    position: absolute;
    top: -40px;
    right: auto;
    bottom: auto;
    left: -100px;
    height: 220px;
    width: 50px;
    z-index: -1;
    opacity: .1;
    -webkit-transform: skew(-12deg, 0deg);
    transform: skew(-12deg, 0deg);
    -webkit-transition: .5s ease 0s;
    transition: .5s ease 0s;
    visibility: hidden;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
}
.startkit-btn a.book-now:hover:before,
.startkit-btn a.book-now:focus:before {
    left: 100%;
    visibility: visible;
    -webkit-transition: .5s ease .2s;
    transition: .5s ease .2s;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
}
a.book-now i {
    transform: translate(0);
    vertical-align: revert;
    color: #ffffff;
    background-color: #0088cc;
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-left: 13px;
    margin-right: -9px;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    padding: 0;
    z-index: 0;
}

@media only screen and (max-width: 991px) {
    .mean-container .mean-nav ul li a i {
        display: none;
    }
}
.mean-container .mean-nav ul li a {
    white-space: normal;
}

a.dropdown-item.active, a.dropdown-item:active {
    color: #212529;
    text-decoration: none;
    background-color: #f8f9fa;
}/*
Theme Name: StartKit
Theme URI: https://www.nayrathemes.com/startkit-free/
Author: Nayra Themes
Author URI: https://www.nayrathemes.com/
Description: StartKit is a unique, clean and professional-looking WordPress theme, perfect for all online digital business. A great variety of layouts and styles allows the creation of different structures and satisfies any specific requirement. The frontend and backend features are focused ease of use so that visitors can get the best user experience. View the demo of StartKit Pro https://www.nayrathemes.com/demo/pro/?theme=startkit
Version: 17.2
Tested up to: 6.8
Requires PHP: 5.6
Requires at Least: 4.7
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: startkit
Slug: startkit
Tags: one-column, two-columns, left-sidebar, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu,  custom-logo, featured-image-header, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, blog, entertainment, portfolio, editor-style, grid-layout

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

*/
/*
============================================
 [Table of contents]
==========================================
/*
    ** Theme Reset Css
    01. Homepage
        01. Header Top
        02. Custom Navigation
        03. Slider
        04. Features List
        05. Services
        06.Testimonial
        07. Recent Blog
        08. footer-copyright

    02. Default & full width page
        01. BreadCrumb Area 

    03. Blog Pages
    04. Single Blog Page
    05. 404 page

* ==========================================*/

/*
==========================================
    Theme Reset Css
==========================================
*/

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background: #fff;
}

body.gray-bg {
    background: #f9f9f9;
}

* {
    outline: none !important;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
}

h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500!important;
}

h3 {
    font-size: 24px;
    line-height: 34px;
}

h4 {
    font-size: 18px!important;
    line-height: 28px!important
}

h5 {
    font-size: 16px;
    line-height: 26px;
}

select {
    max-width: 100%;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

p.small,
a {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

#close-btn:focus, [type=button]:focus, [type=reset]:focus, [type=submit]:focus, button:focus, a:focus {
	outline: 1px dotted !important;
    outline-offset: -3px;
}

ul {
    margin: 0;
}

iframe, img {
    max-width: 100%;
    height: auto;
    border: none;
    display: block;
}

.blog-post ul:not(.meta-info) li a,
.blog-post ol:not(.meta-info) li a,
.blog-post table a, strong a, blockquote a,
code a, p a, span:not(.author-name):not(.comments-link):not(.posted-on):not(.post-list) a {
    color: #0088CC;
    text-decoration: underline;
    text-underline-offset: 1px;
}

.blog-post ul:not(.meta-info) li a:hover,
.blog-post ol:not(.meta-info) li a:hover,
.blog-post table a:hover, strong a:hover,
blockquote a:hover, code a:hover, p a:hover,
span:not(.author-name):not(.comments-link):not(.posted-on):not(.post-list) a:hover,
.blog-post ul:not(.meta-info) li a:focus,
.blog-post ol:not(.meta-info) li a:focus,
.blog-post table a:focus, strong a:focus,
blockquote a:focus, code a:focus, p a:focus,
span:not(.author-name):not(.comments-link):not(.posted-on):not(.post-list) a:focus {
    outline: none;
    text-decoration-style: dotted;
}

/* Helper class*/

.section-padding {
    padding: 100px 0;
}

.section-padding-top {
    padding: 110px 0 0;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.section-padding-80 {
    padding: 80px 0;
}

#services.section-padding {
    padding: 70px 0;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header .subtitle {
    width: 100%;
    max-width: 330px;
    display: block;
    margin: auto;
    padding: 6px 8px;
    color: #ffffff;
    background-color: #0088cc;
    border: 1px solid #0088cc;
    border-radius: 100px;
    overflow: hidden;
}

.section-header span {
    font-weight: 600;
    float: left;
    color: #0088CC;
    background-color: #FFFFFF;
    font-size: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-right: 10px;
}

.section-header h6 {
    text-align: left;
    line-height: 31px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 0 0 0 90px;
}

.section-header .subtitle:after {
    content: "";
    display: table;
    clear: both;
}

.section-header h2 {
    font-size: 35px !important;
    line-height: .8;    
    margin-top: 30px;
    display: inline-block;
    position: relative;
    z-index: 0;
}

.section-header .liner {
    margin-bottom: 25px;
    margin-top: 25px;
    position: relative;
    z-index: 0;
    height: 7px;
    border: none;
}

.section-header .liner:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 37px;
    height: 7px;
    margin: 0 auto;
    background: none;
    background-image: url(//galiotracunovodstvo.rs/wp-content/themes/startkit/images/divider.png);
    background-size: contain;
    background-repeat: repeat-x;
    -webkit-animation: animatedBackground 2s linear infinite;
    animation: animatedBackground 2s linear infinite;
}

@keyframes animatedBackground { 0% { background-position: 0 0; } 100% { background-position: 20px 0; } }@-webkit-keyframes animatedBackground { 0% { background-position: 0 0; } 100% { background-position: 20px 0; } }

.boxed-btn, .wp-block-loginout a {
    color: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
}

a.boxed-btn i, .boxed-btn i {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
    transform: translate(0);
    vertical-align: middle;
    color: #0088cc;
    background-color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 29px;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    padding: 0;
    z-index: 0;
}

.header-single-slider a.boxed-btn i:before,
.header-single-slider .boxed-btn i:before {
    vertical-align: middle;
}

.header-right-bar a.book-now.boxed-btn i,
a.boxed-btn.btn-white i {
    background-color: #0088cc;
    color: #ffffff !important;
}

/*
===================================================================================
    01. Homepage
===================================================================================
*/

/*
==========================================
    01. Header Top
==========================================
*/

.site-description {
	font-size: 16px;
    white-space: nowrap;
    line-height: normal;
}

.site-title {
    font-size: 22px !important;
    margin-bottom: 0 !important;
    line-height: 0.65 !important
}

/*
==========================================
    02. Custom Navigation
==========================================
*/

header {
    position: relative;
    z-index: 1;
}

#header-top {
    color: #ffffff;
    background: #0088CC;
    font-size: 16px;
}

.header-social li {
    display: inline-block;
}

.header-social li a {
    display: block;
    padding: 0;
    color: #ffffff;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 16px;
    text-align: center;
}

.header-social li a:hover {
    color: #eee;
}

#header-top .header-social li a {
    color: #0088cc;
    background-color: #ffffff;
}

#header-top a {
    font-size: 16px;
    color: #ffffff;
	margin: 0;
}

.email,
.header-social {
    position: relative;
    padding: 0 10px 0 0;

}

ul.header-social {
    position: relative;
    margin-bottom: 0;
}

.address,
.phone {
    padding-left: 25px;
}

/* logo */

.logo a {
    display: inline-block
}

.logo a:focus {
    outline: 2px dotted !important;
    outline-offset: 2px;
}

.main-menu ul li a:focus {
    outline: 2px dotted !important;
    outline-offset: 1px;
}

header .logo {
    padding: 0;
}

nav.main-menu {
    margin: 37.625px -30px 37.625px 0;
    position: relative;
}

.main-menu > ul {
    padding: 0;
    margin: 0;
}

.main-menu ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

#header-top .widget_search input[type="submit"].search-submit:hover, #header-top .widget_tag_cloud a:hover, #header-top .widget_search input[type="submit"].search-submit:focus, #header-top .widget_tag_cloud a:focus {
    color: #0088cc;
}

li#searchss .search-toggle {
    font-size: 20px;
    background: none;
    padding: 0 6px;
    color: #0088cc;
    box-shadow: none;
    border: none;
    background: none !important;
}

.header-right-bar a.dropdown-toggle,
li#searchss button {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.search-area .search-submit:hover,
.search-area .search-submit:focus {
    color: #ffffff;
    background: #242424;
}

li#searchss .search-toggle:hover,
li#searchss .search-toggle:focus,
li.cart-icon a.dropdown-toggle:hover,
li.cart-icon a.dropdown-toggle:focus {
    color: #212529;
}

/* Full screen search */
.search-area {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0,0,0,0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    will-change: transform, opacity;
    display: none;
    opacity: 0;
}

.search-area:before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    margin-top: 0px;
    background-image: url(//galiotracunovodstvo.rs/wp-content/themes/startkit/images/waves-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.search-area.search-open {
    opacity: 1;
    display: block;
    transform: translateY(0%);
    margin-top: 0;
}

.search-overlay {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.search-area form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
    transform: scaleX(0);
    transform-origin: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-area.search-open form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

#searchbox {
    width: 100%;
    display: inline-block;
    background: #ffffff;
    border-width: 1px;
    border-style: solid;
    color: #212529;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    font-size: 18px;
    outline: 0;
    padding: 15px 22px;
    box-shadow: none;
    min-height: 70px;
    border-radius: 0;
    padding-right: 70px;
    margin: 0;
}

input#searchbox::placeholder {
    color: #212529;
    text-transform: capitalize;
}

#close-btn {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 40%;
    font-size: 20px;
    background-color: #ffffff;
    color: #212529;
    width: 60px;
    height: 60px;
    line-height: 60px;
    padding: 0;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-area.search-open #close-btn {
    visibility: visible;
    opacity: 1;
    top: 12%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-area.search-open #close-btn:focus, .search-area.search-open #close-btn:hover {
    color: #ffffff;
    background: #0088CC;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

input[type="search"]::-webkit-input-placeholder {
    color: #212529;
}

.search-submit {
    padding: 0 20px;
    color: #ffffff;
    background: #0088cc;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 5px;
    height: 70px;
    border-radius: 0;
    border: none;
}

/*
==========================================
    03. Slider
==========================================
*/
.main-sliders {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.header-slider {
    color: #fff;
    cursor: crosshair;
}

/* start */

.header-slider figure > img {
    width: 100%;
    height: 100%;
    min-height: 630px;
    object-fit: cover;
    -webkit-transform-style: flat;
    transform-style: flat;
}

.ken-burn.header-slider figure {
    position: relative;
    overflow: hidden;
}

.ken-burn.header-slider figure > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 630px;
    object-fit: cover;
    -webkit-transition: all 20s;
    -moz-transition: all 20s;
    -o-transition: all 20s;
    transition: all 20s;
    transition-timing-function: linear;
}

.ken-burn.header-slider .owl-item:nth-child(even) figure > img {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}

.ken-burn.header-slider .owl-item:nth-child(odd) figure > img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
}

.ken-burn.header-slider .owl-item.active:nth-child(even) figure > img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.ken-burn.header-slider .owl-item.active:nth-child(odd) figure > img {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
}

/* end */

.header-slider figure {
    position: relative;
    display: inline-block;
    width: 100%;
    min-height: 630px;
    margin: 0;
    background-color: #212529;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
}

@media (max-width: 1199px) {
    .header-slider figure {
        background-size: cover;
    }
}

@media (max-width: 991px) {
    .header-slider .owl-item .startkit-img {
        max-width: 350px;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .main-sliders div.header-slider figure,
    .main-sliders div.header-slider figure > img {
        min-height: 250px;
    }
    .header-slider .content {
        padding: 15px 0;
        min-height: 250px;
    }
}

.header-slider figure img {
    display: block;
    margin: 0;
}

.header-slider .content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.header-slider figure:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-slider.pattern-2 figure:after,
#breadcrumb-area.pattern-2:after {
    background-image: url(//galiotracunovodstvo.rs/wp-content/themes/startkit/images/pattern/pattern_2.png);
    background-repeat: repeat;
    background-position: left top;
}

.slide-table {
    overflow: hidden;
    display: table;
    width: 100%;
    height: 100%;
}

.slide-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.slide-content {
    overflow: hidden;
    position: relative;
    max-width: 700px;
    width: 100%;
    margin-top: 20px;
}

.slide-left .slide-content {
    margin-right: auto;
    text-align: left;
}

.slide-center .slide-content {
    margin: auto;
    text-align: center;
    margin-top: 20px;
}

.slide-right .slide-content {
    margin-left: auto;
    text-align: right;
}

.slide-right .col-md-7 {
    order: 1;
}

.slide-center [class*=col-md-] {
    max-width: 100%;
    flex-basis: 100%;
}

.slide-center [class*=col-md-] .boxed-btn {
    margin: 10px auto
}
.slide-center [class*=col-md-] p {
    margin-bottom: 15px;
}
.slide-center [class*=col-md-] .startkit-img {
    margin-top: 15px;
    max-width: 445px;
}
.slide-center [class*=col-md-] img {
    width: auto;
    max-width: 100%;
    display: inline-block;
}

.startkit-img .frame {
    overflow: hidden;
}

.startkit-img .frame iframe {
    min-height: 255px;
    border: 5px solid #ffffff;
    border-radius: 2px;
}

.slide-content h4 {
    display: block;
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 30px;
    font-size: 20px !important;
    margin-bottom: 15px !important;
}

.slide-content h1 {
    letter-spacing: 0.7px;
}
.slide-content p {
    color: #fff;
}

.startkit.slide-content h1 {
    border-radius: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: 50px;
    line-height: 65px;
    display: inline-block;
}

.slide-content h1 {
    margin-bottom: 10px;
}

.slide-content p {
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 22px;
    overflow: hidden;
    line-height: 34px;
}

a.boxed-btn.btn-white {
    margin-left: 12px;
    color: #000000 !important;
    background-color: #ffffff !important;
}

a.boxed-btn.btn-white:hover,
a.boxed-btn.btn-white:focus {
    margin-left: 12px;
    color: #000000 !important;
    background-color: #ffffff !important;
}

/* Slider New Style */

.slide-img {
    position: relative;
    border: 10px solid #ffffff;
}

.slide-img img {
    padding: 10px;
}

.slide-bg {
    margin-top: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
}

.slide-bg h4 {
    border: 1px solid #fff;
    padding: 0 15px;
    margin-bottom: 25px;
}

.slide-bg-line {
    padding: 30px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.6);
}

.slide-bg-line.slide-left {
    border-left: 10px solid;
}

.slide-bg-line.slide-center {
    border-top: 10px solid;
}

.slide-bg-line.slide-right {
    border-right: 10px solid;
}

.delay-1 {
    -webkit-animation-delay: 0.25s;
    animation-delay: .25s;
}
.delay-2 {
    -webkit-animation-delay: 0.5s;
    animation-delay: .5s;
}
.delay-3 {
    -webkit-animation-delay: 0.75s;
    animation-delay: .75s;
}
.delay-4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 1s;
}
.delay-0 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

/* Slider Dots Vertical */

.dots-vertical.header-slider .owl-nav {
    display: none;
}

.dots-vertical-arrow .owl-dots,
.dots-vertical .owl-dots {
	position: absolute;
    top: 0px;
    bottom: 0;
    right: 22px;
    left: auto;
    margin: auto 0;
    z-index: 1;
    width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.dots-vertical-arrow .owl-dot .tp-bullet-inner,
.dots-vertical .owl-dot .tp-bullet-inner {
    position: relative;
    background: transparent;
    cursor: pointer;
    width: 13px;
    height: 13px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: block;
    margin: auto;
    box-sizing: content-box;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.dots-vertical-arrow .owl-dot.active .tp-bullet-inner,
.dots-vertical .owl-dot.active .tp-bullet-inner {
    transform: scale(1.4);
}

.dots-vertical-arrow .owl-dot:not(:last-child) .tp-line,
.dots-vertical .owl-dot:not(:last-child) .tp-line {
    height: 20px;
    width: 3px;
    background: white;
    display: block;
    margin: 0 auto;
}

.header-slider .owl-nav{
    display: block;
}

.header-slider .owl-next, .header-slider .owl-prev {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    border-radius: 50%;
    -webkit-transition: .3s cubic-bezier(0.11, 0.35, 0.85, 0.75);
    transition: .3s cubic-bezier(0.11, 0.35, 0.85, 0.75);
    background-color: rgb(33 37 41 / 75%);
}

.header-slider div.owl-next,
.header-slider div.owl-prev,
.product-carousel div.owl-next,
.product-carousel div.owl-prev {
    border: none;
}

.header-slider .owl-next:hover, .header-slider .owl-prev:hover {
    color: #ffffff;
    background-color: #0188cc;
}

.header-slider .owl-prev {
    left: -200px;
    visibility: hidden;
}

.header-slider .owl-prev {
    left: 50px;
    visibility: visible;
}


.header-slider .owl-next {
    right: -200px;
    visibility: hidden;
}

.header-slider .owl-next {
    right: 50px;
    visibility: visible;
}

/* Slider Anime Title */
.ml10 {
    position: relative;
}
.ml10 .text-wrapper {
    position: relative;
    display: inline-flex;
    overflow: hidden;
}
.ml10 .letter {
    display: inline-block;
    line-height: 1em;
    white-space: pre-wrap;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-origin: 0 0;
}

/* Slider Anime Sub Title */
.ml16 {
    overflow: hidden;
}
.ml16 .letter {
    display: inline-block;
    white-space: pre-wrap;
}

/* Slider Anime Description */
.ml13 {
    letter-spacing: 0.5em;
}
.ml13 .letter {
    display: inline-block;
    white-space: pre-wrap;
    animation: anime 1s ease-out 1 both;
}
@keyframes anime {
    from{
        opacity: 0;
        transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
    }
    to{
        opacity: 1;
        transform: perspective(500px) translate3d(0, 0, 0);
    }
}

/* Slider Anime Button */

/*
==========================================
    04. Features List
==========================================
*/

#features.section-padding-top {
    padding: 80px 0 0;
}

#features-list {
    margin-top: -80px;
    margin-top: -80px;
    margin-top: -80px;
    margin-top: -5rem;
	padding-bottom: 50px;
}

.features-list-item {
    text-align: center;
    position: relative;
    z-index: 0;
    padding: 0;
    padding-top: 35px;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
}

.features-list-item .features-icon {
    display: inline-block;
    text-align: center;
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    height: 64px;
    width: 64px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
    color: #ffffff;
    z-index: 1;
}

.features-list-item .features-icon:before,
.features-list-item .features-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
}

.features-list-item .features-icon:before {
    background-color: #0088cc;
}

.features-list-item .features-icon:after {
    background-color: #212529;
    z-index: -1;
    top: 6px;
    left: -4px;
}

.features-content {
    position: relative;
    z-index: 0;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
    padding: 52px 30px 22px;
}

.features-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-box-shadow: 0 4px 33px rgb(0 9 37 / 18%);
    box-shadow: 0 4px 33px rgb(0 9 37 / 18%);
    background-color: #ffffff;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
}

.features-content:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #007cfb;
    z-index: -2;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition-delay: .05s;
    -webkit-transition-delay: .05s;
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
}

.features-list-item:hover .features-content {
    color: #ffffff;
}

.features-list-item:hover .features-content:before {
    background-color: #212529;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-image: url(//galiotracunovodstvo.rs/wp-content/themes/startkit/images/bg-line.png);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
}

.features-list-item:hover .features-content:after {
    opacity: 1;
    bottom: -10px;
    right: -10px;
}

.info-light {
   background: #ffffff;
}

.info-color span.icon i, .info-color h4, .info-color p, #features-list .info-color a.view-more {
    color: #ffffff !important;
}

.features-list-item:hover {
    margin-top: -15px;
    box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.08);
}

.features-list-item .icon {
    display: inline-block;
    font-size: 32px;
    overflow: hidden;
    width: 100%;
    line-height: 64px;
    position: relative;
    z-index: 0;
}

.features-list-item h4 {
    display: inline-block;
    font-size: 20px !important;
    font-weight: 600 !important;
    vertical-align: super;
}

.features-list-item p {
    font-weight: 500;
    margin-bottom: 5px;
}

.view-more {
    position: relative;
    text-decoration: none;
}

.view-more:after {
    position: absolute;
    content: "\f178";
    font-family: 'FontAwesome';
    top: 0px;
    margin-left: 5px;
}

.view-more:after, .read-more-link:after, .more-link:after {
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    top: 1px;
    right: -1px;
    -webkit-transform: translate(0px, -4px);
    transform: translate(0px, -4px);
    -webkit-transition: .3s all;
    transition: .3s all;
}

.view-more:hover:after, .read-more-link:hover:after, .more-link:hover:after,
.view-more:focus:after, .read-more-link:focus:after, .more-link:focus:after {
    opacity: 1;
    transform: translate(22px, -4px);
}

.features-list-item h4,
.features-list-item p,
.features-list-item .view-more {
    color: inherit;
    text-decoration: none;
}

/*===== Features Eight =====*/
.features-eight {
    margin-bottom: 50px;
    position: relative;
    z-index: 0;
}

.features-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-eight .features-contented {
    padding: 18px 20px;
    background-color: #212529;
    color: #ffffff;
    border: 1px solid transparent;
    -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
    transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.features-eight .icon {
    display: inline-block;
    color: #ffffff;
    background-color: #0088cc;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 100px;
    font-size: 22px;
    margin-top: -72px;
    vertical-align: middle;
    position: relative;
    z-index: 0;
}

.features-eight .count {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: -6px;
    color: #ffffff;
    background-color: #212529;
    width: 30px;
    height: 30px;
    line-height: 27px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    border: 2px solid #ffffff;
    -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
    transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.features-eight .features-contented p {
    color: #ffffff;
    margin-top: 5px;
    -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
    transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.features-eight h5 a {
    font-size: 18px;
    font-weight: 600;
}

.features-eight.active .features-contented,
.features-eight:hover .features-contented,
.features-eight:focus-within .features-contented {
    color: #212529;
    background-color: rgb(255 255 255 / 75%);
    border-color: #e2e2e2;
    box-shadow: 0 10px 35px -3px rgb(0 0 0 / 17%);
}

.features-eight.active .icon,
.features-eight:hover .icon,
.features-eight:focus-within .icon {
    color: #ffffff;
    background-color: #212529;
}

.features-eight.active .count,
.features-eight:hover .count,
.features-eight:focus-within .count {
    background-color: #0088cc;
}

.features-eight.active .features-contented p,
.features-eight:hover .features-contented p,
.features-eight:focus-within .features-contented p {
    color: #212529;
}

.features-eight .view-more {
    color: #0088cc;
    font-weight: 600;
    letter-spacing: 0.35px;
    text-decoration: none;
}

/*====== Services ( features-touch ) ========*/

.features-touch {
    text-align: center;
    border-radius: 0;
}

.features-touch .icon {
    display: block;
    text-align: center;
    padding-bottom: 20px;
}

.features-touch .icon i {
    font-size: 50px;
}

.features-touch:hover .icon i {
    font-size: 45px;
}

.features-list-item:hover .icon i {
    -webkit-animation: slideRight .3s forwards;
    animation: slideRight .3s forwards;
}

@-webkit-keyframes slideRight {
    49% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%)
    }
    50% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%)
    }
    51% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }
}

@keyframes slideRight {
    49% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%)
    }
    50% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%)
    }
    51% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }
}

.features-touch h4 {
    font-size: 22px !important;
    font-weight: 500 !important;
    margin-bottom: 15px;
}

.features-touch p {
    font-size: 16px;
}

/*---//---*/

/*
==========================================
    05. Services
==========================================
*/

.services-item {
    padding: 50px 15px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s all;
    transition: .3s all;
}

.services-item:hover {
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}

.services-item .service-icon {
    margin-bottom: 20px;
    position: relative;
}

.services-item .service-icon img,
.services-item .service-icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 50px;
}


.services-item .service-icon:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 40px;
    height: 2px;
}

.services-item h4 {
    margin-bottom: 5px;
    -webkit-transition: .3s;
    transition: .3s;
}

/*
==========================================
    6.Testimonial
==========================================
*/

.single-testimonial:nth-child(2) {
	margin: 0px 30px;
}

#testimonial .owl-nav {
    display: none;
}

#testimonial .owl-stage-outer {
    overflow-x: visible;
    overflow-y: visible;
}

#testimonial .container {
    overflow: hidden;
}

#testimonial .owl-dots {
    width: 125px;
    margin: 0 auto;
    margin-top: 60px;
    display: inline-block;
    text-align: center;
}

#testimonial .owl-dot {
    width: 20px;
    height: 6px;
    display: inline-block;
    border-radius: 3px;
    margin-right: 10px;
    cursor: pointer;
}

.single-testimonial {
    border-radius: 0;
    padding: 35px 29px 30px;
    color: inherit;
    text-align: left;
    border: 10px solid #ffffff;
    background-color: #ffffff;
    box-shadow: 0 6px 18px -2px rgb(12 12 12 / 12%);
    -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
    transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.testimonial-text *,
.single-testimonial p {
    color: inherit;
    -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
    transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.single-testimonial:hover .testimonial-text *,
.single-testimonial:focus-within .testimonial-text *,
.single-testimonial:hover p,
.single-testimonial:focus-within p {
    color: #ffffff;
}

.single-testimonial:hover,
.single-testimonial:focus-within {
    background: url(//galiotracunovodstvo.rs/wp-content/themes/startkit/images/bg-testimonial.png) no-repeat #242424;
}

.single-testimonial h6 {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    display: inline-block;
    font-weight: 600 !important;
}

.single-testimonial img {
    margin-top: 0;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
    box-shadow: 0px 0px 2px 0px rgba(7, 7, 6, 0.2);
	 margin: -15px auto 0;
    display: inline-block;
}

.single-testimonial .img-rounded {
    margin-top: -55px;
}

.testimonial-text {
    margin-top: 15px;
}

.image-qouts {
    position: relative;
    z-index: 0;
    margin-bottom: 15px;
}

.image-qouts .rating {
    float: right;
    text-align: right;
    color: #0088cc;
    margin-top: -25px;
    font-size: 17px;
}

.image-qouts:after {
    content: "";
    display: table;
    clear: both;
}

.image-qouts:before {
    font-family: 'FontAwesome';
    content: "\f10e";
    position: absolute;
    top: -15px;
    left: -10px;
    background: #0088cc;
    color: #ffffff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 100%;
    font-size: 92%;
}

.testimonial-text span.title {
    color: #757575;
    margin-bottom: 12px;
    font-size: 85%;
}

/* Services Icon Color */

#services [class*="col-"]:nth-child(1) .services-item .service-icon i {
    color: #e91e63;
}
    
#services [class*="col-"]:nth-child(2) .services-item .service-icon i {
    color: #00bcd4;
}

#services [class*="col-"]:nth-child(3) .services-item .service-icon i {
    color: #4caf50;
}
#services [class*="col-"]:nth-child(4) .services-item .service-icon i {
    color: #f74848;
}
/*
==========================================
    7. Recent Blog
==========================================
*/

#recent-blog .post-title {
    margin-bottom: 10px;
}

.blog-post.blog-style-2 .post-thumbnail:after,
.blog-post.blog-style-2 .post-thumbnail:before,
.blog-post.blog-style-2 .post-overlayed:after,
.blog-post.blog-style-2 .post-overlayed:before {
    content: "";
    position: absolute;
    height: 50%;
    width: 50%;
    background-color: #111111;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    opacity: 0;
}

.blog-post.blog-style-2 .post-thumbnail:after,
.blog-post.blog-style-2 .post-thumbnail:before,
.blog-post.blog-style-2 .post-overlayed:after,
.blog-post.blog-style-2 .post-overlayed:before {
    background-color: rgb(17 17 17 / 75%);
}

.blog-post.blog-style-2 .post-thumbnail:after,
.blog-post.blog-style-2 .post-thumbnail:before {
    z-index: 0;
}

.blog-post.blog-style-2 .post-thumbnail:before {
    top: 0;
    right: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.blog-post.blog-style-2 .post-thumbnail:after,
.blog-post.blog-style-2 .post-thumbnail:after {
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.blog-post.blog-style-2 .post-overlayed:after,
.blog-post.blog-style-2 .post-overlayed:before {
    z-index: 0;
}

.blog-post.blog-style-2 .post-overlayed:before,
.blog-post.blog-style-2 .post-overlayed:before {
    top: 0;
    left: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.blog-post.blog-style-2 .post-overlayed:after,
.blog-post.blog-style-2 .post-overlayed:after {
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.blog-post.blog-style-2:focus-within .post-thumbnail:after,
.blog-post.blog-style-2:focus-within .post-thumbnail:before,
.blog-post.blog-style-2:focus-within .post-overlayed:after,
.blog-post.blog-style-2:focus-within .post-overlayed:before,
.blog-post.blog-style-2:hover .post-thumbnail:after,
.blog-post.blog-style-2:hover .post-thumbnail:before,
.blog-post.blog-style-2:hover .post-overlayed:after,
.blog-post.blog-style-2:hover .post-overlayed:before {
    -webkit-transform: translate(0,0) scale(1);
    transform: translate(0,0) scale(1);
    opacity: 1;
}

.post-content .wp-block-embed {
    margin-top: 1rem;
}

.post-thumbnail img {
    width: 100%;
}

#recent-blog, #woocommerce-page {
    background: #f9f9f9;
}

#recent-blog .blog-post {
	position: relative;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 1px 2px 2.28px 1.5px rgba(0,0,0,.04);
    -moz-box-shadow: 1px 2px 2.28px 1.5px rgba(0,0,0,.04);
    box-shadow: 1px 2px 2.28px 1.5px rgba(0,0,0,.04);
    -webkit-transition: .3s;
    transition: .3s;
}

#recent-blog .blog-post:hover {
    box-shadow: 0px 20px 20px 0px rgba(59, 62, 72, 0.1);
}

#recent-blog .post-thumbnail {
    position: relative;
    z-index: 0;
}

.post-footer {
    display: block;
    margin-top: 5px;
    border-top: 1px solid #e4e4e4;
    padding: 15px 20px;
    position: relative;
    z-index: 0;
}
.post-footer i {
    color: #0088cc;
    margin-right: 5px;
}
.post-footer a {
    color: #212529;
}
.post-footer a:hover,
.post-footer a:focus {
    color: #0088cc;
}
.post-footer:after {
    content: "";
    display: table;
    clear: both;
}
.post-footer .post-author {
    float: left;
    display: block;
    max-width: 43%;
}
.post-footer .post-cat {
    float: right;
    display: block;
    max-width: 76%;
}

.blog-post .post-thumbnail .tags-cat a:first-child {
    display: none;
}

.blog-post.blog-style-2 .post-thumbnail .tags-cat a {
    display: inline-block;
    padding: 4px 12px;
    background-color: #0088cc;
    color: #ffffff;
}

.blog-post .post-thumbnail .tags-cat a {
    margin-right: 5px;
}

.blog-post .post-thumbnail .tags-cat a:last-child {
    margin-right: 0;
}

.blog-post.blog-style-2 .post-thumbnail .tags-cat,
#recent-blog .meta-info.list-inline {
    position: absolute;
    bottom: -20px;
    left: 0;
    padding-left: 20px;
    padding-bottom: 20px;
    z-index: 22;
    color: #f9f9f9;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
}

.blog-post.blog-style-2 .post-thumbnail .tags-cat {
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.blog-post.blog-style-2:focus-within .post-thumbnail .tags-cat,
#recent-blog .blog-post:focus-within .meta-info.list-inline,
.blog-post.blog-style-2:hover .post-thumbnail .tags-cat,
#recent-blog .blog-post:hover .meta-info.list-inline {
    bottom: 0;
    opacity: 1;
}

#recent-blog .blog-post.blog-style-1 .post-thumbnail:after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #0088CC;
    -webkit-transition: .3s;
    transition: .3s;
}

#recent-blog .blog-post.blog-style-1:hover .post-thumbnail:after,
#recent-blog .blog-post.blog-style-1:focus-within .post-thumbnail:after {
    top: 0;
    opacity: .8;
}

#recent-blog .meta-info.list-inline:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 100px;
    background: #fff;
}

#recent-blog .meta-info.list-inline li a {
    color: #f9f9f9;
}

#recent-blog .post-content {
    padding: 20px;
}

#recent-blog .post-content-inner {
    padding-bottom: 0;
}

.post-content .post-date {
    display: inline-block;
    padding: 0px 10px;
    line-height: 1.6em;
    font-size: 0.75em;
    background-color: #0088cc;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

#recent-blog .post-content .post-title a {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
}

#recent-blog .more-link,
#recent-blog .read-more-link {
    position: relative;
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
}

#recent-blog .more-link i,
#recent-blog .read-more-link i {
    margin-left: 5px;
}

#recent-blog .more-link:after,
#recent-blog .read-more-link:after {
    position: absolute;
    content: '\eb55';
    font-family: 'icofont';
    top: 0px;
    margin-left: 5px;
}

.post-content .more-link,
.post-content .read-more-link {
    color: #ffffff;
    background-color: #212529;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 5px;
    padding-right: 54px;
    position: relative;
    margin-top: 15px;
    text-decoration: none;
}

.post-content a.more-link:after,
#recent-blog a.more-link:after,
.post-content a.read-more-link:after,
#recent-blog a.read-more-link:after {
    content: "\f00c";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
    transform: translate(0);
    vertical-align: middle;
    font-family: 'FontAwesome';
    color: #212529;
    background-color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    opacity: 1;
    z-index: 0;
}

.blog-post .more-link:hover,
.blog-post .more-link:focus,
.blog-post .read-more-link:hover,
.blog-post .read-more-link:focus {
    color: #ffffff !important;
    background-color: #0088CC;
    box-shadow: 0 5px 15px -5px rgb(0 0 0 / 15%);
}

.post-content a.more-link:hover:after,
#recent-blog a.more-link:hover:after,
.post-content a.more-link:focus:after,
#recent-blog a.more-link:focus:after,
.post-content a.read-more-link:hover:after,
#recent-blog a.read-more-link:hover:after,
.post-content a.read-more-link:focus:after,
#recent-blog a.read-more-link:focus:after {
    color: #0088CC;
    transform: translate(0);
}

/*
==========================================
    8. footer-copyright
==========================================
*/

#footer-copyright {
    padding: 13px 0;
}

#footer-copyright p {
    color: #fff;
    line-height: 36px;
}

#footer-copyright p a {
    color: inherit;
}

/* Scroll Up */

.scrollup {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    position: fixed;
    bottom: 30px;
    right: 30px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
    display: none;
    color: #fff;
    z-index: 888;
    -moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 10px 0px;
}

.scrollup:hover,
.scrollup:focus {
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .5)
}

.payment-icon li a {
    font-size: 34px;
    color: #ffffff;
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

.payment-icon li {
    display: inline-block;
}
ul.payment-icon {
    text-align: right;
}

/*
===================================================================================
    02. Default & full width page
===================================================================================
*/

.paginations {
    margin: 25px 0;
}

/*-----------------------------------
    01. BreadCrumb Area 
------------------------------------*/

.startkitdrops {
    transform: rotate(180deg);
}

#breadcrumb-area {
    position: relative;
    padding: 95px 0 40px;
    color: #f9f9f9;
	background-size: cover !important;
    z-index: 0;
}

#breadcrumb-area:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0088cc;
    opacity: 0.95;
    z-index: -1;
}

#breadcrumb-area h1 {
    color: #f9f9f9;
    margin-bottom: 15px;
    font-size: 36px;
}

.breadcrumb_space {
    padding: 50px 0;
}

.breadcrumb-nav li {
    display: inline-block;
}

.breadcrumb-nav li a {
    padding-right: 8px;
    font-size: 16px;
    position: relative;
    text-decoration: none;
    color: #fff;
}

.breadcrumb-nav li a:hover, .breadcrumb-nav li a:focus {
    color: #ffffff !important;
}

.breadcrumb-nav li.active {
    font-size: 16px;
    color: #fff;
}

.breadcrumb-nav li a:after {
    content: "\f101";
    font-family: "Fontawesome";
    font-size: 12px;
    margin-left: 10px;
}

/*
===================================================================================
    03. Blog Pages
===================================================================================
*/
#blog-content {
    padding: 50px 0;
}

#blog-content article.blog-post {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    background: #fff;
    margin-bottom: 80px;
	position: relative;
}

#blog-content article.blog-post:last-child {
    margin-bottom: 0;
}

#blog-content .post-content {
    padding: 32px 30px 35px;
}

#blog-content .post-title a {
    font-size: 24px;
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    -webkit-transition: .3s;
    transition: .3s;
}

#blog-content .post-content {
    border-bottom: 1px solid #d3d6db;
}

.post-content .content {
    font-size: 16px;
    margin-bottom: 16px;
}

#blog-content .post-content .continue-reading {
    font-size: 16px;
}

#blog-content ul.meta-info {
    padding: 16px 32px;
}

#blog-content ul.meta-info li {
    display: inline-block;
    margin-right: 30px;
    font-size: 16px;
}

#blog-content ul.meta-info li i {
    margin-right: 10px;
}



/* Post Thumbnail Effects */

.blog-post .post-thumb {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    margin-bottom: 0;
}

.blog-post .post-thumb img {
    max-width: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
	height:auto;
	display:block;
}

.blog-post .post-thumb .post-overlay {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    position: absolute;
}

.blog-post .post-thumb .post-overlay a {
    color: #fff;
}

.blog-post .post-thumb .post-overlay a i {
    font-size: 50px;
    opacity: 0;
    top: 50%;
    position: relative;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    display: inline-block;
}

.blog-post .post-thumb .post-overlay a i {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.blog-post .post-thumb .post-overlay:before {
    position: absolute;
    top: 30px;
    right: 50%;
    bottom: 30px;
    left: 50%;
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.single-blog-area .blog-post:hover .post-thumb img {
    opacity: 1;
}

.blog-post:hover .post-thumb img {
    opacity: 0.1;
}

.blog-post:hover .post-thumb .post-overlay i {
    opacity: 0.9;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.blog-post:hover .post-thumb .post-overlay i {
    -webkit-transform: translate3d(-25%, -50%, 0);
    transform: translate3d(-25%, -50%, 0);
}

.blog-post:hover .post-thumb .post-overlay:before {
    background: rgba(255, 255, 255, 0);
    left: 30px;
    right: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}


/*
===================================================================================
    04. Single Blog Page
===================================================================================
*/

.comments-area {
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
	padding: 15px;
}
.comment-form {
	padding: 0 !important;
}
.single-blog-area ul.meta-info {
    border-bottom: 1px solid #d3d6db;
}

.single-blog-area .post-title {
    font-size: 18px;
    display: block;
    font-weight: 500;
    margin-bottom: 16px;
}

.single-blog-area .tag-share {
    padding: 10px 60px;
    border-bottom: 1px solid #d3d6db;
}

.tag-share ul.tags li a {
    margin-bottom: 0;
}

.single-blog-area ul.share-icon li {
    display: inline-block;
}

.single-blog-area ul.share-icon li a {
    display: block;
    padding: 5px 10px;
    font-size: 16px;
}

.single-blog-area ul.share-icon {
    text-align: right;
}

.post-comment-area .comment-author a {
    font-size: 16px;
    font-weight: 500;
}

.post-comment-area .comment {
    font-size: 16px;
}

.post-comment-area .media {
	margin-bottom: 30px;
    padding: 4px 12px;
    color: #242424;
}

.post-comment-area .media-left {
    padding-right: 30px;
}

.post-new-comment {
    padding: 80px 60px;
}

.post-new-comment input,
.post-new-comment textarea {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid;
}

.post-new-comment .boxed-btn {
    margin-top: 30px;
}

.boxed-btn:hover {
    background: #444;
}
ul.media-list {
    margin: 0;
    padding: 0;
}
ul.media-list li h2 {
    font-size: 24px !important;
	margin: 0 !important;
}

ol.comment-list, ol.children {
    list-style: none;
}
.comment-list article {
    margin-bottom: 20px;
    padding: 10px 20px;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s all;
    transition: .3s all;
}
.comment-author img {
	width: 60px;
    height: 60px;
    border-radius: 50%;
    border: solid 1px #ccc;
    display: inline-block;
    position: relative;
    margin-top: 15px;
}
.comment-metadata {
    margin-bottom: 15px;
    margin-top: -30px;
    margin-left: 63px;
}
.comment-respond .comment-reply-title {
    padding: 0;
	margin: 0 !important;
}
.reply {
    text-align: right;
}
.comment-content p {
    font-size: 16px;
}
.single-post article.blog-post {
    margin-bottom: 24px !important;
}
form.comment-form p.logged-in-as, form.comment-form p.comment-notes {
    margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}
.media-body ul li {
    list-style: none;
    display: inline-block;
    padding: 5px;
}
.author-details img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: solid 1px #ccc;
    display: inline-block;
    position: relative;
    margin-top: 15px;
    margin-left: 20px;
}
.auth-mata {
    padding-right: 10px;
}
.author-details p {
    font-size: 16px;
}
.author-meta-det {
    padding: 10px;
}
.blog-author-social {
    margin: 10px 0 0;
    padding: 0;
}

/*
===================================================================================
    05. 404 page
===================================================================================
*/

#wrapper-404 {
    position: relative;
    height: 500px;
}

#wrapper-404 .inner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}

#wrapper-404 .inner-content img {
    width: 200px;
}

#wrapper-404 .inner-content h1 {
    font-size: 70px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 5px;
}

#wrapper-404 .inner-content p {
    font-size: 18px;
    margin-bottom: 26px;
}

/*
===================================================================================
  Main Wrapper
===================================================================================
*/
.main_wrapper {
	padding: 80px 0 0;
}


/*---------------------------------------
    Screen Reader Text
-----------------------------------------*/
/* Accessibility */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 16px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/*---------------------------------------
    Startkit About dashboard
-----------------------------------------*/

/*
===================================================================================
  repeatetor css
===================================================================================
*/
.servicesss .col-lg-3 {
    margin-bottom: 30px!important;
}
.servicesss .col-lg-3:last-child{
	margin-bottom: 0px!important;
}
section#recent-blog .col-lg-4 {
    margin-bottom: 30px!important;
}
section#recent-blog .col-lg-4:last-child {
    margin-bottom: 0px!important;
}
section#recent-blog .col-lg-6 {
    margin-bottom: 30px!important;
}
section#recent-blog .col-lg-6:last-child {
    margin-bottom: 0px!important;
}
/* Pagination*/
.pagination{
    margin: 0px;
    text-align: center !important;
	 display: table !important;
}

.pagination .nav-links {
    display: inline-flex;
}

.navigation .current {
    color: #ffffff;
    padding: 0px 15px;
    line-height: 36px;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    margin-right: 3px;
}
.pagination a {
    padding: 0px 15px;
    line-height: 36px;
    margin-right: 1px;
    color: #fff !important;
}

.pagination {
    margin: 30px auto 0;
}

.pagination a.page-link {
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.pagination li.page-item.more-page a.page-link,
.pagination li.page-item.active a.page-link,
.pagination a.page-link:hover {
    color: #fff;
    border-color: #fff;
}

#blog-content .pagination {
    margin: 0 auto 0;
}

a.next.page-numbers {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

#features-list, #services, #testimonial {
    background: #fff;
}
/* Search Result */
.search-result .posts-navigation .nav-links a {
    color: #fff!important;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1)!important;
    border-radius: 4px!important;
    display: inline-block!important;
    padding: 15px 40px!important;
    -webkit-transition: .3s;
    transition: .3s!important;
}

.posts-navigation .nav-previous {
    margin-right: 10px;
}

.posts-navigation .nav-previous, .posts-navigation .nav-next {
    display: inline-block;
}

/* bg-sticky Start */

.bg-sticky {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 .62em;
    line-height: 30px;
	border-radius: 3px;
    color: #fff;
    background: #1ed12f;
	z-index: 9;
}

/* bg-sticky Start */



/* startkit-btn */

.envira-btn .boxed-btn,
.startkit-btn .button-cart a,
.startkit-btn .boxed-btn,
.startbiz-btn .boxed-btn,
.arowana-btn .boxed-btn {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 0 42px 0 18px !important;
    line-height: 40px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.125px;
    text-decoration: none;
    position: relative;
    z-index: 0;
}

.startkit-btn .posts-navigation .nav-links a {
    font-size: 16px;    
    color: #ffffff; 
    position: relative;
    padding: 0 25px !important;
    line-height: 40px;
	z-index: 0;
    text-decoration: none;
	cursor: pointer;
}

.startkit-btn .boxed-btn,
.startkit-btn .posts-navigation .nav-links a {
	overflow: hidden;
}

.startkit-btn .search-form .boxed-btn {
	line-height: 50px;
}

/* Startkit BTN Style */

.startkit-btn .boxed-btn:before,
.startkit-btn .posts-navigation .nav-links a:before {
    content: "";
    position: absolute;
    top: -40px;
    right: auto;
    bottom: auto;
    left: -100px;
    height: 220px;
    width: 50px;
    z-index: -1;
    opacity: .1;
    -webkit-transform: skew(-12deg, 0deg);
    transform: skew(-12deg, 0deg);
    -webkit-transition: .5s ease 0s;
    transition: .5s ease 0s;
    visibility: hidden;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
}

.startkit-btn .boxed-btn:hover:before, .startkit-btn .boxed-btn:focus:before,
.startkit-btn .posts-navigation .nav-links a:hover:before, .startkit-btn .posts-navigation .nav-links a:focus:before {
    left: 100%;
    visibility: visible;
    -webkit-transition: .5s ease .2s;
    transition: .5s ease .2s;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 1%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.85) 71%, rgba(255, 255, 255, 0) 100%);
}

/* Startkit Colors */

.startkit-btn .slide-content.slide-bg h4,
.startkit-btn .boxed-btn:hover, .startkit-btn .mc4wp-form input[type="submit"]:hover,
.startkit-btn .posts-navigation .nav-links a:hover {
	color: #ffffff !important;
}

.search-result .posts-navigation .nav-links a:focus,
.search-result .posts-navigation .nav-links a:hover {
    color: #ffffff;
}


/* Parent Responsive */
@media only screen and (max-width:991px) {
    .navbar-area>.container {
        position: relative;
    }
    #header-top .widget {
        min-width: 216px;
    }
    .header-right-bar {
        margin-right: 46px;
    }
    .navbar-area {
        min-height: 72px;
        display: flex;
        align-items: center;
    }
}

@media only screen and (max-width:767px) {
    .header-right-bar {
        margin-right: 30px;
    }
    .mean-container a.meanmenu-reveal {
        width: 13px;
        height: 14px;
        font-size: 13px !important;
        line-height: 16px;
    }
    .mean-container a.meanmenu-reveal span {
        height: 2px;
        margin-top: 2px;
    }
    .header-right-bar ul li a {
        padding: 0 4px 0;
    }
}

@media only screen and (max-width: 475px) {
    #header-top .widget {
        display: block;
    }
    #header-top .widget:nth-child(n+2) {
        padding-left: 0;
        margin-left: 0;
    }
    #header-top .startkit-top-right .widget:nth-child(n+2),
    #header-top .startkit-top-right .widget:first-child {
        padding: 0;
    }
    .startkit-top-left .widget:nth-child(n+2),
    .startkit-top-right .widget:nth-child(n+2) {
        border-left: 0;
        border-top: 1px solid rgb(255 255 255 / 25%);
    }
    #header-top .startkit-top-right, #header-top .startkit-top-left {
        padding: 0;
    }
}


@media only screen and (max-width:400px) {
    .header-right-bar ul li a {
        padding: 0 4px 0;
    }
}

@media only screen and (min-width:501px) and (max-width:560px) {
    .mean-container a.meanmenu-reveal {
        
    }
}

@media only screen and (min-width:476px) and (max-width:500px) {
    .mean-container a.meanmenu-reveal {
        
    }
}

@media only screen and (min-width:430px) and (max-width:475px) {
    .mean-container a.meanmenu-reveal {
        
    }
}

@media only screen and (min-width:400px) and (max-width:429px) {
    .mean-container a.meanmenu-reveal {
        
    }
}

@media only screen and (min-width:360px) and (max-width:399px) {
    .mean-container a.meanmenu-reveal {
        
    }
}

@media only screen and (min-width:318px) and (max-width:359px) {
    .mean-container a.meanmenu-reveal {
        
    }
}

@media only screen and (max-width:317px) {
    .mean-container a.meanmenu-reveal {
        
    }
}

.bypostauthor{}

.startkitrips {
    overflow: hidden;
}

.wp-block-calendar table caption, 
.wp-block-calendar table tbody {
    color: #40464d;
    text-align: center;
}

.wp-block-table figcaption {
    text-align: center;
	font-weight: 600;
}

.wp-block-image figcaption {
    text-align: center;
}

ul.wp-block-social-links li a {
    font-size: 24px;
}

.footer-sidebar .wp-block-calendar tbody td, 
.footer-sidebar .wp-block-calendar th {
    padding: 8px 10px;
}

.wp-block-group em {
    color: inherit;
}

/* gallery cross buttom style */
button.featherlight-close-icon.featherlight-close {
    background-color: #0088CC;
    border: 1px solid #0088CC;
    top: 40px;
    right: 40px;
    border-radius: 0;
}


/* circle hover */
.is-style-circle figure.tiled-gallery__item:before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.65s;
}
.is-style-circle figure.tiled-gallery__item:hover:before,
.is-style-circle figure.tiled-gallery__item:focus:before{
    visibility: visible;
    opacity: 0.5;
}

/* circle spacing */
.wp-block-jetpack-tiled-gallery .tiled-gallery__row{
	margin-right: calc(-.4 * var(--bs-gutter-x));
    margin-left: calc(-.4 * var(--bs-gutter-x));
    --bs-gutter-x: 1.5rem;
}

.wp-block-jetpack-tiled-gallery .tiled-gallery__row>* {
    padding-right: calc(var(--bs-gutter-x) * .4);
    padding-left: calc(var(--bs-gutter-x) * .4);
}

.wp-block-jetpack-tiled-gallery .tiled-gallery__row:not(:last-child) {
    margin-bottom: 20px;
}

.wp-block-jetpack-tiled-gallery .tiled-gallery__row+.tiled-gallery__row {
    margin-top: 0px;
}

.wp-block-jetpack-tiled-gallery .tiled-gallery__col+.tiled-gallery__col {
    margin-left: 0px;
}

/* circle box shadow */
.wp-block-jetpack-tiled-gallery.is-style-circle .tiled-gallery__item {
    border-radius: 50%;
    box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}

.wp-block-jetpack-tiled-gallery.is-style-rectangular .tiled-gallery__item {
    width: 100%!important;
    height: 100%!important;
	box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}

.wp-block-jetpack-tiled-gallery .tiled-gallery__item {
	box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}

.wp-block-jetpack-tiled-gallery .tiled-gallery__gallery{
	justify-content: center;
}

.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item{
	width: 100%!important;
	margin-bottom: 20px
}
.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item:last-child{
	margin-bottom: 0px
}
.wp-block-jetpack-tiled-gallery.is-style-columns .tiled-gallery__item {
    margin-top: 0px;
}

blockquote.wp-block-quote.has-text-color p,blockquote.wp-block-quote.has-text-color p var,blockquote.wp-block-quote.has-text-color p cite,blockquote.wp-block-quote.has-text-color cite {
	color: inherit;
}
.wp-block-table figcaption {
     text-align: center;
}
.sidebar .widget .wp-block-group .wp-block-image {
	margin-bottom: 0;
}
ul.wp-block-rss {
 	list-style: disc;
}
.has-text-color a:hover, .has-text-color a:focus {
	color: inherit;
}
.entry-content ul:last-child {
 margin-bottom: 0;
}
.wp-block-code.has-text-color code {
 	      color: inherit;
}
.sidebar .widget .wp-block-group .is-nowrap p {
 	padding: 0;
 }
.sidebar .widget .wp-block-group .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-date {
	padding-top: 0.5rem;
 	padding-bottom: 0.5rem;
 	font-size: 0.875rem;
}

/*wp-Block-RSS*/
ul.wp-block-rss {
     list-style: none;
     margin-left: 0;
}
ul.wp-block-rss li.wp-block-rss__item {
    margin-bottom: 1rem;
}
ul.wp-block-rss li.wp-block-rss__item:last-child {
    margin-bottom: 0;
}

.sidebar .widget .wp-block-group .wp-block-pullquote blockquote {
	margin-top: 0;
	margin-bottom: 0;
}

.sidebar .widget .wp-block-group .wp-block-rss .wp-block-rss__item-title > a {
 	font-weight: 600;
}

.wp-block-quote.is-style-large {
	padding-top: 1.10rem;
	padding-bottom: 1.10rem;
}

.sidebar .widget .wp-block-group .wp-block-file, .sidebar .widget .wp-block-group .wp-block-image {
	padding: 1.563rem 1.000rem 1.563rem;
}

.widget .wp-block-group .is-vertical a {
    color: inherit;
}

.entry-content ol.wp-block-latest-comments {
	padding-left: 2rem;
}

.wp-block-table figcaption {
  text-align: center;
}

.post .entry-content ul.wp-block-archives {
	margin-left: 1.125rem;
	list-style: disc
}

.wp-block-code.has-background code {
	background: inherit;
}

.wp-block-group .wp-block-embed,
.wp-block-group .wp-block-image {
	 padding: 1.563rem 1.000rem 1.563rem;
}

.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
     width: auto;
}

.widget .wp-block-group .wp-block-columns {
	margin-bottom: 0;
}

.widget .wp-block-group .wp-block-rss li:last-child {
    padding-bottom: 0;
}

ul.wp-block-page-list a {
    text-decoration: none;
}

.sidebar .wp-block-group .is-nowrap {
    margin: 1.563rem 1.000rem 1.563rem;
}

.sidebar .widget .wp-block-group .wp-block-latest-comments__comment-meta {
    font-weight: 600;
    line-height: 1.5;
}

.wp-block-woocommerce-customer-account a .wc-block-customer-account__account-icon {
	height: 2em;
	width: 2em;
}

.sidebar .widget .wp-block-group .is-layout-flow h2 {
	border-left: 0 none;
}

.wc-block-components-product-title a,
.wc-block-components-product-title a:hover,
.wc-block-components-product-title a:focus {
	text-decoration: none;
}

.wp-block-details summary { 
	font-weight: 600;
}

.wp-block-verse {
	padding: 10px;
}

.wp-block-calendar .wp-calendar-nav {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.sidebar .widget .wp-block-group .wp-block-latest-comments,
.sidebar .widget .wp-block-group .wp-block-loginout,
.sidebar .widget .wp-block-group .wp-block-table,
.sidebar .widget .wp-block-group .wp-block-buttons {
	padding: 1.563rem 1.000rem 1.563rem;
}

.sidebar .widget .wp-block-group .wp-block-embed {
    margin: 0;
}

.sidebar .widget .wp-block-group ol li {
	padding-bottom: 0.625rem;
}

.wp-block-details summary {
	font-weight: 600;
	padding: 10px;
}

a.wc-block-grid__product-link {
	text-decoration: none;
}

.wp-block-latest-posts__post-author {
	font-size: 1.7rem;
 	font-weight: 600;
}

.wp-block-cover.has-background-dim-60.has-background-dim .wp-block-cover-text a:hover {
	color: inherit;
}

.sidebar .widget .wp-block-group .wp-block-cover,
.sidebar .widget .wp-block-group .wp-block-separator {
  margin-bottom: 0rem;
}

.wp-block-quote .wp-block-search {
	padding-bottom: 5px;
}

.wc-block-mini-cart__icon,
.wc-block-mini-cart__badge {
	color: inherit;
}

.sidebar .widget .wp-block-pullquote cite {
    z-index: 1;
}

.sidebar .widget .wp-block-group .is-nowrap {
	margin: 1.563rem 1.000rem 1.563rem;
}

.wp-block-post-title a {
    text-decoration: none;
}

.wp-block-details summary {
	font-weight: 600;
}

.wp-block-group.has-black-border-color {
	border-color: #333 !important;
}

.widget .wp-block-group .wp-block-preformatted a {
	color: inherit;
}

.wp-block-woocommerce-single-product .wp-block-post-title a {
	text-decoration: none;
}

.wc-block-grid__products .wc-block-components-product-sale-badge.wc-block-grid__product-onsale {
	letter-spacing: 0.2px;
	border: none;
}

.footer-sidebar .widget .wp-block-group .wp-block-image .wp-element-caption a {
    color:inherit;
}

.sidebar .widget .wp-block-group .is-nowrap p {
	padding: 0;
}

.sidebar .widget.widget_block .wp-block-group ul.wp-block-latest-posts__list {
    margin-left: 0;
}

.sidebar .widget .wp-block-group .wp-block-latest-comments__comment-meta {
	font-weight: 600;
	line-height: 1.5;
}

.wc-block-components-product-title a.wc-block-components-product-name:hover,
.wc-block-components-product-title a.wc-block-components-product-name:focus {
	color: inherit;
}

.wp-block-code.has-text-color code {
    color: inherit;
}

.wc-block-grid__products .wc-block-components-product-button__button {
    border-radius: 0;
}

.widget .wp-block-heading:before {
	left: 0;
	top: 0;
}

div.wc-block-components-sidebar-layout.wc-block-cart .wc-block-cart__totals-title {
	font-weight: 700;
	font-size: 24px;
}

.wc-block-components-checkout-place-order-button{
	background: inherit;
}

.widget .wp-block-social-links {
    margin-bottom: 0;
}

.wp-block-latest-comments article{
	margin-bottom: 0px;
}

.sidebar .widget .wp-block-group .wp-block-button .wp-block-button__link {
	color: #fff;
}

button.wp-block-search__button.wp-element-button:hover,
button.wp-block-search__button.wp-element-button:focus{
    border: 2px solid;
}

.wc-block-components-totals-coupon__content button.components-button {
	border-radius: 4px;
}

.wp-block-code code img {
	padding: 10px;
}

.wp-block-latest-posts__list .wp-block-latest-posts__post-author,
.wp-block-latest-posts__list .wp-block-latest-posts__post-date {
	text-decoration: none;
}

.wc-block-cart-items td {
	color: inherit;
}

.wc-block-components-totals-coupon__content button.components-button {
    border-radius: 0;
}

ul.wp-block-page-list a {
	text-decoration: none;
}

.wc-block-featured-category__link .wp-block-button__link:focus {
	color: #fff;
}

.wc-block-featured-product__price .woocommerce-Price-amount.amount {
	color: inherit;
}

.wp-block-post-comments-form .comment-reply-title {
    margin-bottom: 1.4rem;
}

.wp-block-group .wp-block-details p {
	margin-top: 1rem;
    padding-top: 1rem;
}

.woocommerce table.shop_attributes td {
    text-decoration: none;
}

.wc-block-cart-items th {
	color: inherit;
}

.wp-block-latest-posts__post-author {
	font-size: 18px;
	font-weight: 600;
}

.post .entry-content ul.wp-block-post-template li.wp-block-post .wp-block-post-date {
	padding-bottom: 1.2rem;
}

.wc-block-mini-cart__empty-cart-wrapper .wc-block-mini-cart__shopping-button:focus {
	color: #fff;
}

.wc-block-featured-product__price .woocommerce-Price-amount.amount {
    text-decoration: none;
}

.widget .wp-block-group pre.wp-block-preformatted {
    background: rgba(26, 26, 26, 0.8);
    color: #ddd;
}

.sidebar .widget .wp-block-file .wp-block-file__button {
    background-color: #1b8415;
}

.wp-block-social-links .wp-social-link:last-child {
    margin-bottom: 8px;
}

.wp-block-code.has-background code {
    background: inherit;
}

.wc-block-mini-cart__footer-checkout:focus {
    background-color: inherit;
    color: #fff;
}

.wc-block-cart__submit-button,
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:focus {
	text-decoration: none;
}

.wc-block-mini-cart__badge {
	color: inherit;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    line-height: 16px;
}

.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions a {
	font-size: 1.2rem;
	text-decoration: none;
}

.wc-block-mini-cart__footer span.wc-block-components-totals-item__label {
	font-size: 16px;
	line-height: 20px;
}

.wp-block-file.has-background {
	padding: 0.5rem;
}

a.wp-block-latest-posts__post-title {
    text-decoration: none;
}

.wp-block-latest-comments__comment a {
	text-decoration: none;
}

.has-background.wp-block-read-more {
	padding: 0.25em 1.375em;
}

.wc-block-components-product-badge {
    font-size: 1rem !important;
}

.wc-block-components-totals-coupon-link {
	text-decoration: none;
}

.wc-block-grid__product-price.price ins {
    line-height: 18px;
}

.wc-block-components-product-badge {
    text-decoration: none;
}

.wp-block-latest-comments__comment a {
    text-decoration: none;
}

.wp-block-file a {
	line-height: 18px;
}

.wp-block-file.has-background {
	margin: 0.5rem;
}

.wc-block-components-product-badge {
	line-height: 18px;
}

.wc-block-components-totals-coupon-link {
    line-height: 18px;
}

.wp-block-comment-date a {
	color: inherit;
}

.wp-block-comment-author-name a {
    color: inherit;
}

.widget .wp-block-heading:after {
	background: inherit;
}

.wp-block-comment-date span a {
    color: inherit;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
	text-decoration: none;
}

.wc-block-components-product-metadata .wc-block-components-product-metadata__description>p	{
	font-size: 1.2rem;
}

.wc-block-mini-cart__empty-cart-wrapper .wc-block-mini-cart__shopping-button:hover	{
	color: #fff;
}

.wc-block-mini-cart__empty-cart-wrapper .wc-block-mini-cart__shopping-button:focus	{
	color: #fff;
}

.widget.widget_shopping_cart span a:before	{
	display: none;
}

.wp-block-page-list a:hover,
.wp-block-page-list a:focus {
	color: inherit;
}

.wp-block-page-list a {
	text-decoration: none;
    font-weight: 600;
}

.wp-block-page-list {
	list-style: none;
}.has-primary-color {
  color: #0088CC;
}

.has-primary-background-color {
  background-color: #0088CC;
}

.has-secondary-color {
  color: #233049;
}

.has-secondary-background-color {
  background-color: #233049;
}

.has-yellow-color {
  color: #ffbb44;
}

.has-yellow-background-color {
  background-color: #ffbb44;
}

.has-green-color {
  color: #4caf52;
}

.has-green-background-color {
  background-color: #4caf52;
}

.has-grey-color {
  color: #2196f3;
}

.has-grey-background-color {
  background-color: #2196f3;
}

.alignleft {
    float: left;
    margin: 16px 16px 16px 0;
}

.alignright {
    float: right;
    margin: 16px 16px 16px 0;
}

.alignfull {
  width: 100%;
  max-width: 100%;
}

.alignwide {
  width: 100%;
  max-width: 100%;
}

.block-editor-block-list__block[data-type="core/embed"][data-align=left] .block-editor-block-list__block-edit, .block-editor-block-list__block[data-type="core/embed"][data-align=right] .block-editor-block-list__block-edit, .wp-block-embed.alignleft {
    margin-right: 225px!important;
	margin-top:40px;
}
.wp-block-embed.alignright {
	margin-left: 225px!important;
	margin-top:40px;
}
a.wp-block-button__link {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: inline-block;
  padding: 15px 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.has-primary-color {
  color: #0088CC;
}

.has-primary-background-color {
  background-color: #0088CC;
}

.has-secondary-color {
  color: #233049;
}

.has-secondary-background-color {
  background-color: #233049;
}

.has-yellow-color {
  color: #ffbb44;
}

.has-yellow-background-color {
  background-color: #ffbb44;
}

.has-green-color {
  color: #4caf52;
}

.has-green-background-color {
  background-color: #4caf52;
}

.has-grey-color {
  color: #2196f3;
}

.has-grey-background-color {
  background-color: #2196f3;
}

.wp-block-embed-youtube iframe {
  width: 100%;
}

.wp-block-image .alignright {
    margin-left: 343px;
}
.wp-block-image .alignleft {
    margin-right: 343px;
}

.wp-block-embed__wrapper iframe {
    max-width: 100%;
    height: auto;
    display: block;
}
figure.wp-block-pullquote.alignleft {
    margin-right: 290px;
}
figure.wp-block-pullquote.alignright {
    margin-left: 290px;
}

.wp-block-calendar table {
    table-layout: auto;
}

.wp-block-table.aligncenter{
    margin: 0 auto;
}
.wp-block-calendar thead th {
    color: #0088CC;
}@media only screen and (min-width:1550px) {
    .header-single-slider figure,
    .header-single-slider figure img {
        width: 100%;
    }
}

@media only screen and (max-width:1200px) and (min-width:991px) {

    .main-menu ul li.active a:before {
        bottom: 10px;
        right: -4px;
    }

    .main-menu ul li.active a:after {
        top: 8px;
        left: -4px;
    }

    a.book-now {
        margin-left: 10px;
    }

	.sidebar .widget table tbody a {
		padding: 1px;
		margin-left: -10px!important;
	}
	.footer-sidebar .widget table tbody a {
		padding: 2px;
		margin-left: -7px;
	}
}

/* Mobile Layout: 320px */

@media only screen and (max-width:991px) {

    ul li.book-now-btn {
        display: none !important;
    }

    /* Header slider */
    .header-slider .owl-next,
    .header-slider .owl-prev {
		bottom: 0;
		top: 0;
		margin: auto;
    }

    .header-slider .container.inner-content {
        width: 70%;
    }

    .header-slider .container.inner-content.text-right {
        margin-right: 0;
    }

    .post-thumbnail img {
        width: 100%;
    }

    .features-list-item:hover {
        margin-top: 0;
        box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.08);
    }

    #blog-content article.blog-post:last-child {
        margin-bottom: 80px;
    }

    /* Blog page */
    .post-new-comment,
    ul.meta-info,
    #blog-content .post-content,
    .post-comment-area .media {
        padding: 30px 30px;
    }

    ul.meta-info li {
        margin-bottom: 10px;
    }

    #blog-content ul.meta-info {
        padding: 15px 30px;
    }

    .single-blog-area .tag-share {
        padding: 10px 30px;
    }

    #blog-content ul.meta-info li {
        margin-right: 10px;
    }

    .scrollup {
        right: 5px;
        bottom: 5px;
    }
	
	.breadcrumb_space {
		padding: 0;
	}
	.slide-bg, .slide-bg-line, .slide-content {
		margin-top: 0;
		padding: 15px;
	}
	.slide-content h4 {
		margin-bottom: 0px !important
	}
}

/* Wide Mobile Layout: 480px */

@media only screen and (max-width:767px) {
    .features-eight {
        margin-bottom: 25px;
    }
    .header-slider .container.inner-content {
        width: 100%;
        margin-left: 0;
    }

    #footer-widgets p {
        margin-bottom: 24px;
    }

    .container.inner-content {
        width: 100%;
        margin-left: 0;
    }

    ul.meta-info,
    #blog-content .post-content {
        padding: 30px 15px;
    }
	
	#features-list {
		margin-top: 0px;
	}

    .header-slider .owl-prev	{
		left: 10px;
	}
	
	.header-slider .owl-next	{
		right: 10px;
	}
	
	.header-slider h1,
	.header-slider h4,
	.header-slider p,
	.header-slider .boxed-btn	{
		margin-bottom: 2px !important;
	}
	
	.header-slider h4 {
		font-size: 14px !important;
	}
	
	.header-slider h1, .header-slider p {
		line-height: 1.5 !important;
	}
	
	.header-slider h1 {
		font-size: 18px !important;
	}
	
	.header-slider p {
		font-size: 14px;
	}
	
	.header-single-slider .boxed-btn {
		padding: 0 25px 0 10px !important;
		line-height: 2 !important;
		font-size: 13px !important;
		border-radius: 3px !important;
	}

    .header-single-slider .boxed-btn i {
        height: 18px;
        line-height: 17px;
        width: 18px;
        border-radius: 2px;
        right: 3.5px;
        font-size: 11.25px;
    }

    .header-slider .owl-item .col-md-5 {
        display: none;
    }
	
	ul.payment-icon {
    	text-align: center;
	}
	
	.single-testimonial:nth-child(2) {
		margin: 0px;
		margin-bottom: 35px;
	}
	
	.single-testimonial {
		flex: auto;
		margin: 0px 0px 35px;
	}
	
}

@media only screen and (max-width:400px) {
	
	.header-single-slider .content {
		margin: 0px;
	}
	
	.header-slider h4,
	.header-slider h1 {
		font-size: 12px !important;
		margin-bottom: 3px !important;
		line-height: 1.2 !important;
	}
	
	.header-slider p {
		font-size: 10px;
		margin-bottom: 3px !important;
		line-height: 1.4 !important;
	}
	
	.header-single-slider .boxed-btn {
		font-size: 10px !important;
	}

    .header-single-slider .boxed-btn i {
        height: 16px;
        line-height: 15px;
        width: 16px;
        border-radius: 2px;
        right: 2px;
        font-size: 10px;
    }	
	
	.comment-author.vcard {
        display: grid;
    }
	
	.post-content table {
		overflow-x: auto;
		display: flex;
	}

}

@media (min-width: 768px) {
    div.features-touch {
	    flex: 1;
	}
}

@media only screen and (max-width:500px) {	
	.header-slider .owl-next, .header-slider .owl-prev	{
        width: 35px;
        height: 35px;
        line-height: 35px;
	}
}


@media only screen and (max-width:280px) {
	.section-header span {
		font-size: 14px;
	}
	.section-header h6 {
		font-size: 13px !important;
	}
}