.container-fluid  {
    background-color: #fff;
}
.ftb-container  {
    font-family: 'Roboto', sans-serif;
    line-height: 150%;
}
.wrap.container-fluid.ftb-container .ftb-logo {
    font-size: 24px;
    font-weight: 700;
    padding: 1em 0;
}
/*****************************************
                TABS
*****************************************/
.ftb-tab.nav-tab {
    border: 1px solid #eee;
    padding: 10px 30px;
    font-size: 15px;
    background-color: #FFF;
    color: #333;
    text-transform: uppercase;
}
.ftb-tab.nav-tab:hover, .ftb-tab.nav-tab.nav-tab-active {
    background: #eee;
}
.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, h1.nav-tab-wrapper {
    border-bottom: 3px solid #eee;
}

/*****************************************
                Segment
*****************************************/
.ftb-segment {
    position: relative;
    padding: 30px 30px;
    border-radius: 10px;
    border: 1px solid rgba(230, 230, 230, 0.5);
    box-shadow: 3px 3px 0px  rgba(230, 230, 230, 0.5);
    margin: 30px 0;
}
.ftb-segment h2 {
    margin-top: 0;
    margin-bottom: 1.2em;
    font-size: 1.6em;
    text-transform: uppercase;
}
.ftb-segment.ftb-repeater {
    border: 1px solid #d5d5d5;
}
/*****************************************
                Tooltip
*****************************************/
/* Tooltip container */
.ftb-tooltip {
    position: relative;
    display: inline-block;
}
/* Tooltip text */
.ftb-tooltip .ftb-tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #444444;
	font-size: 14px;
    color: #fff;
    text-align: left;
    padding: 10px 15px;
    border-radius: 6px;
    position: absolute;
	top: -11px;
    left: 130%; 
    z-index: 1;
}
.ftb-tooltip:hover .ftb-tooltiptext {
    visibility: visible;
}
/* .ftb-tooltip .ftb-tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #444444 transparent transparent;
} */
.ftb-tooltip-link {
    color: #fff;
    float: right!important;
}

.ftb-tooltip.ftb-navtip .ftb-tooltiptext {
    width: auto;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    top: -125%;
    left: -70%;
}
.ftb-tooltip.ftb-navtip .ftb-tooltiptext::after {
    content: " ";
    position: absolute;
    top: 110%;
    left: 45%; /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #444444 transparent transparent transparent ;
}
/*****************************************
                Form
*****************************************/
.ftb-container .ftb-input,
.ftb-container .ftb-select,
.ftb-container .ftb-textarea {
    width: 100%;
    padding: 2px 6px;
    color: #333;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
select.ftb-input {
    max-height: 34px;
}
.ftb-container .ftb-textarea {
    height:150px;
}
.ftb-container .ftb-disabled {
    background-color: #f5f5f5;
    color: #a7aaad;  
}
.ftb-textarea[disabled] {
    background-color: #f5f5f5;
}
.ftb-textarea::placeholder {
    color: #ccc;
}
.ftb-container .ftb-submit, .ftb-btn {
    width: 100%;
    display: block;
    background-color: #6BBD6E;
    color: #fff;
    border: 0;
    border-radius: 50px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.ftb-container .ftb-submit:hover, .ftb-btn:hover {
    background-color: #50ad53;
    color: #fff;
    cursor: pointer;
}
.ftb-top-btns {
    position: absolute;
    top: 5px;
    right: 5px;
}
.ftb-top-btns .ftb-btn {
    display: inline-block;
    width: auto;
    padding: 4px;
    color: #555;
    border-radius: 4px;
    background-color: #eee;
    /* margin-top: 22px; */
}
.ftb-top-btns .ftb-btn:hover {
    background-color: #d5d5d5;
}
.ftb-addedon {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #eee;
}

.ftb-btn.ftb-meta {
    width: auto;
    font-size: 1rem;
    line-height: 170%;
    box-shadow: 3px 3px 6px #ddd;
}
/*****************************************
            TOGGLE CHECKBOX
*****************************************/
.ftb-container .ftb-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
  
.ftb-container .ftb-toggle input {
    display:none;
}
  
.ftb-container .ftb-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.ftb-container .ftb-toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.ftb-container input:checked + .ftb-toggle-slider {
    background-color: #6BBD6E;
}

.ftb-container input:focus + .ftb-toggle-slider {
    box-shadow: 0 0 1px #6BBD6E;
}

.ftb-container input:checked + .ftb-toggle-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
  
.ftb-container .ftb-toggle-slider.ftb-toggle-round {
    border-radius: 3px;
}

.ftb-container .ftb-toggle-slider.ftb-toggle-round:before {
    border-radius: 1px;
}
/*****************************************
            ICON TOGGLE CHECKBOX
*****************************************/
.ftb-container .ftb-icon-toggle {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
}
.ftb-container .ftb-icon-toggle input {
    display:none;
}
.ftb-container .ftb-icon-container {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-align: center;
    padding: 6px 8px 2px;
}
.ftb-container input:checked + .ftb-icon-container {
    background-color: #6bbd6eb0;
    border-color: #6BBD6E;
    color: #fff;
}

.ftb-container .ftb-grid {
    display: grid;
      grid-column-gap: 10px;
      grid-template-columns: 160px 30px 30px 30px 37px auto;
}
/*****************************************
                ALERTS
*****************************************/
.ftb-alert {
    padding: 10px;
    padding-left: 15px;
    border-radius: 5px;
    border-left: 4px solid #3b8fd2;
    margin: 10px 0 5px;
    line-height: 150%;
    color: #fff;
}
.ftb-alert a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dotted;
}
.ftb-alert.ftb-info {
    background-color: #47A8F5;
}
.ftb-alert.ftb-note a {
    color: #333;
}
.ftb-alert.ftb-note {
    color: #333;
    background-color: #f1f1f1;
    border-color: #ddd;
}
.ftb-alert.ftb-note .closebtn {
    color: #333;
}
.closebtn {
    color: white;
    float: right;
    font-size: 22px;
    line-height: 18px;
    cursor: pointer;
    transition: 0.3s;
}
.closebtn:hover {
    color: black;
}


.ftb-comment {
    margin-bottom: 0;
    color: #888;
}

.row {
    margin-bottom: 25px;
}

.ftb-tag {
    background-color: #f5f5f5;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    text-align: center;
}
/*****************************************
               PROGRESS BAR
*****************************************/
.ftb-meter {
    height: 20px;  /* Can be anything */
    position: relative;
    margin: 30px 0 0 0; /* Just for demo spacing */
    background: #ededed;
    padding: 7px;
    text-align: center;
    font-size: 12px;
    line-height: 160%;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
    -moz-box-shadow   : inset 0 -1px 1px rgba(255,255,255,0.3);
    box-shadow        : inset 0 -1px 1px rgba(255,255,255,0.3);
}
.ftb-meter > span {
    display: block;
    height: 100%;
    border-radius: 3px;
    background-color: rgb(43,194,83);
    background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(0, rgb(43,194,83)),
      color-stop(1, rgb(84,240,84))
     );
    background-image: -moz-linear-gradient(
      center bottom,
      rgb(43,194,83) 37%,
      rgb(84,240,84) 69%
     );
    -webkit-box-shadow: 
      inset 0 2px 9px  rgba(255,255,255,0.3),
      inset 0 -2px 6px rgba(0,0,0,0.4);
    -moz-box-shadow: 
      inset 0 2px 9px  rgba(255,255,255,0.3),
      inset 0 -2px 6px rgba(0,0,0,0.4);
    box-shadow: 
      inset 0 2px 9px  rgba(255,255,255,0.3),
      inset 0 -2px 6px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}
.ftb-meter > span:after, .ftb-animate > span > span {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-image: 
       -webkit-gradient(linear, 0 0, 100% 100%, 
          color-stop(.25, rgba(255, 255, 255, .2)), 
          color-stop(.25, transparent), color-stop(.5, transparent), 
          color-stop(.5, rgba(255, 255, 255, .2)), 
          color-stop(.75, rgba(255, 255, 255, .2)), 
          color-stop(.75, transparent), to(transparent)
       );
    background-image: 
        -moz-linear-gradient(
          -45deg, 
          rgba(255, 255, 255, .2) 25%, 
          transparent 25%, 
          transparent 50%, 
          rgba(255, 255, 255, .2) 50%, 
          rgba(255, 255, 255, .2) 75%, 
          transparent 75%, 
          transparent
       );
    z-index: 1;
    background-size: 50px 50px;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    animation: move 2s linear infinite;
    -webkit-animation: move 2s linear infinite;
       -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
           -moz-border-radius-topright: 8px;
        -moz-border-radius-bottomright: 8px;
               border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
        -webkit-border-top-left-radius: 20px;
     -webkit-border-bottom-left-radius: 20px;
            -moz-border-radius-topleft: 20px;
         -moz-border-radius-bottomleft: 20px;
                border-top-left-radius: 20px;
             border-bottom-left-radius: 20px;
    overflow: hidden;
}

.ftb-animate > span:after {
    display: none;
}

@keyframes move {
    0% {
       background-position: 0 0;
    }
    100% {
       background-position: 50px 50px;
    }
}
.nostripes > span > span, .nostripes > span:after {
    -webkit-animation: none;
    animation: none;
    background-image: none;
}

/*****************************************
    Image for Radio Buttons
*****************************************/
.input-hidden {
    position: absolute;
    left: -9999px;
  }
  .ftb-icons {
      display: flex;
  }
  /* .ftb-icons:after{
    display: block;
    content: '';
    clear: both;
  } */
  .ftb-icons input[type=radio]:checked + label>img,
  .ftb-icons input[type=radio]:checked + label>.ftb-custom {
    border: 2px solid #090;
    box-shadow: 3px 3px 0 rgba(230, 230, 230, 0.5);
  }
  
  .ftb-icons input[type=radio] + label>img {
    /* float: left; */
    margin: 0px 10px 0 0;
    padding: 6px;
    border: 2px dotted #ddd;
    border-radius: 100%;
    width: 50px;
    height: 50px;
  }

  .ftb-icons .ftb-custom {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 20px;
    margin-top: 5px;
    margin-left: 3px;
    border: 2px dotted #ddd;
    border-radius: 50px;
    text-transform: uppercase;
    }

.ftb-image-preview {
    display: inline-block;
    position: relative;
    padding: 5px;
    border: 2px dotted #ddd;
    border-radius: 100%;
    margin-left: 10px;
    width: 50px;
    height: 50px;
}
.ftb-image-preview img {
    width: 100%;
    height: auto;
  }
.ftb-image-preview .ftb-remove {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    font-size: 9px;
    border: 0;
    padding: 2px 5px;
    color: #fff;
    font-weight: 700;
    border-radius: 100%;
    cursor: pointer;
  }
  [v-cloak] {
      display: none;
  }

  /*****************************************
    Radio Buttons
*****************************************/

.ftb-switch-radio {
    overflow: hidden;
    display: inline;
}

.ftb-switch-radio:after {
    content: '';
    display: table;
    clear: both;
}

.switch-title {
    margin-bottom: 6px;
}

.ftb-switch-radio input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.ftb-switch-radio label {
    float: left;
}

.ftb-switch-radio label {
    display: inline-block;
    min-width: 60px;
    background-color: #eee;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 10px 15px;
    border-right: 1px solid #e1e1e1;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.ftb-switch-radio label:hover {
    cursor: pointer;
}

.ftb-switch-radio input:checked+label {
    background-color: #6BBD6E;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
}


.ftb-switch-radio label:first-of-type {
    border-radius: 5px 0 0 5px;
}

.ftb-switch-radio label:last-of-type {
    border-radius: 0 5px 5px 0;
    border-right: 0;
}

.ftb-switch-radio .ftb-tooltip {
    margin-top: 8px;
    margin-left: 3px;

}

.ftb-switch-radio .ftb-tooltip .ftb-tooltiptext {
    width: 400px;
    font-size: 12px;
    padding: 10px 15px;
}

.ftb-switch-radio.dual-btns .ftb-tooltip .ftb-tooltiptext {
    width: 470px;
}
/*****************************************
    Box
*****************************************/
.ftb-segment.box {
	background-color: #fcfcfc;
}
.ftb-segment.box p {
	font-size: 14px;
}
.ftb-segment.box h2 {
	font-size: 16px;
}
.ftb-segment.box .ftb-btn {
    padding: 10px 24px;
}


.ftb-pro {
    position: fixed;
    bottom: 0;
    right: 15px;
    background-color: #47A8F5;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 20px;
    z-index: 100;
    text-align: center;
    border-radius: 3px;
    text-transform: uppercase;
}
.slide-fade-enter-active {
    transition: all .3s ease-in-out;
}
.slide-fade-leave-active {
    transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to
/* .slide-fade-leave-active below version 2.1.8 */ {
    transform: translateX(15px);
    opacity: 0;
}
