.field-box{
  margin: 0 0 30px;
  &:last-of-type{
    margin-bottom: 0;
  }
  .label{
    padding-bottom: 10px;
    span{
      color: #6D7E95;
    }
    &.row{
      align-items: center;
      & > span{
        margin-right: 10px;
      }
    }
  }
}

.tip-link{
  position: relative;
  .tip-text{
    position: absolute;
    opacity: 0;
  }
}

.btn{
  display: inline-block;
  text-decoration: none;
  outline: none;
  transition: 0.5s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  span{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: $font-title;
    color: #fff;
  }
  &.btn-gradient{
    margin-top: 20px;
    width: 100%;
    background: linear-gradient(135deg, rgba(246,246,246,1) 0%, rgba(32,151,242,1) 0%, rgba(4,184,216,1) 55%, rgba(4,184,216,1) 100%);
    background-size: 100% 100%;
    border-radius: 5px;
    padding: 18px 28px;
    box-shadow: 0 6px 9px rgba(#2097F2, 0);
    &:hover{
      background-size: 500% 100%;
      box-shadow: 0 6px 9px rgba(#2097F2, 0.4);
    }
  }
  &.btn-arrow{
    display: flex;
    align-items: center;
    justify-content: space-between;
    &:after{
      content: '';
      background: url('../img/assets/icon_arrow-btn.svg') no-repeat center / contain;
      width: 10px;
      height: 10px;
      display: block;
      opacity: 0.5;
      transition: 0.3s;
      margin-left: 5px;
    }
    &:hover{
      &:after{
        opacity: 1;
      }
    }
  }
}

/* Form elements */
.select-styled{
  width: 100%;
  height: 56px;
  .jq-selectbox__dropdown{
    overflow: hidden;
  }
  .jq-selectbox__select-text{
    line-height: 54px;
  }
  .jq-selectbox__select{
    height: 100%;
    box-sizing: border-box;
    box-shadow: none;
    border-radius: 5px;
    border: none !important;
    background: #F5F5F5;
    text-shadow: none;
    outline: none !important;
  }
  .jq-selectbox__select-text{
    font-family: $font-main;
    font-size: 15px;
    font-weight: 400;
    color: $text_color_main;
  }
  .jq-selectbox__trigger{
    border-left: none;
  }
  .jq-selectbox__trigger-arrow{
    border: none;
    background: url('../img/assets/shevron-down.svg') no-repeat center / contain;
    width: 8px;
    height: 5px;
    top: 50%;
    margin-top: -3px;
  }
}

/* Range sliders */
.range-slider-box{
  .irs--round{

  }
  .irs-single{
    display: none;
  }
  .irs--round .irs-handle{
    top: 7px;
  }
  .irs-bar{
    top: 16px;
    height: 6px;
    background: rgb(4,185,216);
    background: linear-gradient(315deg, rgba(4,185,216,1) 0%, rgba(32,151,242,1) 100%);
  }
  .irs-handle.single{
    border: none;
    box-shadow: 0 5px 13px rgba(#2097F2, 0.4);
    background: #2097F2;
  }
  .irs-min{
    position: absolute;
    top: 35px;
    background: transparent;
    font-size: 13px;
    color: $text_color_main;
    visibility: visible !important;
  }
  .irs-line{
    top: 16px;
    height: 6px;
  }
  .irs-max{
    position: absolute;
    top: 35px;
    background: transparent;
    font-size: 13px;
    color: $text_color_main;
    visibility: visible !important;
  }
}

.slider-bordered.range-slider-box{
  .irs-single{
    display: block !important;
    top: -18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background-color: #2097F2 !important;
  }
  .irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before{
    border-top-color: #2097F2;
  }
}

.link-arrow{
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  color: #203045;
  &.mt-50px{
    margin-top: 50px !important;
  }
  &:after{
    content: '';
    background: url('../img/assets/arrow-blue-right.svg') no-repeat center / contain;
    width: 32px;
    height: 11px;
    display: block;
    margin-left: 20px;
    transition: 0.3s;
  }
  &:hover:after{
    margin-left: 30px;
  }
}