* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*==== VARIABLES ====*/
:root {
    --brand-color: #509BBB;
    --main-bg-color: #FFF;
    --header-bg-color: #F2F5F7;
    --btn-bg-color: #00BC00;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Tahoma', sans-serif;
    --border-radius: 8px;
}
/*==== PRE-STYLES ====*/
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--main-bg-color);
    font-family: var(--font-primary);
}
body {
    margin: 0;
font-family: 'Open Sans', sans-serif;
    background-color:transparent;
}
a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;
}
.flex {
    display: flex;
}
.center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}
.section-heading {
    text-align: center;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #3C3C3C;
    display: block;
    margin: 0 auto;
}
.btn {
    background-color: var(--btn-bg-color);
    height: 3.5rem;
    padding: 0 4rem;
    max-width: 25rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #FFF;
    border: none;
    cursor: pointer;
    transition: .2s;
}
.btn:hover {
    opacity: .9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.35);
}
.btn:active {
    opacity: .5;
}
.text-colored {
    color: var(--brand-color);
}

/*ANIMATIONS*/
.animated {
    opacity: 0;
    transition: .6s;
}
.fade-in {
    opacity: 1;
}
@keyframes floatingUp {
    0% {
        transform: translateY(0); 
    } 50% {
        transform: translateY(-50%);
    } 100% {
        transform: translateY(0);
    }
}
@keyframes floatingDown {
    0% {
        transform: translateY(0); 
    } 50% {
        transform: translateY(50%);
    } 100% {
        transform: translateY(0);
    }
}

/*==== HEADER =====================*/
.header {
    background-color: var(--header-bg-color);
    padding: 7px 0;
    text-align: center;
}
.index-page .header {
    height: 0;
}
.header .logo {
    width: 11rem;
    height: auto;
    cursor: pointer
}
.header h1 a {
    color: inherit;
}
/*==== HERO ======================*/
.hero-section {
    padding: 3.5rem 0 4rem 0;
    background: url('../images/bg.jpg') no-repeat center / cover;
    background-attachment: fixed;
}
.video-wrapper {
    width: 58%;
    max-width: 717px;
}
.index-page .main{
    padding-top: 0;
}
.main-heading {
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.44;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #3C3C3C;
    margin-bottom: 3.75rem;
}
.text-colored {
    color: var(--brand-color);
}
.main-heading .flag {
    margin-bottom: -8px;
    margin-left: 10px;
}
.video, .video video {
    border-radius: var(--border-radius);
}
.video .play-btn::before {
    width: 8rem;
    height: 8rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    background-position: center;
    background-size: 4rem;
}
.form-wrapper {
    width: 36%;
    max-width: 456px;
    min-height: 500px;
    /* min-width: 390px; */
    background-color: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
    border-radius: var(--border-radius);
    padding: 0 1.5rem;
}
.form-wrapper iframe {
    width: 100%;
    min-height: 408px;
    border: 0;
    /* padding: 2rem 0 0 0; */
    margin-top: 2rem;
}
.form-wrapper .terms {
    font-size:12px;
    padding: 1rem 0 1rem 0;
     color: #7D7D7D;
}
.form-wrapper .terms a {
   font-weight: bolder;
   text-decoration: underline;
}
.form-heading {
    font-family: var(--font-secondary);
    font-style: normal;
    font-weight: 700;
    font-size: 1.38rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    color: #3C3C3C;
    text-align: center;
    text-transform: uppercase;
}
.form-wrapper .input-wrap input {
    height: 56px;
    background-color: #FDFDFD;
    border: 1px solid rgba(11, 22, 51, 0.2);
    border-radius: var(--border-radius);
    padding-left: 20px;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 1rem;
}
.form-wrapper .input-wrap input:focus {
    border: 2px solid var(--brand-color)
}
.form-wrapper .input-wrap .vue-tel-input {
    border: none;
    border-radius: var(--border-radius);
}
.form-wrapper .input-wrap .vue-tel-input .vti__dropdown {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: 1px solid rgba(11, 22, 51, 0.2);
}
.form-wrapper .input-wrap .vue-tel-input input {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.form-wrapper .checkbox-wrap {
    margin-left: 1rem;
    margin-bottom: .5rem;
}
.form-wrapper .checkbox-wrap label {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    color: #68645F;
}
.form-wrapper .input-wrap button {
    height: 56px;
    background: var(--btn-bg-color);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    transition: .2s
}
.form-wrapper .input-wrap button:hover {
    opacity: .8;
}
.form-wrapper .input-wrap button:active {
    opacity: .5;
}

/*==== STEPS ===========================*/
.steps-section {
    padding: 1rem 0;
    background-color: var(--header-bg-color);
}
.steps-item.first {
    width: 25%;
    max-width: 480px;
    cursor: pointer
}
.steps-item.second {
    width: 32%;
    max-width: 612px;
    margin-left: 2.75rem;
    cursor: pointer
}
.step-number-img {
    width: 3rem;
    height: 3rem;
    margin-right: 1.5rem;
}
.steps-item-text {
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #7D7D7D;
}

/*==== BENEFITS ====================*/
.benefits-section {
    padding: 5rem 0;
    background-color: var(--main-bg-color);
}
.cards-wrapper {
    margin-top: 2rem;
}
.benefits-card {
    width: 32%;
    max-width: 403px;
    background-color: #F8F8F8;
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: .2s
}
.benefits-card:hover {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
}
.card-heading {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #3C3C3C;
    margin: 1.5rem 0 1rem 0;
}
.card-text {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #68645F;
}

/*==== ACTION ====================*/
.action-section {
    padding: 5rem 0;
    background-color: var(--brand-color);
    position: relative;
    overflow: hidden
}
.action-section .container {
    position: relative;
    z-index: 3;
}
.action-section .section-heading {
    color: #fff;
    max-width: 1030px;
    margin-bottom: 3.5rem;
}
.action-img-wrapper {
    position: relative;
}
.device-img {
    width: 100%;
    height: auto;
}
.action-img-wrapper .btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24.5%;
}
.action-decor {
    position: absolute;
    max-width: 517px;
}
.action-decor.left {
    bottom: -30%;
    left: 0;
    animation: floatingUp 30s;
    animation-iteration-count: infinite;
}
.action-decor.right {
    top: -30%;
    right: 0;
    animation: floatingDown 30s;
    animation-iteration-count: infinite;
}

/*==== REVIEWS =====================*/
.reviews-section {
    padding: 5rem 0;
    background-color: var(--main-bg-color);
}
.reviews-section .section-heading {
    max-width: 822px;
    margin-bottom: 2.5rem;
}
.reviews-card {
    width: 32%;
    max-width: 403px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: .2s
}
.reviews-card:hover {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
}
.card-header {
    background-color: #F8F8F8;
    padding: 2rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.reviewer-img-wrapper {
    position: relative;
    margin-right: 1.5rem;
    width: 4rem;
    height: 4rem;
}
.reviewer-img-wrapper img {
    object-fit: cover;
    border-radius: 50%;
}
.reviewer-img {
    width: 4rem;
    height: 4rem;
}
.shield-img {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%)
}
.card-header .card-heading {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #3C3C3C;
    margin: 0 0 0 0;
}
.reviews-card .card-text {
    height: 80%;
    background-color: #EDF2F4;
    padding: 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    min-height: 160px
}

/*==== BOTTOM FORM SECTION ===============*/
.form-section {
    padding: 5rem 0;
    background:url('../images/bottom-bg.jpg') no-repeat center / cover;
    position: relative;
}
.form-section::before {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(248, 248, 248, 0.7);
    position: absolute;
    z-index: 2;
}
.form-section .form-wrapper {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    min-height: initial;
    padding: 2rem;
}

/*==== FOOTER =================*/
.footer {
    padding: 1.8rem 0;
    background-color: var(--main-bg-color);
}
.footer-copyright {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: #222222;
}
.footer-policies a {
    margin-left: 1.5rem;
}

@media (max-width: 1600px) {
    .container {
        max-width: 1100px
    }
    .header .logo {
        width: 9rem;
    }
    .main-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .form-heading {
        font-size: 1.15rem;
        margin: 0 0 1.5rem 0;
    }
    .form-wrapper .input-wrap {
        margin: 15px 0;
    }
    .form-wrapper .input-wrap input {
        height: 45px;
        padding-left: 20px;
    }
    .section-heading {
        font-size: 1.6rem;
    }
    .card-heading {
        font-size: 1.1rem;
    }
    .card-header .card-heading {
        font-size: 1rem
    }
    .footer-copyright,
    .footer-policies a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1000px) {
    .form-wrapper {
        width: 40%;
    }
    .steps-item.first {
        width: 30%;
    }
    .steps-item.second {
        width: 40%;
        margin-left: 2rem;
    }
    .benefits-section,
    .action-section,
    .reviews-section,
    .form-section {
        padding: 3rem 0;
    }
    .action-img-wrapper .btn {
        bottom: 23%;
    }
    .action-decor {
        max-width: 320px;
    }
}

@media (max-width: 780px) {
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 33;
        height: 76px;
        border-bottom: 1px solid #dde2e4;
    }
    .main {
        padding-top: 76px;
    }
    .hero-section .container {
        flex-direction: column;
    }
    .video-wrapper {
        width: 100%;
        max-width: unset;
        margin-bottom: 2rem;
    }
    .main-heading {
        text-align: center;
    }
    .form-wrapper {
        width: 100%;
        margin: 0 auto;
    }
    .steps-section {
        flex-direction: column;
    }
    .steps-item.first,
    .steps-item.second {
        width: 80%;
        margin: 0 auto;
        max-width: unset;
    }
    .steps-item.first {
        margin-bottom: 1rem;
    }
    .cards-wrapper {
        flex-direction: column;
    }
    .benefits-card {
        width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 auto 1rem auto;
    }
    .action-section .section-heading {
        margin-bottom: 2rem;
    }
    .action-decor {
        max-width: 280px;
    }
    .reviews-card {
        width: 100%;
        margin: 0 auto 1rem auto;
    }
    .card-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    .reviews-card .card-text {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
        min-height: unset;
    }
    .form-section .form-wrapper {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .header {
        height: 65px;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .header .logo {
        width: 7rem;
    }
    .main {
        padding-top: 63px;
    }
    .hero-section,
    .benefits-section {
        padding: 2rem 0;
    }
    .main-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .form-wrapper .input-wrap button,
    .btn {
        font-size: 1rem;
    }
    .step-number-img {
        margin-right: 1rem;
    }
    .steps-item-text {
        font-size: .9rem;
    }
    .section-heading {
        font-size: 1.3rem;
    }
    .benefits-card {
        text-align: center
    }
    .action-decor {
        max-width: 160px;
    }
    .btn {
        height: 3rem;
        padding: .5rem 2rem;
        height: auto;
        font-size: 0.9rem;
    }
}


/* In page */

.vue-modal-resizer {
    display: block;
    overflow: hidden;
    position: absolute;
    width: 12px;
    height: 12px;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    background: transparent;
    cursor: se-resize;
  }
  .vue-modal-resizer::after {
    display: block;
    position: absolute;
    content: '';
    background: transparent;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-bottom: 10px solid #ddd;
    border-left: 10px solid transparent;
  }
  .vue-modal-resizer.clicked::after {
    border-bottom: 10px solid #369be9;
  }
  .v--modal-block-scroll {
    overflow: hidden;
    width: 100vw;
  }
  .v--modal-overlay {
    position: fixed;
    box-sizing: border-box;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 1;
  }
  .v--modal-overlay.scrollable {
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .v--modal-overlay .v--modal-background-click {
    width: 100%;
    min-height: 100%;
    height: auto;
  }
  .v--modal-overlay .v--modal-box {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }
  .v--modal-overlay.scrollable .v--modal-box {
    margin-bottom: 2px;
  }
  .v--modal {
    background-color: white;
    text-align: left;
    border-radius: 3px;
    box-shadow: 0 20px 60px -2px rgba(27, 33, 58, 0.4);
    padding: 0;
  }
  .v--modal.v--modal-fullscreen {
    width: 100vw;
    height: 100vh;
    margin: 0;
    left: 0;
    top: 0;
  }
  .v--modal-top-right {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .overlay-fade-enter-active,
  .overlay-fade-leave-active {
    transition: all 0.2s;
  }
  .overlay-fade-enter,
  .overlay-fade-leave-active {
    opacity: 0;
  }
  .nice-modal-fade-enter-active,
  .nice-modal-fade-leave-active {
    transition: all 0.4s;
  }
  .nice-modal-fade-enter,
  .nice-modal-fade-leave-active {
    opacity: 0;
    transform: translateY(-20px);
  }
  
  .vue-dialog div {
    box-sizing: border-box;
  }
  .vue-dialog .dialog-flex {
    width: 100%;
    height: 100%;
  }
  .vue-dialog .dialog-content {
    flex: 1 0 auto;
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }
  .vue-dialog .dialog-c-title {
    font-weight: 600;
    padding-bottom: 15px;
  }
  .vue-dialog .dialog-c-text {
  }
  .vue-dialog .vue-dialog-buttons {
    display: flex;
    flex: 0 1 auto;
    width: 100%;
    border-top: 1px solid #eee;
  }
  .vue-dialog .vue-dialog-buttons-none {
    width: 100%;
    padding-bottom: 15px;
  }
  .vue-dialog-button {
    font-size: 12px !important;
    background: transparent;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
    box-sizing: border-box;
    line-height: 40px;
    height: 40px;
    color: inherit;
    font: inherit;
    outline: none;
  }
  .vue-dialog-button:hover {
    background: rgba(0, 0, 0, 0.01);
  }
  .vue-dialog-button:active {
    background: rgba(0, 0, 0, 0.025);
  }
  .vue-dialog-button:not(:first-of-type) {
    border-left: 1px solid #eee;
  }
  
  /* In page 2*/
  .entry-title {
    display: none !important;
  }
            #pswd_info {
              padding-top: 15px;
            }
  
            #pswd_info ul {
              list-style: none;
              margin: 0;
              padding: 0;
            }
  
            .invalid {
              background: url(../images/wrong.png) no-repeat 0 50%;
              padding-left: 15px;
              line-height: 20px;
              color: #ec3f41;
              background-size: 10px 10px;
              font-size: 14px;
            }
  
            .valid {
              background: url(../images/right.png) no-repeat 0 50%;
              padding-left: 15px;
              line-height: 20px;
              color: #3a7d34;
              background-size: 10px 10px;
              font-size: 14px;
            }
  
            .agree-checkbox {
              margin-bottom: 3px;
              margin-top: 3px;
              position: relative;
              display: block;
            }
  
            .agree-checkbox input[type=checkbox] {
              height: auto;
              top: 5px;
              position: absolute;
            }
  
            .agree-span {
              font-size: 11px;
              margin-left: 20px;
            }
  
            #prevBtn {
              color: blue
            }
  
            .iti {
              width: 100%;
            }
  
            .form-groups {
              width: 100%;
            }
  
            .form-groups:first-child {
              margin-top: 15px;
            }
  
            .iti div.iti__flag-container {
              /* display: none;*/
            }
  
            .flag-dropdown {
              display: none;
            }
  
            input.error-field:not([type=checkbox]):not([type=radio]) {
              border-color: #d35d6e !important
            }
  
            .error-msg-input {
              display: block;
              color: #fa3144;
              font-size: 12px;
              margin-top: 5px
            }
  
            .container-steps {
              display: flex;
              flex-direction: column;
              align-items: center;
              gap: 40px;
              max-width: 370px;
              width: 100%;
              margin: 0 auto;
              margin-bottom: 17px;
            }
  
            .container-steps .steps {
              display: flex;
              width: 90%;
              align-items: center;
              justify-content: space-between;
              position: relative;
              z-index: 1;
            }
  
            .steps .circle {
              display: flex;
              align-items: center;
              justify-content: center;
              height: 30px;
              width: 30px;
              color: #999;
              font-size: 18px;
              font-weight: 500;
              border-radius: 50%;
              background: #fff;
              border: 2px solid #e0e0e0;
              transition: all 200ms ease;
              transition-delay: 0s;
            }
  
            .steps .circle.active {
              transition-delay: 100ms;
              border-color: #4070f4;
              color: #4070f4;
            }
  
            .steps .progress-bar {
              position: absolute;
              height: 2px;
              width: 100%;
              background: #e0e0e0;
              z-index: -1;
            }
  
            .progress-bar .indicator {
              position: absolute;
              height: 100%;
              width: 0%;
              background: #4070f4;
              transition: all 300ms ease;
            }
  
            .hiddenArea {
              display: none !important;
            }
  
            .iti--separate-dial-code .iti__selected-dial-code {
              font-size: 16px;
              opacity: 0.85;
            }                                        
  
            .iti--separate-dial-code .iti__selected-flag {
              background: transparent !important;
            }
  
            .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] {
              /*padding-left: 100px !important;*/
            }
            
  .iti__flag-container {
    z-index: 999999;
  }                                                    
  
  
  /* In page 3*/
  
  div#languageMenu {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9;
  }			
  .router_list.show {
    display: flex !important;
    flex-direction: column;
  }
  
  .router_item {
    order: 1;
  }
  
  .active_language {
    order: 0;
    pointer-events: none;
  }
  
  .router_btn::after, .current::after {
    z-index: 222222;
    pointer-events: none;
    top: 17px;
  }
  
  .router {
    min-width: 130px;
  }
  
  .router_btn {
    text-align: left;
  }
  .router {
    position: relative;					
  }
  
  .router_btn {
    position: relative;
    width: 105px;
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
    background: transparent;
    border-radius: 5px;
    border: 2px solid var(--blue, #00A5FF);
    outline: none;
    transition: hover ease-in-out 0.3s;
    padding: 5px 30px 5px 10px;
    outline: none;
    text-align: right;
    cursor: pointer;
    background: #00A5FF;
  }
  
  .router_btn::after,
  .current::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 10px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAICAYAAADJEc7MAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABbSURBVHgBjc3RDYAgDEXR10l0BEdwBEdwA0fQFZxUJ6A8Ej4IKbQkN4SUk4qqHgAWEXnhHP4t18X+8tjYx24PsYelugwu7tDZD008RSMcQhYOIwPHUYNXto/mGbuDlB8fKJyrAAAAAElFTkSuQmCC');
    background-repeat: no-repeat;
    width: 14px;
    height: 8px;
  }
  
  .router_btn:hover {
    opacity: 0.95;
  }
  
  .router_btn.active {
    opacity: 1;
  }
  
  .router_btn-blog {
    text-align: right;
    padding: 5px 10px;
    width: fit-content;
  }
  
  .router_btn-blog::after {
    display: none;
  }
  
  .router_list {
    display: none;
    width: 105px;
    position: absolute;
    z-index: 2;
    text-align: right;
    background: #0d173f;
    border-radius: 5px;
    border: 2px solid var(--blue, #00A5FF);
    top: 0px;
  }
  
  .router_list.show {
    display: block;
  }
  
  .router_item {
    display: block;
    position: relative;
    padding: 5px 10px 5px 10px;
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: left;
  }
  
  .router_item:hover {
    color: #fff !important;
    opacity: 0.8;
  }
  .router .router_btn {
    width: 150px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .router .router_list {
    width: 150px;
    top: -250px;
    padding: 5px 0;
    opacity: 0;
    display: block !important;
    transition: opacity .3s;
    pointer-events: none;
    z-index: 999999;
    max-height: 248px;
    overflow: auto;
  }
  .router .router_list.show {
    opacity: 1;
    pointer-events: all;
  }