  /**
  * Template Name: Bootslander - v4.7.1
  * Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
  * Author: BootstrapMade.com
  * License: https://bootstrapmade.com/license/
  */

  @import url(//fonts.cdnfonts.com/css/muller-narrow');

  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-family: "Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,"Segoe UI","Roboto","Ubuntu","Cantarell","Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    color: #444444;
  }

  a {
    color: #627184;
    font-size: 15px;
    text-decoration: none;
  }

  a:hover {
    color: #627184;
    text-decoration: underline;
  }

  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }

  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #1acc8d;
    border-top-color: #d2f9eb;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }

  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #1acc8d;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  .back-to-top:hover {
    background: #2be4a2;
    color: #fff;
  }
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

  /*--------------------------------------------------------------
  # Disable AOS delay on mobile
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {

    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: rgba(1, 4, 136, 0.9);
  }
  #header.header-transparent {
    background: #2684FE
  }
  #header.header-transparent.page-white-header {
    background: #ffff!important;
  }
  #header.header-scrolled {
    background: #2684FE;
    height: 90px;
  }
  #header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
  }
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
  }

  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
    margin: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 30px;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 25px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: rgb(233 243 255);
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #01036f;
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #1acc8d;
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }

  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }

  @media (max-width: 991px) {
    
    .mobile-nav-toggle {
      display: block;
    }

    .navbar:not(.navbar-mobile) .mobile-nav-toggle {
      display: block;
      transform: translate(70vw, 0);
      position: absolute;
    }

    .navbar ul {
      display: none;
    }
  }
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 3, 91, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  .navbar-mobile > ul > li > a:before {
    left: 20px;
  }
  .navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0205a1;
  }
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #3f43fd;
  }
  .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #1acc8d;
  }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }

  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    background: url("../img/hero-bg.jpg");
    position: relative;
    padding: 120px 0 0 0;
    text-align: center;
  }
  #hero:before {
    content: "";
    background: linear-gradient(#2684FE, #006EFF);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  #hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  #hero h1 span {
    color: #fff;
    border-bottom: 4px solid #1acc8d;
  }
  #hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 24px;
  }
  #hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #1acc8d;
  }
  #hero .btn-get-started:hover {
    background: #17b57d;
  }
  #hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  @media (max-width: 991px) {
    #hero {
      padding-top: 80px;
    }
    #hero .animated {
      -webkit-animation: none;
      animation: none;
    }
    #hero .hero-img {
      text-align: center;
    }
    #hero .hero-img img {
      max-width: 50%;
    }
    #hero h1 {
      font-size: 28px;
      line-height: 32px;
      margin-bottom: 10px;
    }
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  @media (max-width: 575px) {
    #hero .hero-img img {
      width: 80%;
    }
  }

  @-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }

  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  .hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 160px;
    z-index: 5;
    position: relative;
  }

  .wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
  }

  .wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
  }

  .wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
  }

  @-webkit-keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
    100% {
      transform: translate(-90px, 0%);
    }
  }

  @keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
    100% {
      transform: translate(-90px, 0%);
    }
  }
  @-webkit-keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  @keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  @-webkit-keyframes move-forever3 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  @keyframes move-forever3 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
  }

  .section-bg {
    background-color: #f5f5ff;
  }

  .section-title {
    padding-bottom: 40px;
  }
  .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
  }
  .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #1acc8d;
    margin: 4px 10px;
  }
  .section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #2684FE;
  }

  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 20px 0;
    background-color: #fafaff;
    min-height: 40px;
    margin-top: 80px;
  }
  @media (max-width: 992px) {
    .breadcrumbs {
      margin-top: 64px;
    }
  }
  .breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
  }
  @media (max-width: 992px) {
    .breadcrumbs h2 {
      margin: 0 0 10px 0;
    }
  }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  .breadcrumbs ol li + li {
    padding-left: 10px;
  }
  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
  }
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
    .breadcrumbs ol {
      display: block;
    }
    .breadcrumbs ol li {
      display: inline-block;
    }
  }

  /*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
  .about {
    padding: 40px 0 0 0;
  }
  .about h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
  }
  .about .icon-boxes p {
    color: #fff;
    font-size: 18px;
  }
  .about .icon-box {
    margin-top: 40px;
  }
  .about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #7ceec6;
    border-radius: 50px;
    transition: 0.5s;
  }
  .about .icon-box .icon i {
    color: #1acc8d;
    font-size: 32px;
  }
  .about .icon-box:hover .icon {
    background: #1acc8d;
    border-color: #1acc8d;
  }
  .about .icon-box:hover .icon i {
    color: #fff;
  }
  .about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
  }
  .about .icon-box .title a:hover {
    color: #1acc8d;
  }
  .about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
  }
  .about .video-box {
    background: url("../img/about.png") center center no-repeat;
    background-size: contain;
    min-height: 300px;
  }
  .about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
  }
  .about .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .about .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(63, 67, 253, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }
  .about .play-btn:hover::after {
    border-left: 15px solid #3f43fd;
    transform: scale(20);
  }
  .about .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }

  .about .text-info {
    background: #2684FE;
  }


  @-webkit-keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }

  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f5f5ff;
    transition: ease-in-out 0.3s;
  }
  .features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
  }
  .features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
  }
  .features .icon-box h3 a {
    color: #2684FE;
    transition: ease-in-out 0.3s;
  }
  .features .icon-box h3 a:hover {
    color: #01036f;
  }
  .features .icon-box:hover {
    background: #ebebff;
  }

  /*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
  .counts {
    background: #f5f5ff;
    padding: 70px 0 60px;
  }
  .counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
  }
  .counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    background: #1acc8d;
    padding: 12px;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 48px;
    height: 48px;
  }
  .counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #2684FE;
  }
  .counts .count-box p {
    padding: 0;
    margin: 0;
    font-size: 14px;
  }

  /*--------------------------------------------------------------
  # Details
  --------------------------------------------------------------*/
  .details .content + .content {
    margin-top: 100px;
  }
  .details .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: #2684FE;
  }
  .details h3 {
    color: #2684FE;
    font-weight: 700;
    line-height: 24px;
  }
  .details .content ul {
    list-style: none;
    padding: 0;
  }
  .details .content ul li {
    padding-bottom: 10px;
  }
  .details .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #1acc8d;
  }
  .details .content p:last-child {
    margin-bottom: 0;
  }

  /*--------------------------------------------------------------
  # Gallery
  --------------------------------------------------------------*/
  .gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
  }
  .gallery .gallery-item:hover img {
    transform: scale(1.1);
  }

  /*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
  .testimonials {
    padding: 80px 0;
    background: url("../img/cta-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
  }
  .testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(1, 3, 111, 0.8);
  }
  .testimonials .section-header {
    margin-bottom: 40px;
  }
  .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    text-align: center;
    color: #fff;
  }
  .testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
  }
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
  }
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
  }
  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
  }
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
  }
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1acc8d;
  }
  @media (min-width: 1024px) {
    .testimonials {
      background-attachment: fixed;
    }
  }
  @media (min-width: 992px) {

    .testimonials .testimonial-item p {
      width: 80%;
    }
  }

  /*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
  .team {
    background: #fff;
  }
  .team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }
  .team .member .pic {
    border-radius: 4px;
    overflow: hidden;
  }
  .team .member img {
    transition: all ease-in-out 0.4s;
  }
  .team .member:hover img {
    transform: scale(1.1);
  }
  .team .member .member-info {
    position: absolute;
    bottom: -80px;
    left: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  .team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #01036f;
    position: relative;
    padding-bottom: 10px;
  }
  .team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #0d12fc;
    bottom: 0;
    left: calc(50% - 25px);
  }
  .team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #01036f;
  }
  .team .member .social {
    margin-top: 10px;
  }
  .team .member .social a {
    transition: color 0.3s;
    color: #01036f;
  }
  .team .member .social a:hover {
    color: #1acc8d;
  }
  .team .member .social i {
    font-size: 16px;
    margin: 0 2px;
  }

  /*--------------------------------------------------------------
  # Pricing
  --------------------------------------------------------------*/
  .pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .pricing h3 {
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
  }
  .pricing h4 {
    font-size: 36px;
    color: #1acc8d;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .pricing .box, .pricing .box * {
    background: #2684FE;
    color: #fff;
    border-radius: 8px;
  }
  .pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
  }
  .pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
  }
  .pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
  }
  .pricing ul li {
    padding-bottom: 16px;
  }
  .pricing ul i {
    color: #1acc8d;
    font-size: 18px;
    padding-right: 4px;
  }
  .pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
  }
  .pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    text-align: center;
  }
  .pricing .box .price_first {
    display: inline-flex;
    align-items: center;
  }
  .pricing .box .price_first svg, .pricing .box .price_first img {
    width: 70px;
    height: 70px;
  }
  .pricing .box .rating {
    position: absolute;
    transform: translate(175px, 30px);
    font-size: 24px;
    color: #a1c7f9;
  }
  .pricing .box .price_first .number {
    font-size: 64px;
    font-weight: 700;
  }
  .pricing .box .price_first h3 {
    /* width: 73px; */
    background: none;
    margin: 16px 0px;
    z-index: 99;
  }
  .pricing .box .price_first {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    height: 0;
    padding: 28px 0 0px 0;
    margin-bottom: 50px;
  }
  .pricing .btn-buy {
    background: #fff!important;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    color: #2684fe!important;
    transition: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    width: 90%;
  }
  .pricing .btn-buy:hover {
    background: #149f6e;
  }
  .pricing .featured h3 {
    color: #fff;
    background: #1acc8d;
  }
  .pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #1acc8d;
    color: #fff;
  }

  /*--------------------------------------------------------------
  # F.A.Q
  --------------------------------------------------------------*/
  .faq .faq-list {
    padding: 0;
  }
  .faq .faq-list ul {
    padding: 0;
    list-style: none;
  }
  .faq .faq-list li + li {
    margin-top: 15px;
  }
  .faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
  }
  .faq .faq-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
  }
  .faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #34e5a6;
  }
  .faq .faq-list .icon-show, .faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
  }
  .faq .faq-list .icon-show {
    display: none;
  }
  .faq .faq-list a.collapsed {
    color: #343a40;
  }
  .faq .faq-list a.collapsed:hover {
    color: #1acc8d;
  }
  .faq .faq-list a.collapsed .icon-show {
    display: inline-block;
  }
  .faq .faq-list a.collapsed .icon-close {
    display: none;
  }
  @media (max-width: 1200px) {
    .faq .faq-list {
      padding: 0;
    }
  }

  /*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  .contact .info {
    width: 100%;
    background: #fff;
  }
  .contact .info i {
    font-size: 20px;
    color: #3f43fd;
    float: left;
    width: 44px;
    height: 44px;
    background: #f0f0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2684FE;
  }
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #0205a1;
  }
  .contact .info .email, .contact .info .phone {
    margin-top: 40px;
  }
  .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: #1acc8d;
    color: #fff;
  }
  .contact .php-email-form {
    width: 100%;
    background: #fff;
  }
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  .contact .php-email-form .error-message br + br {
    margin-top: 25px;
  }
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  .contact .php-email-form input {
    height: 44px;
  }
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  .contact .php-email-form button[type=submit] {
    background: #1acc8d;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }
  .contact .php-email-form button[type=submit]:hover {
    background: #34e5a6;
  }
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
  }
  #footer .footer-top {
    padding: 60px 0 30px 0;
  }
  #footer .footer-top .footer-info {
    margin-bottom: 15px;
    background: #010246;
    color: #fff;
    border-top: 4px solid #1acc8d;
    text-align: center;
    padding: 30px 20px;
  }
  #footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
  }
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  #footer .footer-top .social-links a:hover {
    background: #1acc8d;
    color: #fff;
    text-decoration: none;
  }
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #61ebba;
    font-size: 18px;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #000;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #4be8b0;
  }
  #footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px 6px 15px;
    position: relative;
    border-radius: 50px;
  }
  #footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
  }
  #footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #1acc8d;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
  }
  #footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #149f6e;
  }
  #footer .copyright {
    border-top: 1px solid #010479;
    text-align: center;
    padding-top: 30px;
  }
  .list-group {
    overflow-y: auto;
    overflow-x: hidden;
    margin: 15px 0;
    max-height: 240px;
  }
  @media (max-width: 575px) {
    #footer .footer-top .footer-info {
      margin: -20px 0 30px 0;
    }
  }

  .navbar li svg,.navbar li img {
    margin: 0 5px;
  }


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

  .btn-header {
    border: 2px solid #d3d3d3;
    text-align: center;
    padding: 14px 45px 15px 44px!important;
    border-radius: 10px;
    font-weight: 700!important;
    color: #fff;
    font-size: 15px;
  }

  .page-white-header .btn-header {
    border: 1px solid #1F80FF;
    box-sizing: border-box;
    border-radius: 9px; 
  }


  .btn-header-white {
    border: 2px solid #d3d3d3;
    text-align: center;
    padding: 14px 45px 15px 44px!important;
    border-radius: 10px;
    font-weight: 700!important;
    color: #0872fe;
    background: #FFFFFF;
    font-size: 15px;
    margin: 0 20px;
  }

  .btn-header-white:hover {
   color: #2b80ef
  }


  /*--------------------------------------------------------------
  # Advatages
  --------------------------------------------------------------*/
  .advatages {
    background: #f5f5ff;
    padding: 70px 0 60px;
  }
  .andavatage-box .title {
    font-weight: 700;
  }
  .advatages h3 {
    font-weight: 600;
    font-size: 24px;
    color: #2684FE;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
  }
  .andavatage-box svg, .andavatage-box img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }
  .advatages .andavatage-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
  }
  .advatages .andavatage-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    background: #1acc8d;
    padding: 12px;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 48px;
    height: 48px;
  }
  .counadvatagests .andavatage-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #2684FE;
  }
  .advatages .andavatage-box p {
    padding: 0;
    margin: 0;
    font-size: 18px;
  }

  .list-group {
    overflow-y: auto;
    margin: 15px 0;
    max-height: 590px;
  }
  .list-group .list-group-item:first-child, .list-group .list-group-item:last-child {
    border-radius: 0;
  }

  /*
   *  STYLE 3
   */

  ::-webkit-scrollbar-track
  {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
  }

  ::-webkit-scrollbar
  {
    width: 8px;
    background-color: #2684fe;
  }

  ::-webkit-scrollbar-thumb
  {
    background-color: #2684fe;
  }


  padding-right: 12px !important;
  }

  .mb-20 {
    margin-bottom: 20px !important;
  }

  .b-1 {
    border: 1px solid #ebebeb !important;
  }

  .card {
    border: 0;
    border-radius: 0;
    margin-bottom: 30px;
    -webkit-transition: .5s;
    transition: .5s;
  }

  .order-create,.card-body {
    background: #f5f5ff;
  }

   .order-create h1 {
      padding: 150px 0 0 0;
      text-align: center;
   }

   .iti.iti--allow-dropdown {
    width: 100%;
   }

  .card {
    background: #f5f5ff;
    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-radius: .25rem;
  }

  .media {
    padding: 16px 12px;
    -webkit-transition: background-color .2s linear;
    transition: background-color .2s linear;
  }

  .media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
  }

  .media .avatar {
    flex-shrink: 0;
  }

  .no-radius {
    border-radius: 0 !important;
  }

  .avatar-xl {
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 1.25rem;
  }

  .avatar {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%!important;
    background-color: #f5f6f7;
    color: #8b95a5;
    text-transform: uppercase;
    border: 1px solid #EFEFEF;
    box-sizing: border-box;
    filter: drop-shadow(0px 75px 134px rgba(39, 97, 255, 0.07)) drop-shadow(0px 40.0073px 44.549px rgba(39, 97, 255, 0.0483)) drop-shadow(0px 24.3413px 20.8376px rgba(39, 97, 255, 0.0389)) drop-shadow(0px 14.5931px 10.6893px rgba(39, 97, 255, 0.0311)) drop-shadow(0px 6.95185px 4.49534px rgba(39, 97, 255, 0.0217));
  }

  img {
    max-width: 100%;
  }

  img {
    vertical-align: middle;
    border-style: none;
  }

  .card-user-header {
    display: inline-flex;
    align-items: center;
  }

  .rate-tot {
    color: #17d717;
  }

  .rate-pos {
    color: #5897f5;
  }

  .rate-neg {
    color: #d95353;
  }

  .rate-count {
    font-weight: 700;
  }

  .pricing .box .price_first .number {
    color: #fff;
  }

  .card-user-header .number {
    color: #000;
  }

  .pricing .box .price_first .number,  .card-user-header .number {
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 88.8%;
    letter-spacing: 0.045em;
  }
  .card-user-header .number {
    margin-right: 100px;
  }

  .card-user, .card-order {
    margin: 5px 0;
    border-bottom: 1px solid #dbdbdb;
    border: 0.5px solid #ededed;
    padding: 15px;
  }

  .card-user-header p {
    margin: 0;
    font-size: 14px;
    display: flex;
  }

  .card-user-content {
    font-size: 14px;
    margin: 15px 0;
  }

  .card-user-header .col-md-4 {
    margin-left: 5px;
    margin-right: 25px;
  }

  .navbar {
    width: 100%;
  }

  @media (max-width: 767px) {
    .pricing .box .price_first .number, .card-user-header .number {
      font-size: 12px;
    }
    .card-user-header .col-md-4 {
      margin-left: 5px;
      margin-right: 25px;
    }
    .avatar {
      width: 40px;
      height: 40px;
    }
    .navbar-mobile .navbar-additional ul {
      position: relative;
    }
    .navbar-additional {
      display: block;
      position: relative;
      padding: 10px;
      left: 50%;
      top: 0;
      transform: translate(-90%, 0%);
      border-radius: 8px;
      transition: 0.3s;
    }
    .navbar-additional .navbar li svg {
      display: none;
    }
    .pricing .box {
      margin: 5px 0;
    }
    .list-group {
      margin: 0;
      padding: 15px;
    }
    .card-user-header .col-md-4 {
      margin-left: 5px;
      margin-right: 10px;
    }
    section {
      padding: 10px 0;
    }
  }


  .with-rating {
   font-size: 14px;
  }

  .card-user-header .name {
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
    width: 90px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .card-user-header .rating {
    color: #2684FE;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    line-height: 24px;
    justify-content: space-between;
  }

  .card-user-header .rating .bi-star-fill::before {
    transform: translate(0, 2px);
  }

  .card-user-header .right {
    transform: translate(70px, 0);
    line-height: 24px;
    letter-spacing: 1px;
  }


  p, span {
    letter-spacing: 1px;
  }

  .container-form {
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    box-sizing: border-box;
    box-shadow: 0px 75px 134px rgba(39, 97, 255, 0.07), 0px 40.0073px 44.549px rgba(39, 97, 255, 0.0483), 0px 24.3413px 20.8376px rgba(39, 97, 255, 0.0389), 0px 14.5931px 10.6893px rgba(39, 97, 255, 0.0311), 0px 6.95185px 4.49534px rgba(39, 97, 255, 0.0217);
    border-radius: 9px;
  }

  .form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
  }

  @media (min-width: 576px) {
    .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle;
    }
  }

  @media (min-width: 576px){
    .form-inline .input-group {
      width: auto;
    }}
    @media (min-width: 576px) {
      .mr-sm-2, .mx-sm-2 {
        margin-right: 0.5rem!important;
      }}
      .mb-2, .my-2 {
        margin-bottom: 0.5rem!important;
      }
      .input-group {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: 100%;
      }

      .container-form {
        width: 90%;
        margin: 0 auto;
        padding: 15px;
      }

  /*--------------------------------------------------------------
  # Container Calculator 
  --------------------------------------------------------------*/
  .container-calculator {
    background: #f5f5ff;
    padding: 90px 0 100px;
  }
  .container-calculator .title {
    font-weight: 700;
  }
  .container-calculator h3 {
    font-weight: 600;
    font-size: 24px;
    color: #2684FE;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
  }

  .container-form input {
    font-size: 14px;
  }

  .container-form .input-group-prepend {
    position: absolute;
    z-index: 9999;
    top: -3px;
    background: transparent;
  }

  .container-form .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #ffffff00;
    border: 1px solid #ced4da00;
    border-radius: 0.25rem;
  }

  .form-inline .input-group:nth-last-child(-n+2)::after {
   border-right:0
  }

  .input-group:nth-last-child::after {
    content: none;
  }

  .container-form input, .container-form select, 
  .container-form input::placeholder {
    font-size: 14px;
    font-weight: 100;
    display: inline-block;
    padding: 0.4rem 0.5rem 0.4rem 0.5rem;
    min-width: 6rem;
    color: #000;
  }

  .container-form select {
    padding-left: 5px;
  }

  .form-control {
    border: 0;
    margin: 0;
  }

  .input-group-prepend i::before {
    color: #CDD6E8;
  }

  .container-form button {
    width: 46px;
    height: 46px;
    background: #2684FE;
    margin: 0 0 15px 0;
  }

  .container-form .form-submit {
    margin-left: 10px;
  }

  /* Adapts a floating label for use with a left-handed input group icon */
  .form-floating > .bi-calendar-date + .datepicker_input + label {
    padding-left: 3.5rem;
    z-index: 3;
  }

  .container-form .select2-container--default .select2-selection--single, .select2-dropdown {
    border: 0;
    font-size: 14px;
  }

  .container-form .select2 {
    width: 100%!important;
  }

  .container-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    text-align: center;
  }

  @media (max-width: 767px) {
    .container-form button {
      padding: 0;
      font-size: 10px;
      height: 20px;
    }
    .card-user-header .number {
      margin-right: 0;
    }
    .card-user-header .right {
      transform: translate(0px, 0);
      white-space: nowrap;
    }
  }


  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown .dropdown__main {
    position: relative;
    display: inline-block;
    border-radius: 0.25rem;
  }
  .dropdown .dropdown__main .dropdown__input {
    display: none;
    font-size: 1rem;
    border: 0;
    outline: 0;
    padding: 0 0 0 0.5rem;
    position: absolute;
    bottom: 0.3rem;
    left: 0;
    width: calc(100% - 2rem);
  }
  .dropdown .dropdown__main .dropdown__input.dropdown__input_visible {
    display: block;
  }
  .dropdown .dropdown__main .select__title-text {
    display: inline-block;
    padding: 0.4rem 0 0.4rem 0.5rem;
    line-height: 1.2rem;
    min-width: 6rem;
    color: #CDD6E8;
  }
  .dropdown .dropdown__main .button__arrow {
    display: inline-block;
    vertical-align: middle;
    width: 1.8rem;
    height: 1.8rem;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMXB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDExIDYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDExIDYiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxnPgoJCTxwb2x5Z29uIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBwb2ludHM9IjEwLjMxMiwwIDUuNSw0LjY2NiAwLjY4OCwwIDAsMC42NjcgNS41LDYgMTEsMC42NjcgCQkiLz4KCTwvZz4KPC9nPgo8L3N2Zz4K);
    background-repeat: no-repeat;
    background-position: center center;
    transition: transform 0.1s;
  }
  .dropdown .dropdown__main .button__arrow.button__arrow_select {
    transform: rotate(180deg);
  }
  .dropdown .dropdown__main:hover {
    cursor: pointer;
  }
  .dropdown .dropdown__main.dropdown__main_select {
    border-color: #FF985B;
  }
  .dropdown .dropdown__main .select__dropdown {
    position: absolute;
    visibility: hidden;
    z-index: 10;
    opacity: 0;
    left: 0;
    top: 2rem;
    min-width: 100%;
    max-height: 13rem;
    overflow-y: auto;
    overflow-x: hidden;
    display: inline-block;
    padding: 0.25rem 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem -0.5rem rgba(0, 0, 0, 0.2);
    background: white;
    transition: opacity 0.1s, top 0.1s;
  }
  .dropdown .dropdown__main .select__dropdown .select__group-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0.25rem 1rem 0.5rem 0.5rem;
  }
  .dropdown .dropdown__main .select__dropdown .select__option {
    position: relative;
    padding: 0.5rem 1.5rem;
  }
  .dropdown .dropdown__main .select__dropdown .select__option:hover {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
  }
  .dropdown .dropdown__main .select__dropdown .select__option.select__option_visible:before {
    content: "\2713";
    position: absolute;
    top: 0.35rem;
    left: 0.5rem;
    font-weight: 600;
  }
  .dropdown .dropdown__main .select__dropdown .select__option.select__option_hidden {
    display: none;
  }
  .dropdown .dropdown__main .select__dropdown.select__visible {
    visibility: visible;
    opacity: 1;
    top: -16.25rem;
  }
  .dropdown select {
    display: none;
  }
  ::-webkit-input-placeholder {
    top: -0.1rem;
    position: relative;
  }
  ::-moz-placeholder {
    line-height: 1.3;
  }
  :-moz-placeholder {
    line-height: 1.3;
  }
  :-ms-input-placeholder {
    line-height: 1.3;
  }

  label {
    color: #000;
  }
  input {
    display:block;
    border: none;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    line-height: 1.5rem;
    padding: 0;
    font-size: 1rem;
    color: #607D8B;
    width: 100%;
    margin-top: 0.5rem;
  }
  input:focus {outline: none;}


  [for="datepicker"] {
    display: flex;
    align-items: center;
  }

  .card-order .order-no {
    color: #2684FE;
    font-size: 18px;
    font-weight: 700;
    line-height: 88.8%;
    letter-spacing: 0.045em;
  }

  .card-order .order-date {
    color: #627184;
    font-size: 14px;
    line-height: 127%;
    letter-spacing: 0.045em;
  }

  .card-order .order-lcl {
    color: #333333;
    font-weight: 500;
    font-size: 14px;
    line-height: 127%;
  }

  .card-order  .card-order-right .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 88.8%;
    letter-spacing: 0.045em;
    color: #000000;
  }

  .card-order  .card-order-right .title .text-blue {
    color: #2684FE;
  }

  .card-order-city .content {
    font-size: 12px;
    line-height: 127%;
    letter-spacing: 0.045em;
    white-space: nowrap;
    font-weight: 900;
  }

  .card-order-city.card-order-city-from .content {
    color: #627184;
  }

  .card-order-city.card-order-city-to .content {
    color: #000000;
    font-weight: 500;
  }


  @media (max-width: 767px) {
    .col-md-4.card-order-left {
      width: 30%;
    }
    .col-md-8.card-order-right {
      width: 70%;
    }
    .card-order .order-no {
      font-size: 18px;
    }
    .card-order .order-lcl {
      font-size: 12px;
    }
    .card-order .card-order-right .title {
      font-size: 12px;
      line-height: 14px;
    }
    .card-order-city .content {
      font-size: 8px;
      white-space: nowrap;
    }
  }


  /*--------------------------------------------------------------
  # Profile
  --------------------------------------------------------------*/
  .profile .content + .content {
    margin-top: 100px;
  }
  .profile .content h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #2684FE;
  }
  .profile h3 {
    color: #2684FE;
    font-weight: 700;
    line-height: 24px;
    padding: 25px 0;
  }

  .button.button-small {
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
  }

  .button.button-small i, .button.button-small svg {
    color: rgba(98, 113, 132, 0.67);
    border-bottom: 2px gray solid;
    padding-top: 5px;
    width: 13.28px;
    height: 13.28px;
    transform: translate(0, -10px);
  }

  td input[type=text],
  td select {
   width: 100%;
   height: 30px;
   margin: 0;
   padding: 0;
   transform: translate(0, -5px);
  }

  th:last-child {
    text-align: right;
  }

  td:last-child {
    text-align: right;
  }

  td:last-child .button {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 0px;
    margin-bottom: 0px;
    margin-right: 5px;
    background-color: #FFF;
  }

  td:last-child .button .fa {
    line-height: 30px;
    width: 30px;
  }

  .table {
    border-collapse: collapse !important;
    width: 100%;
    padding: 40px 30px;
    border-radius: 10px;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
  }
  .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #eceeef;
  }

  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef;
  }

  .table tbody + tbody {
    border-top: 2px solid #eceeef;
  }

  .table .table {
    background-color: #fff;
  }

  .table-sm th,
  .table-sm td {
    padding: 0.3rem;
  }

  .table-bordered {
    border: 1px solid #eceeef;
  }

  .table-bordered th, .table-bordered td {
    border: 1px solid #eceeef;
    border-right-color: #ffff !important;
    border-left-color: #ffff !important;
    font-size: 14px;
    line-height: 14px;
    padding: 25px 18px 5px 9px;
    color: #627184;
  }

  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px;
  }

  .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
  }

  .table-active,
  .table-active > th,
  .table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
  }

  .table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
  }

  .table-hover .table-active:hover > td,
  .table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075);
  }

  .table-success,
  .table-success > th,
  .table-success > td {
    background-color: #dff0d8;
  }

  .table-hover .table-success:hover {
    background-color: #d0e9c6;
  }

  .table-hover .table-success:hover > td,
  .table-hover .table-success:hover > th {
    background-color: #d0e9c6;
  }

  .table-info,
  .table-info > th,
  .table-info > td {
    background-color: #d9edf7;
  }

  .table-hover .table-info:hover {
    background-color: #c4e3f3;
  }

  .table-hover .table-info:hover > td,
  .table-hover .table-info:hover > th {
    background-color: #c4e3f3;
  }

  .table-warning,
  .table-warning > th,
  .table-warning > td {
    background-color: #fcf8e3;
  }

  .table-hover .table-warning:hover {
    background-color: #faf2cc;
  }

  .table-hover .table-warning:hover > td,
  .table-hover .table-warning:hover > th {
    background-color: #faf2cc;
  }

  .table-danger,
  .table-danger > th,
  .table-danger > td {
    background-color: #f2dede;
  }

  .table-hover .table-danger:hover {
    background-color: #ebcccc;
  }

  .table-hover .table-danger:hover > td,
  .table-hover .table-danger:hover > th {
    background-color: #ebcccc;
  }

  .thead-inverse th {
    color: #fff;
    background-color: #292b2c;
  }

  .thead-default th {
    color: #464a4c;
    background-color: #eceeef;
  }

  .table-inverse {
    color: #fff;
    background-color: #292b2c;
  }

  .table-inverse th,
  .table-inverse td,
  .table-inverse thead th {
    border-color: #fff;
  }

  .table-inverse.table-bordered {
    border: 0;
  }

  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive.table-bordered {
    border: 0;
  }
  .avatar-upload {
    position: relative;
    max-width: 40px;
    transform: translate(30px, -10px);
  }
  .avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
  }
  .avatar-upload .avatar-edit input {
    display: none;
  }
  .avatar-upload .avatar-edit input + label {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
    width: 18.75px;
    height: 18.75px;
  }
  .avatar-upload .avatar-edit input + label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: rgba(255, 255, 255, 0.67);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(50%,-10px);
    right: 0;
    text-align: center;
    margin: auto;
  }
  .avatar-upload .avatar-preview {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 100%;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  }
  .avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  @media (max-width: 767px) {
    .avatar-upload {
      transform: translate(0px, -10px);
    }
  }

  /*******************************
  * MODAL AS LEFT/RIGHT SIDEBAR
  * Add "left" or "right" in modal parent div, after class="modal".
  * Get free snippets on bootpen.com
  *******************************/
  .modal.left .modal-dialog,
  .modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 320px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }

  .modal.left .modal-content,
  .modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
  }

  .modal.left .modal-body,
  .modal.right .modal-body {
    padding: 15px 15px 80px;
  }

  /*Left*/
  .modal.left.fade .modal-dialog{
    left: -320px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
  }

  .modal.left.fade.in .modal-dialog{
    left: 0;
  }

  /*Right*/
  .modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
  }

  .modal.right.fade.in .modal-dialog {
    right: 0;
  }

  /* ----- MODAL STYLE ----- */
  .modal-content {
    border-radius: 0;
    border: none;
  }

  .modal-header {
    border-bottom-color: #EEEEEE;
    background-color: #FAFAFA;
  }

  .datepicker-group i {
    transform: translate(215px, 2px) scale(2);
  }

  .step-next {
    justify-content: center;
    padding: 0 20%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
    font-size: 14px;
    line-height: 14px;
    color: #627184;
    width: 100px;
    font-weight: 400;
    margin: 15px 0 9px -13px;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    width: 228px;
    height: 39px;
    left: 250px;
    top: 770px;
    background: #F4F7FC;
    border-radius: 4px;
  }

  .step-next button {
    width: 200px;
  }

  @media (max-width: 980px) {
    .container-form input, .container-form select, .container-form input::placeholder {
      padding: 0.4rem 2.4rem 0.4rem 0.5rem;
    }
    .container-form .input-group::after, .container-form .input-group.datepicker-group::after {
      content: none;
    }
    .form-inline {
      justify-content: center;
      padding: 0 25%;
    }
    .form-inline .control-label {
      line-height: 25px;
    }
    .step-next button {
      width: 100px;
    }
    .form-inline textarea {
      min-height: 100px!important;
    }

    .container-form .form-submit {
     margin-left: 0; 
   }
  }

  .error {
    color: red;
    text-align: center;;
    font-size: 14px;
    font-weight: 700;
  }

  .success {
    color: #0dcf25;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
  }

  .container-form .input-group:nth-child(5)::after {
    content: none;
  }

  .navbar li:hover .navbar a:hover
  ,.navbar li:after:hover .navbar a:after:hover
  ,.navbar li:before:hover .navbar a:before:hover {
    background: #000!important;
  }

  .page {
    padding: 110px 0;
  }

  .header-transparent {
    background: transparent;
  }

  .page-white-header .navbar a, 
  .page-white-header .navbar a:focus {
    color: #2684fe;
  }

  .page-white-header .navbar a:hover {
    color: #2278e7;
  }

  #header.header-scrolled.page-white-header {
    background: #fff;
  }

  .profile-header {
    height: 154px;
    background: #F4F7FC;
    padding-top: 20px;
  }

  .page-white-header .mobile-nav-toggle {
    color: #b7b7b7;
  }


  .profile_menu {
      padding: 25px 150px;
  }

  .fade:not(.show) {
      opacity: 1;
  }
  .nav-pills .show>.nav-link {
      color: #2684FE;
      background: none;
  }

  .nav-pills .nav-link:hover,.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
      color: #2684FE;
      background: none;
      border-bottom: 2px solid #2684FE;
      font-size: 15px;
  }


  .nav-pills .nav-link.active {
    color: #2684FE;
    background: none;
  }

  .nav {
    justify-content: center;
  }

  .list-group {
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    box-sizing: border-box;
    box-shadow: 0px 75px 134px rgb(39 97 255 / 7%), 0px 40.0073px 44.549px rgb(39 97 255 / 5%), 0px 24.3413px 20.8376px rgb(39 97 255 / 4%), 0px 14.5931px 10.6893px rgb(39 97 255 / 3%), 0px 6.95185px 4.49534px rgb(39 97 255 / 2%);
    border-radius: 8px;
    padding: 15px
  }

  .profile .col-sm-6 {
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    box-sizing: border-box;
    border-radius: 8px;
    margin: 0 1%;
    padding: 5px 25px;
    width: 48%;
  }

  .info {
    background: #000000;
    padding: 3vh 10vw;
    color: #d9d9d9;
    text-align: center;
  }

  /*МОДАЛЬНОЕ ОКНО*/
  #bg_popup{
    position: fixed;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
  }

  #popup {
    background:#fff;
    width: 350px;
    margin: 50px auto;
    padding: 40px;
    position: relative;
  }

  .close{
    display:block;
    position:absolute;
    top:25px;
    right:5px;
    width:25px;
    height:25px;
    color:#000000;
    cursor:pointer;
  }

  #bg_popup-error {
      position: fixed;
      z-index: 99999;
      background: rgba(0, 0, 0, 0.8);
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: none;
  }

  .error[data-field="password"],.error[data-field="password2"] {
    color: red!important;
  }

  .profile-header img {
    width: 92px;
    height: 92px;
  }

  .list-group.profile-lg {
      display: flex;
      flex-direction: row;
  }

  @media (max-width: 980px) {
    .profile_menu {
      padding: 25px 0px;
    }
    .list-group.profile-lg {
      flex-direction: column;
    }
    .profile .col-sm-6 {
      width: 100%;
    }

    [data-id="password"] {
      display: flex;
      flex-direction: column;
    }
    .card-user-header .name {
      font-size: 11px;
      width: 60px;
     }
    .card-user-header {
      margin-left: -20px;
    }
  }

  .profile-lg .card-user, .profile-lg .card-order {
      margin: 10px;
  }

  .register-background {
      background: url(/images/register.svg);
      margin-top: -50px;
      background-size: cover;
  }

  .register-panel-title {
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0.045em;
    color: #2684FE;
    width: 458px;
    margin: 25px auto;
  }

  .toggle-password {
    position: absolute;
    right: 25px;
    transform: translate(0, -30px) scale3d(1.8, 1.8, 1.8);
    z-index: 2;
  }

  .register-panel .control-label {
    width: 100%;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 127%;
    color: rgba(98, 113, 132, 0.64);
  }

  .register-panel .form-control {
    border: 2px solid gray;
    padding: 25px;
    font-size: 15px;
  }

  .register-panel .iti--allow-dropdown input, .register-panel .iti--allow-dropdown input[type=text], .register-panel .iti--allow-dropdown input[type=tel], .register-panel .iti--separate-dial-code input, .register-panel .iti--separate-dial-code input[type=text], .register-panel .iti--separate-dial-code input[type=tel] {
      padding-right: 6px;
      padding-left: 52px;
      margin-left: 0;
      display: inline-block;
      width: auto;
      vertical-align: middle;
      width: 187%;
      left: 0;
      top: 0;
      background: #F4F7FC;
      border-radius: 4px;
  }

  .register-panel .btn-block {
    background: #2684FE;
    box-shadow: 0px 24.3413px 20.8376px rgb(39 97 255 / 4%), 0px 14.5931px 10.6893px rgb(39 97 255 / 3%), 0px 6.95185px 4.49534px rgb(39 97 255 / 2%), 0px 75px 134px rgb(255 255 255 / 7%), 0px 40.0073px 44.549px rgb(255 255 255 / 5%), 0px 24.3413px 20.8376px rgb(255 255 255 / 4%), 0px 14.5931px 10.6893px rgb(255 255 255 / 3%), 0px 6.95185px 4.49534px rgb(255 255 255 / 2%);
    border-radius: 9px;
    width: 458px;
    height: 45px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0px 10px;
    margin: 0 auto;
    border: 0;
  }

  .register-panel .form-group {
    margin-bottom: 15px;
    width: 458px;
    margin: 25px auto;
    position: relative;
  }

  @media (max-width: 980px) {
    .register-panel .form-group {
      width: 100%;
    }
    .register-panel .iti--allow-dropdown input, .register-panel .iti--allow-dropdown input[type=text], .register-panel .iti--allow-dropdown input[type=tel], .register-panel .iti--separate-dial-code input, .register-panel .iti--separate-dial-code input[type=text], .register-panel .iti--separate-dial-code input[type=tel] {
      width: 93vw;
    } 
   
    .register-panel .btn-block {
      width: 100%;
    }
    .register-background {
      min-height: 50vh;
    }
    .toggle-password {
      transform: translate(-10px, -30px) scale3d(1.8, 1.8, 1.8);
    }
    .register-panel-title {
      font-style: normal;
      font-weight: bold;
      font-size: 24px;
      line-height: 36px;
      letter-spacing: 0.045em;
      color: #2684FE;
      width: 100%;
      margin: 0px auto;
    }
    .page {
      padding: 110px 5px;
    }
  }

  .register-panel .text-center {
    text-align: center!important;
    font-size: 14px;
    line-height: 115%;
    color: rgba(98, 113, 132, 0.64);
  }

  .auth-clients {
    display: flex;
    margin: 20px 0 1em;
    list-style: none;
    overflow: auto;
    justify-content: center;
  }

  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
      top: 0;
      left: 0;
  }

  form {
      clear: both;
  }


  .chooser-btn-group {
      display: flex;
      justify-content: center;
      align-content: center;
      align-items: center;
  }

  .btn-chooser {
      width: 186px;
      height: 43px;
      left: 220px;
      top: 281px;
      border-radius: 9px;
      font-size: 14px;
      line-height: 127%;
      border-color: transparent;
      margin: 0 50px;
      box-shadow: none!important;
  }


.btn-chooser:hover, .btn-chooser:focus, .btn-chooser.active {
     background: #F8F8F8;
}

.pagination {
    justify-content: center;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  width: 35px;
  height: 35px;
  background: #2684FE;
  border-radius: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  align-content: center;
}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus,
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus,
.pagination > li > a, .pagination > li > span {
  border-radius: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #000;
  background: #fff0;
  margin: 0 5px;
  border: 0;
  width: 35px;
  height: 35px;
}

.icon-country {
  width: 40px;
  float: right;
}


@media (max-width: 767px) {
  .order-search {
    position: fixed;
    z-index: 999;
    bottom: 0;
   }
  .col-md-3.card-order-left {
    width: 40%;
  }
  .col-md-9.card-order-right {
    width: 60%;
  }
  .col-md-6.card-order-city {
    width: 50%;
  }
  .col-md-5.card-order-city {
   width: 50%;
  }  
}

.search_field {
  outline: none;
  border: none;
  background-color: transparent;
  width: inherit;
  height: inherit;
  color: #000000;
  font-size: 25px;
  z-index: 3;
}
#suggestion {
  width: inherit;
  height: inherit;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 18px;
  font-size: 25px;
  color: #868686;
}

@media screen and (max-width: 576px) {
  .search_field,
  #suggestion {
    font-size: 16px;
  }
}

.search_field input,.search_field input:focus {
  background: #F4F7FC;
  border-radius: 4px;
  font-size: 18px;
  line-height: 18px;
  color: #CDD6E8;
  padding: 0 30px;
}

.btn-primary {
  background: #1F80FF;
  border: 1px solid #1F80FF;
  box-sizing: border-box;
  border-radius: 9px;
  font-size: 14px;
  line-height: 14px;
  padding: 12px;
}

.search_field_group button {
  width: 100%;
}

.search_field:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  transform: translate(7px, 5px);
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  color: #2684FE;
}


.order-search {
  background: #fff;
  border: 1px solid #EFEFEF;
  box-sizing: border-box;
  filter: drop-shadow(0px 75px 134px rgba(39, 97, 255, 0.07)) drop-shadow(0px 40.0073px 44.549px rgba(39, 97, 255, 0.0483)) drop-shadow(0px 24.3413px 20.8376px rgba(39, 97, 255, 0.0389)) drop-shadow(0px 14.5931px 10.6893px rgba(39, 97, 255, 0.0311)) drop-shadow(0px 6.95185px 4.49534px rgba(39, 97, 255, 0.0217));
  padding: 20px 0 5px 0;
}

.help-block:empty {
  display: none;
}

.form-group {
  width: 100%;
}

.search_field_title * {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.045em;
  color: #2684FE;
}

.search_field__subtitle * {
  font-size: 18px;
  line-height: 18px;
  color: #222734;
  margin-top: 30px;
}

.control-group {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  padding: 30px;
  width: 200px;
  height: 210px;
  margin: 10px;
}
.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}
.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 7px;
  top: 2px;
  width: 8px;
  height: 14px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
.control label {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #627184;
}

.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}
.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}
.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

.order-user-header .avatar {
  width: 92px;
  height: 92px;
  filter: drop-shadow(0px 75px 134px rgba(39, 97, 255, 0.07)) drop-shadow(0px 40.0073px 44.549px rgba(39, 97, 255, 0.0483)) drop-shadow(0px 24.3413px 20.8376px rgba(39, 97, 255, 0.0389)) drop-shadow(0px 14.5931px 10.6893px rgba(39, 97, 255, 0.0311)) drop-shadow(0px 6.95185px 4.49534px rgba(39, 97, 255, 0.0217));
}

.order-user-header .col-md-4, .order-user-header .col-md-8 {
  margin: 0;
  padding: 0;
}

.rate-tot, .rate-pos, .rate-neg {
  padding: 0 5px;
}

.order-user-header .order-user-name {
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  margin: 10px 0;
}

.badge {
  height: 25px;
  left: 255px;
  top: 259px;
  background: #4865FF;
  border-radius: 9px;
  font-size: 13px;
  line-height: 146.9%;
  font-weight: 400;
}

.badge-price {
  background: #4865FF !important;
}

.badge-category {
    background: #FF4185 !important;
}

.order-user-header {
  margin: 10px 0 30px 0;
}

.order-view {
  border-bottom: 1px solid #dbdbdb;
  border: 0.5px solid #ededed;
  padding: 15px 30px;
}

.order-view .card-user, .order-view .card-order {
  margin: 0;
  border: 0;
  padding: 0;
}

.order-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  color: #1F80FF;
  margin: 25px 0;
}

.order-info {
  font-size: 14px;
  line-height: 146.9%;
  color: #627184;
}

.order-info-card span:after {
  content: "";
  border: 1.5px solid #D9E7FF;
  border-radius: 36px;
  margin: 6px;
}

.order-info-card span:last-child:after {
  content: none;
}

.order-sentente-form input, .order-sentente-form select {
  background: #F4F7FC;
  border-radius: 9px;
  height: 25px;
  font-size: 10px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.64);
}

.order-sentente-form .datetime-picker {
  padding: 0 5px;
}

.order-sentente-form .help-block {
  color: #fff;
  background: #db1111;
  width: 65%;
  font-weight: 700;
  text-align: center;
  padding: 2px;
  top: 20px;
  z-index: 999;
}

.order-sententes {
   margin: 25px 0;
}

.order-sentente-form [type="submit"] {
  background: #1F80FF;
  border: 1px solid #1F80FF;
  box-sizing: border-box;
  box-shadow: 0px 75px 134px rgb(39 97 255 / 7%), 0px 40.0073px 44.549px rgb(39 97 255 / 5%), 0px 24.3413px 20.8376px rgb(39 97 255 / 4%), 0px 14.5931px 10.6893px rgb(39 97 255 / 3%), 0px 6.95185px 4.49534px rgb(39 97 255 / 2%);
  border-radius: 9px;
  width: 49%;
  color: #ffff;
}

.order-sentente-form [type="reset"] {
  border: 1px solid #1F80FF;
  box-sizing: border-box;
  filter: drop-shadow(0px 75px 134px rgba(39, 97, 255, 0.07)) drop-shadow(0px 40.0073px 44.549px rgba(39, 97, 255, 0.0483)) drop-shadow(0px 24.3413px 20.8376px rgba(39, 97, 255, 0.0389)) drop-shadow(0px 14.5931px 10.6893px rgba(39, 97, 255, 0.0311)) drop-shadow(0px 6.95185px 4.49534px rgba(39, 97, 255, 0.0217));
  border-radius: 9px;
  background: #ffff;
  width: 49%;
  margin-left: 2%;
}

.order-sentente-form textarea {
  background: #F4F7FC;
  border: 1px solid #EFEFEF;
  box-sizing: border-box;
  border-radius: 9px;
}

.order-sentente-form .col-md-6 {
  padding: 0;
}

.order-sentente-list {
  padding: 25px 15px;
  clear: both;
}


.order-caption {
  background: #F4F7FC;
  border-radius: 9px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.64);
}


.control-label {
  padding: 5px 15px;
}

h1 {
  font-size: 36px;
  line-height: 112.5%;
  color: #1F80FF;
  font-weight: 900;
}


h2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  color: #1F80FF;
}

p {
    font-size: 18px;
    line-height: 119.5%;
    color: #627184;
}

img {
  width: 100%;
}

.page-date {
  font-size: 12px;
  line-height: 22px;
  color: rgba(111, 118, 122, 0.48);
}

.order-search {
  padding: 10px 25px;
}

.blog-post__last__posts {
   padding: 0 30px;
}

.post-grid-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #627184;
}

.post-grid-row {
  padding: 25px 0;
}

.post-grid-row p {
  padding: 5px 0;
}

.blog-post__content img {
  padding: 10px 0;
}

.post-grid-row img {
  height: 125px;
  object-fit: cover;
}

@media (max-width:767px) {
  .blog-post__last__posts {
    padding: 0 5px;
  }
}

.blog-brief__img::after {
  content:  none;
}

.blog-brief__img_2 img {
    display: block;
    height: 125px;
    object-fit: cover;
}

.blog-brief__title_2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #1C2833;
}

.blog-brief__content_2 .post-grid-content {
  height: 42px;
}

.summary {
    display: none;
}

.dropdown .dropdown__main .select__title-text,
.dropdown .dropdown__main .select__dropdown .select__option {
  font-size: 14px;
}

textarea#calculateform-comment {
    width: 100%;
}

.step-next button {
    width: 200px;
}

input.select__dropdown__search {
    border: 2px solid #000;
    border-radius: 18px;
    margin: 5px;
    width: 95%;
    padding: 10px 10px;
}

div#ui-datepicker-div {
    z-index: 9999999!important;
    width: 285px;
}

.select__options {
    border: 2px solid #cdd6e8;
    position: absolute;
    background: #fff;
    padding: 5px;
    font-size: 18px;
    max-height: 250px;
    overflow-x: auto;
    z-index: 9999999;
}

option {
    font-size: 16px;
}

ul.nav.nav-tabs {
    margin: 50px 0;
}

.select__option:empty {
    display: none;
}

.select__option {
    border-bottom: 1px solid gray;
    font-size: 18px;
    padding: 1px 0;
}
.select__option:hover {
    background: #cdd6e8;
}

.select__options {
  display: none;
}

input#datepicker {
  border: 2px solid #000;
  border-radius: 20px;
  padding: 0.9rem 0.5rem 0.9rem 0.5rem;
}

.title {
    font-size: 16px;
}

.select__options {
    width: 100%;
}

.container-form input, .container-form select {
      color: #595959;
}

.order-block, .container-block {
    border: 1px solid #EFEFEF;
    border-radius: 9px;
    background: #fff;
    margin: 0 65px;
    margin: 50px 65px;
    padding: 25px;
}

.block-header {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #1F80FF;
    padding: 25px 0;
    clear: both;
}

.container-block {
    padding-bottom: 100px;
}

button.btn.btn-success {
    background: #1F80FF;
    border: 1px solid #1F80FF;
    box-shadow: 0px 75px 134px rgb(39 97 255 / 7%), 0px 40.0073px 44.549px rgb(39 97 255 / 5%), 0px 24.3413px 20.8376px rgb(39 97 255 / 4%), 0px 14.5931px 10.6893px rgb(39 97 255 / 3%), 0px 6.95185px 4.49534px rgb(39 97 255 / 2%);
    border-radius: 9px;
    width: 91%;
    margin: 0 60px;
}


.block-subtitle {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #1F80FF;
    flex: none;
    order: 0;
    flex-grow: 0;
    border-bottom: 4px solid #1F80FF;
    width: 170px;
    margin-bottom: 15px;
    padding: 5px 0;
}

.form-control {
    background: #F4F7FC;
    border-radius: 4px;
}



.login-border {
    border: 2px solid #949494;
    padding: 25px;
}


@media (max-width:767px) {
  ul.dropdown-active {
    transform: translate(-30px, 10px);
  }
  [for="datepicker"] {
    margin-left: -5px;
  }
  .datepicker-group i {
    transform: translate(120px, 2px) scale(2);
  }
}


textarea#calculateform-comment {
    width: 100%;
    font-size: 15px;
}

.radio label, .checkbox label {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 14px;
    color: #000;
    display: flex;
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
    margin-top: -0PX;
}

.container-block .iti {
    width: 100%;
}


.fancy-forms .tab-content{
    background: #ffffff;
    color: #ffffff;
    padding: 10px;
    box-shadow: 8px 12px 25px 2px rgba(0,0,0,0.3);
}

.fancy-forms .nav-tabs .nav-item{
    width: 50%;
    text-align: center;
}

.fancy-forms .nav-tabs .nav-link {
    border: 1px solid #1f80ff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 30%);
}

.fancy-forms .nav-tabs .nav-link.active{
    border-color: #fff;
    color: #e47a4b;
    background-color: #ffffff;
}

 .fancy-forms .nav-tabs .nav-link:hover{
    border-color: #fff;
 }

 fancy-forms .nav-tabs .nav-link.active:hover{
    border-color: #e47a4b;
 }

 .fancyformcontainer{
    background: #1f80ff;
    padding: .5rem 3rem !important;
    margin: 3rem !important;
 }

 .formsubmitbtn{
    background: #e47a4b;
    color: white; 
    margin-bottom: 1.5rem !important;
 }

 .custom-file{
  position:relative;
  overflow:hidden;
  margin-bottom:10px;
  width: auto;
  display: inline-block;
  padding: 10px;
}

.custom-file img{
  display:inline-block;
  vertical-align:middle;
  margin-right:5px;
}
ul.file-list{
  list-style: none;
  padding:0;
}
ul.file-list li{
  border-bottom:1px solid #ddd;
  padding:5px;
}
.remove-list{
  cursor:pointer;
  margin-left:10px;
}

 .formsubmitbtn:hover,.formsubmitbtn:focus{
    color: #fff;
 }

 .popup__fieldset {
  position: relative;
  width: 49%;
  height: 49px;
}
.popup__fieldset_file {
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.popup__fieldset_pic {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transition: 0.4s;
  pointer-events: none;
}
.popup__fieldset_desc {
  display: block;
  border-radius: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #f9f8f7;
  text-align: left;
  line-height: 50px;
  padding-left: 26px;
  font-size: 16px;
}
.popup__fieldset_desc:hover {
  cursor: pointer;
}
.popup__fieldset_desc:hover .popup__fieldset_pic {
  height: 50px;
  width: 70px;
  border-radius: 50px;
  background-color: #efeae4;
}

button#add-more {
    margin-bottom: 25px;
}

.card.quote {
    padding: 50px;
}

.custom-file {
    width: 100%;
}

.cardquote button[type="submit"] {
    background: #1f80ff;
    color: #fff;
    border: 0;
    width: 100%;
    border-radius: 50px;
    height: 50px;
}

.block-right {
    right: 25px;
    float: right;
    position: absolute;
    bottom: 25px;
    display: flex;
}


.alert {
    width: 100%;
    font-size: 24px;
}

/*Switch*/

.switch {
  position: relative;
  width: 260px;
  height: 50px;
  display: block;
  margin: auto;
  margin-bottom: auto;
}

.switch input {
  display: none;
}



.slider.round {
  border-radius: 3px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  border: 2px solid #1f80ff;
}
/*Moving SLider Section*/

.slider::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  left: 0;
  bottom: 0;
  background-color: #1f80ff;
  -webkit-transition: .4s;
  transition: .4s;
}

/*Slider Text*/

.slider_text {
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  font-size: 10px;
  width: 100%;
  text-align: center;
}

.slider_text > span {
  color: #fff;
  font-size: 14px;
  padding: 0 5px;
  font-weight: 400;
  width: 50%;
  display: block;
  float: left;
  -webkit-transition: .4s;
  transition: .4s;
}


/*Changes on Slide*/

input:checked + .slider::before {
  -webkit-transform: translateX(130px);
  -ms-transform: translateX(130px);
  transform: translateX(130px);
}

input:checked + .slider .off {
  color: #1f80ff;
}

input:checked + .slider .on {
  color: #fff;
}

.slider .slider_text .on {
  color: #1f80ff;
}


.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: inherit;
    color: #9a9c9e;
}

label.control-label {
    width: 100%;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    height: 50px;
    display: flex;
    align-items: center;
    line-height: 127%;
    color: #000;
}

.btn.btn-primary {
    background: #2684FE;
    box-shadow: 0px 24.3413px 20.8376px rgb(39 97 255 / 4%), 0px 14.5931px 10.6893px rgb(39 97 255 / 3%), 0px 6.95185px 4.49534px rgb(39 97 255 / 2%), 0px 75px 134px rgb(255 255 255 / 7%), 0px 40.0073px 44.549px rgb(255 255 255 / 5%), 0px 24.3413px 20.8376px rgb(255 255 255 / 4%), 0px 14.5931px 10.6893px rgb(255 255 255 / 3%), 0px 6.95185px 4.49534px rgb(255 255 255 / 2%);
    border-radius: 9px;
    height: 45px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0px 10px;
    margin: 0 auto;
    border: 0;
}

.ui-datepicker .ui-datepicker-header {
    padding: 0.7em 0!important;
}

.form-group {
    width: 100%;
    clear: both;
    justify-content: center;
}

button.btn.btn-success {
    margin: 50px 0;
    width: 100px;
    height: 30px;
    font-size: 14px;
}

.form-control {
    background: #F4F7FC;
    border-radius: 4px;
    width: 100%;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    height: 50px;
    display: flex;
    align-items: center;
    line-height: 127%;
    color:#000;
}

 @media (min-width: 992px) {
    .container-form .input-group {
      width: 20%;
    }
    .datepicker-group i {
      transform: translate(200px, 2px) scale(2);
    }
  }

  .register-panel {
    margin-top: 100px;
}

.order-view .col-md-6, .order-view .col-md-8, .order-view .col-md-12 {
    padding-right: 0;
    padding-left: 0;
}

.order-sentente-form label.control-label {
    width: 100%;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    height: unset;
    line-height: 50px;
    display: flex;
    align-items: center;
    line-height: 127%;
}

button[type="submit"] {
    width: 150px;
    background: #3480ff;
    color: #fff!important;
    border: 0;
    height: 55px;
}

button.reset {
    width: 180px;
    float: right;
    margin-left: 25px;
    color: #000;
    height: 35px;
    background: #ffff;
}


.alert {
    position: absolute;
    z-index: 9999999999;
    width: 50vw;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    transform: translate(50%, 10px);
}

table#editableTable {
    height: 120px;
}

section#proposal .card-body {
    background: #ffffff;
    padding: 25px 0;
}

section#proposal .card.quote p {
    font-size: 14px;
}
    
.table-list-container {
  max-width: 800px;
  margin: 20px auto;
  background-color: #ffffff;
  border: 1px solid #d2d2d2;
  position: relative;
  z-index: 0;
}

@media (max-width: 640px) {
  .table-list-container {
    border-width: 1px 0;
  }
}
.table-list {
  min-height: 176px;
}

.table-list th {
  border-bottom: 0.6px solid #d2d2d2;
}

.table-list td {
  white-space: nowrap;
  height: 1.75rem;
  vertical-align: top;
  padding: 10px;
  border-bottom: 1px solid #d2d2d2;
}

.table-list tr:last-child td {
  height: auto;
}

th button.sort {
  text-align: left;
  padding: 0 10px;
  line-height: 1.75rem;
  border: none;
  background: none;
  display: block;
  width: 100%;
  font-size: 12px;
  color: #888;
  border-bottom: 1px solid transparent;
}

th button.sort.textcenter,
th button.sort.text-center {
  text-align: center;
}

th button.sort.textright,
th button.sort.text-right {
  text-align: right;
}

button.sort .bullet {
  margin-top: 13px;
}

.table-list .caret:after {
  content: "";
}

.asc .caret:after {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #808080;
  content: "";
  position: relative;
  top: -3px;
  right: -4px;
  font-size: 0;
}

.desc .caret:after {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 3px solid #808080;
  content: "";
  position: relative;
  top: -4px;
  right: -4px;
  font-size: 0;
}

button.sort .caret {
  display: none;
}

button.sort.asc .caret {
  display: inline-block;
}

button.sort.desc .caret {
  display: inline-block;
}

.table-footer {
  background-color: #fff;
  margin-top: -1px;
  position: relative;
  z-index: -1;
}

.table-search {
  width: 310px;
  border-left: 1px solid #d2d2d2;
}

.table-search .search {
  width: 100%;
  border: none;
  background: transparent;
  box-shadow: none;
}

/**/
.table-pagination {
  white-space: nowrap;
}

.table-pagination:after {
  display: block;
  content: "";
  clear: both;
}

.jPaginateBack,
.jPaginateNext,
.table-list-container .pagination {
  float: left;
}

.jPaginateBack,
.jPaginateNext {
  line-height: 1.75rem;
  width: 1.75rem;
  text-align: center;
  user-select: none;
}

.jPaginateBack .material-icons,
.jPaginateNext .material-icons {
  display: block;
  font-size: 16px;
  line-height: inherit;
}

table.proposal-table {
    width: 100%;
    padding: 5px;
    border: 1px solid gray;
    background: #FFF;
}

table.proposal-table td {
    padding: 5px;
    color: black;
    font-weight: 500;
    font-size: 14px;
}

table.proposal-table td:first-child {
    width: 400px;
}

table.proposal-table td:nth-child(2) {
    width: 200px;
}

span.time {
    font-size: 10px;
    color: gray;
}

button.btn.btn-primary.searxh-proposal {
    background: #fffbfb00;
    width: 40px;
    height: auto;
    color: #dbd8d8!important;
    border: 0;
    box-shadow: none;
    /* position: absolute; */
    transform: translate(-35px, 3px);
}
.proposal-contaner {
    padding: 0 25px;
    background: #fff;
}

input.proposal-field-search {
    border: 1px solid #d8d5d5;
    padding: 10px;
    border-radius: 50px;
}
.block-right button {
    color: #abaaaa!important;
    background: transparent!important;
    box-shadow: none!important;
    font-size: 32px!important;
}

.quote-filter {
    -webkit-box-shadow: 0px 0px 5px 0px #1983ff;
    box-shadow: 0px 0px 5px 0px #1983ff;
    padding: 10px 10px 1px 10px;
}

.radio-button-group {
    display: flex;
    flex-wrap: wrap;
    background: #e7f1ff;
    justify-content: center;
}
.radio-button-group .item {
    width: 20%;
}
.radio-button-group .radio-button {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.radio-button-group .radio-button + label {
    padding: 16px 10px;
    cursor: pointer;
    border: 1px solid #CCC;
    margin-right: -2px;
    color: #555;
    background-color: #ffffff00;
    display: block;
    text-align: center;
    font-size: 18px;
    border: 0;
    margin: 5px 25px;
}
.radio-button-group .item:first-of-type .radio-button + label{
  border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.radio-button-group .item:last-of-type .radio-button + label {
  border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.radio-button:checked + label {
    background-color: #feffff;
    color: #161616;
}





